:root {
  --ivory: #fffaf4;
  --paper: #ffffff;
  --mist: #f5f6f8;
  --silver: #d9dde3;
  --charcoal: #27272b;
  --ink: #111216;
  --muted: #666a73;
  --coral: #e84849;
  --coral-soft: #fff0ee;
  --blush: #ffd8d3;
  --wine: #8f2028;
  --sage: #61725a;
  --line: rgba(39, 39, 43, 0.12);
  --glow: 0 20px 60px rgba(107, 47, 52, 0.13);
  --small-glow: 0 12px 28px rgba(37, 37, 40, 0.08);
  --font-main: "Inter", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--ivory) 0%, #ffffff 42%, #f7f7f8 100%);
  color: var(--charcoal);
  font-family: var(--font-main);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.notice-bar {
  background: #242427;
  color: #fff7f3;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.65rem 1rem;
  text-align: center;
}

.site-top {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 244, 0.88);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1.4rem;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo-wrap {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  flex: 0 0 auto;
  height: 3.1rem;
}

.logo-wrap img {
  height: 100%;
  max-width: min(15rem, 42vw);
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  align-items: center;
  color: #4f535c;
  display: flex;
  flex: 1;
  font-size: 0.9rem;
  font-weight: 700;
  gap: clamp(0.6rem, 1.5vw, 1.35rem);
  justify-content: center;
}

.main-nav a {
  padding: 0.2rem 0;
  position: relative;
}

.main-nav a::after {
  background: var(--coral);
  bottom: -0.18rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.offer-button,
.light-button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 3rem;
  padding: 0.86rem 1.25rem;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.offer-button {
  background: linear-gradient(135deg, var(--coral), #bd2732);
  box-shadow: 0 12px 28px rgba(205, 52, 58, 0.24);
  color: white;
}

.offer-button:hover,
.light-button:hover {
  transform: translateY(-2px);
}

.light-button {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--small-glow);
  color: var(--charcoal);
}

.section-space {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
}

.hero-section {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: auto;
  overflow: hidden;
  padding-bottom: clamp(0.9rem, 2vw, 1.15rem);
  padding-top: clamp(1.4rem, 3vw, 1.9rem);
}

.eyebrow {
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.3rem, 3.2vw, 2.85rem);
  letter-spacing: 0;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 2.4rem);
  letter-spacing: 0;
  margin-bottom: 1rem;
}

h3 {
  color: var(--ink);
  font-size: 1.07rem;
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.hero-sub {
  color: #4c4f57;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  max-width: 680px;
}

.mobile-bottle {
  display: none;
}

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

.check-list li {
  align-items: center;
  color: #3f4249;
  display: flex;
  font-weight: 650;
  gap: 0.7rem;
}

.check-list li::before {
  align-items: center;
  background: #e9f3e5;
  border: 1px solid rgba(97, 114, 90, 0.2);
  border-radius: 50%;
  color: var(--sage);
  content: "✓";
  display: inline-flex;
  flex: 0 0 1.35rem;
  font-size: 0.8rem;
  font-weight: 900;
  height: 1.35rem;
  justify-content: center;
  width: 1.35rem;
}

.action-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.trust-strip span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 37, 42, 0.05);
  color: #52565f;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.34rem 0.52rem;
}

.product-stage {
  min-height: 405px;
  position: relative;
}

.soft-orbit {
  border-radius: 50%;
  filter: blur(1px);
  position: absolute;
}

.soft-orbit.one {
  background: linear-gradient(135deg, var(--blush), rgba(232, 72, 73, 0.2));
  height: 26rem;
  right: -4rem;
  top: 2rem;
  width: 26rem;
}

.soft-orbit.two {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(217, 221, 227, 0.8));
  bottom: 2rem;
  height: 18rem;
  left: -1rem;
  width: 18rem;
}

.product-panel {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--glow);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: center;
  min-height: 385px;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-bottle {
  filter: drop-shadow(0 26px 28px rgba(54, 34, 34, 0.24));
  max-height: 250px;
  object-fit: contain;
}

