:root {
  --ivory: #f7f3ea;
  --navy: #18304f;
  --burgundy: #922b32;
  --green: #527a45;
  --gold: #b99a5e;
  --stone: #e7e1d6;
  --charcoal: #202628;
  --white: #ffffff;
  --ink-soft: #5b625f;
  --shadow: 0 22px 60px rgba(24, 48, 79, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(185, 154, 94, 0.13), transparent 30rem),
    linear-gradient(180deg, var(--ivory) 0%, #fffaf1 32rem, var(--white) 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(32, 38, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 38, 40, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
  z-index: -1;
}

body.nav-open {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(185, 154, 94, 0.75);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(3.1rem, 8vw, 3.4rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 3.00rem);
}

h3 {
  font-size: 1.65rem;
}

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  background: var(--navy);
  color: var(--white);
  z-index: 20;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.info-bar {
  padding: 0.7rem 1rem;
  background: var(--navy);
  color: var(--ivory);
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 234, 0.94);
  border-bottom: 1px solid rgba(185, 154, 94, 0.35);
  backdrop-filter: blur(14px);
}

.nav-shell {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a,
.footer-links a,
.footer-links button {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.header-actions,
.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.main-action,
.mini-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(32, 38, 40, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.main-action:hover,
.mini-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(32, 38, 40, 0.18);
}

.mini-action {
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  font-size: 0.78rem;
}

.pressure-action {
  background: var(--navy);
}

.sugar-action {
  background: var(--burgundy);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(24, 48, 79, 0.25);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
}

.toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero-section {
  width: min(1240px, calc(100% - 2rem));
  min-height: calc(100vh - 120px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 7rem) 0 clamp(2.5rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.section-kicker,
.formula-label,
.offer-badge,
.shipping-note,
.save-text {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 1.3rem 0 0;
  margin: 0;
  max-width: 620px;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 1.45rem;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.hero-gallery {
  position: relative;
  min-height: 550px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 1rem;
}

.arch-frame {
  position: relative;
  margin: 0;
  min-height: 430px;
  padding: 3.2rem 1.5rem 1.5rem;
  display: grid;
  place-items: end center;
  border: 1px solid rgba(185, 154, 94, 0.65);
  border-radius: 999px 999px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 243, 234, 0.75)),
    repeating-linear-gradient(135deg, rgba(185, 154, 94, 0.07) 0 2px, transparent 2px 9px);
  box-shadow: var(--shadow);
}

.arch-frame img {
  width: min(90%, 248px);
  filter: drop-shadow(0 22px 24px rgba(32, 38, 40, 0.2));
}

.arch-frame figcaption {
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.sugar-frame {
  transform: translateY(2rem);
}

.pressure-frame {
  transform: translateY(-1rem);
}

.leaf-mark {
  position: absolute;
  left: 48%;
  top: 38%;
  width: 78px;
  height: 150px;
  border: 2px solid rgba(82, 122, 69, 0.55);
  border-radius: 100% 0 100% 0;
  transform: rotate(35deg);
  background: rgba(82, 122, 69, 0.08);
}

.leaf-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 12%;
  width: 2px;
  height: 78%;
  background: rgba(82, 122, 69, 0.42);
  transform: rotate(-14deg);
}

.section-wrap {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

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

.section-heading p:not(.section-kicker) {
  color: var(--ink-soft);
}

.selection-grid,
.purchase-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.formula-card,
.purchase-panel,
.review-card,
.offer-card,
.responsible-card,
.comparison-panel {
  border: 1px solid rgba(185, 154, 94, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.formula-card {
  min-height: 440px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.product-stage,
.detail-media {
  display: grid;
  place-items: center;
  min-height: 310px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(247, 243, 234, 0.9), rgba(231, 225, 214, 0.7));
  border: 1px solid rgba(185, 154, 94, 0.45);
}

.product-stage img,
.detail-media img {
  width: min(78%, 248px);
  filter: drop-shadow(0 20px 20px rgba(32, 38, 40, 0.18));
}

.pressure-card {
  border-top: 5px solid var(--navy);
}

.sugar-card {
  border-top: 5px solid var(--burgundy);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
}

.compare-table caption {
  padding: 1rem;
  text-align: left;
  font-weight: 800;
  color: var(--navy);
}

.compare-table th,
.compare-table td {
  padding: 1rem;
  border-top: 1px solid rgba(185, 154, 94, 0.28);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: var(--white);
  background: var(--navy);
}

.compare-table tbody th {
  color: var(--navy);
  width: 24%;
}

.product-detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.sugar-detail {
  grid-template-columns: 1.2fr 0.8fr;
}

.detail-copy p {
  color: var(--ink-soft);
}

.routine-band,
.guarantee-band,
.final-cta {
  background: var(--navy);
  color: var(--ivory);
}

.routine-band h2,
.guarantee-band h2,
.final-cta h2 {
  color: var(--ivory);
}

.routine-band .section-kicker,
.guarantee-band .section-kicker,
.final-cta .section-kicker {
  color: #e8cf98;
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 2rem 0;
  list-style: none;
}

.journey-list li {
  min-height: 230px;
  padding: 1.25rem;
  border: 1px solid rgba(231, 225, 214, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.journey-list span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
}

.journey-list strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.journey-line {
  margin: 0;
  color: #f2e6d2;
  font-weight: 800;
}

.responsible-card {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.selector-tabs {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.35rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(185, 154, 94, 0.45);
  border-radius: var(--radius);
  background: var(--white);
}

.selector-tab {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 0.7rem 1rem;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.selector-tab.is-active {
  background: var(--navy);
  color: var(--white);
}

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

.offer-card {
  position: relative;
  min-height: 620px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.featured-card {
  border-width: 2px;
  border-color: var(--gold);
  transform: translateY(-0.6rem);
}

.sugar-offer .offer-badge {
  color: var(--burgundy);
}

.bottle-row {
  width: 100%;
  min-height: 190px;
  margin: 0.5rem 0 1rem;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0;
}

.bottle-row img {
  width: 76px;
  filter: drop-shadow(0 12px 12px rgba(32, 38, 40, 0.15));
}

.five-bottles img {
  margin-inline: -14px;
}

.three-bottles img {
  width: 88px;
  margin-inline: -8px;
}

.two-bottles img {
  width: 104px;
  margin-inline: -4px;
}

.price-text {
  margin: 0.2rem 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
}

.offer-card .main-action {
  width: 100%;
  margin-top: auto;
}

.pricing-disclosure {
  max-width: 880px;
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.purchase-panel {
  min-height: 300px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.4rem;
  align-items: center;
}

.purchase-panel img {
  max-height: 230px;
  margin: auto;
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: center;
}

.seal-box {
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(231, 225, 214, 0.6);
  border-radius: 50%;
  color: #f2e6d2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
}

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

.review-card {
  min-height: 220px;
  padding: 1.4rem;
}

.accordion-list {
  display: grid;
  gap: 0.75rem;
}

.accordion-item {
  border: 1px solid rgba(185, 154, 94, 0.45);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  min-height: 64px;
  border: 0;
  padding: 1rem 3rem 1rem 1rem;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.accordion-button::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
}

.accordion-button[aria-expanded="true"]::after {
  content: "−";
}

.accordion-panel {
  padding: 0 1rem 1rem;
  color: var(--ink-soft);
}

.final-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.site-footer {
  background: #11181a;
  color: #d8ded7;
}

.footer-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-inner p {
  max-width: 56ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
  gap: 0.8rem 1rem;
}

.footer-links a {
  color: var(--ivory);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(231, 225, 214, 0.18);
}

.footer-bottom section {
  padding: 1rem;
  border: 1px solid rgba(231, 225, 214, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.footer-bottom h2 {
  margin-bottom: 0.55rem;
  color: var(--ivory);
  font-size: 1.35rem;
}

.footer-bottom p {
  margin: 0;
  color: #d8ded7;
  font-size: 0.88rem;
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
    border: 1px solid rgba(185, 154, 94, 0.45);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-panel.is-open {
    display: grid;
  }

  .nav-links,
  .header-actions {
    display: grid;
  }

  .hero-section,
  .product-detail,
  .sugar-detail,
  .responsible-card,
  .final-inner,
  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-gallery {
    min-height: 480px;
  }

  .journey-list,
  .offer-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-card {
    transform: none;
  }

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

@media (max-width: 760px) {
  .info-bar {
    font-size: 0.78rem;
  }

  .nav-shell {
    min-height: 74px;
  }

  .hero-section {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .arch-frame,
  .sugar-frame,
  .pressure-frame {
    min-height: 360px;
    transform: none;
  }

  .leaf-mark {
    display: none;
  }

  .hero-points,
  .selection-grid,
  .formula-card,
  .purchase-grid,
  .purchase-panel,
  .journey-list,
  .offer-grid,
  .review-grid,
  .check-list,
  .guarantee-inner {
    grid-template-columns: 1fr;
  }

  .compare-table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
  }

  .compare-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .compare-table tr {
    margin: 0.75rem;
    border: 1px solid rgba(185, 154, 94, 0.35);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .compare-table tbody th {
    width: auto;
    background: var(--ivory);
  }

  .compare-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.25rem;
    color: var(--navy);
    font-weight: 900;
  }

  .selector-tabs {
    width: 100%;
    display: grid;
  }

  .purchase-panel {
    text-align: center;
  }

  .purchase-panel img {
    max-height: 210px;
  }

  .final-actions,
  .main-action {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
