:root {
  --paper: #f5ead8;
  --paper-soft: #fff9ef;
  --paper-deep: #ead9bd;
  --ink: #241d18;
  --muted: #6f5f52;
  --wine: #7f232a;
  --wine-dark: #54191c;
  --gold: #bd8c37;
  --pine: #153b35;
  --sage: #d9dfcf;
  --line: #d9bc88;
  --white: #fffdf7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

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

.announce {
  background: var(--wine);
  color: #fff;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 249, 239, 0.94);
  border-bottom: 1px solid rgba(127, 35, 42, 0.16);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--wine-dark);
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.nav-cta {
  min-height: 42px;
  padding: 10px 16px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 5.25rem;
}

h2 {
  font-size: 3.25rem;
}

h3 {
  font-size: 1.55rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.12rem;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inverse {
  color: var(--sage);
}

.cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--wine);
  color: #fff;
  padding: 14px 22px;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(84, 25, 28, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: var(--wine-dark);
  box-shadow: 0 18px 42px rgba(84, 25, 28, 0.22);
}

.text-link {
  color: var(--wine-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

section.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 92px 0 72px;
  background: var(--paper-soft) url("assets/produto-capa.jpg") center right / cover no-repeat;
}

section.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 249, 239, 0.78);
}

section.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-lead {
  max-width: 620px;
  margin-top: 20px;
  color: #574a40;
  font-size: 1.18rem;
}

