:root {
  --ink: #16110e;
  --paper: #f4eee6;
  --gold: #c9a227;
  --gold-deep: #8d6b12;
  --line: #e6d9c8;
  --muted: #6a5c50;
  --card: rgba(255, 253, 248, .92);
  --shadow: 0 22px 50px rgba(22, 17, 14, .12);
  --radius: 22px;
  --pad: clamp(20px, 5vw, 72px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #fbe9c8 0%, transparent 55%),
    radial-gradient(900px 420px at 110% 8%, #ead7c0 0%, transparent 50%),
    var(--paper);
  font-family: "Source Sans 3", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 8px; background: #fff; padding: 8px 12px; z-index: 20; }

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px var(--pad);
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 248, .72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 216, 198, .7);
  flex-wrap: nowrap;
  min-width: 0;
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  z-index: 32;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  z-index: 32;
  flex: 0 0 44px;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform .25s, opacity .2s;
}
body.nav-open .menu-btn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
body.nav-open .menu-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav {
  display: flex;
  align-items: center;
  gap: 8px 18px;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  padding: 8px 2px;
}
.nav a.on, .nav a:hover { color: var(--ink); }
.nav .buy { display: none; }
.buy-desk { display: none; flex-shrink: 0; }
.buy {
  background: var(--ink);
  color: #f7f1e8;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.buy:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 6vw, 72px) var(--pad) 40px;
  align-items: center;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  line-height: 1.06;
  margin: 10px 0 16px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.kicker {
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--gold-deep);
  font-weight: 700;
}
.lede { font-size: 1.08rem; color: var(--muted); max-width: 38rem; }
.hero-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken 18s ease-in-out infinite alternate;
}
.float-badge {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  background: rgba(22, 17, 14, .78);
  color: #f7f1e8;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: clamp(.75rem, 3.4vw, .85rem);
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 16px; }
.pill {
  border: 1px solid var(--line);
  background: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
}
.cta { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  font: inherit;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: linear-gradient(180deg, #e0c15a, var(--gold)); color: #1c1612; }
.btn-ink { background: var(--ink); color: #f7f1e8; }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: #fff; }
.price-row { display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap; margin: 10px 0 6px; }
.now { font-size: clamp(1.7rem, 4vw, 2.2rem); font-weight: 700; }
.was { color: var(--muted); text-decoration: line-through; }
.save { color: var(--gold-deep); font-weight: 700; }

.band { padding: clamp(40px, 7vw, 80px) var(--pad); }
.band.alt {
  background: linear-gradient(180deg, rgba(255,253,248,.7), rgba(255,253,248,.95));
  border-block: 1px solid var(--line);
}
h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.grid { display: grid; gap: 16px; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 18px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card h3 { margin: 0 0 8px; font-size: 1.12rem; }
.card p, .card li { color: var(--muted); }
.card ul { margin: 0; padding-left: 1.1rem; }

.table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--line); background: #fff; }
.table { width: 100%; border-collapse: collapse; min-width: 520px; }
.table th, .table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table tr:last-child th, .table tr:last-child td { border-bottom: 0; }
.table th { font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); width: 28%; }

.faq details {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 4px 16px;
  margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
form.stack { display: grid; gap: 12px; max-width: 520px; }
label { font-weight: 600; font-size: .92rem; }
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: #fff;
  min-height: 46px;
}
.ok { color: #1b6b3a; font-weight: 600; }
.err { color: #9b1c1c; }
.foot {
  padding: 40px var(--pad) 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  background: #16110e;
  color: #f4eadc;
}
.foot a { color: #f4eadc; }
.foot .copy { grid-column: 1 / -1; opacity: .7; font-size: .85rem; }
.video-band { padding-top: 8px; }
.video-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  background: #16110e;
  color: #f4eadc;
  border-radius: 28px;
  padding: clamp(20px, 4vw, 36px);
  box-shadow: var(--shadow);
}
.video-panel .lede, .video-panel .kicker { color: #e8d7b8; }
.video-panel h2 { color: #fffdf8; }
.video-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame img, .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  border: 0;
  border-radius: 50%;
  background: rgba(201, 162, 39, .94);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: transform .2s;
}
.play:hover { transform: scale(1.06); }
.play:disabled { opacity: .7; cursor: default; }
.play span {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #16110e;
  margin-left: 4px;
}

.notice {
  display: inline-block;
  background: var(--ink);
  color: #f7f1e8;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards;
}
.d1 { animation-delay: .08s; }
.d2 { animation-delay: .18s; }
.d3 { animation-delay: .28s; }
.d4 { animation-delay: .38s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}
@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@media (min-width: 1081px) {
  .buy-desk { display: inline-flex; }
  .menu-btn { display: none; }
}

@media (max-width: 1080px) {
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .buy-desk { display: none !important; }
  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(22, 17, 14, .96);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 80px 28px 40px;
    transform: translateY(-110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .35s ease, visibility .35s;
    z-index: 31;
  }
  body.nav-open .nav {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .nav a, .nav .buy {
    color: #f7f1e8;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 12px;
    white-space: normal;
  }
  .nav .buy {
    display: inline-flex;
    justify-content: center;
    width: auto;
    max-width: 100%;
    margin-top: 12px;
  }
  .hero, .g3, .g2, .foot, .video-panel { grid-template-columns: 1fr; }
  .hero { padding-top: 20px; }
  .hero-visual { aspect-ratio: 4 / 3; }
  .table { min-width: 0; }
  .table, .table tbody, .table tr { display: block; }
  .table th, .table td { display: block; width: 100%; padding: 8px 16px; }
  .table th { padding-top: 16px; }
  .table td { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-visual img, .card, .btn { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
