:root {
  --bg: #f4eee6;
  --bg-soft: #ece3d6;
  --surface: rgba(255, 250, 245, 0.76);
  --surface-strong: rgba(255, 252, 248, 0.92);
  --ink: #211b18;
  --muted: #6d635b;
  --accent: #556b5d;
  --accent-soft: #d9e4dc;
  --accent-warm: #b6784d;
  --border: rgba(33, 27, 24, 0.08);
  --shadow: 0 30px 80px rgba(73, 49, 31, 0.14);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(182, 120, 77, 0.16), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(85, 107, 93, 0.18), transparent 24%),
    linear-gradient(180deg, #f8f2eb 0%, #f4eee6 48%, #f1ebe2 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -8rem;
  right: -6rem;
  background: rgba(217, 228, 220, 0.92);
}

body::after {
  bottom: -10rem;
  left: -8rem;
  background: rgba(182, 120, 77, 0.18);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 16px 0 40px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(252, 247, 240, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(87, 70, 55, 0.08);
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-caption {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-nav a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  color: #fffaf2;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #607a67, #314238);
  box-shadow: 0 14px 28px rgba(49, 66, 56, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #fffaf2;
}

main {
  display: grid;
  gap: 32px;
  margin-top: 18px;
}

.hero {
  min-height: auto;
}

.hero-copy,
.section-grid,
.stories-section,
.reviews-section,
.cta-banner,
.site-footer {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 28px clamp(20px, 2.5vw, 32px);
  border-radius: clamp(24px, 3vw, 36px);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  max-width: 18ch;
  font-size: clamp(1.7rem, 3.1vw, 2.75rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: 1.35rem;
}

.lead,
.section-copy p,
.cta-copy p,
.site-footer p,
.story-copy p,
.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.lead {
  max-width: 42rem;
  margin-top: 12px;
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.highlight-pill {
  padding: 8px 14px;
  border: 1px solid rgba(33, 27, 24, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fdf9f4;
  background: linear-gradient(135deg, var(--accent-warm), #915833);
  box-shadow: 0 18px 34px rgba(145, 88, 51, 0.24);
}

.button-secondary {
  border-color: rgba(33, 27, 24, 0.1);
  background: rgba(255, 255, 255, 0.55);
}

.panel-label,
.card-index {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--radius-xl);
}

.section-heading,
.section-copy,
.cta-copy,
.story-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.section-heading-centered {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.stories-section,
.reviews-section {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--radius-xl);
}

.stories-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 0.94fr));
  gap: 20px;
}

.story-visual,
.story-card,
.review-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(33, 27, 24, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 249, 243, 0.94));
  box-shadow: 0 18px 42px rgba(79, 60, 43, 0.08);
}

.story-image {
  position: relative;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.story-image span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.84);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-image-soft {
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(145deg, rgba(217, 228, 220, 0.94), rgba(255, 245, 236, 0.9));
}

.story-image-warm {
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.66), transparent 18%),
    linear-gradient(160deg, rgba(243, 214, 189, 0.98), rgba(221, 191, 169, 0.88));
}

.story-image-fresh {
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 255, 0.68), transparent 20%),
    linear-gradient(160deg, rgba(216, 229, 220, 0.98), rgba(186, 204, 191, 0.88));
}

.story-visual-large {
  grid-column: span 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  align-content: start;
}

.review-card strong {
  font-size: 0.9rem;
}

.review-stars {
  margin: 0;
  color: var(--accent-warm);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--radius-xl);
}

.cta-action {
  display: flex;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  margin-top: 4px;
  border-radius: 28px;
}

.brand-mark-footer {
  display: inline-block;
  margin-bottom: 6px;
}

.footer-copy {
  white-space: nowrap;
}

.footer-link {
  margin-left: 12px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--accent);
}

.legal-page {
  min-height: 100vh;
}

.legal-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 920px);
  margin: 0 auto;
  padding: 24px 0 40px;
}

.legal-card,
.legal-footer {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow);
}

.legal-card {
  display: grid;
  gap: 28px;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 28px;
}

.legal-header {
  display: grid;
  gap: 10px;
}

.legal-kicker {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.legal-header p,
.legal-section p,
.legal-note,
.legal-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-section {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(33, 27, 24, 0.08);
  background: rgba(255, 255, 255, 0.58);
}

.legal-section h2 {
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  line-height: 1.02;
}

.legal-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(243, 214, 189, 0.26);
  color: var(--ink);
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  margin-top: 16px;
  border-radius: 22px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(33, 27, 24, 0.1);
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--accent);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    animation: none;
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
    padding-top: 16px;
  }

  .site-header,
  .site-footer,
  .hero,
  .section-grid,
  .stories-grid,
  .reviews-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    border-radius: 28px;
  }

  .site-header,
  .site-footer,
  .cta-banner {
    align-items: start;
  }

  .site-nav,
  .cta-action {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--max-width));
  }

  .site-header,
  .hero-copy,
  .section-grid,
  .stories-section,
  .reviews-section,
  .cta-banner,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .site-nav {
    gap: 12px;
  }

  .brand-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .brand-caption,
  .footer-copy {
    white-space: normal;
  }

  .legal-shell {
    width: min(calc(100% - 18px), 920px);
    padding-top: 16px;
  }

  .legal-grid,
  .legal-footer {
    grid-template-columns: 1fr;
  }

  .legal-footer {
    display: grid;
    justify-content: stretch;
  }

  .story-visual,
  .story-card,
  .review-card {
    padding: 22px;
  }

  .story-image {
    min-height: 220px;
  }
}