.hero-buy {
  display: flex;
  max-width: 780px;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.price-stack {
  display: grid;
  min-width: 156px;
  gap: 0;
}

.price-stack .old,
.old {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: line-through;
}

.price-stack strong,
.price {
  color: var(--wine);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.tag,
.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(127, 35, 42, 0.22);
  border-radius: 8px;
  background: var(--paper-soft);
  color: var(--wine-dark);
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-points {
  display: flex;
  max-width: 760px;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.hero-points li {
  border: 1px solid rgba(127, 35, 42, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.78);
  padding: 10px 12px;
  color: var(--wine-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.countdown {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.timebox {
  min-width: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.86);
  padding: 9px 10px;
  text-align: center;
}

.timebox strong {
  display: block;
  color: var(--wine);
  font-size: 1.35rem;
  line-height: 1;
}

.timebox span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.proof-strip {
  background: var(--pine);
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding: 22px;
}

.proof-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid strong {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1;
}

.proof-grid span {
  color: var(--sage);
  font-size: 0.86rem;
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

.section-intro,
.include-section,
.faq-section {
  background: var(--paper-soft);
}

.intro-grid,
.split,
.offer-grid,
.faq-grid,
.grid-2,
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head .lead {
  margin-top: 14px;
}

.compact {
  max-width: 660px;
}

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

.note-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(127, 35, 42, 0.16);
  padding: 0 0 16px;
}

.note-row span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.note-row p {
  color: var(--muted);
  font-weight: 700;
}

.gallery-section {
  background: var(--paper);
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 24px;
  align-items: start;
}

.preview-stage {
  margin: 0;
}

.preview-stage img,
.image-frame img {
  width: 100%;
  aspect-ratio: 1491 / 1055;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(84, 25, 28, 0.12);
}

.preview-stage figcaption {
  max-width: 820px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.preview-tabs {
  display: grid;
  gap: 10px;
}

.preview-tab {
  min-height: 48px;
  border: 1px solid rgba(127, 35, 42, 0.18);
  border-radius: 8px;
  background: var(--paper-soft);
  color: var(--wine-dark);
  padding: 10px 12px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.preview-tab:hover,
.preview-tab.is-active {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}

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

.card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.card-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card h3 {
  margin-bottom: 12px;
}

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

.deep-section {
  background: var(--pine);
  color: #fff;
}

.deep-section h2 {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.check-list p {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  color: #eef4e7;
  font-weight: 700;
}

.check-list span {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.image-frame {
  margin: 0;
}

.use-section {
  background: var(--paper-soft);
}

.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.steps div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(127, 35, 42, 0.18);
  padding-top: 14px;
}

.steps strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
}

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

.offer-section {
  background: var(--paper);
}

.offer-grid {
  grid-template-columns: 1.25fr 0.75fr;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  padding: 34px;
}

.offer-copy h2 {
  margin-top: 14px;
  margin-bottom: 16px;
}

.offer-badge {
  display: inline-flex;
  border: 1px solid rgba(127, 35, 42, 0.22);
  border-radius: 8px;
  background: #f2e1c3;
  color: var(--wine-dark);
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.mini-list p {
  border-left: 3px solid var(--gold);
  padding-left: 10px;
  color: var(--muted);
  font-weight: 800;
}

.checkout-box {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(127, 35, 42, 0.18);
  border-radius: 8px;
  background: var(--paper-soft);
  padding: 24px;
}

.checkout-label {
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-price {
  display: grid;
  gap: 4px;
}

.checkout-price span {
  color: var(--muted);
  text-decoration: line-through;
}

.checkout-price strong {
  color: var(--wine);
  font-size: 2.5rem;
  line-height: 1;
}

.micro {
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-grid {
  align-items: start;
}

.faq {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 17px 18px;
}

summary {
  color: var(--wine-dark);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin-top: 10px;
  color: var(--muted);
}

.footer {
  background: #201c18;
  color: #f5ead8;
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.footer a {
  color: #fff;
}

.sticky {
  display: none;
}

a[aria-disabled="true"] {
  opacity: 0.62;
  cursor: not-allowed;
}

.cream {
  background: var(--paper-soft);
}

.bullets,
.list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.bullet,
.list-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check {
  width: 26px;
  height: 26px;
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 999px;
  background: #f1dfc2;
  color: var(--wine);
  font-size: 0.85rem;
  font-weight: 900;
}

.price-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 18px;
  flex-wrap: wrap;
}

main.hero {
  min-height: 100vh;
  padding: 80px 0;
  background: var(--paper-soft);
}

.thank-you {
  max-width: 820px;
  text-align: center;
}

.thank-you > img {
  width: 96px;
  margin: 0 auto 24px;
}

.thank-you .lead {
  margin: 0 auto;
}

.next-steps {
  margin: 34px 0;
  text-align: left;
}

@media (max-width: 980px) {
  h1 {
    max-width: 620px;
    font-size: 4rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .proof-grid,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .preview-layout,
  .intro-grid,
  .split,
  .offer-grid,
  .faq-grid,
  .grid-2,
  .hero-grid,
  .reverse {
    grid-template-columns: 1fr;
  }

  .preview-tabs {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .preview-tab {
    text-align: center;
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .announce {
    font-size: 0.8rem;
  }

  .nav {
    min-height: 62px;
  }

  .brand span {
    max-width: 172px;
    line-height: 1.15;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  section.hero {
    min-height: 0;
    padding: 58px 0 54px;
    background-position: center;
  }

  section.hero::before {
    background: rgba(255, 249, 239, 0.84);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-lead,
  .lead {
    font-size: 1rem;
  }

  .hero-buy {
    display: grid;
    gap: 14px;
  }

  .hero-buy .cta {
    width: 100%;
  }

  .proof-grid,
  .grid-3,
  .mini-list {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    min-height: 88px;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 18px 0;
  }

  .section {
    padding: 62px 0;
  }

  .card {
    min-height: 0;
  }

  .offer-grid {
    padding: 22px;
  }

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

  .sticky {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    border-top: 1px solid rgba(127, 35, 42, 0.16);
    background: rgba(255, 249, 239, 0.94);
    padding: 10px 14px;
    backdrop-filter: blur(10px);
  }

  .sticky .cta {
    width: 100%;
  }
}

/* Visual language derived from the printed calendar artwork. */
:root {
  --paper: #f4e7d2;
  --paper-soft: #fff8eb;
  --paper-deep: #e7d0aa;
  --ink: #3b211a;
  --muted: #765e50;
  --wine: #79221d;
  --wine-dark: #421411;
  --moon-red: #94281f;
  --earth: #783b27;
  --earth-dark: #351c16;
  --gold: #b9822f;
  --gold-light: #d8b66e;
  --sage: #f0dfbd;
  --line: #c9a15c;
  --white: #fffaf0;
}

.announce {
  border-bottom: 1px solid rgba(216, 182, 110, 0.45);
  background: var(--earth-dark);
  color: var(--paper-soft);
  padding: 9px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-header {
  background: rgba(255, 248, 235, 0.96);
  border-bottom: 1px solid rgba(185, 130, 47, 0.55);
}

.nav {
  min-height: 76px;
}

.brand {
  gap: 11px;
  color: var(--wine-dark);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 700;
}

.brand img {
  width: 46px;
  height: 46px;
}

.nav-links {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.nav-cta {
  min-height: 42px;
  border: 1px solid var(--wine);
  border-radius: 4px;
  background: var(--wine);
  color: var(--white);
  padding: 10px 17px;
}

.cta {
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  background: var(--moon-red);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(53, 28, 22, 0.24);
}

.cta:hover {
  background: var(--wine-dark);
  box-shadow: 0 18px 42px rgba(53, 28, 22, 0.3);
}

section.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 70px));
  padding: 0;
  background: var(--paper-soft);
}

section.hero::before {
  z-index: 3;
  inset: 18px;
  border: 1px solid rgba(216, 182, 110, 0.72);
  background: transparent;
  pointer-events: none;
}

section.hero::after {
  z-index: 4;
  top: 10px;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 34px;
  height: 16px;
  background: var(--gold);
  clip-path: polygon(50% 0, 60% 36%, 100% 50%, 60% 64%, 50% 100%, 40% 64%, 0 50%, 40% 36%);
  transform: translateX(-50%);
}

.hero-art {
  position: absolute;
  inset: 0;
  background: var(--paper-soft) url("assets/produto-capa.jpg") 71% center / cover no-repeat;
}

.hero-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: min(760px, calc(100vh - 70px));
  display: flex;
  align-items: center;
  background: rgba(66, 20, 17, 0.78);
  color: var(--paper-soft);
}

.hero-copy {
  width: min(650px, calc(100% - 64px));
  margin-left: max(32px, calc((100vw - 1160px) / 2));
  padding: 58px 48px 58px 0;
}

.hero-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hero-mark span {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-kicker {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 590px;
  color: var(--paper-soft);
  font-size: 5rem;
  font-weight: 600;
}

.hero h1 em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
}

.hero h1 small {
  display: block;
  margin-top: 9px;
  color: var(--paper-deep);
  font-family: "Manrope", Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 560px;
  margin-top: 20px;
  color: #f3e6d3;
  font-size: 1.08rem;
}

.hero-buy {
  margin-top: 28px;
}

.hero .price-stack .old {
  color: #d8c4ad;
}

.hero .price-stack strong {
  color: var(--gold-light);
}

.hero .tag {
  border: 1px solid rgba(216, 182, 110, 0.45);
  border-radius: 4px;
  background: transparent;
  color: var(--paper-deep);
}

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

.hero-points li {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 15px;
  color: #eadbc8;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 23px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.hero .countdown {
  margin-top: 20px;
}

.hero .timebox {
  border-color: rgba(216, 182, 110, 0.5);
  border-radius: 4px;
  background: rgba(255, 248, 235, 0.08);
}

.hero .timebox strong {
  color: var(--gold-light);
}

.hero .timebox span {
  color: #d8c4ad;
}

.proof-strip {
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid rgba(185, 130, 47, 0.55);
  background: var(--earth);
  color: var(--white);
}

.proof-grid strong {
  color: var(--paper-soft);
}

.proof-grid span {
  color: #ead8bd;
}

.eyebrow,
.card-kicker,
.checkout-label {
  color: var(--moon-red);
}

.preview-stage img,
.image-frame img {
  box-shadow: 0 24px 50px rgba(53, 28, 22, 0.16);
}

.preview-tab,
.card,
.offer-grid,
.offer-badge,
.checkout-box,
details {
  border-radius: 4px;
}

.preview-tab:hover,
.preview-tab.is-active {
  border-color: var(--moon-red);
  background: var(--moon-red);
}

.deep-section {
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  background: var(--earth-dark);
  color: var(--white);
}

.deep-section .inverse {
  color: var(--gold-light);
}

.check-list p {
  color: #f4e7d2;
}

.footer {
  border-top: 1px solid var(--gold);
  background: var(--earth-dark);
}

@media (max-width: 980px) {
  .hero-panel {
    width: 100%;
  }

  .hero h1 {
    font-size: 4rem;
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: 66px;
  }

  .brand {
    font-size: 1.08rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  section.hero {
    min-height: 0;
    padding: 0;
    background: var(--wine-dark);
  }

  section.hero::before {
    inset: 10px;
  }

  .hero-art {
    position: relative;
    height: 250px;
    background-position: center 36%;
    background-size: cover;
  }

  .hero-panel {
    width: 100%;
    min-height: 0;
    background: var(--wine-dark);
  }

  .hero-copy {
    width: min(calc(100% - 48px), 580px);
    margin: 0 auto;
    padding: 32px 0 42px;
  }

  .hero-mark {
    margin-bottom: 13px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-buy {
    grid-template-columns: 1fr;
  }

  .hero-points {
    display: none;
  }

  .hero .countdown {
    display: none;
  }

  .hero-preview-link {
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-mark b {
    font-size: 0.66rem;
  }

  .hero-mark span {
    width: 18px;
  }
}

/* Cover-first hero: full artwork with a responsive purchase card. */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

section.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background: var(--earth-dark);
}

section.hero::before,
section.hero::after {
  display: none;
}

.hero-media {
  width: min(1664px, 100%);
  margin: 0 auto;
  border-right: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  background: var(--paper-soft);
}

.hero-cover {
  width: 100%;
  height: auto;
}

.hero-media picture {
  display: block;
}

.hero-offer {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: max(64px, calc(25vw - 200px));
  width: min(400px, calc(100% - 64px));
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  background: rgba(66, 20, 17, 0.8);
  color: var(--paper-soft);
  padding: 28px;
  box-shadow: 0 22px 60px rgba(53, 28, 22, 0.25);
  transform: translateY(-50%);
}

@media (min-width: 1665px) {
  .hero-offer {
    left: calc((100vw - 1664px) / 2 + 216px);
  }
}

.hero-offer-kicker {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-offer-title {
  color: var(--paper-soft);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.02;
}

.hero-offer-copy {
  margin-top: 13px;
  color: #eadbc8;
  font-size: 0.93rem;
  line-height: 1.55;
}

.hero-offer-buy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
}

.hero-offer-price {
  display: grid;
}

.hero-offer-price span {
  color: #d8c4ad;
  font-size: 0.76rem;
}

.hero-offer-price span b {
  font-weight: 600;
  text-decoration: line-through;
}

.hero-offer-price strong {
  color: var(--gold-light);
  font-size: 2rem;
  line-height: 1;
}

.hero-offer .cta {
  min-height: 52px;
  padding: 12px 15px;
  font-size: 0.88rem;
}

.hero-offer-meta {
  display: flex;
  gap: 9px 14px;
  margin-top: 19px;
  flex-wrap: wrap;
}

.hero-offer-meta span {
  position: relative;
  padding-left: 11px;
  color: #eadbc8;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-offer-meta span::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

@media (max-width: 980px) {
  .hero-offer {
    left: 32px;
    width: 370px;
    padding: 24px;
  }

  .hero-offer-title {
    font-size: 2rem;
  }

  .hero-offer-buy {
    grid-template-columns: 1fr;
  }

  .hero-offer .cta {
    width: 100%;
  }
}

@media (max-width: 720px) {
  section.hero {
    overflow: hidden;
    background: var(--paper);
    padding-bottom: 0;
  }

  .hero-media {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--gold);
  }

  .hero-offer {
    position: absolute;
    top: 22px;
    right: 20px;
    bottom: 22px;
    left: 20px;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 22px;
    background: rgba(66, 20, 17, 0.72);
    transform: none;
  }

  .hero-offer-title {
    max-width: 390px;
    font-size: 1.42rem;
    line-height: 1;
  }

  .hero-offer-copy {
    display: none;
  }

  .hero-offer-buy {
    width: 100%;
    grid-template-columns: auto minmax(180px, 1fr);
    gap: 12px;
    align-items: end;
    margin-top: 13px;
  }

  .hero-offer-price {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-offer-price strong {
    font-size: 1.58rem;
  }

  .hero-offer-price span {
    display: none;
  }

  .hero-offer-meta {
    display: none;
  }

  .hero-offer-kicker {
    margin-bottom: 8px;
    font-size: 0.65rem;
  }

  .hero-offer .cta {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

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

  .proof-grid div,
  .proof-grid div:last-child {
    min-height: 104px;
    border-top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 16px;
  }

  .proof-grid div:nth-child(even) {
    border-right: 0;
    background: rgba(66, 20, 17, 0.16);
  }

  .proof-grid div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .proof-grid strong {
    font-size: 1.35rem;
    line-height: 1.05;
  }

  .proof-grid span {
    font-size: 0.75rem;
    line-height: 1.35;
  }
}

@media (max-width: 420px) {
  .hero-offer {
    top: 16px;
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    padding: 18px;
  }

  .hero-offer-title {
    font-size: 1.34rem;
  }

  .hero-offer-buy {
    grid-template-columns: auto minmax(164px, 1fr);
    gap: 9px;
  }

  .hero-offer-price {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    min-height: 98px;
    padding: 14px 12px;
  }

  .proof-grid strong {
    font-size: 1.22rem;
  }
}

/* Full-page portal frame and premium feature seals. */
.page-frame {
  position: fixed;
  z-index: 100;
  inset: 0;
  border: 4px solid var(--earth-dark);
  box-shadow:
    inset 0 0 0 1px var(--gold-light),
    inset 0 0 0 3px var(--wine-dark);
  pointer-events: none;
}

.page-frame::before,
.page-frame::after {
  content: "";
  position: absolute;
  right: 34px;
  left: 34px;
  height: 1px;
  background: var(--gold);
}

.page-frame::before {
  top: 7px;
}

.page-frame::after {
  bottom: 7px;
}

.frame-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold-light);
  background: var(--wine-dark);
  transform: rotate(45deg);
}

.frame-corner::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--gold);
}

.frame-corner.top-left {
  top: 7px;
  left: 7px;
}

.frame-corner.top-right {
  top: 7px;
  right: 7px;
}

.frame-corner.bottom-left {
  bottom: 7px;
  left: 7px;
}

.frame-corner.bottom-right {
  right: 7px;
  bottom: 7px;
}

.proof-grid div {
  position: relative;
  justify-items: center;
  text-align: center;
  overflow: hidden;
}

.proof-grid div::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-bottom: 13px;
  border: 1px solid var(--gold-light);
  background: var(--wine-dark);
  transform: rotate(45deg);
}

.proof-grid div::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid rgba(216, 182, 110, 0.34);
  pointer-events: none;
}

.proof-grid strong {
  max-width: 220px;
  color: var(--paper-soft);
}

@media (max-width: 720px) {
  body {
    padding-right: 5px;
    padding-left: 5px;
  }

  .page-frame {
    border-width: 4px;
  }

  .frame-corner {
    width: 14px;
    height: 14px;
  }

  .frame-corner::after {
    inset: 3px;
  }

  .frame-corner.top-left,
  .frame-corner.top-right {
    top: 6px;
  }

  .frame-corner.bottom-left,
  .frame-corner.bottom-right {
    bottom: 6px;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    min-height: 94px;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 14px;
  }

  .proof-grid div::before {
    width: 7px;
    height: 7px;
    margin-bottom: 11px;
  }

  .proof-grid div::after {
    top: 7px;
    right: 7px;
    bottom: 7px;
    left: 7px;
  }

  .proof-grid strong {
    font-size: 1.18rem;
    line-height: 1.05;
  }

  .hero-offer .cta {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .sticky {
    right: 5px;
    bottom: 5px;
    left: 5px;
    padding: 8px 10px;
  }

  .sticky .cta {
    min-height: 48px;
    padding: 9px 12px;
    font-size: 0.88rem;
  }
}

/* Mystical editorial details shared across the page. */
.site-header {
  position: sticky;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border: 1px solid var(--gold);
  background: var(--paper-soft);
  transform: rotate(45deg);
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(53, 28, 22, 0.14);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--wine-dark);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--gold);
  font-family: "Manrope", Inter, sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  color: var(--earth-dark);
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -8px;
  left: 50%;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease, left 180ms ease;
}

.nav-links > a:not(.nav-cta):hover::after {
  right: 0;
  left: 0;
}

.section {
  position: relative;
  border-top: 1px solid rgba(185, 130, 47, 0.42);
}

.section::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  background: var(--paper);
  transform: translateX(-50%) rotate(45deg);
}

.section-intro::before,
.include-section::before,
.use-section::before,
.faq-section::before {
  background: var(--paper-soft);
}

.deep-section::before {
  background: var(--earth-dark);
}

.section-head::after {
  content: "";
  display: block;
  width: 96px;
  height: 1px;
  margin-top: 22px;
  background: var(--gold);
}

.card,
.offer-grid,
.checkout-box {
  position: relative;
  overflow: hidden;
}

.card::before,
.offer-grid::before,
.checkout-box::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  pointer-events: none;
}

.card::after,
.offer-grid::after,
.checkout-box::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 20px;
  height: 20px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  pointer-events: none;
}

.preview-stage img,
.image-frame img {
  outline: 1px solid rgba(185, 130, 47, 0.32);
  outline-offset: 5px;
}

.note-row span {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--wine);
  font-size: 1.45rem;
  line-height: 1;
}

.note-row span::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

details {
  position: relative;
}

details::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  background: var(--paper-soft);
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 720px) {
  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    max-width: 180px;
    font-size: 1.08rem;
  }

  .brand-copy small {
    display: none;
  }

  .section-head::after {
    width: 72px;
    margin-top: 18px;
  }
}

/* Premium pass for the lower page: thin portal lines, seals, and richer panels. */
.gallery-section,
.include-section,
.use-section,
.offer-section,
.faq-section {
  background-image:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(185, 130, 47, 0.12) calc(50% - 1px), rgba(185, 130, 47, 0.12) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(180deg, rgba(185, 130, 47, 0.08), transparent 118px);
}

.section-head {
  position: relative;
}

.section-head::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(185, 130, 47, 0.58);
  background: rgba(255, 248, 235, 0.72);
  transform: rotate(45deg);
}

.preview-layout {
  position: relative;
}

.preview-layout::before,
.preview-layout::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-color: rgba(185, 130, 47, 0.46);
  pointer-events: none;
}

.preview-layout::before {
  top: -10px;
  left: -10px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.preview-layout::after {
  right: -10px;
  bottom: 24px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.preview-tabs {
  align-self: stretch;
}

.preview-tab {
  position: relative;
  overflow: hidden;
  border-color: rgba(185, 130, 47, 0.42);
  background:
    linear-gradient(90deg, rgba(185, 130, 47, 0.12), transparent 52px),
    var(--paper-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 235, 0.68);
}

.preview-tab::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  opacity: 0.42;
  transform: translateY(-50%) rotate(45deg);
}

.preview-tab {
  padding-left: 26px;
}

.preview-tab:hover,
.preview-tab.is-active {
  background:
    linear-gradient(90deg, rgba(216, 182, 110, 0.18), transparent 62px),
    var(--moon-red);
}

.include-section .grid-3 {
  align-items: stretch;
}

.include-section .card {
  min-height: 260px;
  display: grid;
  align-content: start;
  padding: 28px 26px 26px;
  border-color: rgba(185, 130, 47, 0.62);
  background:
    linear-gradient(180deg, rgba(216, 182, 110, 0.1), transparent 72px),
    linear-gradient(135deg, transparent calc(100% - 54px), rgba(185, 130, 47, 0.1) calc(100% - 54px)),
    var(--white);
  box-shadow: 0 18px 34px rgba(53, 28, 22, 0.08);
}

.include-section .card-kicker {
  display: inline-grid;
  grid-template-columns: 16px 1fr;
  gap: 9px;
  align-items: center;
}

.include-section .card-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  background: var(--paper-soft);
  transform: rotate(45deg);
}

.include-section .card h3 {
  position: relative;
  padding-bottom: 14px;
}

.include-section .card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54px;
  height: 1px;
  background: var(--gold);
}

.deep-section {
  background:
    linear-gradient(90deg, rgba(216, 182, 110, 0.08) 1px, transparent 1px) center / 224px 100%,
    linear-gradient(180deg, rgba(216, 182, 110, 0.13), transparent 180px),
    var(--wine-dark);
}

.deep-section .split {
  position: relative;
  padding: 22px 0;
}

.deep-section .check-list {
  gap: 11px;
}

.deep-section .check-list p {
  grid-template-columns: 22px 1fr;
  align-items: start;
  border-bottom: 1px solid rgba(216, 182, 110, 0.2);
  padding-bottom: 11px;
}

.deep-section .check-list p:last-child {
  border-bottom: 0;
}

.deep-section .check-list span {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border: 1px solid var(--gold-light);
  border-radius: 0;
  background: transparent;
  box-shadow: inset 0 0 0 2px rgba(66, 20, 17, 0.9);
  transform: rotate(45deg);
}

.image-frame {
  position: relative;
  padding: 9px;
  border: 1px solid rgba(185, 130, 47, 0.56);
  background: rgba(255, 248, 235, 0.32);
}

.deep-section .image-frame {
  background: rgba(255, 248, 235, 0.08);
}

.image-frame::before,
.image-frame::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold);
  pointer-events: none;
}

