:root {
  --terracotta: #b9583e;
  --terracotta-dark: #8d3f2d;
  --cream: #f8f3ec;
  --ivory: #fffdf9;
  --beige: #e8ded2;
  --charcoal: #252525;
  --brown: #6f5a4e;
  --gold: #c8a56a;
  --sage: #66745f;
  --line: rgba(37, 37, 37, 0.12);
  --shadow: 0 24px 60px rgba(80, 51, 36, 0.15);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(185, 88, 62, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: white;
  transform: translateY(-140%);
}

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

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

.top-bar {
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.86rem;
}

.top-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.top-bar p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0;
}

.brand span {
  color: var(--terracotta-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.brand small {
  margin-top: 5px;
  color: var(--brown);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--brown);
  font-size: 0.93rem;
  font-weight: 650;
}

.main-nav a:hover,
.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--terracotta);
}

.order-btn,
.checkout-btn,
.secondary-btn,
.text-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.order-btn,
.checkout-btn {
  padding: 13px 20px;
  color: white;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  box-shadow: 0 12px 26px rgba(141, 63, 45, 0.25);
}

.order-btn:hover,
.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(141, 63, 45, 0.3);
}

.secondary-btn {
  border: 1px solid var(--line);
  padding: 12px 18px;
  color: var(--terracotta-dark);
  background: white;
}

