/* ============================================================
   CLUB BAGARRE — Pererenan, Bali
   Design system: warm black / bone #E8DDC8 / terracotta #B85F45
   Titles: Antarctica (newglyph) Regular + Medium
           → Archivo stands in until licensed files are added
           (see assets/fonts/README.md)
   Body:   Instrument Sans
   ============================================================ */

/* ---- Antarctica (licensed files pending — see assets/fonts/README.md) ----
   UNCOMMENT this block once Antarctica-Regular.woff2 + Antarctica-Medium.woff2
   are dropped into assets/fonts/. It's commented out until then so the live
   site doesn't log 404s for files that don't exist yet; Archivo stands in.

@font-face {
  font-family: "Antarctica";
  src: url("../assets/fonts/Antarctica-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Antarctica";
  src: url("../assets/fonts/Antarctica-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
---- end Antarctica ---- */
/* Display face for the homepage hero title + footer wordmark ONLY (client direction, 31 Jul 2026) */
@font-face {
  font-family: "TG DeathLetter";
  src: url("../assets/fonts/TG-DeathLetter.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --black:    #0D0B09;   /* page base — warm near-black */
  --black-2:  #12100D;   /* raised surface */
  --black-3:  #191511;   /* cards / tiles */
  --bone:     #E8DDC8;   /* primary text (never pure white) */
  --bone-70:  rgba(232, 221, 200, 0.72);
  --bone-45:  rgba(232, 221, 200, 0.45);
  --bone-25:  rgba(232, 221, 200, 0.25);
  --bone-12:  rgba(232, 221, 200, 0.13);  /* hairlines */
  --bone-06:  rgba(232, 221, 200, 0.06);
  --terra:      #B85F45; /* terracotta accent */
  --terra-deep: #96482F;
  --terra-ink:  #140B07; /* text on terracotta */

  --font-display: "Antarctica", "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 44px);
  --section: clamp(4.5rem, 9vw, 8rem);
  --radius: 2px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 96px;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}
img, video, iframe { display: block; max-width: 100%; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--terra); color: var(--terra-ink); }
:focus-visible {
  outline: 2px solid var(--bone);
  outline-offset: 3px;
  border-radius: var(--radius);
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1200;
  background: var(--bone); color: var(--black);
  padding: 12px 18px; font-weight: 600; font-size: 14px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* Film grain over everything — very low, warms the flat blacks */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 2000;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Type ---- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.15; }
.light { font-weight: 400; color: var(--bone-45); }
.accent { color: var(--terra); }
p { max-width: 62ch; }
.lede {
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  line-height: 1.55;
  color: var(--bone-70);
}
.muted { color: var(--bone-70); }
.small { font-size: 14px; color: var(--bone-45); }

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terra);
  margin-bottom: clamp(18px, 2.5vw, 28px);
}
.eyebrow::after {
  content: ""; width: 44px; height: 1px;
  background: var(--terra); opacity: 0.7;
}
.eyebrow .num { color: var(--bone-45); font-weight: 500; }

.dot { color: var(--terra); }

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--section); }
.hairline-top { border-top: 1px solid var(--bone-12); }

.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.8rem); }
.section-head p { margin-top: 18px; }

.split {
  display: grid; gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.split-flip > .split-media { order: -1; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--terra); color: var(--terra-ink); }
.btn-primary:hover { background: var(--terra-deep); color: var(--bone); }
.btn-ghost { border-color: var(--bone-25); color: var(--bone); background: transparent; }
.btn-ghost:hover { border-color: var(--terra); color: var(--terra); }
.btn-dark { background: var(--black); color: var(--bone); }
.btn-dark:hover { background: #241d17; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--bone);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 3px;
  transition: color 0.2s var(--ease);
}
.text-link:hover { color: var(--terra); }

