:root {
  --bg: #f6f1ea;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #ffffff;
  --ink: #183454;
  --muted: #4c6681;
  --line: rgba(24, 52, 84, 0.12);
  --blue: #cfe0f0;
  --blue-strong: #7ea7cf;
  --gold: #d8b36a;
  --shadow: 0 24px 70px rgba(24, 52, 84, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 179, 106, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(126, 167, 207, 0.28), transparent 34%),
    linear-gradient(180deg, #f3eee7 0%, #f8fafc 35%, #eef5fb 100%);
}

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

button,
a {
  font: inherit;
}

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

.page-shell {
  overflow: clip;
}

.container {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(246, 241, 234, 0.72);
  border-bottom: 1px solid rgba(24, 52, 84, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand img,
.footer-logo {
  width: auto;
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--ink), #0f2740);
  color: white;
  box-shadow: 0 14px 34px rgba(15, 39, 64, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border: 1px solid rgba(24, 52, 84, 0.14);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 82px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7f97b0;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.formula-copy h2,
.story-card-copy h2,
.final-cta h2,
.testimonial-section h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.35rem);
  max-width: 11ch;
}

.hero-lead,
.section-heading p,
.formula-copy p,
.story-card-copy p,
.final-cta p,
.product-copy p,
.testimonial-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-lead {
  margin: 24px 0 0;
  font-size: 1.08rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 0.98rem;
}

.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #e7d3a8);
  transform: translateY(-50%);
}

.hero-visual {
  position: relative;
  min-height: 630px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
}

.orb-one {
  inset: 36px 96px auto auto;
  width: 220px;
  height: 220px;
  background: rgba(126, 167, 207, 0.32);
}

.orb-two {
  inset: auto auto 40px 26px;
  width: 170px;
  height: 170px;
  background: rgba(216, 179, 106, 0.25);
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.64));
  border: 1px solid rgba(255,255,255,0.56);
  box-shadow: var(--shadow);
}

.hero-card-main {
  inset: 28px 28px 110px 96px;
  padding: 28px;
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-card-side {
  width: 270px;
  right: 0;
  bottom: 32px;
  padding: 16px;
}

.hero-card-side img {
  width: 100%;
  border-radius: 22px;
}

.floating-note {
  position: absolute;
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 52, 84, 0.08);
  border-radius: 22px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px rgba(24, 52, 84, 0.09);
}

.floating-note span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7f97b0;
  font-weight: 700;
}

.floating-note strong {
  font-size: 0.96rem;
}

.note-top {
  left: 0;
  top: 72px;
}

.note-bottom {
  right: 42px;
  top: 94px;
}

.proof-strip {
  padding-bottom: 36px;
}

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

.proof-grid > div {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(24, 52, 84, 0.08);
  border-radius: 24px;
  padding: 22px 24px;
}

.proof-grid strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: 74px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 650px;
}

.section-heading h2,
.formula-copy h2,
.story-card-copy h2,
.final-cta h2,
.testimonial-section h2 {
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  margin-bottom: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 22px;
}

.product-card,
.story-card,
.testimonial-card,
.final-cta-box,
.ingredient-grid article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 52, 84, 0.08);
  box-shadow: var(--shadow);
}

.product-card {
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card-featured {
  grid-row: span 2;
}

.product-media {
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(160deg, rgba(207, 224, 240, 0.58), rgba(255,255,255,0.84));
}

.product-media img {
  width: min(100%, 340px);
}

.product-media.compact {
  min-height: 260px;
}

.product-copy {
  padding: 26px 26px 28px;
}

.product-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
  color: #7f97b0;
  font-weight: 700;
}

.product-copy h3,
.ingredient-grid h3,
.mini-callout h3 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.15;
}

.product-copy p {
  margin: 14px 0 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price-row strong {
  font-size: 1.7rem;
}

.price-row span,
.person span,
.mini-title {
  color: #7f97b0;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
  color: var(--ink);
}

.formula-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

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

.ingredient-grid article {
  border-radius: 24px;
  padding: 24px;
}

.ingredient-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 22px;
  align-items: stretch;
}

.story-card {
  border-radius: 30px;
  overflow: hidden;
}

.story-card-image {
  background: linear-gradient(180deg, rgba(207,224,240,0.52), rgba(255,255,255,0.86));
  display: grid;
  place-items: center;
  min-height: 460px;
}

.story-card-image img {
  width: min(100%, 280px);
  border-radius: 26px;
}

.story-card-copy {
  padding: 36px;
}

.story-card-copy p {
  margin: 16px 0 0;
}

.story-card-copy .button {
  margin-top: 22px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 22px;
}

.testimonial-card {
  border-radius: 28px;
  padding: 28px;
}

.featured-quote {
  background: linear-gradient(180deg, rgba(24,52,84,0.96), rgba(38,74,111,0.96));
  color: white;
}

.featured-quote .quote,
.featured-quote .person span {
  color: rgba(255,255,255,0.84);
}

.quote {
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.person img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
}

.mini-title {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.final-cta {
  padding-top: 24px;
  padding-bottom: 84px;
}

.final-cta-box {
  border-radius: 34px;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.78), rgba(232,241,248,0.8));
}

.final-cta-box h2 {
  max-width: 12ch;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  background: #12263e;
  color: rgba(255, 255, 255, 0.84);
  padding: 42px 0 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 28px;
}

.site-footer strong {
  display: block;
  margin-bottom: 14px;
  color: white;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1080px) {
  .hero-grid,
  .formula-grid,
  .story-grid,
  .testimonial-grid,
  .product-grid,
  .footer-grid,
  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-card-main {
    inset: 28px 90px 130px 24px;
  }

  .hero-card-side {
    width: 230px;
  }

  .product-card-featured {
    grid-row: auto;
  }

  .final-cta-box h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100vw - 28px, 1180px);
  }

  .site-header {
    position: static;
  }

  .brand img,
  .footer-logo {
    height: 28px;
  }

  .nav-wrap {
    padding: 12px 0;
    gap: 14px;
  }

  .nav-cta {
    padding: 11px 15px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-card-main {
    inset: 20px 56px 118px 8px;
    padding: 18px;
  }

  .hero-card-side {
    width: 170px;
    right: 0;
    bottom: 14px;
  }

  .floating-note {
    padding: 12px 14px;
    border-radius: 18px;
  }

  .note-top {
    left: 2px;
    top: 34px;
  }

  .note-bottom {
    right: 10px;
    top: 52px;
    width: 160px;
  }

  .proof-grid,
  .ingredient-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .final-cta {
    padding: 52px 0;
  }

  .product-copy,
  .story-card-copy,
  .testimonial-card,
  .final-cta-box,
  .ingredient-grid article {
    padding: 22px;
  }

  .story-card-image {
    min-height: 280px;
  }
}