.image-frame::before {
  top: 5px;
  left: 5px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.image-frame::after {
  right: 5px;
  bottom: 5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.image-frame img {
  border-radius: 3px;
  outline-offset: 0;
}

.use-section .steps {
  gap: 12px;
}

.use-section .steps div {
  grid-template-columns: 46px 1fr;
  align-items: center;
  border: 1px solid rgba(185, 130, 47, 0.36);
  background: rgba(255, 250, 240, 0.74);
  padding: 14px 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 235, 0.72);
}

.use-section .steps strong {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-light);
  border-radius: 0;
  background: var(--wine);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  transform: rotate(45deg);
}

.use-section .steps strong {
  color: transparent;
}

.use-section .steps strong::after {
  display: block;
  transform: rotate(-45deg);
}

.use-section .steps div:nth-child(1) strong::after,
.use-section .steps div:nth-child(2) strong::after,
.use-section .steps div:nth-child(3) strong::after {
  color: var(--white);
}

.use-section .steps div:nth-child(1) strong::after {
  content: "1";
}

.use-section .steps div:nth-child(2) strong::after {
  content: "2";
}

.use-section .steps div:nth-child(3) strong::after {
  content: "3";
}

.offer-section {
  background-color: #eadcc4;
}

.offer-grid {
  position: relative;
  gap: 34px;
  border: 1px solid rgba(185, 130, 47, 0.76);
  background:
    linear-gradient(90deg, var(--white) 0 67%, rgba(66, 20, 17, 0.05) 67%),
    var(--white);
  box-shadow:
    0 20px 46px rgba(53, 28, 22, 0.1),
    inset 0 0 0 6px rgba(255, 248, 235, 0.62);
}

.offer-grid::before {
  width: 34px;
  height: 34px;
}

.offer-grid::after {
  width: 34px;
  height: 34px;
}

.offer-copy {
  position: relative;
}

.offer-copy .lead {
  max-width: 680px;
}

.mini-list {
  gap: 12px;
}

.mini-list p {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(185, 130, 47, 0.3);
  border-left: 3px solid var(--gold);
  background: rgba(255, 248, 235, 0.68);
  padding: 10px 12px 10px 18px;
}

.mini-list p::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.checkout-box {
  border-color: rgba(216, 182, 110, 0.62);
  background:
    linear-gradient(180deg, rgba(216, 182, 110, 0.12), transparent 92px),
    var(--wine-dark);
  color: var(--paper-soft);
  box-shadow: 0 18px 36px rgba(53, 28, 22, 0.16);
}

.checkout-label {
  color: var(--gold-light);
}

.checkout-price span {
  color: #d8c4ad;
}

.checkout-price strong {
  color: var(--gold-light);
}

.checkout-box .micro {
  color: #eadbc8;
}

.checkout-box .cta {
  border-color: rgba(216, 182, 110, 0.82);
  background: var(--moon-red);
}

.faq-section {
  background-color: var(--paper-soft);
}

.faq-grid {
  gap: 54px;
}

.faq details {
  border-color: rgba(185, 130, 47, 0.52);
  background:
    linear-gradient(90deg, rgba(185, 130, 47, 0.1), transparent 72px),
    var(--white);
  box-shadow: 0 10px 24px rgba(53, 28, 22, 0.05);
}

.faq summary {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  list-style: none;
}

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

.faq summary::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  background: var(--paper-soft);
  transform: rotate(45deg);
}

.faq details[open] summary::before {
  background: var(--moon-red);
  box-shadow: inset 0 0 0 2px var(--paper-soft);
}

.footer {
  position: relative;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(216, 182, 110, 0.16) calc(50% - 1px), rgba(216, 182, 110, 0.16) calc(50% + 1px), transparent calc(50% + 1px)),
    var(--earth-dark);
}

.footer::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 34px;
  left: 34px;
  height: 1px;
  background: rgba(216, 182, 110, 0.55);
}

.footer strong {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

@media (max-width: 980px) {
  .offer-grid {
    background: var(--white);
  }
}

@media (max-width: 720px) {
  .gallery-section,
  .include-section,
  .use-section,
  .offer-section,
  .faq-section {
    background-image:
      linear-gradient(180deg, rgba(185, 130, 47, 0.1), transparent 86px);
  }

  .section-head::before {
    top: -15px;
    width: 14px;
    height: 14px;
  }

  .preview-layout::before,
  .preview-layout::after {
    display: none;
  }

  .preview-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .preview-tab {
    min-height: 44px;
    padding: 9px 9px 9px 22px;
    white-space: normal;
    font-size: 0.77rem;
    line-height: 1.15;
  }

  .preview-tab:last-child {
    grid-column: 1 / -1;
  }

  .include-section .card {
    min-height: 0;
    padding: 22px 20px 20px;
  }

  .include-section .card h3 {
    padding-bottom: 11px;
  }

  .deep-section .split {
    padding: 0;
  }

  .deep-section .check-list p {
    grid-template-columns: 18px 1fr;
    font-size: 0.86rem;
  }

  .image-frame {
    padding: 6px;
  }

  .use-section .steps div {
    grid-template-columns: 40px 1fr;
    padding: 12px;
  }

  .use-section .steps strong {
    width: 30px;
    height: 30px;
  }

  .offer-grid {
    gap: 22px;
    padding: 18px;
    box-shadow: inset 0 0 0 4px rgba(255, 248, 235, 0.66);
  }

  .offer-copy h2 {
    font-size: 2rem;
  }

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

  .checkout-box {
    padding: 20px;
  }

  .checkout-price strong {
    font-size: 2.12rem;
  }

  .faq-grid {
    gap: 24px;
  }

  .faq details {
    padding: 14px;
  }

  .footer {
    padding-bottom: 86px;
  }
}

/* Refined sticky header mark and alignment. */
.site-header {
  top: 0;
  z-index: 90;
  min-height: 76px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(185, 130, 47, 0.12), transparent 22%, transparent 78%, rgba(185, 130, 47, 0.12)),
    rgba(255, 248, 235, 0.965);
  box-shadow: 0 10px 28px rgba(53, 28, 22, 0.08);
}

.nav {
  min-height: 76px;
  align-items: center;
}

.brand {
  min-height: 56px;
  align-items: center;
  gap: 13px;
}

.brand img {
  display: none;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 248, 235, 0.96) 0 43%, transparent 44%),
    repeating-conic-gradient(from 0deg, rgba(185, 130, 47, 0.78) 0deg 4deg, transparent 4deg 12deg),
    var(--paper-soft);
  box-shadow:
    inset 0 0 0 4px rgba(255, 248, 235, 0.9),
    inset 0 0 0 6px rgba(185, 130, 47, 0.2),
    0 5px 18px rgba(53, 28, 22, 0.13);
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 11px;
  width: 19px;
  height: 19px;
  border: 2px solid var(--moon-red);
  border-radius: 50%;
  background: transparent;
  box-shadow: 6px 0 0 -1px var(--paper-soft);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 12px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow:
    0 -8px 0 -4px var(--gold),
    0 8px 0 -4px var(--gold),
    -8px 0 0 -4px var(--gold),
    8px 0 0 -4px var(--gold);
}

.brand-copy {
  min-width: 0;
  align-content: center;
  gap: 4px;
}

.brand-copy strong {
  font-size: 1.24rem;
  line-height: 0.95;
}

.brand-copy small {
  line-height: 1;
}

.nav-links {
  align-items: center;
  gap: 26px;
}

.nav-links > a:not(.nav-cta) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.nav-links > a:not(.nav-cta)::after {
  bottom: 5px;
}

.nav-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(216, 182, 110, 0.78);
  padding: 12px 20px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(66, 20, 17, 0.14);
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
  }

  .nav {
    min-height: 64px;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    min-height: 52px;
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-mark::before {
    top: 11px;
    left: 10px;
    width: 16px;
    height: 16px;
  }

  .brand-mark::after {
    right: 9px;
    bottom: 10px;
    width: 8px;
    height: 8px;
  }

  .brand-copy strong {
    max-width: 190px;
    font-size: 1.04rem;
    line-height: 0.98;
  }
}

