:root {
  --ivory: #f7f2ec;
  --cream: #efe6dc;
  --gold: #c9a15c;
  --gold-dark: #9b7029;
  --charcoal: #39342e;
  --muted: #746b60;
  --sage: #c9d0c6;
  --sage-dark: #66705f;
  --white: #ffffff;
  --line: rgba(57, 52, 46, 0.14);
  --shadow: 0 24px 70px rgba(70, 53, 34, 0.13);
  --radius: 8px;
  --max: 1720px;
  --display-font: "Libre Bodoni", "Bodoni 72", Didot, "Bodoni 72 Smallcaps", Georgia, serif;
  color-scheme: light;
  font-family: Inter, Lato, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 5%, rgba(201, 161, 92, 0.12), transparent 28rem),
    radial-gradient(circle at 85% 0%, rgba(201, 208, 198, 0.32), transparent 30rem),
    var(--ivory);
  color: var(--charcoal);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3,
.brand {
  font-family: var(--display-font);
}

h1,
h2 {
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  max-width: 9.6ch;
  font-size: clamp(3.45rem, 6vw, 6.15rem);
}

h1 span,
h2 span {
  color: var(--gold-dark);
}

h2 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  line-height: 1.04;
  font-weight: 600;
}

p,
li {
  font-size: 1rem;
  line-height: 1.75;
}

.announcement {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 18px;
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(57, 52, 46, 0.1);
  background: rgba(247, 242, 236, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 2.25rem;
}

.brand img {
  width: 38px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--charcoal);
}

.section-pad {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 122px) 0;
  scroll-margin-top: 104px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 0 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(155, 112, 41, 0.19);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(155, 112, 41, 0.25);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.78rem;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.62);
  color: var(--charcoal);
  border-color: rgba(57, 52, 46, 0.22);
  box-shadow: none;
}

