/* Golden Hind Games — design system
   Palette and type derived from the brand (golden hind on a maroon shield)
   and the research brief. Dark, atmospheric, gold-on-near-black. */

/* ---------- Tokens ---------- */
:root {
  /* grounds */
  --ground:        #0E0B0A;  /* warm near-black page background */
  --surface:       #14110F;  /* charcoal: cards, header, footer */
  --surface-2:     #1B1714;  /* slightly lifted surface */
  --maroon:        #7E1B1B;  /* brand SURFACE only (panels, fills) */
  --maroon-deep:   #5E1414;

  /* gold ramp */
  --gold-shadow:   #B97D14;
  --gold:          #E9A11C;  /* primary accent / link / heading */
  --gold-hi:       #F0B43A;
  --gold-pale:     #F2D08A;  /* hover / label on maroon */

  /* text */
  --ink:           #E8DCC0;  /* parchment body text */
  --ink-muted:     #C9BCA0;  /* secondary / meta */
  --hairline:      #4A2417;  /* dark-brown outlines, rules */
  --hairline-soft: #2A211B;

  --container: 72rem;
  --header-h: 68px;
  --radius: 4px;
  --shadow: 0 18px 40px rgba(0,0,0,.45);

  --font-display: "Cinzel", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* subtle warm grain so large dark areas do not read flat */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-pale); }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0 0 .5em; letter-spacing: .03em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); letter-spacing: .05em; }
h3 { font-size: 1.15rem; letter-spacing: .06em; text-transform: uppercase; }
p { margin: 0 0 1.1em; }
.lead { font-size: 1.2rem; color: var(--ink); max-width: 60ch; }
.muted { color: var(--ink-muted); }
.eyebrow {
  font-family: var(--font-display);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .9rem;
}

/* gold "struck metal" treatment for display headings */
.metal {
  background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 45%, var(--gold-shadow) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { position: relative; z-index: 1; padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
main { position: relative; z-index: 1; }
.page-pad-top { padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 3.5rem)); }

/* skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: #1a1207; padding: .6rem 1rem; border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* visible focus everywhere */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

/* divider: thin gold rule with a diamond at the centre */
.rule {
  border: 0; height: 1px; max-width: var(--container); margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--hairline) 12%, var(--gold-shadow) 50%, var(--hairline) 88%, transparent);
  position: relative; z-index: 1;
}
.rule::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gold); box-shadow: 0 0 0 3px var(--ground);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
/* readable over bright hero skies even when transparent */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,6,5,.72), rgba(8,6,5,0));
  transition: opacity .25s ease;
}
.site-header.is-solid {
  background: rgba(15,12,11,.92);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--hairline-soft);
}
.site-header.is-solid::before { opacity: 0; }
body.no-hero .site-header { background: rgba(15,12,11,.96); border-bottom-color: var(--hairline-soft); }
body.no-hero .site-header::before { opacity: 0; }

.header-inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; display: flex; align-items: center; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .65rem; margin-right: auto; }
.brand img { width: 40px; height: 40px; }
.brand .wordmark {
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  letter-spacing: .12em; text-transform: uppercase; line-height: 1;
}
.brand .wordmark small { display: block; font-size: .62rem; letter-spacing: .26em; color: var(--ink-muted); margin-top: .2rem; font-weight: 600; }

.nav-toggle {
  display: none; margin-left: auto;
  background: transparent; border: 1px solid var(--hairline); color: var(--ink);
  width: 44px; height: 40px; border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav ul { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  color: var(--ink); font-weight: 600; font-size: .96rem; letter-spacing: .02em;
  padding: .3rem 0; position: relative;
}
.site-nav a:hover { color: var(--gold-pale); }
.site-nav a[aria-current="page"] { color: var(--gold); }
.site-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; letter-spacing: .02em;
  padding: .7rem 1.3rem; border-radius: var(--radius); cursor: pointer;
  border: 1px solid transparent; transition: transform .12s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--maroon); color: var(--gold-pale); border-color: var(--maroon-deep); box-shadow: inset 0 0 0 1px rgba(240,180,58,.18); }