/* Purchase CTA color and price hierarchy. */
.cta,
.nav-cta,
.checkout-box .cta,
.hero-offer .cta,
.sticky .cta {
  border-color: rgba(244, 212, 131, 0.86);
  background:
    linear-gradient(180deg, #e0bf70 0%, #c99139 48%, #a86428 100%);
  color: var(--wine-dark);
  text-shadow: 0 1px 0 rgba(255, 248, 235, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 235, 0.34),
    0 14px 30px rgba(53, 28, 22, 0.18);
}

.cta:hover,
.nav-cta:hover,
.checkout-box .cta:hover,
.hero-offer .cta:hover,
.sticky .cta:hover {
  background:
    linear-gradient(180deg, #eccd82 0%, #d19a42 48%, #935322 100%);
  color: var(--wine-dark);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 235, 0.42),
    0 18px 38px rgba(53, 28, 22, 0.24);
}

.hero-offer-price strong,
.checkout-price strong {
  display: none;
}

.hero-offer-price span,
.checkout-price span {
  color: #e5c77c;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-offer-price span b,
.checkout-price span {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.hero-offer-price {
  align-self: center;
}

.checkout-price {
  min-height: auto;
}

@media (max-width: 720px) {
  .hero-offer-buy {
    grid-template-columns: auto minmax(190px, 1fr);
    align-items: center;
  }

  .hero-offer-price span {
    display: block;
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .hero-offer .cta {
    font-size: 0.82rem;
    font-weight: 900;
  }
}

@media (max-width: 420px) {
  .hero-offer-buy {
    grid-template-columns: auto minmax(168px, 1fr);
  }

  .hero-offer-price span {
    font-size: 0.76rem;
  }
}

/* Rebuilt proof strip as a lighter premium seal band. */
.proof-strip {
  position: relative;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  background:
    linear-gradient(90deg, rgba(66, 20, 17, 0.08), transparent 18%, transparent 82%, rgba(66, 20, 17, 0.08)),
    linear-gradient(180deg, #fff3df 0%, #ead3ad 100%);
  color: var(--wine-dark);
  padding: 18px 0;
}

.proof-strip::before,
.proof-strip::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold);
  background: var(--paper-soft);
  transform: translateX(-50%) rotate(45deg);
}

.proof-strip::before {
  top: -7px;
}

.proof-strip::after {
  bottom: -7px;
}

.proof-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.proof-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  left: 8px;
  height: 1px;
  background: rgba(185, 130, 47, 0.38);
}

.proof-grid div,
.proof-grid div:last-child {
  position: relative;
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  border: 1px solid rgba(185, 130, 47, 0.5);
  background:
    radial-gradient(circle at 50% -12px, rgba(216, 182, 110, 0.36), transparent 42px),
    rgba(255, 248, 235, 0.74);
  padding: 18px 14px;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 235, 0.88),
    0 12px 24px rgba(53, 28, 22, 0.06);
}

.proof-grid div:nth-child(even) {
  background:
    radial-gradient(circle at 50% -12px, rgba(216, 182, 110, 0.36), transparent 42px),
    rgba(255, 248, 235, 0.74);
}

.proof-grid div::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-bottom: 3px;
  border: 1px solid var(--gold);
  background: var(--paper-soft);
  transform: rotate(45deg);
}

.proof-grid div::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 9px;
  bottom: 9px;
  left: 9px;
  border: 1px solid rgba(185, 130, 47, 0.22);
  pointer-events: none;
}

.proof-grid span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.proof-grid strong {
  max-width: 210px;
  color: var(--wine-dark);
  font-size: 1.55rem;
  line-height: 0.98;
}

.proof-grid small {
  color: var(--earth);
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .proof-strip {
    padding: 12px 0;
  }

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

  .proof-grid::before {
    display: none;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    min-height: 104px;
    padding: 14px 10px;
  }

  .proof-grid div::before {
    width: 8px;
    height: 8px;
    margin-bottom: 1px;
  }

  .proof-grid div::after {
    top: 7px;
    right: 7px;
    bottom: 7px;
    left: 7px;
  }

  .proof-grid strong {
    font-size: 1.22rem;
  }

  .proof-grid small {
    font-size: 0.64rem;
  }
}

/* Mobile full-screen portal hero with a single visible purchase button. */
@media (max-width: 720px) {
  section.hero {
    height: calc(100svh - 64px);
    min-height: 560px;
    max-height: 860px;
    display: grid;
    overflow: hidden;
  }

  .hero-media {
    height: 100%;
    border-bottom: 1px solid var(--gold);
  }

  .hero-media picture,
  .hero-cover {
    width: 100%;
    height: 100%;
  }

  .hero-cover {
    object-fit: cover;
    object-position: center center;
  }

  .hero-offer {
    top: 14px;
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
    padding: 24px;
  }

  .sticky {
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.has-left-hero .sticky {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  section.hero {
    height: calc(100svh - 64px);
    min-height: 540px;
  }

  .hero-offer {
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 18px;
  }
}

/* Testimonials section. */
.testimonials-section {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(185, 130, 47, 0.12) calc(50% - 1px), rgba(185, 130, 47, 0.12) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(180deg, #f5e9d3 0%, var(--paper-soft) 100%);
}

.section-head.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.centered::before {
  right: 0;
  left: 0;
  margin: auto;
}

.section-head.centered::after {
  margin-right: auto;
  margin-left: auto;
}

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

.testimonial-card {
  position: relative;
  min-height: 300px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  border: 1px solid rgba(121, 34, 29, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.9), rgba(255, 248, 235, 0.68)),
    var(--paper-soft);
  padding: 30px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 235, 0.88),
    0 16px 34px rgba(53, 28, 22, 0.08);
}

.testimonial-card::before,
.testimonial-card::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--gold);
  pointer-events: none;
}

.testimonial-card::before {
  top: 11px;
  left: 11px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.testimonial-card::after {
  right: 11px;
  bottom: 11px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.stars {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.testimonial-card p {
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.32;
}

.testimonial-card div {
  border-top: 1px solid rgba(185, 130, 47, 0.38);
  padding-top: 16px;
}

.testimonial-card strong {
  display: block;
  color: var(--wine-dark);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
  line-height: 1;
}

.testimonial-card small {
  display: block;
  margin-top: 6px;
  color: var(--moon-red);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .testimonials-section {
    background:
      linear-gradient(180deg, #f5e9d3 0%, var(--paper-soft) 100%);
  }

  .testimonial-grid {
    gap: 14px;
  }

  .testimonial-card {
    padding: 22px 20px;
    gap: 16px;
  }

  .testimonial-card p {
    font-size: 1.08rem;
    line-height: 1.34;
  }
}

/* Terracotta header variation to match the purchase CTAs. */
.site-header {
  background:
    linear-gradient(90deg, rgba(216, 182, 110, 0.18), transparent 20%, transparent 80%, rgba(216, 182, 110, 0.18)),
    linear-gradient(180deg, #a86428 0%, #8f4326 52%, #6f2c1f 100%);
  border-bottom-color: rgba(244, 212, 131, 0.7);
  box-shadow: 0 12px 30px rgba(53, 28, 22, 0.18);
}

.site-header::after {
  border-color: var(--gold-light);
  background: #8f4326;
}

.brand-copy strong {
  color: var(--paper-soft);
}

.brand-copy small {
  color: #f4d483;
}

.brand-mark {
  border-color: rgba(244, 212, 131, 0.9);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 248, 235, 0.98) 0 43%, transparent 44%),
    repeating-conic-gradient(from 0deg, rgba(216, 182, 110, 0.92) 0deg 4deg, transparent 4deg 12deg),
    #fff3df;
  box-shadow:
    inset 0 0 0 4px rgba(255, 248, 235, 0.9),
    inset 0 0 0 6px rgba(185, 130, 47, 0.24),
    0 5px 18px rgba(53, 28, 22, 0.2);
}

.nav-links > a:not(.nav-cta) {
  color: var(--paper-soft);
}

.nav-links > a:not(.nav-cta)::after {
  background: #f4d483;
}

.nav-cta {
  border-color: rgba(255, 241, 196, 0.8);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 235, 0.36),
    0 10px 24px rgba(53, 28, 22, 0.24);
}

@media (max-width: 720px) {
  .site-header {
    background:
      linear-gradient(90deg, rgba(216, 182, 110, 0.16), transparent 72%),
      linear-gradient(180deg, #a86428 0%, #7d3523 100%);
  }
}

/* Normal-price anchor and tomorrow reminder. */
.hero-offer-price span,
.checkout-price span {
  text-decoration: none;
}

.hero-offer-price span b,
.checkout-price span b {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.cta-note {
  margin-top: 8px;
  color: #ead08a;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-offer .cta-note {
  color: #f1d58c;
}

.checkout-box .cta-note,
.offer-section .cta-note {
  color: #f0dcc4;
}

@media (max-width: 720px) {
  .hero-offer .cta-note {
    margin-top: 7px;
    font-size: 0.58rem;
    text-align: center;
  }

  .checkout-box .cta-note,
  .offer-section .cta-note {
    font-size: 0.64rem;
    text-align: center;
  }
}

/* Preview tabs above the PDF, starting with the cover. */
.preview-layout {
  grid-template-columns: 1fr;
  gap: 16px;
}

.preview-tabs {
  order: -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  padding-bottom: 0;
}

.preview-tab {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  text-align: left;
  white-space: normal;
}

.preview-stage {
  margin-top: 4px;
}

.preview-layout::after {
  bottom: 42px;
}

@media (max-width: 720px) {
  .preview-layout {
    gap: 12px;
  }

  .preview-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .preview-tab {
    min-height: 42px;
    font-size: 0.75rem;
  }

  .preview-tab:nth-child(5) {
    grid-column: auto;
  }
}

/* Product-title typography refinement. */
.brand-copy strong,
.offer-copy h2[data-product-name],
.footer strong {
  font-family: "Cinzel", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-copy strong {
  max-width: 300px;
  font-size: 1.04rem;
  line-height: 1.08;
}

.offer-copy h2[data-product-name] {
  max-width: 720px;
  font-size: 2.8rem;
  line-height: 1.08;
}

.footer strong {
  font-size: 1.12rem;
  line-height: 1.12;
}

@media (max-width: 720px) {
  .brand-copy strong {
    max-width: 210px;
    font-size: 0.9rem;
    line-height: 1.08;
  }

  .offer-copy h2[data-product-name] {
    font-size: 1.72rem;
    line-height: 1.12;
  }
}

/* Lunar kin-style brand seal. */
.brand-mark {
  border: 1px solid rgba(244, 212, 131, 0.96);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 248, 235, 0.98) 0 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, transparent 0 53%, rgba(185, 130, 47, 0.28) 54% 57%, transparent 58%),
    repeating-conic-gradient(from 3deg, rgba(216, 182, 110, 0.9) 0deg 5deg, transparent 5deg 14deg),
    #fff3df;
  box-shadow:
    inset 0 0 0 3px rgba(255, 248, 235, 0.92),
    inset 0 0 0 7px rgba(185, 130, 47, 0.2),
    0 5px 18px rgba(53, 28, 22, 0.22);
}

.brand-mark::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--moon-red);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 248, 235, 0.95), rgba(216, 182, 110, 0.14));
  box-shadow:
    0 0 0 2px rgba(255, 248, 235, 0.86),
    0 0 0 4px rgba(185, 130, 47, 0.22);
  transform: rotate(45deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 16px;
  width: 17px;
  height: 17px;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 64% 50%, #fff3df 0 42%, transparent 43%),
    var(--moon-red);
  box-shadow:
    0 0 0 1px rgba(121, 34, 29, 0.24),
    15px 8px 0 -6px var(--gold);
}

@media (max-width: 720px) {
  .brand-mark::before {
    top: 12px;
    left: 12px;
    width: 16px;
    height: 16px;
  }

  .brand-mark::after {
    top: 13px;
    left: 14px;
    width: 15px;
    height: 15px;
    box-shadow:
      0 0 0 1px rgba(121, 34, 29, 0.24),
      13px 7px 0 -6px var(--gold);
  }
}