.text-link {
  min-height: 0;
  color: var(--terracotta-dark);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--charcoal);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.mobile-nav a {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.section,
.section-band {
  padding: 94px 0;
}

.hero.section-band {
  padding: 62px 0 56px;
}

.section-soft,
.section-band {
  background: linear-gradient(135deg, var(--cream), #fbf7f1);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.93), rgba(255, 253, 249, 0.55)),
    linear-gradient(135deg, rgba(200, 165, 106, 0.12), rgba(102, 116, 95, 0.1));
  pointer-events: none;
}

.hero-grid,
.final-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: #2b211d;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5.2vw, 4.3rem);
}

h2 {
  font-size: clamp(2.15rem, 3.6vw, 4rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-lede,
.section-heading > p,
.intro-grid p,
.about-grid p,
.final-grid p {
  color: var(--brown);
  font-size: 1.08rem;
}

.hero-lede {
  max-width: 650px;
  font-size: 1.02rem;
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 18px;
}

.check-list span,
.safe-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(185, 88, 62, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.75);
  color: #4d3930;
  font-size: 0.9rem;
  font-weight: 750;
}

.check-list span::before,
.safe-row span::before {
  content: "✓";
  color: var(--sage);
  font-weight: 900;
}

.rating-line {
  color: var(--terracotta-dark);
  font-weight: 800;
}

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

.market-note,
.quiet-note,
.notice-text {
  color: var(--brown);
  font-size: 0.94rem;
}

.product-stage,
.product-frame {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 88, 62, 0.16);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 42%, #ffffff 0 35%, var(--cream) 78%);
  box-shadow: var(--shadow);
}

.product-stage img {
  width: min(88%, 450px);
  filter: drop-shadow(0 28px 24px rgba(52, 37, 30, 0.18));
}

.offer-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.hero-offer {
  margin-top: -22px;
  margin-inline: 30px;
  position: relative;
  z-index: 1;
}

.offer-card div {
  padding: 13px 15px;
  background: var(--ivory);
}

.offer-card span {
  display: block;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.offer-card strong {
  display: block;
  margin-top: 3px;
  font-size: 1.16rem;
}

.old-price,
del {
  color: rgba(37, 37, 37, 0.5);
  text-decoration-thickness: 2px;
}

.offer-total {
  grid-column: 1 / -1;
}

.trust-strip {
  padding: 28px 0;
  border-block: 1px solid var(--line);
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-grid div {
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border-left: 2px solid var(--beige);
}

.trust-grid strong {
  color: var(--terracotta-dark);
  font-size: 1.45rem;
}

.trust-grid span {
  color: var(--brown);
  font-size: 0.9rem;
}

.intro-grid,
.about-grid,
.steps-grid,
.review-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.info-box,
.important-note {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid rgba(102, 116, 95, 0.22);
  border-radius: var(--radius);
  background: rgba(102, 116, 95, 0.08);
  color: #354333;
  font-weight: 700;
}

.product-frame {
  min-height: 520px;
  background: radial-gradient(circle at 50% 44%, #ffffff 0 28%, #f3e7d8 76%);
}

.product-frame img {
  width: min(88%, 430px);
}

.facts-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.facts-list div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.facts-list dt {
  color: var(--brown);
  font-weight: 800;
}

.facts-list dd {
  margin: 0;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.benefit-grid,
.quality-grid,
.confidence-grid,
.reviews-grid,
.packages {
  display: grid;
  gap: 20px;
}

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

.benefit-card,
.quality-card,
.trust-box,
.review-card,
.package-card,
.score-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 12px 36px rgba(70, 47, 36, 0.08);
}

.benefit-card,
.quality-card,
.trust-box {
  padding: 28px;
}

.benefit-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.benefit-card p,
.quality-card p,
.trust-box p,
.review-card p,
.package-card p {
  margin-bottom: 0;
  color: var(--brown);
}

.quality-grid,
.confidence-grid,
.packages {
  grid-template-columns: repeat(3, 1fr);
}

.steps-list {
  display: grid;
  gap: 16px;
}

.steps-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

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

.steps-list p {
  margin: 0;
  color: var(--brown);
}

.package-section {
  background:
    linear-gradient(180deg, var(--ivory), var(--cream));
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 680px;
  padding: 24px;
}

.package-card img {
  height: 230px;
  width: 100%;
  object-fit: contain;
  margin: 18px auto 14px;
  filter: drop-shadow(0 18px 20px rgba(60, 41, 31, 0.16));
}

.featured-package {
  border: 2px solid var(--terracotta);
  transform: translateY(-18px);
  background: linear-gradient(180deg, white, #fff8f1);
}

.package-badge {
  align-self: flex-start;
  display: inline-flex;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(185, 88, 62, 0.22);
  border-radius: var(--radius);
  color: var(--terracotta-dark);
  background: rgba(185, 88, 62, 0.08);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.strong-badge {
  color: white;
  background: var(--terracotta-dark);
}

.price-row,
.shipping-line,
.total-line,
.price-detail,
.saving-line {
  margin-top: 9px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--brown);
}

.main-price {
  margin-top: 8px;
  color: var(--terracotta-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.price-detail,
.shipping-line,
.total-line {
  font-weight: 800;
}

.shipping-line.free {
  color: var(--sage);
  text-transform: uppercase;
}

.saving-line {
  color: var(--terracotta-dark) !important;
  font-weight: 800;
}

.checkout-btn {
  width: 100%;
  margin-top: auto;
}

.safe-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.countdown-section {
  padding: 46px 0;
  color: white;
  background: linear-gradient(135deg, #2d2926, #57362c);
}

.countdown-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
}

.countdown-section h2,
.countdown-section .eyebrow {
  color: white;
}

.countdown-section p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.timer-box {
  min-width: 154px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.timer-box span {
  display: block;
  font-size: 2rem;
  font-weight: 900;
}

.timer-box small {
  color: rgba(255, 255, 255, 0.72);
}

.score-card {
  padding: 26px;
}

.score-card div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 18px;
}

.score-card i {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--beige);
}

.score-card i::before {
  content: "";
  display: block;
  width: var(--score);
  height: 100%;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
}

.compact-heading {
  margin-top: 64px;
}

.reviews-grid {
  grid-template-columns: repeat(2, 1fr);
}

.review-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 24px;
}

.review-card:last-child {
  grid-column: 1 / -1;
}

.avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--terracotta-dark);
  font-weight: 900;
}

.review-card strong,
.review-card span {
  display: block;
  margin-top: 12px;
}

.review-card span {
  color: var(--sage);
  font-size: 0.87rem;
  font-weight: 800;
}

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

details {
  border-bottom: 1px solid var(--line);
  background: white;
}

summary {
  cursor: pointer;
  padding: 22px 6px;
  color: #2b211d;
  font-weight: 850;
  list-style: none;
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--terracotta-dark);
  font-size: 1.4rem;
  line-height: 1;
}

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

details p {
  max-width: 760px;
  margin: 0;
  padding: 0 6px 22px;
  color: var(--brown);
}

.final-cta {
  position: relative;
  overflow: hidden;
}

.final-grid img {
  width: min(100%, 560px);
  justify-self: center;
  filter: drop-shadow(0 28px 28px rgba(54, 38, 28, 0.18));
}

.offer-highlight {
  color: var(--terracotta-dark) !important;
  font-size: 1.35rem !important;
  font-weight: 900;
}

.site-footer {
  padding: 58px 0 88px;
  color: rgba(255, 255, 255, 0.76);
  background: #24201e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  gap: 40px;
}

.footer-brand span,
.footer-brand small {
  color: white;
}

.footer-grid nav {
  display: grid;
  gap: 10px;
}

.footer-grid button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.footer-disclosure {
  max-width: 420px;
  font-size: 0.9rem;
}

.mobile-order-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 45;
  display: none;
  padding: 12px 16px;
  background: rgba(255, 253, 249, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.mobile-order-bar .order-btn {
  width: 100%;
}

.exit-panel,
.info-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(24, 20, 18, 0.62);
}

.exit-panel.is-visible,
.info-modal.is-visible {
  display: flex;
}

.exit-window,
.info-window {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.exit-window {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
}

.exit-window img {
  width: 260px;
}

.exit-window h2,
.info-window h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.exit-window strong {
  color: var(--terracotta-dark);
  font-size: 1.2rem;
}

.info-window {
  padding: 34px;
}

.info-window p {
  color: var(--brown);
}

.close-panel {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--charcoal);
  background: white;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .main-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero-grid,
  .final-grid,
  .intro-grid,
  .about-grid,
  .steps-grid,
  .review-layout,
  .countdown-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .benefit-grid,
  .quality-grid,
  .confidence-grid,
  .packages,
  .reviews-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-package {
    transform: none;
  }

  .countdown-inner {
    text-align: center;
  }

  .timer-box {
    justify-self: center;
  }

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .top-bar-inner {
    font-size: 0.78rem;
  }

  .section,
  .section-band {
    padding: 68px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand span {
    font-size: 1.65rem;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 3.9rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .panel-actions {
    flex-direction: column;
  }

  .product-stage,
  .product-frame {
    min-height: 360px;
  }

  .hero-offer {
    margin: 14px 0 0;
  }

  .offer-card,
  .benefit-grid,
  .quality-grid,
  .confidence-grid,
  .packages,
  .reviews-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .facts-list div,
  .review-card,
  .steps-list article {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .package-card img {
    height: 210px;
  }

  .review-card:last-child {
    grid-column: auto;
  }

  .exit-window {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .exit-window img {
    width: 210px;
    justify-self: center;
  }

  .mobile-order-bar {
    display: block;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}
