/* ==========================================================================
   50 @ 50 — shared site styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,450;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500&display=swap');

:root {
  --paper: #FBF8F2;
  --card: #FFFFFF;
  --ink: #242019;
  --ink-soft: #6B6459;
  --muted: #8C8271;
  --faint: #C2B9A5;
  --gold: #B8860F;
  --gold-tint: rgba(184, 134, 15, 0.12);
  --pine: #2F4A45;
  --ember: #A6472B;
  --border: rgba(36, 32, 25, 0.1);
  --shadow: 0 20px 45px rgba(120, 100, 60, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.55;
}

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

a { color: inherit; }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(32px, 6vw, 52px); line-height: 1.15; font-weight: 450; }
h2 { font-size: clamp(24px, 4vw, 34px); line-height: 1.2; }
h3 { font-size: 19px; }

p { color: var(--ink-soft); margin: 0 0 1em; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow { max-width: 720px; }

/* ---------- Header / nav ---------- */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
}

.site-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--pine);
  color: var(--paper) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--gold); color: var(--ink); }

.btn-gold { background: var(--gold); color: var(--ink); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,15,0.14) 0%, rgba(184,134,15,0.04) 55%, transparent 75%);
  pointer-events: none;
}

.hero .wrap { position: relative; }

.hero-content { max-width: 640px; }

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 760px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-photo { aspect-ratio: 16 / 10; order: -1; }
}

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

/* ---------- Cards / grids ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  gap: 20px;
}

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

.section {
  padding: 56px 0;
}

.section-alt {
  background: #F3EEE3;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
}

/* ---------- Sample question card ---------- */
.question-card {
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  background: var(--card);
  border-radius: 4px 14px 14px 4px;
  margin-bottom: 14px;
}

.question-card .eyebrow { display: block; margin-bottom: 6px; }

.question-card p {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--ink);
  margin: 0;
}

/* ---------- Product / shop ---------- */
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.product-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #F3EEE3 0%, #E7DFCC 100%);
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-align: center;
  padding: 20px;
}

.price {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  color: var(--ink);
  margin: 6px 0 18px;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.included-list li {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 14px;
}

.included-list li:first-child { border-top: none; }

/* ---------- Video grid ---------- */
.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  padding: 14px 16px;
}

.video-caption h3 { margin-bottom: 4px; font-size: 16px; }
.video-caption p { margin: 0; font-size: 13px; }

/* ---------- FAQ ---------- */
.faq-item {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item h3 { margin-bottom: 8px; }
.faq-item p { margin: 0; font-size: 14px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  margin-top: 40px;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--faint);
}

.footer-links {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  color: var(--ink-soft);
}

.footer-links a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .site-nav { display: none; }
}