.button-secondary.light {
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.button.full {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button-row.centered {
  justify-content: center;
}

.hero {
  min-height: min(940px, calc(100svh - 110px));
  display: grid;
  grid-template-columns: minmax(360px, 0.62fr) minmax(720px, 1.38fr);
  align-items: center;
  gap: clamp(34px, 4vw, 72px);
  padding-top: clamp(46px, 5vw, 82px);
  padding-bottom: clamp(46px, 5vw, 82px);
}

.hero-copy p {
  max-width: 520px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}

.hero-media {
  position: relative;
  width: min(100%, 1120px);
  max-width: none;
  justify-self: end;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: rgba(201, 208, 198, 0.48);
  filter: blur(70px);
}

.hero-media img {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 1596 / 986;
  object-fit: cover;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-points span {
  padding-top: 12px;
  border-top: 1px solid rgba(201, 161, 92, 0.45);
}

.section-heading,
.faq-heading {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-section,
.ingredients,
.comparison,
.faq {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  padding-right: max(18px, calc((100% - var(--max)) / 2));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 68px);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(57, 52, 46, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 70px rgba(57, 52, 46, 0.09);
}

.product-image {
  aspect-ratio: 1596 / 986;
  min-height: clamp(500px, 34vw, 660px);
  overflow: hidden;
  background: linear-gradient(135deg, #fbf7ee, #f1e7da);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 700ms ease;
  padding: 0;
}

.product-card:hover .product-image img {
  transform: scale(1.012);
}

.product-body {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(26px, 4vw, 38px);
}

.product-body p {
  color: var(--muted);
}

.product-body ul,
.comparison-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-body li,
.comparison-card li {
  position: relative;
  padding-left: 24px;
  color: var(--charcoal);
  line-height: 1.45;
}

.product-body li::before,
.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.ritual,
.trust,
.lifestyle {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
}

.ritual-media img,
.trust-media img,
.lifestyle-media img,
.ingredient-showcase img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.ritual-copy > p:not(.section-kicker),
.trust-copy > p:not(.section-kicker),
.lifestyle-copy > p:not(.section-kicker) {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.steps {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.steps article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(57, 52, 46, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.steps span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 6px;
  font-size: 1.8rem;
}

.steps p {
  color: var(--muted);
}

.ingredients {
  background: linear-gradient(180deg, rgba(239, 230, 220, 0.72), rgba(247, 242, 236, 0));
}

.ingredient-showcase {
  max-width: 980px;
  margin: 0 auto 28px;
}

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

.ingredient-group {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(57, 52, 46, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.ingredient-group h3 {
  margin-bottom: 18px;
}

.ingredient-list {
  display: grid;
  gap: 12px;
}

.ingredient-list article {
  display: grid;
  gap: 5px;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 161, 92, 0.28);
}

.ingredient-list strong {
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ingredient-list span {
  color: var(--muted);
  line-height: 1.65;
}

.trust {
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
}

.trust-callouts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-callouts span {
  border: 1px solid rgba(201, 161, 92, 0.38);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lifestyle {
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
}

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

.comparison-card,
.review-card {
  border: 1px solid rgba(57, 52, 46, 0.12);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 55px rgba(57, 52, 46, 0.07);
}

.comparison-card.featured {
  background: linear-gradient(135deg, rgba(57, 52, 46, 0.96), rgba(86, 78, 66, 0.96));
  color: var(--ivory);
}

.comparison-card h3 {
  margin-bottom: 22px;
}

.comparison-card.featured li {
  color: rgba(247, 242, 236, 0.88);
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card blockquote {
  min-height: 112px;
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.review-card figcaption {
  margin-top: 24px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq {
  background: rgba(239, 230, 220, 0.52);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

details {
  border-top: 1px solid rgba(57, 52, 46, 0.16);
  background: transparent;
}

details:last-child {
  border-bottom: 1px solid rgba(57, 52, 46, 0.16);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--gold-dark);
  font-size: 1.5rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 720px;
  padding: 0 0 22px;
  color: var(--muted);
}

.final-cta {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  padding-right: max(18px, calc((100% - var(--max)) / 2));
}

.final-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
  border-radius: var(--radius);
  padding: clamp(54px, 7vw, 88px) 22px;
  background:
    linear-gradient(rgba(57, 52, 46, 0.7), rgba(57, 52, 46, 0.7)),
    url("public/assets/prestique/hl-pt4.png") center / cover;
  color: var(--ivory);
  text-align: center;
  box-shadow: var(--shadow);
}

.final-inner p {
  color: rgba(247, 242, 236, 0.84);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 38px 0 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  border-top: 1px solid rgba(57, 52, 46, 0.12);
}

.footer-brand p,
.disclaimer {
  color: var(--muted);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 760px;
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    inset: 111px 18px auto;
    display: none;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: rgba(247, 242, 236, 0.98);
    box-shadow: var(--shadow);
  }

  .menu-open .nav-links {
    display: flex;
  }

  .hero,
  .ritual,
  .trust,
  .lifestyle {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
    justify-self: center;
    width: min(100%, 920px);
    max-width: none;
  }

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

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card blockquote {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .announcement {
    font-size: 0.68rem;
  }

  .nav-shell {
    width: min(100% - 24px, var(--max));
    min-height: 66px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
    font-size: 1.72rem;
  }

  .brand img {
    width: 31px;
    height: 34px;
  }

  .nav-shell > .button-small {
    display: none;
  }

  .nav-links {
    inset: 104px 12px auto;
  }

  .section-pad {
    width: min(100% - 24px, var(--max));
    padding: 58px 0;
  }

  .product-section,
  .ingredients,
  .comparison,
  .faq,
  .final-cta {
    padding-left: 12px;
    padding-right: 12px;
  }

  h1 {
    max-width: 9.5ch;
    font-size: clamp(3rem, 14vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  h3 {
    font-size: 2rem;
  }

  .hero-copy p {
    margin: 20px 0 24px;
  }

  .button,
  .button-row,
  .button-row .button {
    width: 100%;
  }

  .hero-points {
    margin-top: 30px;
  }

  .product-image {
    aspect-ratio: 1596 / 986;
    min-height: clamp(320px, 66vw, 560px);
  }

  .steps article {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 16px;
  }

  .steps span {
    width: 40px;
    height: 40px;
  }

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

  .footer nav {
    justify-content: flex-start;
  }
}