/* ---- Header ---- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 900;
  padding-block: 14px;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
              padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(13, 11, 9, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--bone-12);
}
.header-inner {
  display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
}
.brand {
  font-family: var(--font-display);
  font-weight: 500; font-size: 15px;
  letter-spacing: 0.14em;
  padding-block: 10px;
  white-space: nowrap;
}
.main-nav {
  display: flex; gap: clamp(18px, 2.4vw, 32px);
  margin-left: auto;
}
.main-nav a {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--bone-70);
  padding-block: 12px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease);
}
.main-nav a:hover { color: var(--bone); }
.main-nav a[aria-current="page"] {
  color: var(--bone);
  border-bottom-color: var(--terra);
}
.header-cta { min-height: 42px; padding: 9px 18px; font-size: 12px; }
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 48px; height: 48px;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.menu-toggle span {
  width: 26px; height: 1.5px; background: var(--bone);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
}

/* Mobile menu — dead simple: five big links */
.mobile-menu {
  position: fixed; inset: 0; z-index: 850;
  background: rgba(13, 11, 9, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 110px var(--gutter) 48px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: 1.1;
  padding: 14px 0;
  border-bottom: 1px solid var(--bone-12);
  display: flex; align-items: baseline; gap: 18px;
}
.mobile-menu nav a .num {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  color: var(--terra); letter-spacing: 0.15em;
}
.mobile-menu nav a[aria-current="page"] { color: var(--terra); }
.mobile-menu .btn { margin-top: 34px; align-self: flex-start; }
.mobile-menu .menu-meta { margin-top: auto; padding-top: 30px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; align-items: flex-end;
  padding: 0;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img,
.hero-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Slow pan/scan of the room until the real film arrives */
@media (prefers-reduced-motion: no-preference) {
  .hero-media img {
    animation: kenburns 15s ease-in-out infinite alternate;
    will-change: transform;
  }
}
/* Lateral drift, constant scale — same design language as the film's pan */
@keyframes kenburns {
  from { transform: scale(1.13) translateX(3%); }
  to   { transform: scale(1.13) translateX(-3%); }
}
.hero-media video { opacity: 0; transition: opacity 1.2s ease; }
.hero-media video.is-playing { opacity: 1; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,11,9,0.62) 0%, rgba(13,11,9,0.12) 30%,
                            rgba(13,11,9,0.44) 56%, rgba(13,11,9,0.96) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
}
/* Legibility over moving footage: bone text on a quiet dark blur plate —
   the film pans behind this line, so a shadow alone can't guarantee contrast */
.hero-content .eyebrow {
  color: var(--bone);
  background: rgba(13, 11, 9, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: fit-content;
  padding: 9px 14px 8px;
  border-radius: 2px;
}
.hero-title {
  font-family: "TG DeathLetter", var(--font-display);
  font-size: clamp(3rem, 10.5vw, 7.8rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0.15em 0 0.22em;
}
.hero-line {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
  color: var(--bone-70);
}
.hero .btn-row { margin-top: 34px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  margin-top: clamp(26px, 4vh, 44px);
  padding-top: 20px;
  border-top: 1px solid var(--bone-12);
  font-size: 13px; letter-spacing: 0.05em;
  color: var(--bone-45);
}

/* ---- Facts row ---- */
.facts {
  display: grid; gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--bone-12);
  border-block: 1px solid var(--bone-12);
}
@media (min-width: 800px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.facts > div { background: var(--black); padding: 26px 22px; }
.facts .label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
}
.facts .value { font-family: var(--font-display); font-size: 17px; font-weight: 500; }

/* ---- Roster (home artist index + artists page nav) ---- */
.roster { border-top: 1px solid var(--bone-12); }
.roster-row {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px) 6px;
  border-bottom: 1px solid var(--bone-12);
  transition: background-color 0.25s var(--ease), padding 0.25s var(--ease);
}
.roster-row:hover { background: var(--black-2); padding-left: 18px; }
.roster-row .num { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: var(--bone-45); }
.roster-row .name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  transition: color 0.25s var(--ease);
}
.roster-row:hover .name { color: var(--terra); }
.roster-row .style { font-size: 13.5px; color: var(--bone-45); text-align: right; max-width: 220px; }
.roster-row .arrow { color: var(--terra); font-size: 20px; margin-left: 8px; }
@media (max-width: 640px) {
  .roster-row { grid-template-columns: 30px 1fr auto; }
  .roster-row .style { display: none; }
}

/* ---- Media / tiles ---- */
.frame {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-3);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.ratio-45 { aspect-ratio: 4 / 5; }
.ratio-169 { aspect-ratio: 16 / 9; }
.ratio-11 { aspect-ratio: 1 / 1; }
.ratio-219 { aspect-ratio: 21 / 9; }
figcaption {
  margin-top: 12px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bone-45);
}

/* Placeholder tile — for assets the client is providing */
.tile {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(184, 95, 69, 0.07), transparent 60%),
    var(--black-3);
  border: 1px solid var(--bone-12);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding: 20px;
}
.tile .ghost {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(5rem, 16vw, 11rem);
  color: var(--bone-06);
  user-select: none;
}
.tile .rule { width: 30px; height: 1px; background: var(--terra); position: relative; }
.tile .cap {
  position: relative;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone-45);
  max-width: 22ch; line-height: 1.7;
}

/* ---- Gallery (studio) ---- */
.gallery {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .gallery .g-wide { grid-column: span 2; }
  .gallery .g-tall { grid-row: span 2; }
}
.gallery .frame { height: 100%; }
.gallery figure { display: flex; flex-direction: column; }
.gallery figure .frame { flex: 1; min-height: 220px; }

/* ---- Cards / quotes ---- */
.card-grid { display: grid; gap: 16px; }
@media (min-width: 820px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 820px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
.quote-card {
  border: 1px solid var(--bone-12);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--black-2);
}
.stars { display: flex; gap: 4px; color: var(--terra); }
.stars svg { width: 15px; height: 15px; fill: currentColor; }
.quote-card blockquote { margin: 0; font-size: 15px; line-height: 1.6; color: var(--bone-70); }
.quote-card cite { font-style: normal; font-size: 13px; color: var(--bone-45); margin-top: auto; }