.btn--primary:hover { background: #8d2020; color: #fbe6b6; }

.btn--gold { background: linear-gradient(180deg, var(--gold-hi), var(--gold-shadow)); color: #2a1c06; border-color: var(--gold-shadow); }
.btn--gold:hover { color: #1c1304; filter: brightness(1.06); }

.btn--ghost { background: transparent; color: var(--gold); border-color: var(--gold-shadow); }
.btn--ghost:hover { color: var(--gold-pale); border-color: var(--gold); background: rgba(233,161,28,.08); }

.btn--sm { padding: .5rem 1.1rem; font-size: .9rem; }

.header-cta { margin-left: 1.4rem; }
/* nav-link rule (.site-nav a) zeroes horizontal padding; restore it for button CTAs */
.site-nav a.btn { padding: .5rem 1.1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(92vh, 760px);
  display: flex; align-items: flex-end;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,11,10,.25) 0%, rgba(14,11,10,0) 30%, rgba(14,11,10,.6) 72%, var(--ground) 100%),
    radial-gradient(120% 90% at 50% 30%, transparent 40%, rgba(14,11,10,.45) 100%);
}
.hero__inner { position: relative; z-index: 1; padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.hero__crest { width: 92px; height: 92px; margin-bottom: 1.1rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,.55)); }
.hero h1 { margin-bottom: .5rem; }

/* Hero lockup: crest beside wordmark, centered (stacks + stays centered on mobile) */
.hero__lockup { display: flex; align-items: center; justify-content: center; gap: 1.3rem; text-align: center; }
.hero__lockup .hero__crest { margin: 0; width: 84px; height: 84px; }
.hero__lockup h1 { margin: 0; }
@media (max-width: 40rem) {
  .hero__lockup { flex-direction: column; gap: .8rem; }
}
.hero .lead { color: var(--ink); font-size: clamp(1.05rem, 2.2vw, 1.3rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }

/* Pinned hero reveal (home) + centered intro band */
.hero--pinned { position: sticky; top: 0; height: 70vh; min-height: 420px; z-index: 0; align-items: center; }
.page-flow { position: relative; z-index: 1; background: var(--ground); }
.section--center { text-align: center; }
.section--center .container { max-width: 54rem; }
.section--center .lead { margin-inline: auto; }
@media (prefers-reduced-motion: reduce) {
  .hero--pinned { position: relative; height: auto; min-height: 60vh; }
}

/* compact page header (inner pages) */
.page-header { position: relative; z-index: 1; }
.page-header .eyebrow { color: var(--gold); }

/* ---------- Game showcase (full-bleed cinematic, Sandfall-style) ---------- */
.showcase { position: relative; min-height: min(82vh, 720px); display: flex; align-items: flex-end; overflow: hidden; z-index: 1; }
.showcase__bg { position: absolute; inset: 0; z-index: 0; }
.showcase__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity 1.5s ease; }
.showcase__bg img.is-active { opacity: 1; }
.showcase__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,11,10,.5) 0%, rgba(14,11,10,.15) 32%, rgba(14,11,10,.8) 76%, var(--ground) 100%),
    linear-gradient(90deg, rgba(14,11,10,.78), rgba(14,11,10,0) 62%);
}
.showcase .container { position: relative; z-index: 1; }
.showcase__inner { max-width: 44rem; padding-block: clamp(2.5rem, 7vw, 5rem); }
.showcase__logo { width: min(330px, 74%); margin-bottom: 1.3rem; filter: drop-shadow(0 6px 16px rgba(0,0,0,.6)); }
.showcase__hook { font-size: clamp(1.05rem, 2.1vw, 1.3rem); font-weight: 600; color: var(--ink); }
.showcase p { color: var(--ink); }
.showcase__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

