:root {
  --forest: #0E2927;
  --petrol: #123936;
  --gold: #C5AA76;
  --ivory: #F5F1E8;
  --stone: #E4E1DA;
  --charcoal: #202524;
  --white: #FFFFFF;
  --muted: #65706d;
  --shadow: 0 24px 70px rgba(14, 41, 39, 0.18);
  --soft-shadow: 0 16px 42px rgba(14, 41, 39, 0.12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: Inter, Manrope, "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--white);
  color: var(--forest);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 1rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.page-shell { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }
.top-bar {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding: .55rem 1rem;
  background: var(--forest);
  color: var(--ivory);
  border-bottom: 1px solid rgba(197, 170, 118, .32);
  font-size: .92rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 232, .94);
  border-bottom: 1px solid rgba(14, 41, 39, .12);
  backdrop-filter: blur(18px);
}
.site-header.is-compact { box-shadow: 0 10px 30px rgba(14, 41, 39, .12); }
.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--forest);
  font-weight: 900;
}
.brand-logo { width: 118px; height: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: .9rem; font-size: .94rem; font-weight: 700; }
.nav-links a { text-decoration: none; }
.nav-links a:not(.nav-action):hover { color: var(--petrol); }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(14, 41, 39, .25);
  border-radius: var(--radius);
  background: transparent;
}
.menu-lines, .menu-lines::before, .menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest);
  margin: auto;
  content: "";
}
.menu-lines::before { transform: translateY(-7px); }
.menu-lines::after { transform: translateY(5px); }

.order-button, .nav-action, .settings-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--forest);
  padding: .82rem 1.15rem;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(197, 170, 118, .24);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.order-button:hover, .nav-action:hover, .settings-button:hover {
  transform: translateY(-2px);
  background: #d4bb86;
  box-shadow: 0 18px 36px rgba(14, 41, 39, .2);
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--ivory);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 28%, rgba(197, 170, 118, .20), transparent 28%),
    linear-gradient(135deg, var(--forest), #071b19 58%, var(--petrol));
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(3.5rem, 7vw, 5.6rem);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -6rem -8rem auto;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(197, 170, 118, .18);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, .98fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.eyebrow, .section-kicker {
  margin: 0 0 .9rem;
  color: var(--gold);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
}
h1, h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Lora, Georgia, serif;
  line-height: 1.03;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.8rem, 6vw, 3.7rem); max-width: 860px; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3rem); }
h3 { margin: 0; line-height: 1.15; }
.hero-lead { max-width: 720px; font-size: clamp(1.05rem, 2vw, 1.22rem); color: rgba(245, 241, 232, .86); }
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .72rem 1rem;
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}
.hero-highlights li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(245, 241, 232, .9);
}
.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.adult-note { color: rgba(245, 241, 232, .72); font-size: .95rem; }
.product-stage {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
  display: grid;
  place-items: center;
}
.gold-ring {
  position: absolute;
  width: min(92%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(197, 170, 118, .62);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(197, 170, 118, .11), 0 0 80px rgba(197, 170, 118, .14);
}
.hero-product {
  position: relative;
  z-index: 1;
  width: min(92%, 480px);
  filter: drop-shadow(0 34px 52px rgba(0, 0, 0, .38));
}
.float-label {
  position: absolute;
  z-index: 2;
  max-width: 170px;
  padding: .7rem .85rem;
  border: 1px solid rgba(197, 170, 118, .46);
  border-radius: var(--radius);
  background: rgba(14, 41, 39, .76);
  color: var(--ivory);
  box-shadow: var(--soft-shadow);
  font-size: .88rem;
  font-weight: 800;
}
.label-one { left: 2%; top: 18%; }
.label-two { right: 0; top: 48%; }
.label-three { left: 8%; bottom: 13%; }

.facts-strip { margin-top: -2rem; position: relative; z-index: 2; }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(197, 170, 118, .5);
  border-radius: var(--radius);
  background: rgba(197, 170, 118, .42);
  box-shadow: var(--shadow);
}
.fact-card {
  background: var(--white);
  padding: 1.25rem;
}
.fact-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: .7rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--forest);
  font-weight: 900;
}
.fact-card h2 { font-size: 1.2rem; font-family: Inter, system-ui, sans-serif; }
.fact-card p { margin: .35rem 0 0; color: var(--muted); }

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.split-layout, .approach-grid, .table-grid, .faq-grid, .final-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.intro-section { background: var(--ivory); }
.label-panel {
  min-height: 460px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(197, 170, 118, .55);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.7), rgba(228,225,218,.64));
  box-shadow: var(--soft-shadow);
}
.label-panel img { width: min(82%, 390px); filter: drop-shadow(0 24px 36px rgba(14,41,39,.22)); }
.approach-section, .routine-section, .logistics-section, .feedback-section { background: var(--white); }
.process-flow {
  display: grid;
  gap: 1rem;
  counter-reset: flow;
}
.process-flow span {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 3.3rem;
  background: var(--ivory);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  font-weight: 800;
}
.process-flow span::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 900;
}
.process-flow span:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 1.35rem;
  bottom: -1.35rem;
  color: var(--gold);
}