.seal-row {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.seal-row img {
  height: 4.6rem;
  object-fit: contain;
  width: 4.6rem;
}

.soft-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 246, 248, 0.96) 10%, rgba(245, 246, 248, 0.96) 90%, rgba(255, 255, 255, 0));
  max-width: none;
}

.soft-band > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

.section-intro {
  margin: 0 auto 2.4rem;
  max-width: 760px;
  text-align: center;
}

.section-intro p:not(.eyebrow) {
  color: var(--muted);
}

.card-grid,
.ingredient-grid,
.review-grid,
.price-grid,
.step-grid {
  display: grid;
  gap: 1rem;
}

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

.info-card,
.stat-card,
.step-card,
.ingredient-tile,
.review-tile,
.price-panel,
.guarantee-card,
.glass-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--small-glow);
}

.info-card {
  min-height: 220px;
  padding: 1.35rem;
}

.info-card p,
.step-card p,
.ingredient-tile p,
.review-tile p,
.glass-panel p,
.guarantee-card p,
.product-story p,
.split-section p {
  color: var(--muted);
}

.icon-pill {
  align-items: center;
  background: var(--coral-soft);
  border-radius: 999px;
  color: var(--wine);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  height: 2.1rem;
  justify-content: center;
  margin-bottom: 1.1rem;
  width: 2.8rem;
}

.split-section {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

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

.stat-card {
  color: var(--charcoal);
  font-weight: 750;
  min-height: 128px;
  padding: 1.25rem;
}

.product-story {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
}

.story-media {
  align-items: center;
  background: radial-gradient(circle at 50% 45%, var(--blush), #ffffff 70%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--glow);
  display: flex;
  justify-content: center;
  min-height: 430px;
  padding: 2rem;
}

.story-media img {
  max-height: 320px;
  object-fit: contain;
}

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

.step-card {
  min-height: 250px;
  padding: 1.55rem;
  position: relative;
}

.step-card span {
  color: var(--coral);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.science-section {
  max-width: 1080px;
}

.glass-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 240, 238, 0.72));
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
}

.glass-panel::after {
  background: linear-gradient(135deg, rgba(232, 72, 73, 0.18), rgba(217, 221, 227, 0.4));
  border-radius: 50%;
  content: "";
  height: 16rem;
  position: absolute;
  right: -6rem;
  top: -6rem;
  width: 16rem;
}

.note-line,
.fine-note {
  color: #5c606a;
  font-size: 0.92rem;
}

.note-line {
  background: #ffffff;
  border-left: 3px solid var(--coral);
  margin-bottom: 0;
  margin-top: 1.3rem;
  padding: 0.9rem 1rem;
}

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

.ingredient-tile {
  min-height: 230px;
  padding: 1.35rem;
}

.wide-tile {
  grid-column: span 3;
  min-height: auto;
}

.ingredient-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--charcoal), #575b64);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 900;
  height: 2.8rem;
  justify-content: center;
  margin-bottom: 1rem;
  width: 2.8rem;
}

.guarantee-section {
  padding-top: 1rem;
}