/* ---------- Featured game ---------- */
.featured {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  border: 1px solid var(--maroon-deep);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.featured__grid { display: grid; gap: 0; grid-template-columns: 1fr; }
.featured__media { position: relative; min-height: 240px; }
.featured__media img { width: 100%; height: 100%; object-fit: cover; }
.featured__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(94,20,20,.55)); }
.featured__body { padding: clamp(1.5rem, 4vw, 2.6rem); color: #f6e7c8; }
.featured__logo { width: min(280px, 70%); margin-bottom: 1.2rem; }
.featured__body h2, .featured__body h3 { color: var(--gold-pale); }
.featured__hook { font-size: 1.12rem; color: #f6e7c8; font-weight: 600; }
.featured__body p { color: #efdcbd; }
.featured__body a { color: #fbe6b6; text-decoration: underline; text-underline-offset: 3px; }
.featured__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

/* feature chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.chip {
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  padding: .3rem .7rem; border-radius: 999px;
  border: 1px solid rgba(242,208,138,.5); color: #f6e7c8;
  background: rgba(0,0,0,.16);
}

/* meta row */
.meta-row { display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; margin: 1.4rem 0 0; padding: 0; list-style: none; }
.meta-row > li { margin: 0; }
.meta-row dt, .meta-row .k { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .15rem; }
.meta-row dd, .meta-row .v { margin: 0; font-weight: 600; color: var(--ink); }

/* feature list */
.feature-list { columns: 2; column-gap: 2.2rem; padding: 0; margin: 1.2rem 0 0; list-style: none; }
.feature-list li { break-inside: avoid; margin: 0 0 .7rem; padding-left: 1.4rem; position: relative; color: var(--ink); }
.feature-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; transform: rotate(45deg); background: var(--gold); }

/* ---------- Gallery + lightbox ---------- */
.gallery {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(80%, 460px);
  gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .4rem .2rem 1.2rem; margin: 0 -.2rem;
  scrollbar-color: var(--gold-shadow) var(--surface);
}
.gallery::-webkit-scrollbar { height: 10px; }
.gallery::-webkit-scrollbar-track { background: var(--surface); border-radius: 999px; }
.gallery::-webkit-scrollbar-thumb { background: var(--gold-shadow); border-radius: 999px; }
.shot {
  scroll-snap-align: start; border: 1px solid var(--hairline); border-radius: 6px; overflow: hidden;
  background: var(--surface); cursor: zoom-in; padding: 0; display: block;
}
.shot img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; transition: transform .4s ease; }
.shot:hover img { transform: scale(1.04); }
.gallery-hint { color: var(--ink-muted); font-size: .9rem; margin-top: .2rem; }

.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center;
  background: rgba(8,6,5,.94); padding: 4vmin;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 94vw; max-height: 86vh; width: auto; height: auto; border: 1px solid var(--hairline); border-radius: 4px; box-shadow: var(--shadow); }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(20,17,15,.8); color: var(--gold); border: 1px solid var(--hairline);
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; line-height: 1;
}
.lightbox__btn:hover { color: var(--gold-pale); border-color: var(--gold); }
.lightbox__prev { left: 3vmin; }
.lightbox__next { right: 3vmin; }
.lightbox__close { top: 3vmin; right: 3vmin; transform: none; width: 48px; height: 48px; font-size: 1.4rem; }
.lightbox__cap { position: absolute; bottom: 3vmin; left: 0; right: 0; text-align: center; color: var(--ink-muted); font-size: .9rem; padding-inline: 1rem; }

/* ---------- Game logo in hero (games page) ---------- */
.game-logo { margin: 0 0 1.6rem; line-height: 0; }
.game-logo img { width: min(460px, 80vw); height: auto; filter: drop-shadow(0 6px 22px rgba(0,0,0,.75)); }

/* games hero: slimmer banner, logo + button centered as a group */
.hero--game { min-height: clamp(420px, 64vh, 680px); }
.hero--game .hero__inner { text-align: center; }
.hero--game .game-logo img { margin-inline: auto; }
.hero--game .hero__actions { justify-content: center; }

