@charset "UTF-8";

:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #c35d2e;
  --accent-dark: #7d3b1b;
  --soft: #fff8ef;
  --line: #e3ddd4;
  --card: #ffffff;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 26px 6vw 10px;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  padding: 4px 8px;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 60%;
}

.nav-links a {
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 20px;
  position: relative;
}

.hero-top {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  background: var(--soft);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  align-self: center;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: 2.6rem;
  line-height: 1.05;
}

.hero-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.hero-image {
  flex: 1.1;
  border-radius: 20px;
  overflow: hidden;
  background: #d4c5b3;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.floating-card {
  position: relative;
  margin-left: auto;
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 22px;
  width: min(340px, 90%);
  border: 1px solid var(--line);
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.panel h2,
.panel h3 {
  margin: 0 0 12px;
}

.panel p {
  margin: 0 0 14px;
  color: var(--muted);
}

.inline-image {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #d8c9ba;
  min-height: 260px;
}

.inline-image img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 160px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.accent-strip {
  background: #f1e2d1;
  background-image: url("https://images.unsplash.com/photo-1748522474927-11ab380598db?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 36px 6vw;
  position: relative;
  overflow: hidden;
}

.accent-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(195, 93, 46, 0.2), transparent);
  pointer-events: none;
}

.accent-strip .strip-inner {
  position: relative;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.strip-inner p {
  margin: 0;
  color: var(--muted);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 220px;
  padding: 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.testimonial span {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-wrapper {
  display: flex;
  gap: 22px;
  align-items: stretch;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent-dark);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 28px 6vw 40px;
  background: #f0ebe3;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 16px;
  max-width: 320px;
  z-index: 30;
  display: none;
  gap: 12px;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.note {
  background: #fff3e7;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--line);
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 260px;
}

@media (max-width: 900px) {
  .hero-top,
  .split {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
    max-width: 100%;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