.guarantee-card {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 180px minmax(0, 1fr);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.guarantee-card img {
  max-height: 150px;
  object-fit: contain;
}

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

.review-tile {
  padding: 1.25rem;
}

.review-tile img {
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(37, 37, 42, 0.1);
  height: 76px;
  margin-bottom: 1rem;
  object-fit: cover;
  width: 76px;
}

.review-tile strong,
.review-tile span {
  display: block;
}

.review-tile span {
  color: var(--muted);
  font-size: 0.88rem;
}

.fine-note {
  margin: 1.5rem auto 0;
  max-width: 780px;
  text-align: center;
}

.count-line {
  color: var(--muted);
  font-weight: 700;
}

.count-box {
  background: var(--ink);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  min-width: 5rem;
  justify-content: center;
  padding: 0.25rem 0.65rem;
}

.price-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-panel {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  position: relative;
}

.featured-panel {
  border-color: rgba(232, 72, 73, 0.34);
  box-shadow: 0 22px 52px rgba(198, 44, 53, 0.16);
  transform: translateY(-0.7rem);
}

.package-label {
  align-self: flex-start;
  background: var(--coral-soft);
  border: 1px solid rgba(232, 72, 73, 0.18);
  border-radius: 999px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.35rem 0.75rem;
}

.price-panel img {
  align-self: center;
  height: 170px;
  margin: 1.3rem 0 1rem;
  object-fit: contain;
}

.price-panel ul {
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
}

.price-panel li {
  border-bottom: 1px solid rgba(39, 39, 43, 0.08);
  padding-bottom: 0.35rem;
}

.price-panel strong {
  color: var(--ink);
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  margin: auto 0 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin: 0 auto;
  max-width: 900px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(37, 37, 42, 0.04);
  overflow: hidden;
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  padding: 1.05rem 1.2rem;
  text-align: left;
  width: 100%;
}

.faq-question span {
  align-items: center;
  background: var(--mist);
  border-radius: 50%;
  color: var(--coral);
  display: inline-flex;
  flex: 0 0 1.8rem;
  font-size: 1.2rem;
  height: 1.8rem;
  justify-content: center;
  margin-left: 1rem;
  width: 1.8rem;
}

.faq-answer {
  display: none;
  padding: 0 1.2rem 1.1rem;
}

.faq-answer p {
  color: var(--muted);
  margin: 0;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question span {
  background: var(--coral);
  color: #ffffff;
}

.final-cta {
  max-width: none;
  padding-top: 2rem;
}

.final-inner {
  background: linear-gradient(135deg, #2d2d31, #4f2930 58%, #bc3540);
  border-radius: 8px;
  box-shadow: var(--glow);
  color: white;
  margin: 0 auto;
  max-width: 1120px;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.final-inner h2 {
  color: white;
}

.final-inner p {
  color: rgba(255, 255, 255, 0.84);
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.site-foot {
  background: #ffffff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 2rem clamp(1rem, 4vw, 4rem) 6rem;
  text-align: center;
}

.foot-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
  justify-content: center;
  margin-top: 0.8rem;
}

.foot-links a,
.legal-trigger {
  background: transparent;
  border: 0;
  color: #444851;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.legal-modal,
.exit-box {
  align-items: center;
  background: rgba(20, 20, 22, 0.48);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 1rem;
  position: fixed;
  z-index: 100;
}

.legal-modal.show,
.exit-box.show {
  display: flex;
}

.modal-shell,
.exit-shell {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  max-width: 620px;
  position: relative;
}

.modal-shell {
  padding: 2rem;
}

.modal-shell p {
  color: var(--muted);
  margin-bottom: 0;
}

.close-control,
.exit-close {
  align-items: center;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--charcoal);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.35rem;
  height: 2.2rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  width: 2.2rem;
}

.exit-shell {
  align-items: center;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 160px minmax(0, 1fr);
  padding: 2rem;
  width: min(680px, 100%);
}

.exit-shell img {
  max-height: 190px;
  object-fit: contain;
}

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

.mobile-cta {
  bottom: 0;
  display: none;
  left: 0;
  padding: 0.75rem;
  position: fixed;
  right: 0;
  z-index: 60;
}

.mobile-cta .offer-button {
  width: 100%;
}

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .hero-section,
  .split-section,
  .product-story {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .product-stage {
    min-height: auto;
  }

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

  .step-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .featured-panel {
    transform: none;
  }

  .wide-tile {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .site-top {
    gap: 0.75rem;
    padding: 0.8rem 1rem;
  }

  .site-top > .offer-button {
    display: none;
  }

  .notice-bar {
    font-size: 0.72rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  .section-space {
    padding: 3.5rem 1rem;
  }

  .product-panel {
    min-height: 440px;
    padding: 1.4rem;
  }

  .mobile-bottle {
    display: block;
    filter: drop-shadow(0 16px 18px rgba(54, 34, 34, 0.2));
    margin: 0.7rem auto 1rem;
    max-height: 155px;
    object-fit: contain;
  }

  .hero-bottle {
    max-height: 295px;
  }

  .seal-row img {
    height: 3.6rem;
    width: 3.6rem;
  }

  .six-grid,
  .ingredient-grid,
  .review-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .wide-tile {
    grid-column: auto;
  }

  .guarantee-card,
  .exit-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-card img,
  .exit-shell img {
    justify-self: center;
  }

  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .mobile-cta {
    display: block;
  }
}