/* description + trailer (games page) */
.about-game__grid { display: grid; gap: clamp(1.5rem, 4vw, 2.6rem); grid-template-columns: 1fr; align-items: center; }
.about-game__text .lead { margin: 0; }
.video-embed { position: relative; aspect-ratio: 16 / 9; width: 100%; border: 1px solid var(--hairline); border-radius: 8px; overflow: hidden; background: #0a0807; box-shadow: var(--shadow); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed--placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem; border-style: dashed; border-color: var(--gold-shadow); background: linear-gradient(160deg, var(--surface-2), #0a0807); box-shadow: none; }
.video-embed__play { width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.video-embed__play svg { width: 28px; height: 28px; margin-left: 4px; }
.video-embed__label { color: var(--ink-muted); font-size: .92rem; letter-spacing: .04em; }
@media (min-width: 52rem) { .about-game__grid { grid-template-columns: 0.85fr 1.15fr; } }

/* centered chips (games hero) */
.chips--center { justify-content: center; }

/* feature pillars: alternating image + text bands (no card chrome) */
.pillar { display: grid; gap: clamp(1.4rem, 4vw, 2.6rem); grid-template-columns: 1fr; align-items: center; margin-block: clamp(2.6rem, 6vw, 4.5rem); }
.pillar__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid var(--hairline); border-radius: 8px; box-shadow: var(--shadow); }
.pillar__body h3 { text-transform: none; letter-spacing: .02em; font-size: clamp(1.3rem, 2.4vw, 1.95rem); margin-bottom: .5rem; }
.pillar__points { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .6rem; }
.pillar__points li { position: relative; padding-left: 1.4rem; color: var(--ink); }
.pillar__points li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; transform: rotate(45deg); background: var(--gold); }
@media (min-width: 52rem) {
  .pillar { grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
  .pillar--media-right .pillar__media { order: 1; }
}

/* community follow row (games page) */
.follow-heading { margin: 2.4rem 0 1rem; color: var(--gold); }
.social--center { justify-content: center; flex-wrap: wrap; }

/* ---------- Full-width screenshot carousel ---------- */
.carousel-section { padding-bottom: clamp(2.4rem, 5vw, 4rem); }
.carousel { position: relative; width: 100%; height: clamp(260px, 56vw, 760px); overflow: hidden; background: #0a0807; }
.carousel__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; cursor: zoom-in; }
.carousel__slide.is-active { opacity: 1; }
.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--gold-shadow);
  background: linear-gradient(180deg, var(--gold-hi), var(--gold-shadow));
  color: #2a1c06; font-size: 1.7rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.45);
  transition: filter .2s ease, transform .15s ease;
}
.carousel__arrow:hover { filter: brightness(1.08); }
.carousel__arrow:active { transform: translateY(-50%) scale(.95); }
.carousel__prev { left: clamp(1rem, 5vw, 4.5rem); }
.carousel__next { right: clamp(1rem, 5vw, 4.5rem); }
.carousel__dots { position: absolute; left: 0; right: 0; bottom: 1rem; z-index: 2; display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem; padding-inline: 1rem; }
.carousel__dots button { width: 11px; height: 11px; padding: 0; border-radius: 50%; border: 1px solid rgba(242,208,138,.7); background: rgba(0,0,0,.4); cursor: pointer; transition: background-color .2s ease, transform .2s ease; }
.carousel__dots button:hover { background: rgba(242,208,138,.5); }
.carousel__dots button[aria-current="true"] { background: var(--gold); transform: scale(1.15); }
@media (prefers-reduced-motion: reduce) { .carousel__slide { transition: none; } }

/* ---------- Steam widget ---------- */
.steam-embed { border: 1px solid var(--hairline); border-radius: 6px; overflow: hidden; background: var(--surface); max-width: 646px; margin-inline: auto; }
.steam-embed iframe { display: block; width: 100%; border: 0; }

/* ---------- Generic cards / people / documents ---------- */
.card { background: var(--surface); border: 1px solid var(--hairline-soft); border-radius: 6px; padding: 1.4rem 1.5rem; }