.ingredients-section, .packages-section, .quality-section { background: var(--ivory); }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading p { color: var(--muted); }
.ingredient-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.ingredient-cards article, .steps-grid article, .panel-grid article, .feedback-grid article {
  padding: 1.25rem;
  border: 1px solid rgba(14, 41, 39, .12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}
.ingredient-cards span {
  display: inline-flex;
  margin-bottom: .85rem;
  color: var(--forest);
  border-bottom: 2px solid var(--gold);
  font-weight: 900;
}
.ingredient-cards small { display: block; margin: .35rem 0 .55rem; color: var(--muted); font-style: italic; }
.ingredient-cards p, .steps-grid p, .panel-grid p, .feedback-grid p, .muted-copy { color: var(--muted); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--soft-shadow); }
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--white);
}
caption {
  text-align: left;
  padding: 1rem;
  color: var(--muted);
  background: #faf8f2;
}
th, td { padding: 1rem; border-bottom: 1px solid var(--stone); text-align: left; }
th { background: var(--forest); color: var(--ivory); }
td:last-child, th:last-child { text-align: right; font-weight: 900; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.steps-grid span {
  display: inline-block;
  margin-bottom: .9rem;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2.1rem;
}
.notice-list, .quality-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}
.notice-list li, .quality-list li {
  padding: .65rem .85rem;
  border: 1px solid rgba(197, 170, 118, .55);
  border-radius: var(--radius);
  background: var(--ivory);
  font-weight: 800;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: center;
}
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid rgba(14, 41, 39, .14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}
.offer-card img {
  height: 220px;
  object-fit: contain;
  margin-bottom: .75rem;
}
.offer-card h3 { font-size: 1.55rem; }
.package-note, .duration { color: var(--muted); margin: .35rem 0; font-weight: 800; }
.package-badge {
  align-self: flex-start;
  margin-bottom: .6rem;
  padding: .4rem .65rem;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--forest);
  font-weight: 900;
  font-size: .82rem;
}
.quiet-badge { background: var(--ivory); border: 1px solid var(--gold); }
.offer-card ul { padding-left: 1.1rem; margin: 1rem 0 1.2rem; color: var(--muted); }
.offer-card .order-button { margin-top: auto; }
.offer-card small { margin-top: .6rem; text-align: center; color: var(--muted); font-weight: 800; }
.featured-card {
  transform: scale(1.04);
  background: linear-gradient(145deg, var(--forest), var(--petrol));
  color: var(--ivory);
  border: 1px solid var(--gold);
  box-shadow: 0 28px 70px rgba(14, 41, 39, .28);
}
.featured-card img { height: 260px; }
.featured-card .package-note, .featured-card .duration, .featured-card ul, .featured-card small { color: rgba(245, 241, 232, .82); }
.price-note {
  margin: 2rem 0 0;
  padding: 1rem;
  border-left: 4px solid var(--gold);
  background: var(--white);
  color: var(--muted);
}
.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.quality-image { width: min(100%, 520px); justify-self: center; filter: drop-shadow(0 28px 45px rgba(14,41,39,.18)); }
.responsible-section { background: var(--forest); }
.responsible-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--ivory), #fffaf0);
  box-shadow: var(--shadow);
}
.responsible-panel ul {
  columns: 2;
  gap: 2rem;
  padding-left: 1.2rem;
}
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.feedback-grid img, .photo-slot {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 1rem;
}
.photo-slot { background: linear-gradient(145deg, var(--stone), var(--ivory)); }
.feedback-grid strong { display: block; margin: .65rem 0 .35rem; }
.feedback-grid span { color: var(--gold); font-weight: 900; font-size: .9rem; }
.faq-grid { align-items: start; }
.faq-list details {
  border-bottom: 1px solid rgba(14, 41, 39, .16);
  background: var(--white);
}
.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  cursor: pointer;
  font-weight: 900;
}
.faq-list summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list p { margin: 0; padding: 0 1rem 1rem; color: var(--muted); }
.final-cta {
  overflow: hidden;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--forest), #071b19);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.final-grid img { width: min(100%, 480px); justify-self: center; filter: drop-shadow(0 28px 48px rgba(0,0,0,.32)); }