/* ---- Terracotta band (Lions) ---- */
.band {
  background: var(--terra);
  color: var(--terra-ink);
}
.band .eyebrow { color: var(--terra-ink); opacity: 0.75; }
.band .eyebrow::after { background: var(--terra-ink); }
.band h2 { color: var(--terra-ink); }
.band .lede, .band p { color: rgba(20, 11, 7, 0.82); font-weight: 500; font-size: clamp(1.08rem, 1.8vw, 1.25rem); }
.band .light { color: rgba(20, 11, 7, 0.55); }

/* ---- Steps (booking) ---- */
.steps { display: grid; gap: 1px; background: var(--bone-12); border: 1px solid var(--bone-12); }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps > div { background: var(--black); padding: 30px 24px; }
.steps .num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 15px; color: var(--terra);
  display: block; margin-bottom: 16px;
}
.steps h3 { font-size: 19px; margin-bottom: 10px; }
.steps p { font-size: 14.5px; color: var(--bone-70); }

/* ---- FAQ ---- */
.faq { border-top: 1px solid var(--bone-12); }
.faq details { border-bottom: 1px solid var(--bone-12); }
.faq summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  transition: color 0.2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--terra); }
.faq summary::after {
  content: "+";
  font-family: var(--font-body); font-weight: 400;
  font-size: 26px; color: var(--terra);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 4px 26px; color: var(--bone-70); max-width: 66ch; }

/* ---- Tags ---- */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bone-70);
  border: 1px solid var(--bone-25);
  border-radius: 100px;
  padding: 7px 14px;
}

/* ---- Artist profiles ---- */
.artist { scroll-margin-top: 90px; }
.artist-grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 900px) {
  .artist-grid { grid-template-columns: 5fr 7fr; align-items: start; }
  .artist-grid.flip { grid-template-columns: 7fr 5fr; }
  .artist-grid.flip .artist-media { order: 2; }
}
.artist-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 18px; }
.artist-head .num { font-size: 13px; font-weight: 600; color: var(--terra); letter-spacing: 0.12em; }
.artist h2 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); }
.artist .tags { margin: 20px 0 22px; }
.artist .bio { color: var(--bone-70); }
.portfolio-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 28px;
}
.portfolio-row .tile .cap { font-size: 10px; letter-spacing: 0.16em; }
.artist .btn-row { margin-top: 28px; }
.artist-note {
  display: block;
  max-width: 52ch;
  margin-top: 20px;
  font-size: 13px; color: var(--bone-45);
  border-left: 2px solid var(--terra);
  padding-left: 14px;
  line-height: 1.6;
}
.artist-note a { color: var(--bone-70); }
.artist-note a:hover { color: var(--terra); }

/* ---- Podcast / panels ---- */
.panel {
  background: var(--black-2);
  border: 1px solid var(--bone-12);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 52px);
}
.panel-split { display: grid; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 860px) { .panel-split { grid-template-columns: 7fr 5fr; } }

/* Offer cards (Lions) */
.offer-card {
  background: var(--terra);
  color: var(--terra-ink);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  display: flex; flex-direction: column; gap: 14px;
}
.offer-card .label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.72;
}
.offer-card .headline { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.1; }
.offer-card p { color: rgba(20, 11, 7, 0.8); font-weight: 500; font-size: 15px; }

/* ---- Map ---- */
.map-frame {
  border: 1px solid var(--bone-12);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-frame iframe {
  width: 100%; height: 100%; min-height: 380px; border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.88) brightness(0.92) sepia(0.18);
}

/* ---- Contact list ---- */
.contact-list { display: flex; flex-direction: column; }
.contact-list a, .contact-list .row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--bone-12);
  transition: background-color 0.2s var(--ease), padding 0.2s var(--ease);
}
.contact-list a:hover { background: var(--black-2); padding-inline: 14px; }
.contact-list .k {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terra);
  flex-shrink: 0;
}
.contact-list .v { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.05rem, 2vw, 1.3rem); text-align: right; overflow-wrap: anywhere; }

/* ---- Footer ---- */
.site-footer {
  background: #0A0806;
  border-top: 1px solid var(--bone-12);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
}
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
@media (min-width: 860px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer-word { font-family: "TG DeathLetter", var(--font-display); font-weight: 400; font-size: 27px; letter-spacing: 0.02em; margin-bottom: 18px; }
.site-footer h3 {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
}
.site-footer p { font-size: 14.5px; color: var(--bone-70); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14.5px; color: var(--bone-70);
  display: inline-flex; gap: 8px; align-items: baseline;
  padding: 2px 0;
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--terra); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--bone-12);
}
.footer-bottom p, .footer-bottom a { font-size: 12.5px; color: var(--bone-45); }
.footer-bottom a:hover { color: var(--terra); }

/* ---- Page head (inner pages) ---- */
.page-head {
  padding-top: calc(var(--section) + 76px);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.page-head h1 {
  font-size: clamp(2.8rem, 7.5vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin-bottom: 26px;
}
.page-head .lede { max-width: 58ch; }

/* ---- Reveal on scroll ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transition-delay: var(--d, 0s);
  }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---- Utilities ---- */
.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-60 { margin-top: clamp(40px, 6vw, 60px); }
.center { text-align: center; }
.center p { margin-inline: auto; }
.stack > * + * { margin-top: 18px; }