.people { display: grid; gap: 1rem; grid-template-columns: 1fr; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.person { background: var(--surface); border: 1px solid var(--hairline-soft); border-left: 3px solid var(--gold-shadow); border-radius: 6px; padding: 1.1rem 1.3rem; }
.person .name { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: .03em; color: var(--ink); margin: 0; }
.person .role { color: var(--gold); font-weight: 600; font-size: .92rem; letter-spacing: .04em; margin-top: .2rem; }
.person .bio { color: var(--ink-muted); font-size: .95rem; margin: .6rem 0 0; }

.doc-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .8rem; }
.doc {
  display: flex; align-items: center; gap: 1rem; justify-content: space-between; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--hairline-soft); border-radius: 6px; padding: 1rem 1.2rem;
}
.doc__label { display: flex; align-items: center; gap: .8rem; font-weight: 600; }
.doc__label svg { width: 24px; height: 24px; color: var(--gold); flex: none; }
.badge { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--ink-muted); border: 1px solid var(--hairline); border-radius: 999px; padding: .25rem .7rem; }

/* coming soon / empty state */
.notice {
  background: var(--surface); border: 1px dashed var(--gold-shadow); border-radius: 8px;
  padding: clamp(1.6rem, 4vw, 2.4rem); text-align: center; max-width: 46rem; margin-inline: auto;
}
.notice .notice__icon { width: 54px; height: 54px; margin: 0 auto 1rem; color: var(--gold); }
.notice h2 { color: var(--gold-pale); }

/* placeholder inline marker for content to be filled in */
.todo { color: var(--ink-muted); font-style: italic; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

/* ---------- Footer ---------- */
.site-footer { position: relative; z-index: 1; background: var(--surface); border-top: 1px solid var(--hairline-soft); margin-top: 2rem; }
.footer-top { display: grid; gap: 2rem; grid-template-columns: 1fr; padding-block: clamp(2.5rem, 5vw, 3.4rem); }
.footer-brand { display: flex; gap: .9rem; align-items: flex-start; }
.footer-brand img { width: 52px; height: 52px; flex: none; }
.footer-brand .name { font-family: var(--font-display); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-brand p { color: var(--ink-muted); font-size: .95rem; margin: .4rem 0 0; max-width: 34ch; }

.footer-col h3 { color: var(--gold); font-size: .78rem; letter-spacing: .16em; margin-bottom: .9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-col a { color: var(--ink); font-weight: 600; font-size: .95rem; }
.footer-col a:hover { color: var(--gold-pale); }

.social { display: flex; gap: .7rem; }
.social a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--hairline); border-radius: 50%; color: var(--gold); }
.social a:hover { color: var(--gold-pale); border-color: var(--gold); }
.social svg { width: 20px; height: 20px; }

.legal { border-top: 1px solid var(--hairline-soft); padding-block: 1.6rem; color: var(--ink-muted); font-size: .85rem; line-height: 1.6; }
.legal p { margin: 0 0 .5rem; max-width: 90ch; }
.legal .copyright { color: var(--ink); }

/* ---------- Reveal animation (progressive) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .shot img, .btn, .showcase__bg img { transition: none; }
}

/* ---------- Responsive ---------- */
@media (min-width: 52rem) {
  .featured__grid { grid-template-columns: 1.05fr .95fr; }
  .featured__grid--media-left { grid-template-columns: .95fr 1.05fr; }
  .featured__grid--media-left .featured__media { order: -1; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 2.5rem; }
}
@media (min-width: 40rem) {
  .people { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 60rem) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .js .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: rgba(13,10,9,.98); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--hairline-soft);
    flex-direction: column; align-items: stretch;
    padding: .6rem 1.25rem 1.2rem; gap: 0;
    display: none;
  }
  .js .site-nav.open { display: flex; }
  .js .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .js .site-nav li { border-bottom: 1px solid var(--hairline-soft); }
  .js .site-nav a { display: block; padding: .9rem .2rem; font-size: 1.05rem; }
  .js .site-nav .header-cta { display: inline-flex; margin: 1rem 0 0; }
  .feature-list { columns: 1; }
}
