* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f2ee;
  --ink: #1f1a17;
  --accent: #7a5b4b;
  --accent-2: #b08a6d;
  --soft: #efe7df;
  --sage: #cbd1c7;
  --sand: #f3e8dd;
  --white: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 6vw;
}

.section.tight {
  gap: 16px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero {
  background: linear-gradient(120deg, rgba(122, 91, 75, 0.18), rgba(203, 209, 199, 0.5));
  border-radius: 28px;
  padding: 36px 6vw;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 1.9rem;
}

h3 {
  font-size: 1.25rem;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-2);
}

.note {
  font-size: 0.9rem;
  color: rgba(31, 26, 23, 0.7);
}

.story-band {
  background: var(--soft);
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card.highlight {
  background: var(--sand);
}

.quote {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 20px;
  font-style: italic;
}

.reveal {
  background: var(--sage);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  background: var(--white);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 26, 23, 0.2);
  font-size: 1rem;
  background: var(--bg);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  display: flex;
  justify-content: center;
  padding: 0 6vw 24px;
}

.sticky-cta .btn {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.footer {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #181412;
  color: #f6f2ee;
}

.footer a {
  color: #f6f2ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 22px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  width: fit-content;
}

.highlight-text {
  color: var(--accent);
  font-weight: 600;
}

.banner {
  background: var(--sand);
  padding: 28px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal {
  padding: 24px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 820px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .card-row,
  .price-list {
    flex-direction: row;
  }

  .card,
  .price-item {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
