/* ============ Tokens ============ */
:root {
  --bg: #0e1613;
  --bg-glow: #1c2b23;
  --card-bg: #131f1a;
  --gold: #c9a44c;
  --cream: #f4ecda;
  --body-text: #cfc9b8;
  --muted: #8a8574;
  --border: rgba(201, 164, 76, 0.35);

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 760px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ============ Focus visibility ============ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============ Shared type ============ */
.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.gold { color: var(--gold); }

.rule-fade {
  width: 140px;
  height: 1px;
  margin: 0 auto 40px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  background:
    radial-gradient(ellipse at 50% 30%, var(--bg-glow) 0%, var(--bg) 60%);
  overflow: hidden;
}

.corner {
  position: absolute;
  width: 90px;
  height: 90px;
  border-color: var(--gold);
  opacity: 0.8;
}
.corner-tl {
  top: 32px; left: 32px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.corner-br {
  bottom: 32px; right: 32px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.motif {
  width: 90px;
  height: auto;
  margin-bottom: 8px;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 8vw, 84px);
  line-height: 1.05;
  color: var(--cream);
  margin: 0 0 28px;
  max-width: 900px;
}

.subhead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 2.4vw, 22px);
  color: var(--body-text);
  max-width: 560px;
  margin: 0 0 40px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: #14100a;
  padding: 16px 40px;
  font-size: 16px;
}
.btn-primary:hover { transform: translateY(-2px); background: #d9b563; }

.btn-large { padding: 20px 52px; font-size: 18px; }

.btn-small {
  padding: 9px 20px;
  font-size: 14px;
  background: var(--gold);
  color: #14100a;
}

/* ============ Share row ============ */
.share-row {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.share-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: transparent;
  border: 1.3px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============ Sticky mini bar ============ */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  background: rgba(14, 22, 19, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  font-size: 14px;
  color: var(--cream);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar span { font-family: var(--font-serif); font-style: italic; }

/* ============ Sections ============ */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px;
}

.section-alt {
  max-width: 100%;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-alt > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.lede {
  font-size: clamp(19px, 2.6vw, 24px);
  line-height: 1.55;
  color: var(--cream);
  text-align: center;
  margin: 0 0 60px;
}

.lede-small {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  max-width: 520px;
  margin: 24px auto 0;
}

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

.card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
}
.card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.card p { margin: 0; font-size: 15px; color: var(--body-text); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--cream);
  text-align: center;
  margin: 0 0 50px;
}

.inside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.inside-list li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--cream);
}
.inside-list li:last-child { border-bottom: none; }
.inside-list li span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  min-width: 28px;
}

.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.5;
  color: var(--cream);
  text-align: center;
  margin: 0;
  padding: 0;
  border: none;
}

/* ============ Buy section ============ */
.section-buy {
  text-align: center;
  padding-top: 120px;
  padding-bottom: 120px;
}
.price {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 88px);
  color: var(--cream);
  margin: 0 0 8px;
  line-height: 1;
}
.price-note {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-top: 14px;
}
.micro {
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
}

/* ============ Footer ============ */
.footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 100px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-small {
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  margin-top: 20px;
}
.footer-share { margin-top: 8px; }

/* ============ Responsive ============ */
@media (max-width: 720px) {
  .card-row { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .sticky-bar span { display: none; }
  .sticky-bar { justify-content: center; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .sticky-bar, .share-btn { transition: none; }
}