/* Mobile first-fold cleanup: calmer logo and uncluttered CTA pricing. */
@media (max-width: 720px) {
  .site-header {
    min-height: 58px;
  }

  .nav {
    min-height: 58px;
  }

  .brand {
    min-height: 48px;
    gap: 9px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    box-shadow:
      inset 0 0 0 2px rgba(255, 248, 235, 0.92),
      inset 0 0 0 5px rgba(185, 130, 47, 0.2),
      0 4px 14px rgba(53, 28, 22, 0.18);
  }

  .brand-mark::before {
    top: 10px;
    left: 10px;
    width: 14px;
    height: 14px;
    box-shadow:
      0 0 0 1px rgba(255, 248, 235, 0.86),
      0 0 0 3px rgba(185, 130, 47, 0.18);
  }

  .brand-mark::after {
    top: 11px;
    left: 12px;
    width: 13px;
    height: 13px;
    box-shadow:
      0 0 0 1px rgba(121, 34, 29, 0.18),
      11px 6px 0 -5px var(--gold);
  }

  .brand-copy strong {
    max-width: 175px;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 0.96;
    text-transform: none;
  }

  section.hero {
    height: calc(100svh - 58px);
  }

  .hero-offer {
    padding: 18px;
  }

  .hero-offer-title {
    max-width: 350px;
    font-size: 1.32rem;
    line-height: 1.02;
  }

  .hero-offer-buy {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
    margin-top: 14px;
  }

  .hero-offer-price {
    justify-self: center;
    text-align: center;
  }

  .hero-offer-price span {
    font-size: 0.72rem;
    line-height: 1;
  }

  .hero-offer .cta {
    width: min(100%, 310px);
    justify-self: center;
  }

  .hero-offer .cta-note {
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.56rem;
    line-height: 1.15;
  }
}

/* FAQ: centered introduction and balanced accordion columns. */
.faq-section {
  padding-block: clamp(72px, 8vw, 112px);
}

.faq-section .faq-grid {
  display: block;
  max-width: 1160px;
}

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

.faq-intro .eyebrow {
  margin-bottom: 12px;
}

.faq-intro h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.5vw, 4.25rem);
  line-height: 0.98;
}

.faq-intro-copy {
  max-width: 580px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-section .faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.faq-column {
  display: grid;
  gap: 14px;
}

.faq-section .faq details {
  overflow: hidden;
  border-color: rgba(185, 130, 47, 0.44);
  border-radius: 6px;
  padding: 0;
  background: rgba(255, 252, 246, 0.84);
  box-shadow: 0 12px 28px rgba(53, 28, 22, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.faq-section .faq details::before {
  display: none;
}

.faq-section .faq details:hover,
.faq-section .faq details[open] {
  border-color: rgba(168, 100, 40, 0.78);
  background: #fffaf0;
  box-shadow: 0 16px 34px rgba(53, 28, 22, 0.08);
}

.faq-section .faq summary {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 18px 58px 18px 22px;
  color: var(--wine-dark);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.faq-section .faq summary::before {
  display: none;
}

.faq-section .faq summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #a86428;
  border-bottom: 2px solid #a86428;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-section .faq details[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
}

.faq-section .faq summary:focus-visible {
  outline: 2px solid #a86428;
  outline-offset: -4px;
  border-radius: 5px;
}

.faq-section .faq details p {
  margin: 0;
  padding: 0 58px 22px 22px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .faq-section .faq {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 720px) {
  .faq-section {
    padding-block: 58px 68px;
  }

  .faq-intro {
    margin-bottom: 28px;
    text-align: left;
  }

  .faq-intro .eyebrow {
    margin-bottom: 9px;
  }

  .faq-intro h2 {
    font-size: clamp(2.35rem, 12vw, 3rem);
    line-height: 1;
  }

  .faq-intro-copy {
    margin: 14px 0 0;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .faq-section .faq,
  .faq-column {
    gap: 10px;
  }

  .faq-section .faq summary {
    min-height: 64px;
    padding: 16px 50px 16px 17px;
    font-size: 0.94rem;
  }

  .faq-section .faq summary::after {
    right: 20px;
  }

  .faq-section .faq details p {
    padding: 0 50px 18px 17px;
    font-size: 0.9rem;
    line-height: 1.62;
  }
}

/* Gallery: centered editorial introduction and aligned preview content. */
.gallery-section .section-head.centered {
  z-index: 2;
  max-width: 900px;
  margin: 0 auto clamp(38px, 5vw, 58px);
  padding-inline: clamp(24px, 4vw, 54px);
  background: var(--paper);
}

.gallery-section .section-head.centered h2 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(2.75rem, 4.6vw, 4.4rem);
  line-height: 1;
}

.gallery-section .section-head.centered .lead {
  max-width: 720px;
  margin: 18px auto 0;
  line-height: 1.7;
}

.gallery-section .preview-layout {
  max-width: 1120px;
  margin-inline: auto;
}

.gallery-section .preview-tabs {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}

@media (max-width: 720px) {
  .gallery-section .section-head.centered {
    margin-bottom: 30px;
    padding-inline: 0;
    background: transparent;
  }

  .gallery-section .section-head.centered h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .gallery-section .section-head.centered .lead {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.62;
  }
}

/* Brand lockup based on the celestial sun-and-moon identity. */
.site-header .brand {
  gap: 14px;
}

.brand-logo {
  width: 72px;
  height: 56px;
  flex: 0 0 72px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(53, 28, 22, 0.2));
}

.site-header .brand-copy {
  gap: 4px;
}

.site-header .brand-copy strong {
  max-width: none;
  color: #fff8eb;
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.site-header .brand-copy small {
  display: block;
  color: #f4d483;
  font-family: "Cinzel", "Manrope", sans-serif;
  font-size: 0.56rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
  }

  .site-header .nav {
    min-height: 66px;
  }

  .site-header .brand {
    min-height: 56px;
    gap: 9px;
  }

  .brand-logo {
    width: 52px;
    height: 42px;
    flex-basis: 52px;
  }

  .site-header .brand-copy {
    gap: 2px;
  }

  .site-header .brand-copy strong {
    max-width: 185px;
    font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
    font-size: 0.78rem;
    line-height: 1.08;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

  .site-header .brand-copy small {
    display: block;
    max-width: 185px;
    font-size: 0.43rem;
    line-height: 1.15;
    letter-spacing: 0.13em;
  }

  section.hero {
    height: calc(100svh - 66px);
  }
}

@media (max-width: 390px) {
  .brand-logo {
    width: 47px;
    height: 38px;
    flex-basis: 47px;
  }

  .site-header .brand-copy strong {
    max-width: 154px;
    font-size: 0.69rem;
  }

  .site-header .brand-copy small {
    max-width: 154px;
    font-size: 0.38rem;
    letter-spacing: 0.09em;
  }
}

/* Included kit: centered introduction and stable responsive card grid. */
.include-section {
  padding-block: clamp(76px, 8vw, 112px);
}

.include-section .section-head.centered {
  z-index: 2;
  max-width: 900px;
  margin: 0 auto clamp(38px, 5vw, 56px);
  padding-inline: clamp(24px, 4vw, 54px);
  background: var(--paper-soft);
}

.include-section .section-head.centered h2 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(2.75rem, 4.6vw, 4.35rem);
  line-height: 1;
}

.include-section .grid-3 {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  gap: 20px;
}

.include-section .card {
  min-width: 0;
  min-height: 250px;
  padding: 30px 28px 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.include-section .card:hover {
  border-color: rgba(168, 100, 40, 0.78);
  box-shadow: 0 22px 42px rgba(53, 28, 22, 0.11);
  transform: translateY(-3px);
}

.include-section .card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2vw, 1.85rem);
  line-height: 1.12;
}

.include-section .card p {
  font-size: 0.96rem;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .include-section .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 840px;
  }

  .include-section .card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .include-section {
    padding-block: 60px 68px;
  }

  .include-section .section-head.centered {
    margin-bottom: 30px;
    padding-inline: 0;
    background: transparent;
  }

  .include-section .section-head.centered h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .include-section .grid-3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .include-section .card,
  .include-section .card:last-child {
    grid-column: auto;
    width: 100%;
    min-height: 0;
    padding: 24px 22px 22px;
  }

  .include-section .card:hover {
    transform: none;
  }

  .include-section .card h3 {
    font-size: 1.5rem;
  }
}

/* Conversion-focused hero and final purchase block. */
.brand-logo {
  border: 1px solid rgba(244, 212, 131, 0.48);
  border-radius: 50%;
  background: rgba(255, 248, 235, 0.1);
  padding: 4px;
  filter: drop-shadow(0 5px 12px rgba(53, 28, 22, 0.28));
}

.hero-offer {
  width: min(460px, calc(100% - 64px));
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(111, 44, 31, 0.96), rgba(66, 20, 17, 0.94));
  backdrop-filter: blur(5px);
}

.hero-offer-kicker {
  margin-bottom: 9px;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
}

.hero-offer-title {
  max-width: 390px;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1;
}

.hero-offer-copy {
  max-width: 400px;
  margin-top: 12px;
  font-size: 0.88rem;
  line-height: 1.52;
}

.hero-product-shot {
  position: relative;
  height: 108px;
  overflow: hidden;
  margin: 17px 0 0;
  border: 1px solid rgba(244, 212, 131, 0.56);
  border-radius: 4px;
  background: var(--paper-soft);
}

.hero-product-shot img {
  width: 180%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateX(-43%);
}

.hero-product-shot figcaption {
  position: absolute;
  right: 9px;
  bottom: 8px;
  max-width: 190px;
  border-radius: 3px;
  background: rgba(66, 20, 17, 0.9);
  color: #fff8eb;
  padding: 5px 8px;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-offer-buy {
  grid-template-columns: 132px minmax(0, 1fr);
  margin-top: 18px;
}

.hero-offer-price span {
  display: block;
  color: #eadbc8;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-offer-price strong {
  display: block;
  margin-top: 3px;
  color: #f4d483;
  font-size: 2.15rem;
}

.hero-offer-price small {
  display: block;
  margin-top: 4px;
  color: #eadbc8;
  font-size: 0.61rem;
  line-height: 1.2;
}

.hero-offer-price small b {
  font-weight: 700;
  text-decoration: line-through;
}

.hero-offer-meta {
  margin-top: 15px;
}

.hero-offer-meta span {
  font-size: 0.68rem;
}

.closing-offer-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(216, 182, 110, 0.16), transparent 32%),
    linear-gradient(135deg, #23323b 0%, #182a33 56%, #431b1a 100%);
  color: var(--paper-soft);
}

.closing-offer-section::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(216, 182, 110, 0.34);
  pointer-events: none;
}

.closing-offer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}

.closing-product {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(216, 182, 110, 0.58);
  border-radius: 5px;
  background: var(--paper-soft);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
  transform: rotate(-1deg);
}

.closing-product img {
  width: 100%;
}

.closing-offer-copy h2 {
  max-width: 620px;
  color: var(--paper-soft);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
}

.closing-offer-copy .lead {
  max-width: 590px;
  margin-top: 18px;
  color: #eadbc8;
  font-size: 1rem;
}