.site-footer {
  background: #071b19;
  color: var(--ivory);
  padding: 3rem 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, .7fr) minmax(220px, .7fr);
  gap: 2rem;
}
.footer-logo { width: 120px; margin-bottom: .85rem; }
.footer-grid nav { display: grid; gap: .55rem; align-content: start; }
.footer-grid a, .legal-trigger {
  color: rgba(245, 241, 232, .86);
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.footer-grid a:hover, .legal-trigger:hover { color: var(--gold); }
.footer-disclosure {
  max-width: 720px;
  padding: 1rem;
  border: 1px solid rgba(197,170,118,.42);
  border-radius: var(--radius);
  color: var(--ivory);
}
.copyright {
  width: min(1160px, calc(100% - 32px));
  margin: 2rem auto 0;
  color: rgba(245,241,232,.62);
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(197, 170, 118, .6);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.cookie-bar p { margin: 0; color: var(--muted); }
.cookie-bar div { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-bar button {
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: .65rem .85rem;
  background: var(--forest);
  color: var(--ivory);
  cursor: pointer;
  font-weight: 800;
}
.cookie-bar button:first-child { background: var(--white); color: var(--forest); }

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(7, 27, 25, .72);
}
.legal-modal[hidden], .cookie-bar[hidden] { display: none; }
.legal-window {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 2rem));
  overflow: auto;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow);
}
.close-panel {
  position: absolute;
  right: .85rem;
  top: .85rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(14,41,39,.18);
  border-radius: 50%;
  background: var(--white);
  color: var(--forest);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}
.legal-copy h2 { padding-right: 3rem; }
.legal-copy p, .legal-copy li { color: var(--muted); }

@media (max-width: 980px) {
  .menu-button { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .6rem);
    display: grid;
    gap: .25rem;
    padding: 1rem;
    border: 1px solid rgba(14, 41, 39, .12);
    border-radius: var(--radius);
    background: var(--ivory);
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
  }
  .nav-links.is-open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .62rem; }
  .hero-grid, .split-layout, .approach-grid, .table-grid, .faq-grid, .final-grid { grid-template-columns: 1fr; }
  .facts-grid, .ingredient-cards, .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .panel-grid, .feedback-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .package-two { order: 1; }
  .package-three { order: 2; }
  .package-one { order: 3; }
  .featured-card { transform: none; }
  .cookie-bar { align-items: stretch; flex-direction: column; }
}

@media (max-width: 640px) {
  .top-bar { justify-content: flex-start; }
  .brand-logo { width: 92px; }
  .brand-link span { font-size: .95rem; }
  .hero { padding-top: 3.3rem; }
  .hero-highlights, .facts-grid, .ingredient-cards, .steps-grid { grid-template-columns: 1fr; }
  .product-stage { min-height: 390px; }
  .hero-product { width: min(96%, 360px); }
  .float-label { font-size: .78rem; max-width: 136px; }
  .label-one { left: 0; top: 9%; }
  .label-two { right: 0; top: 44%; }
  .label-three { left: 4%; bottom: 7%; }
  .label-panel { min-height: 340px; }
  .responsible-panel ul { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .offer-card img { height: 190px; }
  .featured-card img { height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
