/* Barkopolis marketing site (M52) — the game's own design language:
   dark restrained chrome, hairline dividers, small-caps tracking labels,
   ONE gold accent, epic serif headers. Zero webfonts (the game itself
   renders Cinzel→Georgia); zero JS required to read anything. */

:root {
  --bg: #0b1018;
  --panel: #0c111c;
  --panel-2: #090d16;
  --hairline: #1e293b;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --faint: #64748b;
  --gold: #eab308;
  --gold-soft: #f5d06f;
  --serif: 'Cinzel', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: var(--gold-soft); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

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

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
}

h1, h2, h3 { font-family: var(--serif); font-weight: 700; color: var(--text); text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); line-height: 1.12; letter-spacing: 0.01em; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 0.4em; }
h3 { font-size: 1.05rem; margin-bottom: 0.3em; }

p { color: var(--muted); max-width: 62ch; }
strong { color: var(--text); font-weight: 600; }

/* ---- header ---- */
.site-header {
  border-bottom: 1px solid var(--hairline);
  background: rgba(9, 13, 22, 0.85);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wordmark img { width: 26px; height: 26px; }
.wordmark:hover { text-decoration: none; color: var(--gold-soft); }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 13px; }
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--text); text-decoration: none; }

/* ---- buttons ---- */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0b1018;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border: 1px solid #b98a06;
  border-radius: 3px;
  padding: 13px 30px;
  box-shadow: 0 0 24px rgba(234, 179, 8, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-play:hover { text-decoration: none; filter: brightness(1.06); }
.btn-play.small { padding: 8px 18px; font-size: 0.75rem; box-shadow: none; }
.btn-ghost {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 12px 22px;
}
.btn-ghost:hover { color: var(--text); border-color: var(--faint); text-decoration: none; }

/* ---- hero ---- */
.hero {
  padding: 72px 0 40px;
  background:
    radial-gradient(1200px 500px at 50% -220px, rgba(234, 179, 8, 0.07), transparent 65%),
    radial-gradient(900px 420px at 85% 10%, rgba(56, 96, 140, 0.12), transparent 70%);
  border-bottom: 1px solid var(--hairline);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.hero .tagline { font-size: 1.1rem; margin: 18px 0 26px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note { font-size: 12px; color: var(--faint); margin-top: 14px; }
.hero-shot {
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* ---- trust strip ---- */
.trust {
  border-bottom: 1px solid var(--hairline);
  background: var(--panel-2);
}
.trust ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 34px;
  justify-content: center;
  padding: 16px 0;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust li::before { content: '🦴'; margin-right: 9px; font-size: 11px; }

/* ---- sections ---- */
section.band { padding: 64px 0; border-bottom: 1px solid var(--hairline); }
section.band.alt { background: var(--panel-2); }
.section-head { margin-bottom: 34px; }
.section-head p { margin-top: 8px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 5px;
  padding: 22px;
}
.feature .glyph { font-size: 1.5rem; margin-bottom: 10px; }
.feature p { font-size: 14px; }

.shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.shots figure {
  border: 1px solid var(--hairline);
  border-radius: 5px;
  overflow: hidden;
  background: var(--panel);
}
.shots figcaption {
  font-size: 12px;
  color: var(--faint);
  padding: 10px 14px;
  border-top: 1px solid var(--hairline);
}

.packs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.pack {
  display: flex;
  gap: 12px;
  align-items: baseline;
  border: 1px solid var(--hairline);
  border-radius: 5px;
  padding: 14px 16px;
  background: var(--panel);
  font-size: 14px;
}
.pack .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; align-self: center; }
.pack .who { color: var(--faint); font-size: 12.5px; }

.parents-cols { display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; align-items: start; }
.checks { list-style: none; display: grid; gap: 12px; font-size: 14.5px; color: var(--muted); }
.checks li { padding-left: 26px; position: relative; }
.checks li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.cta-final { text-align: center; padding: 84px 0; }
.cta-final h2 { margin-bottom: 10px; }
.cta-final p { margin: 0 auto 28px; }

/* ---- prose pages (about / privacy / press / barkopedia) ---- */
.prose { padding: 56px 0 80px; }
.prose .wrap { max-width: 760px; }
.prose h1 { margin-bottom: 8px; }
.prose .lede { font-size: 1.05rem; margin: 14px 0 34px; }
.prose h2 { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--hairline); }
.prose h3 { margin-top: 26px; color: var(--gold-soft); font-size: 1rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul, .prose ol { padding-left: 22px; display: grid; gap: 6px; margin: 12px 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 14px 0; }
.prose th, .prose td { text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--hairline); }
.prose th { color: var(--faint); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.crumbs { font-size: 12px; color: var(--faint); margin-bottom: 20px; }
.crumbs a { color: var(--faint); }

.entry-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 24px; margin: 12px 0 8px; }
.entry-grid a { font-size: 14px; color: var(--muted); }
.entry-grid a:hover { color: var(--gold-soft); }

/* ---- footer ---- */
.site-footer {
  padding: 38px 0 46px;
  font-size: 12.5px;
  color: var(--faint);
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  align-items: center;
  justify-content: space-between;
}
.site-footer nav { display: flex; gap: 22px; }
.site-footer a { color: var(--faint); }
.site-footer a:hover { color: var(--muted); }
.studio { letter-spacing: 0.22em; text-transform: uppercase; font-size: 11px; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .hero-grid, .parents-cols { grid-template-columns: 1fr; }
  .feature-grid, .shots, .packs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
  .feature-grid, .shots, .packs, .entry-grid { grid-template-columns: 1fr; }
  .site-nav { gap: 14px; }
  .site-nav .hide-sm { display: none; }
  .hero { padding-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