.closing-benefits {
  display: flex;
  gap: 9px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.closing-benefits span {
  border: 1px solid rgba(216, 182, 110, 0.45);
  border-radius: 999px;
  background: rgba(255, 248, 235, 0.07);
  color: #f4d483;
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 800;
}

.closing-purchase {
  display: grid;
  grid-template-columns: 150px minmax(210px, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.closing-price {
  display: grid;
}

.closing-price small {
  color: #f4d483;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.closing-price strong {
  color: var(--paper-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.75rem;
  line-height: 1;
}

.closing-price span {
  margin-top: 3px;
  color: #cfbca8;
  font-size: 0.68rem;
}

.closing-price span b {
  text-decoration: line-through;
}

.closing-purchase .cta {
  min-height: 58px;
}

.closing-note {
  margin-top: 13px;
  color: #cfbca8;
  font-size: 0.72rem;
}

@media (max-width: 980px) {
  .closing-offer-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .closing-product {
    transform: none;
  }
}

@media (max-width: 720px) {
  section.hero {
    display: grid;
    height: auto;
    min-height: 0;
  }

  .hero-media {
    position: relative;
    grid-area: 1 / 1;
    min-height: 720px;
  }

  .hero-offer {
    position: relative;
    grid-area: 1 / 1;
    align-self: center;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 0;
    margin: 14px;
    padding: 20px;
    transform: none;
  }

  .hero-offer-title {
    max-width: 360px;
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .hero-offer-copy {
    display: block;
    margin-top: 10px;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .hero-product-shot {
    height: 94px;
    margin-top: 13px;
  }

  .hero-product-shot figcaption {
    max-width: 165px;
    font-size: 0.52rem;
  }

  .hero-offer-buy {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
    margin-top: 14px;
  }

  .hero-offer-price {
    justify-self: stretch;
    text-align: left;
  }

  .hero-offer-price span {
    display: block;
    font-size: 0.55rem;
  }

  .hero-offer-price strong {
    font-size: 1.75rem;
  }

  .hero-offer-price small {
    font-size: 0.52rem;
  }

  .hero-offer-meta {
    display: flex;
    gap: 7px 12px;
    margin-top: 13px;
  }

  .hero-offer-meta span {
    font-size: 0.58rem;
  }

  .closing-offer-section {
    padding-block: 64px;
  }

  .closing-offer-section::before {
    inset: 9px;
  }

  .closing-offer-grid {
    gap: 32px;
  }

  .closing-offer-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .closing-offer-copy .lead {
    font-size: 0.94rem;
  }

  .closing-purchase {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .closing-price {
    text-align: center;
  }

  .closing-purchase .cta {
    width: 100%;
  }

  .closing-note {
    text-align: center;
  }
}

@media (max-width: 390px) {
  .hero-media {
    min-height: 700px;
  }

  .hero-offer {
    margin: 10px;
    padding: 17px;
  }

  .hero-offer-buy {
    grid-template-columns: 1fr;
  }

  .hero-offer-price {
    justify-self: center;
    text-align: center;
  }
}

/* Simplified sales card using only the current product pages. */
.hero-offer {
  width: min(410px, calc(100% - 64px));
  padding: 28px;
}

.hero-offer-title {
  max-width: 350px;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  line-height: 0.98;
}

.hero-offer-copy {
  max-width: 350px;
  margin-top: 14px;
  font-size: 0.88rem;
}

.hero-quick-benefits {
  display: flex;
  gap: 7px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero-quick-benefits span {
  border: 1px solid rgba(244, 212, 131, 0.34);
  border-radius: 999px;
  background: rgba(255, 248, 235, 0.07);
  color: #f4dfae;
  padding: 6px 9px;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.15;
}

.hero-offer-buy {
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.hero-offer .cta {
  min-height: 56px;
  font-size: 0.88rem;
}

.closing-product-pages {
  position: relative;
  min-height: 470px;
  margin: 0;
}

.closing-page {
  position: absolute;
  width: 78%;
  border: 1px solid rgba(216, 182, 110, 0.64);
  border-radius: 4px;
  background: var(--paper-soft);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.27);
}

.closing-page-main {
  z-index: 3;
  bottom: 12px;
  left: 0;
  transform: rotate(-3deg);
}

.closing-page-secondary {
  z-index: 1;
  top: 4px;
  right: 0;
  transform: rotate(3deg);
}

.closing-page-tertiary {
  z-index: 2;
  right: 4%;
  bottom: 34px;
  width: 68%;
  transform: rotate(1deg);
}

.closing-offer-copy h2 {
  max-width: 560px;
  font-size: clamp(2.7rem, 4.2vw, 4.25rem);
}

.closing-offer-copy .lead {
  max-width: 520px;
}

@media (max-width: 980px) {
  .closing-product-pages {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  .hero-media {
    min-height: 590px;
  }

  .hero-offer {
    width: auto;
    margin: 14px;
    padding: 22px;
  }

  .hero-offer-title {
    max-width: 330px;
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .hero-offer-copy {
    max-width: 330px;
    font-size: 0.82rem;
  }

  .hero-quick-benefits {
    margin-top: 15px;
  }

  .hero-offer-buy {
    grid-template-columns: 112px minmax(0, 1fr);
    margin-top: 18px;
  }

  .closing-product-pages {
    min-height: 350px;
  }
}

@media (max-width: 390px) {
  .hero-media {
    min-height: 610px;
  }

  .hero-offer-buy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-offer .cta {
    width: 100%;
  }

  .closing-product-pages {
    min-height: 300px;
  }
}

/* Final header alignment and consistent CTA typography. */
.cta,
.nav-cta,
.sticky .cta,
.hero-offer .cta,
.closing-purchase .cta {
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.site-header .brand img.brand-logo {
  width: 72px;
  height: 56px;
  flex: 0 0 72px;
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
  }

  .site-header .nav {
    position: relative;
    width: 100%;
    min-height: 72px;
    justify-content: center;
    padding-inline: 16px;
  }

  .site-header .brand {
    width: auto;
    min-height: 60px;
    justify-content: center;
    gap: 10px;
    margin-inline: auto;
    text-align: left;
  }

  .site-header .brand img.brand-logo {
    display: block;
    width: 54px;
    height: 44px;
    flex: 0 0 54px;
  }

  .site-header .brand-copy {
    display: grid;
    width: auto;
    max-width: none;
    gap: 3px;
  }

  .site-header .brand-copy strong {
    width: auto;
    max-width: none;
    color: #fff8eb;
    font-size: 0.78rem;
    line-height: 1;
    letter-spacing: 0.035em;
    white-space: nowrap;
  }

  .site-header .brand-copy small {
    width: auto;
    max-width: none;
    font-size: 0.43rem;
    line-height: 1;
    letter-spacing: 0.15em;
    white-space: nowrap;
  }

  .site-header .nav-links {
    display: none;
  }

  .hero-offer .cta,
  .sticky .cta,
  .closing-purchase .cta {
    font-size: 0.86rem;
  }
}

@media (max-width: 390px) {
  .site-header .nav {
    padding-inline: 10px;
  }

  .site-header .brand {
    gap: 8px;
  }

  .site-header .brand img.brand-logo {
    width: 46px;
    height: 38px;
    flex-basis: 46px;
  }

  .site-header .brand-copy strong {
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .site-header .brand-copy small {
    font-size: 0.37rem;
    letter-spacing: 0.1em;
  }
}

/* KIN-inspired number seal and exact mobile brand centering. */
.kin-number {
  position: relative;
  display: inline-grid;
  width: 1.04em;
  height: 1.12em;
  place-items: center;
  margin-inline: 0.06em;
  border: 1px solid #d8b66e;
  border-radius: 4px;
  background:
    linear-gradient(145deg, #fff9ef 0%, #f0d9ae 100%);
  color: var(--wine-dark);
  box-shadow:
    inset 0 0 0 3px rgba(127, 35, 42, 0.08),
    0 0 0 2px rgba(216, 182, 110, 0.25);
  font-family: "Manrope", Inter, sans-serif;
  font-size: 0.72em;
  font-weight: 900;
  line-height: 1;
  vertical-align: 0.1em;
}

.kin-number::before {
  content: "•••";
  position: absolute;
  top: 0.14em;
  color: var(--wine);
  font-size: 0.18em;
  line-height: 1;
  letter-spacing: 0.18em;
}

.kin-number::after {
  content: "";
  position: absolute;
  bottom: 0.12em;
  width: 0.3em;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 720px) {
  .site-header .nav {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .site-header .brand {
    justify-self: center;
    gap: 14px;
    margin: 0;
    transform: translateX(22px);
  }

  .site-header .brand-copy {
    justify-items: start;
    align-content: center;
    text-align: left;
  }

  .site-header .brand-copy strong,
  .site-header .brand-copy small {
    display: block;
    margin: 0;
    text-align: left;
  }

  .kin-number {
    margin-inline: 0.03em;
  }
}

@media (max-width: 390px) {
  .site-header .brand {
    gap: 11px;
    transform: translateX(14px);
  }
}

/* Problem section: centered editorial hierarchy and organized benefits. */
.section-intro {
  padding-block: clamp(76px, 8vw, 112px);
}

.section-intro .intro-grid {
  grid-template-columns: 1fr;
  max-width: 1120px;
  gap: clamp(34px, 5vw, 52px);
}

.section-intro .intro-copy {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.section-intro .intro-copy .eyebrow {
  margin-bottom: 14px;
}

.section-intro .intro-copy h2 {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.section-intro .intro-copy .lead {
  max-width: 720px;
  margin: 20px auto 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-intro .note-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.section-intro .note-row {
  display: block;
  min-width: 0;
  min-height: 168px;
  border: 1px solid rgba(185, 130, 47, 0.45);
  border-radius: 5px;
  background:
    linear-gradient(145deg, rgba(216, 182, 110, 0.1), transparent 58%),
    var(--white);
  padding: 25px 24px 23px;
  box-shadow: 0 14px 30px rgba(53, 28, 22, 0.05);
}

.section-intro .note-row span {
  margin-bottom: 18px;
}

.section-intro .note-row p {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .section-intro {
    padding-block: 60px 68px;
  }

  .section-intro .intro-copy h2 {
    max-width: 560px;
    font-size: clamp(2.35rem, 10.8vw, 3.2rem);
    line-height: 1.04;
  }

  .section-intro .intro-copy .lead {
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .section-intro .note-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-intro .note-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    align-items: center;
    padding: 17px 18px;
  }

  .section-intro .note-row span {
    margin: 0;
  }

  .section-intro .note-row p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

/* Seven-day guarantee and legal page. */
.guarantee-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(185, 130, 47, 0.52);
  background:
    radial-gradient(circle at 14% 50%, rgba(216, 182, 110, 0.18), transparent 24%),
    linear-gradient(110deg, #6f2c1f 0%, #8f4326 48%, #52201c 100%);
  color: var(--paper-soft);
  padding-block: 42px;
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.guarantee-seal {
  width: 96px;
  height: 96px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(244, 212, 131, 0.82);
  border-radius: 50%;
  background: rgba(255, 248, 235, 0.08);
  box-shadow:
    inset 0 0 0 5px rgba(216, 182, 110, 0.12),
    0 12px 28px rgba(53, 28, 22, 0.2);
  text-align: center;
}

.guarantee-seal strong {
  color: #f4d483;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.15rem;
  line-height: 0.72;
}

.guarantee-seal span {
  margin-top: 7px;
  color: #fff8eb;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guarantee-copy .eyebrow {
  margin-bottom: 6px;
  color: #f4d483;
}

.guarantee-copy h2 {
  max-width: 760px;
  color: var(--paper-soft);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.guarantee-copy p:last-child {
  max-width: 750px;
  margin-top: 8px;
  color: #eadbc8;
  font-size: 0.88rem;
  line-height: 1.6;
}

.guarantee-link {
  border: 1px solid rgba(244, 212, 131, 0.72);
  border-radius: 4px;
  color: #fff8eb;
  padding: 13px 17px;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.guarantee-link:hover {
  background: rgba(255, 248, 235, 0.1);
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(185, 130, 47, 0.09), transparent 180px),
    var(--paper-soft);
}

.legal-main {
  padding-block: clamp(64px, 8vw, 104px);
}

.legal-document {
  max-width: 860px;
  margin-inline: auto;
  border: 1px solid rgba(185, 130, 47, 0.42);
  border-radius: 6px;
  background: var(--white);
  padding: clamp(28px, 6vw, 68px);
  box-shadow: 0 24px 60px rgba(53, 28, 22, 0.08);
}

.legal-back {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.legal-document h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.legal-updated {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.8rem;
}

.legal-intro {
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.legal-section {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(185, 130, 47, 0.32);
}

.legal-section h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-section p,
.legal-section ul {
  margin-top: 12px;
}

.legal-section ul {
  padding-left: 20px;
}

.legal-highlight {
  border: 1px solid rgba(127, 35, 42, 0.22);
  border-radius: 5px;
  background: rgba(127, 35, 42, 0.05);
  padding: 24px;
}

@media (max-width: 820px) {
  .guarantee-inner {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .guarantee-seal {
    width: 78px;
    height: 78px;
  }

  .guarantee-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .guarantee-strip {
    padding-block: 38px;
  }

  .guarantee-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .guarantee-seal,
  .guarantee-link {
    grid-column: auto;
    justify-self: center;
  }

  .guarantee-copy h2 {
    font-size: 2.2rem;
  }

  .legal-document {
    padding: 26px 20px;
  }
}

/* Ornamental header CTA inspired by the printed calendar frames. */
.nav-cta-frame {
  position: relative;
  display: inline-grid;
  min-width: 222px;
  padding: 6px;
  border: 1px solid rgba(185, 130, 47, 0.92);
  border-radius: 2px;
  background:
    linear-gradient(135deg, transparent 0 8px, rgba(185, 130, 47, 0.38) 8px 9px, transparent 9px) top left / 20px 20px no-repeat,
    linear-gradient(225deg, transparent 0 8px, rgba(185, 130, 47, 0.38) 8px 9px, transparent 9px) top right / 20px 20px no-repeat,
    linear-gradient(45deg, transparent 0 8px, rgba(185, 130, 47, 0.38) 8px 9px, transparent 9px) bottom left / 20px 20px no-repeat,
    linear-gradient(315deg, transparent 0 8px, rgba(185, 130, 47, 0.38) 8px 9px, transparent 9px) bottom right / 20px 20px no-repeat,
    #fff7e7;
  box-shadow:
    inset 0 0 0 3px #fff7e7,
    inset 0 0 0 4px rgba(185, 130, 47, 0.42),
    0 10px 24px rgba(53, 28, 22, 0.2);
}

.nav-cta-frame::before,
.nav-cta-frame::after {
  content: "✦";
  position: absolute;
  z-index: 2;
  left: 50%;
  color: var(--gold);
  background: #fff7e7;
  padding-inline: 5px;
  font-size: 0.68rem;
  line-height: 1;
  transform: translateX(-50%);
}

.nav-cta-frame::before {
  top: -6px;
}

.nav-cta-frame::after {
  bottom: -6px;
}

.nav-cta-frame .nav-cta {
  min-height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--wine-dark);
  padding: 9px 17px;
  box-shadow: none;
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
}

.nav-cta-frame:hover {
  background-color: #fff0d3;
  box-shadow:
    inset 0 0 0 3px #fff7e7,
    inset 0 0 0 4px rgba(168, 100, 40, 0.58),
    0 13px 28px rgba(53, 28, 22, 0.25);
}

.nav-cta-frame .nav-cta:hover {
  border: 0;
  background: transparent;
  color: var(--wine);
  box-shadow: none;
  transform: none;
}

/* Ornamental frame belongs to the main sales card. */
.hero-offer {
  border: 1px solid rgba(244, 212, 131, 0.88);
  border-radius: 2px;
  padding: 38px 34px 34px;
  background:
    linear-gradient(135deg, transparent 0 13px, rgba(244, 212, 131, 0.76) 13px 14px, transparent 14px) top left / 30px 30px no-repeat,
    linear-gradient(225deg, transparent 0 13px, rgba(244, 212, 131, 0.76) 13px 14px, transparent 14px) top right / 30px 30px no-repeat,
    linear-gradient(45deg, transparent 0 13px, rgba(244, 212, 131, 0.76) 13px 14px, transparent 14px) bottom left / 30px 30px no-repeat,
    linear-gradient(315deg, transparent 0 13px, rgba(244, 212, 131, 0.76) 13px 14px, transparent 14px) bottom right / 30px 30px no-repeat,
    linear-gradient(145deg, rgba(111, 44, 31, 0.98), rgba(66, 20, 17, 0.97));
  box-shadow:
    inset 0 0 0 7px rgba(66, 20, 17, 0.96),
    inset 0 0 0 8px rgba(216, 182, 110, 0.62),
    inset 0 0 0 13px rgba(66, 20, 17, 0.94),
    inset 0 0 0 14px rgba(216, 182, 110, 0.28),
    0 24px 60px rgba(53, 28, 22, 0.28);
}

.hero-offer::before,
.hero-offer::after {
  position: absolute;
  z-index: 4;
  left: 50%;
  color: #f4d483;
  background: #5e251e;
  padding-inline: 7px;
  font-family: Georgia, serif;
  font-size: 0.84rem;
  line-height: 1;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-offer::before {
  content: "✦";
  top: 7px;
}

.hero-offer::after {
  content: "✦";
  bottom: 7px;
}

.site-header .nav-cta {
  min-height: 48px;
  border: 1px solid rgba(244, 212, 131, 0.82);
  border-radius: 3px;
  background: linear-gradient(180deg, #e7bd66 0%, #c9852c 100%);
  color: #3f1b17;
  padding: 11px 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 235, 0.42),
    0 9px 22px rgba(53, 28, 22, 0.22);
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.site-header .nav-cta:hover {
  background: linear-gradient(180deg, #f0cf85 0%, #d7993d 100%);
}

@media (max-width: 720px) {
  .hero-offer {
    padding: 34px 28px 31px;
  }
}

@media (max-width: 390px) {
  .hero-offer {
    padding: 32px 22px 29px;
  }
}

/* Final hero card typography pass. */
.hero-offer {
  width: min(440px, calc(100% - 56px));
  padding: 44px 38px 36px;
  text-align: left;
}

.hero-offer-kicker {
  max-width: 330px;
  margin: 0 0 16px;
  color: #f2d47e;
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.045em;
}

.hero-offer-title {
  max-width: 365px;
  color: #fff8eb;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 4.15vw, 4.55rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-offer-copy {
  max-width: 355px;
  margin-top: 22px;
  color: #f8ead7;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.91rem;
  font-weight: 500;
  line-height: 1.62;
}

.hero-quick-benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 360px;
  margin-top: 20px;
}

.hero-quick-benefits span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(244, 212, 131, 0.48);
  border-radius: 999px;
  color: #f6e3bd;
  padding: 5px 10px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.15;
}

.hero-offer-buy {
  grid-template-columns: 122px minmax(0, 1fr);
  align-items: end;
  gap: 18px;
  width: 100%;
  max-width: 360px;
  margin-top: 26px;
}

.hero-offer-price span {
  color: #f0d68c;
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.hero-offer-price strong {
  margin-top: 4px;
  color: #f6d878;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 2.22rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-offer-price small {
  margin-top: 6px;
  color: rgba(255, 248, 235, 0.82);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.6rem;
  line-height: 1.25;
}

.hero-offer .cta {
  min-height: 58px;
  justify-content: center;
  border-radius: 4px;
  padding: 14px 16px;
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: none;
}

.kin-number {
  top: -0.03em;
  width: 0.9em;
  height: 1em;
  margin-inline: 0.03em;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.74em;
  font-weight: 700;
  vertical-align: 0.06em;
}

.kin-number::before {
  top: 0.12em;
  font-size: 0.16em;
}

.kin-number::after {
  bottom: 0.11em;
}

@media (max-width: 720px) {
  .hero-offer {
    width: min(372px, calc(100% - 34px));
    padding: 38px 28px 32px;
  }

  .hero-offer-kicker {
    margin-bottom: 14px;
    font-size: 0.67rem;
  }

  .hero-offer-title {
    max-width: 320px;
    font-size: clamp(3rem, 13.2vw, 4rem);
    line-height: 0.92;
  }

  .hero-offer-copy {
    max-width: 310px;
    margin-top: 18px;
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .hero-quick-benefits {
    max-width: 310px;
    gap: 7px;
  }

  .hero-quick-benefits span {
    min-height: 25px;
    padding: 5px 9px;
    font-size: 0.59rem;
  }

  .hero-offer-buy {
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 12px;
    max-width: 310px;
    margin-top: 22px;
  }

  .hero-offer-price strong {
    font-size: 1.95rem;
  }

  .hero-offer .cta {
    min-height: 56px;
    padding-inline: 12px;
    font-size: 0.7rem;
  }
}

@media (max-width: 390px) {
  .hero-offer {
    width: min(354px, calc(100% - 24px));
    padding: 36px 23px 30px;
  }

  .hero-offer-title {
    font-size: clamp(2.75rem, 12.5vw, 3.45rem);
  }

  .hero-offer-buy {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-offer .cta {
    width: 100%;
  }
}

/* Hero headline: controlled line rhythm and refined title typography. */
.hero-offer-title {
  display: grid;
  gap: 0.12em;
  max-width: 360px;
  margin: 0;
  color: #fff8eb;
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 3.35vw, 3.28rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0.01em;
  text-transform: none;
}

.hero-title-line {
  display: block;
}

.hero-title-line:first-child {
  white-space: nowrap;
}

.hero-offer-title .kin-number {
  top: -0.04em;
  width: 0.98em;
  height: 1.05em;
  margin-inline: 0.12em 0.08em;
  border-color: rgba(244, 212, 131, 0.9);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 250, 237, 0.98), rgba(232, 199, 134, 0.96));
  box-shadow:
    inset 0 0 0 3px rgba(127, 35, 42, 0.09),
    0 0 0 2px rgba(244, 212, 131, 0.2),
    0 5px 10px rgba(53, 28, 22, 0.22);
  color: #5a1919;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: 0.07em;
}

.hero-offer-title .kin-number::before {
  top: 0.13em;
  color: #8d2a20;
  font-size: 0.15em;
  letter-spacing: 0.16em;
}

.hero-offer-title .kin-number::after {
  bottom: 0.12em;
  width: 0.32em;
  background: #b9822f;
}

@media (max-width: 720px) {
  .hero-offer-title {
    max-width: 318px;
    font-size: clamp(2.05rem, 9.1vw, 2.9rem);
    line-height: 1.08;
  }
}

@media (max-width: 390px) {
  .hero-offer-title {
    max-width: 296px;
    font-size: clamp(1.86rem, 8.9vw, 2.38rem);
    gap: 0.15em;
  }

  .hero-offer-title .kin-number {
    margin-inline: 0.08em 0.05em;
  }
}

/* Hero card lockup inspired by the printed cover. */
.hero-calendar-mark {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 356px;
  margin-inline: auto;
  text-align: center;
}

.hero-calendar-title {
  margin: 0;
  color: #fff8eb;
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.15rem, 3.15vw, 3rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.hero-calendar-subtitle {
  position: relative;
  width: 100%;
  margin: 13px 0 0;
  color: #f3d98d;
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-calendar-subtitle::before,
.hero-calendar-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 212, 131, 0.82));
}

.hero-calendar-subtitle::before {
  right: calc(100% - 28px);
}

.hero-calendar-subtitle::after {
  left: calc(100% - 28px);
  transform: scaleX(-1);
}

.hero-calendar-cycle {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  width: min(100%, 320px);
  margin-top: 22px;
  color: #fff4dc;
  text-align: left;
}

.cycle-icon {
  position: relative;
  display: block;
  width: 36px;
  height: 42px;
  border: 1px solid rgba(244, 212, 131, 0.78);
  border-radius: 5px;
  background: linear-gradient(180deg, #c34a38, #8a281f);
  box-shadow:
    inset 0 0 0 4px rgba(255, 248, 235, 0.16),
    0 6px 12px rgba(53, 28, 22, 0.22);
}

.cycle-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 9px;
  width: 16px;
  height: 20px;
  border: 2px solid rgba(255, 248, 235, 0.86);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.cycle-icon::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 248, 235, 0.84);
}

.hero-calendar-cycle strong,
.hero-calendar-cycle small {
  display: block;
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  line-height: 1.22;
  text-transform: uppercase;
}

.hero-calendar-cycle strong {
  color: #fff2d3;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-calendar-cycle small {
  margin-top: 4px;
  color: #f3d98d;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
}

.hero-date-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  align-items: center;
  width: min(100%, 326px);
  min-height: 42px;
  margin-top: 18px;
  border: 1px solid rgba(244, 212, 131, 0.92);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(244, 212, 131, 0.18), transparent 18%, transparent 82%, rgba(244, 212, 131, 0.18)),
    linear-gradient(180deg, #a83c2d, #74251e);
  color: #fff2d3;
  padding: 8px 17px;
  box-shadow:
    inset 0 0 0 3px rgba(83, 28, 23, 0.55),
    inset 0 0 0 4px rgba(244, 212, 131, 0.35),
    0 10px 20px rgba(53, 28, 22, 0.24);
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-date-cta::before,
.hero-date-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(244, 212, 131, 0.88);
  background: #74251e;
  transform: translateY(-50%) rotate(45deg);
}

.hero-date-cta::before {
  left: -4px;
}

.hero-date-cta::after {
  right: -4px;
}

.hero-date-cta b {
  display: block;
  height: 1px;
  background: rgba(244, 212, 131, 0.82);
}

.hero-date-cta b::after {
  content: "✦";
  position: relative;
  top: -0.48em;
  display: block;
  color: #f3d98d;
  font-size: 0.62rem;
  line-height: 1;
}

.hero-date-cta:hover {
  color: #fff8eb;
  background:
    linear-gradient(90deg, rgba(244, 212, 131, 0.22), transparent 18%, transparent 82%, rgba(244, 212, 131, 0.22)),
    linear-gradient(180deg, #bd4b37, #832c22);
  transform: translateY(-1px);
}

.hero-offer .hero-offer-buy {
  display: block;
  max-width: 326px;
  margin: 24px auto 0;
  text-align: center;
}

.hero-offer .hero-offer-price span {
  font-size: 0.62rem;
}

.hero-offer .hero-offer-price strong {
  font-size: 2.08rem;
}

@media (max-width: 720px) {
  .hero-calendar-mark {
    max-width: 314px;
  }

  .hero-calendar-title {
    font-size: clamp(1.82rem, 8.6vw, 2.42rem);
  }

  .hero-calendar-subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .hero-calendar-cycle {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 11px;
    width: min(100%, 286px);
    margin-top: 19px;
  }

  .cycle-icon {
    width: 32px;
    height: 38px;
  }

  .hero-calendar-cycle strong {
    font-size: 0.69rem;
  }

  .hero-calendar-cycle small {
    font-size: 0.63rem;
  }

  .hero-date-cta {
    width: min(100%, 292px);
    min-height: 39px;
    padding-inline: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero-offer .hero-offer-buy {
    max-width: 292px;
    margin-top: 22px;
  }
}

@media (max-width: 390px) {
  .hero-calendar-title {
    font-size: clamp(1.62rem, 8.1vw, 2.05rem);
  }

  .hero-calendar-subtitle {
    letter-spacing: 0.18em;
  }

  .hero-calendar-cycle {
    width: min(100%, 270px);
  }

  .hero-date-cta {
    grid-template-columns: 1fr 22px 1fr;
    width: min(100%, 270px);
    font-size: 0.61rem;
    letter-spacing: 0.075em;
  }
}

/* Product-cover hero: the real PDF cover becomes the first viewport. */
.cover-hero {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(10px, 1.6vw, 22px);
  background:
    linear-gradient(180deg, rgba(66, 20, 17, 0.12), transparent 18%),
    #efe1ca;
}

.cover-hero::before,
.cover-hero::after {
  display: none;
}

.hero-cover-frame {
  position: relative;
  width: min(1491px, 100%);
  border: 1px solid rgba(185, 130, 47, 0.72);
  background: #f6ecd9;
  box-shadow: 0 22px 54px rgba(53, 28, 22, 0.18);
}

.hero-cover-product {
  display: block;
  width: 100%;
  height: auto;
}

.hero-cover-buy {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 8.55%;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 0.42em;
  width: 36.8%;
  min-height: 4.35%;
  border: 1px solid rgba(244, 212, 131, 0.96);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(244, 212, 131, 0.2), transparent 18%, transparent 82%, rgba(244, 212, 131, 0.2)),
    linear-gradient(180deg, #a83e31 0%, #78251f 100%);
  color: #fff4dc;
  padding: 0.55% 2.2%;
  box-shadow:
    inset 0 0 0 3px rgba(89, 29, 24, 0.58),
    inset 0 0 0 4px rgba(244, 212, 131, 0.34),
    0 8px 18px rgba(53, 28, 22, 0.28);
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.72rem, 1.12vw, 1.05rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-cover-buy::before,
.hero-cover-buy::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(244, 212, 131, 0.9);
  background: #78251f;
  transform: translateY(-50%) rotate(45deg);
}

.hero-cover-buy::before {
  left: -4px;
}

.hero-cover-buy::after {
  right: -4px;
}

.hero-cover-buy span {
  font-size: 0.72em;
  letter-spacing: 0.13em;
}

.hero-cover-buy strong {
  color: #fff8eb;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-cover-buy:hover {
  color: #fff8eb;
  background:
    linear-gradient(90deg, rgba(244, 212, 131, 0.24), transparent 18%, transparent 82%, rgba(244, 212, 131, 0.24)),
    linear-gradient(180deg, #bf4e3c 0%, #8d3026 100%);
  transform: translate(-50%, -1px);
}

@media (min-width: 1280px) {
  .hero-cover-frame {
    width: min(1380px, calc(100vw - 44px));
  }
}

@media (max-width: 720px) {
  .cover-hero {
    padding: 8px;
  }

  .hero-cover-frame {
    width: 100%;
    box-shadow: 0 12px 28px rgba(53, 28, 22, 0.14);
  }

  .hero-cover-buy {
    bottom: 7.9%;
    grid-template-columns: 1fr;
    gap: 2px;
    width: 44%;
    min-height: 28px;
    padding: 5px 8px;
    font-size: clamp(0.54rem, 2.6vw, 0.68rem);
    letter-spacing: 0.04em;
  }

  .hero-cover-buy span,
  .hero-cover-buy strong {
    letter-spacing: 0.04em;
  }
}

@media (max-width: 390px) {
  .hero-cover-buy {
    width: 49%;
    min-height: 27px;
    font-size: 0.52rem;
  }
}

/* Headerless cover sizing: responsive top artwork without the old menu. */
body {
  padding-top: 0;
}

.cover-hero {
  min-height: auto;
  padding: clamp(8px, 1.1vw, 16px);
}

.hero-cover-frame {
  width: auto;
  height: min(68vw, 820px, calc(100svh - 18px));
  max-width: calc(100vw - 24px);
  aspect-ratio: 1491 / 1055;
  overflow: hidden;
}

.hero-cover-product {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 1440px) {
  .hero-cover-frame {
    height: min(63vw, 850px, calc(100svh - 22px));
  }
}

@media (max-width: 980px) {
  .hero-cover-frame {
    height: min(70vw, calc(100svh - 16px));
    max-width: calc(100vw - 16px);
  }
}

@media (max-width: 720px) {
  .cover-hero {
    padding: 6px;
  }

  .hero-cover-frame {
    width: calc(100vw - 12px);
    height: auto;
    max-width: none;
    aspect-ratio: 1491 / 1055;
  }
}

@media (max-width: 420px) {
  .hero-cover-frame {
    width: calc(100vw - 8px);
  }
}

/* Hero cover balance: smaller artwork, higher composition, stronger CTA. */
.hero-cover-frame {
  background:
    radial-gradient(circle at 50% 82%, rgba(244, 212, 131, 0.2), transparent 28%),
    #f4ead8;
}

.hero-cover-product {
  transform: translateY(-3.4%) scale(0.935);
  transform-origin: center top;
}

.hero-cover-buy {
  bottom: 4.9%;
  width: min(45.5%, 560px);
  min-height: 6.3%;
  border-width: 2px;
  background:
    linear-gradient(90deg, rgba(255, 236, 174, 0.28), transparent 17%, transparent 83%, rgba(255, 236, 174, 0.28)),
    linear-gradient(180deg, #c6533f 0%, #85291f 100%);
  padding: 0.78% 2.6%;
  box-shadow:
    inset 0 0 0 3px rgba(89, 29, 24, 0.55),
    inset 0 0 0 5px rgba(244, 212, 131, 0.45),
    0 13px 28px rgba(53, 28, 22, 0.34);
  font-size: clamp(0.9rem, 1.34vw, 1.28rem);
  letter-spacing: 0.07em;
}

.hero-cover-buy span {
  font-size: 0.66em;
  letter-spacing: 0.16em;
}

.hero-cover-buy strong {
  font-size: 1.08em;
  letter-spacing: 0.08em;
}

.hero-cover-buy::before,
.hero-cover-buy::after {
  width: 14px;
  height: 14px;
}

.hero-cover-buy::before {
  left: -6px;
}

.hero-cover-buy::after {
  right: -6px;
}

@media (max-width: 720px) {
  .hero-cover-product {
    transform: translateY(-2.5%) scale(0.955);
  }

  .hero-cover-buy {
    bottom: 4.8%;
    grid-template-columns: auto auto;
    width: 56%;
    min-height: 36px;
    padding: 7px 10px;
    font-size: clamp(0.65rem, 3.25vw, 0.86rem);
    letter-spacing: 0.04em;
  }

  .hero-cover-buy span {
    font-size: 0.6em;
    letter-spacing: 0.08em;
  }

  .hero-cover-buy strong {
    font-size: 1em;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 420px) {
  .hero-cover-buy {
    width: 62%;
    min-height: 34px;
    font-size: 0.66rem;
  }
}
