/* ============================================================
   Garcia Entertainment Services
   Premium entertainment booking & management — dark / cinematic
   Type : Oswald (condensed display) · Hanken Grotesk (body)
   ============================================================ */

:root {
  /* surfaces */
  --ink:       #0a0a0b;
  --charcoal:  #101012;
  --surface:   #16161a;
  --surface-2: #1c1c21;
  --line:      rgba(255,255,255,0.09);
  --line-2:    rgba(255,255,255,0.16);

  /* text */
  --white:     #f2f2f4;
  --off:       #e7e8ea;
  --silver:    #b9bdc4;
  --muted:     #8b8f97;
  --gunmetal:  #5c6069;

  /* accent — restrained deep red */
  --red:       #c8202a;
  --red-hi:    #e02b34;

  /* chrome — logo jewelry only */
  --chrome: linear-gradient(176deg,#f6f7f9 0%,#cfd4da 22%,#818891 48%,#f2f4f7 56%,#a6acb4 74%,#5a5f67 100%);

  --f-display: "Oswald", system-ui, sans-serif;
  --f-body:    "Hanken Grotesk", system-ui, sans-serif;

  --wrap: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
  --nav-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--off);
  font-family: var(--f-body);
  font-size: clamp(16px, 1.02vw, 17px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--red); color: #fff; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); width: 100%; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 16px;
  font-family: var(--f-display); text-transform: uppercase; letter-spacing: 0.08em;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--red-hi); outline-offset: 3px; }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(12px, 1.1vw, 13px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 22px;
}
.sec-title {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--white);
  max-width: 18ch;
}
.sec-title--sm { font-size: clamp(24px, 3vw, 38px); }
.sec-head { margin-bottom: clamp(40px, 6vh, 72px); }
.sec-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sec-head--center { text-align: center; }
.sec-head--center .sec-title { margin-inline: auto; }

.link-arrow {
  font-family: var(--f-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
  color: var(--off);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-2);
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: var(--red-hi); border-color: var(--red); }
.arrow { transition: transform 0.25s ease; display: inline-block; }
.link-arrow:hover .arrow, .path:hover .arrow, .artist:hover .arrow { transform: translateX(5px); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-hi); }
.btn--outline { background: transparent; border-color: var(--line-2); color: var(--off); }
.btn--outline:hover { border-color: var(--off); background: rgba(255,255,255,0.04); }
.btn--lg { padding: 18px 40px; font-size: 15px; }
.btn--block { width: 100%; padding-block: 17px; }

/* ---------- image placeholders (clearly labeled) ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 11px),
    var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.ph::after {
  content: "▲  " attr(data-ph);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 18px;
  font-family: var(--f-display);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gunmetal);
}

/* ============================================================
   SECTION 1 — NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav[data-scrolled] {
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__bar {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
/* brand lockup: GES emblem + wordmark */
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__mark { height: 46px; width: auto; mix-blend-mode: screen; }
.nav__wordmark {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--f-display); text-transform: uppercase;
}
.nav__wm-1 { font-weight: 700; font-size: 19px; letter-spacing: 0.16em; color: var(--white); }
.nav__wm-2 { font-weight: 500; font-size: 10px; letter-spacing: 0.26em; color: var(--silver); margin-top: 4px; }
@media (max-width: 620px) { .nav__wordmark { display: none; } }
.nav__links { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }
.nav__links a {
  font-family: var(--f-display); font-weight: 500;
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--silver); position: relative; padding: 6px 0;
  transition: color 0.2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--red); transition: width 0.25s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 11px 22px; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 26px; height: 2px; background: var(--off); transition: transform 0.3s, opacity 0.3s; }

/* ---------- mobile menu ---------- */
.mobile {
  position: fixed; inset: 0; z-index: 150;
  background: var(--ink);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; padding: 22px var(--gutter) 40px;
  visibility: hidden;
}
.mobile.is-open { transform: translateX(0); visibility: visible; }
.mobile__head { display: flex; align-items: center; justify-content: space-between; }
.mobile__logo { height: 46px; width: auto; mix-blend-mode: screen; }
.mobile__close { background: none; border: 0; color: var(--off); font-size: 40px; line-height: 1; cursor: pointer; }
.mobile__links { display: flex; flex-direction: column; gap: 6px; margin-top: 8vh; }
.mobile__links a {
  font-family: var(--f-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(30px, 9vw, 44px); letter-spacing: 0.02em; color: var(--off);
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.mobile__links a:hover { color: var(--red-hi); }
.mobile__cta { margin-top: auto; }
.mobile__foot { display: flex; flex-direction: column; gap: 6px; margin-top: 26px; color: var(--muted); font-family: var(--f-display); letter-spacing: 0.08em; }

/* ============================================================
   SECTION 2 — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: center;
  padding: clamp(48px, 8vh, 96px) 0 clamp(60px, 9vh, 110px);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -3; border: 0; }
.hero__media::after {
  align-items: flex-start; justify-content: flex-end;
  padding: 84px 26px; letter-spacing: 0.24em; font-size: 10px;
  color: var(--gunmetal); opacity: 0.7;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.35) 40%, rgba(10,10,11,0.9) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.45) 55%, rgba(10,10,11,0.2) 100%);
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: clamp(30px, 5vw, 70px);
}
.hero__copy { max-width: 620px; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(46px, 8vw, 118px);
  line-height: 0.94;
  letter-spacing: 0.004em;
  margin: 0 0 26px;
  color: var(--white);
}
.hero__lede { font-size: clamp(16px, 1.4vw, 20px); color: var(--silver); margin: 0 0 34px; max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__logo { position: relative; display: flex; justify-content: center; isolation: isolate; }
/* faint halo only — lifts the chrome off busy photo areas without a visible box */
.hero__logo::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(closest-side,
              rgba(10,10,11,0.55), rgba(10,10,11,0.28) 55%, rgba(10,10,11,0) 74%);
  z-index: -1;
  pointer-events: none;
}
.hero__logo img {
  width: 100%; max-width: 500px; height: auto;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,0.7));
  /* drops the logo's black backing plate against the dark hero + halo;
     harmless if a transparent PNG is used instead */
  mix-blend-mode: screen;
}
/* sweep retired: the logo is now a solid plate, so a masked sweep reads wrong */
.hero__sweep { display: none; }
.hero__sweep--legacy {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  -webkit-mask: url("assets/ges-hero.png") center/contain no-repeat;
          mask: url("assets/ges-hero.png") center/contain no-repeat;
}
.hero__sweep::before {
  content: ""; position: absolute; top: -20%; bottom: -20%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-260%) skewX(-12deg);
  animation: sweep 2.6s ease-in-out 0.6s 1 both;
}
@keyframes sweep { to { transform: translateX(560%) skewX(-12deg); } }

.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-display); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ============================================================
   SECTION 3 — STATS
   ============================================================ */
.stats { padding: clamp(64px, 10vh, 120px) 0; border-bottom: 1px solid var(--line); }
.stats__intro {
  font-size: clamp(19px, 2.3vw, 30px); line-height: 1.4; color: var(--off);
  max-width: 32ch; margin: 0 0 clamp(44px, 6vh, 72px); font-weight: 500;
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat { background: var(--ink); padding: clamp(26px, 4vw, 44px) 8px; display: flex; flex-direction: column; gap: 6px; }
.stat__num { font-family: var(--f-display); font-weight: 600; font-size: clamp(48px, 7vw, 92px); line-height: 0.9; color: var(--white); }
.stat__label { font-family: var(--f-display); font-weight: 500; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   SECTION 4 — AUDIENCE PATHWAYS
   ============================================================ */
.paths { display: grid; grid-template-columns: 1fr 1fr; }
.path {
  position: relative; min-height: clamp(340px, 46vw, 520px);
  display: flex; align-items: flex-end; overflow: hidden; isolation: isolate;
}
.path + .path { border-left: 1px solid var(--line); }
.path__media { position: absolute; inset: 0; z-index: -2; border: 0; transition: transform 0.7s ease; }
.path:hover .path__media { transform: scale(1.05); }
.path__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,10,11,0.35), rgba(10,10,11,0.9)); }
.path__body { padding: clamp(28px, 4vw, 56px); }
.path__kicker { font-family: var(--f-display); font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; font-size: 12px; color: var(--red); margin: 0 0 12px; }
.path__title { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: clamp(34px, 4.6vw, 58px); line-height: 1; margin: 0 0 14px; color: var(--white); }
.path__for { color: var(--silver); font-size: 14px; letter-spacing: 0.02em; margin: 0 0 22px; }
.path__cta { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: 14px; color: var(--white); display: inline-flex; gap: 10px; align-items: center; }
.path:hover .path__cta { color: var(--red-hi); }

/* ============================================================
   SECTION 5 — SERVICES
   ============================================================ */
.services { padding: clamp(72px, 12vh, 150px) 0; }
.svc-list { display: flex; flex-direction: column; gap: clamp(40px, 7vh, 90px); }
.svc { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(28px, 5vw, 80px); }
.svc--rev .svc__text { order: 2; }
.svc__no { font-family: var(--f-display); font-weight: 700; font-size: clamp(40px, 5vw, 64px); color: transparent; -webkit-text-stroke: 1px var(--gunmetal); display: block; margin-bottom: 12px; }
.svc__name { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.02; margin: 0 0 18px; color: var(--white); }
.svc__copy { color: var(--silver); max-width: 46ch; margin: 0; font-size: clamp(15px, 1.2vw, 17px); }
.svc__media { aspect-ratio: 4 / 3; }

/* ============================================================
   SECTION 6 — ROSTER
   ============================================================ */
.roster { padding: clamp(64px, 10vh, 130px) 0; border-top: 1px solid var(--line); background: var(--charcoal); }
.roster__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.6vw, 24px); }
.artist { display: block; background: var(--ink); border: 1px solid var(--line); transition: border-color 0.25s, transform 0.25s; }
.artist:hover { border-color: var(--line-2); transform: translateY(-4px); }
.artist__media { aspect-ratio: 3 / 4; border: 0; border-bottom: 1px solid var(--line); }
.artist__meta { padding: 22px 24px 26px; }
.artist__name { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.05; margin: 0 0 6px; color: var(--white); }
.artist__cat { font-family: var(--f-display); font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; font-size: 12px; color: var(--muted); margin: 0 0 18px; }
.artist__cta { font-family: var(--f-display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12.5px; color: var(--silver); display: inline-flex; gap: 8px; align-items: center; }
.artist:hover .artist__cta { color: var(--red-hi); }

/* ============================================================
   SECTION 7 — EVENTS
   ============================================================ */
.events { padding: clamp(72px, 12vh, 150px) 0; }
.events__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 1.8vw, 26px); }
.event { position: relative; min-height: clamp(300px, 34vw, 460px); display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; border: 1px solid var(--line); }
.event__media { position: absolute; inset: 0; z-index: -2; border: 0; transition: transform 0.8s ease; }
.event:hover .event__media { transform: scale(1.04); }
.event__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,10,11,0.15) 35%, rgba(10,10,11,0.92)); }
.event__body { padding: clamp(26px, 3.4vw, 46px); }
.event__loc { font-family: var(--f-display); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; font-size: 12px; color: var(--red); margin: 0 0 10px; }
.event__name { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: clamp(26px, 3vw, 44px); line-height: 1; margin: 0 0 10px; color: var(--white); }
.event__role { font-family: var(--f-display); font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; font-size: 13px; color: var(--silver); margin: 0; }

/* ============================================================
   SECTION 8 — CIRCUIT
   ============================================================ */
.circuit { padding: clamp(72px, 12vh, 150px) 0; border-top: 1px solid var(--line); background: var(--charcoal); }
.circuit__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(36px, 5vw, 80px); }
.circuit__lede { color: var(--silver); max-width: 42ch; margin: 20px 0 34px; }
.circuit__counts { display: flex; gap: clamp(30px, 5vw, 64px); margin-bottom: 34px; }
.circuit__num { font-family: var(--f-display); font-weight: 600; font-size: clamp(44px, 5vw, 72px); line-height: 0.9; color: var(--white); display: block; }
.circuit__cl { font-family: var(--f-display); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; color: var(--muted); }
.circuit__map { border: 1px solid var(--line); background: var(--ink); padding: 20px; }
.circuit__map svg { width: 100%; height: auto; display: block; }
.circuit__map .pin circle { fill: var(--red); }
.circuit__map .pin text { fill: var(--silver); font-family: var(--f-display); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-anchor: middle; }
.circuit__note { font-family: var(--f-display); letter-spacing: 0.14em; text-transform: uppercase; font-size: 10.5px; color: var(--gunmetal); margin: 14px 0 0; text-align: right; }

/* ============================================================
   SECTION 9 — SOCIAL PROOF
   ============================================================ */
.proof { padding: clamp(72px, 12vh, 140px) 0; }
.logo-wall { list-style: none; margin: 0 0 clamp(40px, 6vh, 72px); padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.logo-slot {
  background: var(--ink); aspect-ratio: 3 / 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 14px;
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(12px, 1vw, 14px); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--silver); transition: color 0.2s, background 0.2s;
}
.logo-slot:hover { color: var(--white); background: var(--surface); }
.logo-slot.ph::after { font-size: 10px; letter-spacing: 0.16em; }
.quote { position: relative; }
.quote__tag {
  position: absolute; top: 14px; right: 16px;
  font-family: var(--f-display); font-weight: 500;
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink); background: var(--silver); padding: 3px 8px;
}
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.4vw, 32px); }
.quote { margin: 0; padding: 32px 34px; border: 1px solid var(--line); border-left: 2px solid var(--red); background: var(--surface); }
.quote p { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; color: var(--off); margin: 0 0 18px; font-style: italic; }
.quote cite { font-family: var(--f-display); font-style: normal; letter-spacing: 0.14em; text-transform: uppercase; font-size: 12px; color: var(--muted); }
.ph-quote { position: relative; }
.ph-quote::before { content: "PLACEHOLDER"; position: absolute; top: 12px; right: 14px; font-family: var(--f-display); font-size: 9px; letter-spacing: 0.2em; color: var(--gunmetal); }

/* ============================================================
   SECTION 10 — PARTNER
   ============================================================ */
.partner { border-block: 1px solid var(--line); }
.partner__inner { text-align: center; padding: clamp(48px, 8vh, 80px) 0; }
.partner__kicker { font-family: var(--f-display); font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; font-size: 12px; color: var(--muted); margin: 0 0 16px; }
.partner__name { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: clamp(24px, 3.4vw, 44px); color: var(--white); margin: 0; }

/* ============================================================
   SECTION 11 — CTA BAND
   ============================================================ */
.cta-band { padding: clamp(80px, 14vh, 170px) 0; text-align: center; }
.cta-band__title { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: clamp(38px, 6.5vw, 92px); line-height: 0.98; margin: 0 0 22px; color: var(--white); }
.cta-band__copy { color: var(--silver); max-width: 54ch; margin: 0 auto 40px; font-size: clamp(16px, 1.4vw, 19px); }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SECTION 12 — CONTACT / FORMS
   ============================================================ */
.contact { padding: clamp(64px, 10vh, 130px) 0; border-top: 1px solid var(--line); background: var(--charcoal); }
.contact__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.contact__details { list-style: none; padding: 0; margin: 34px 0 0; }
.contact__details li { display: flex; flex-direction: column; gap: 3px; padding: 16px 0; border-top: 1px solid var(--line); }
.contact__details li span:first-child { font-family: var(--f-display); letter-spacing: 0.2em; text-transform: uppercase; font-size: 11px; color: var(--muted); }
.contact__details a, .contact__details li span:last-child { font-size: 18px; color: var(--off); }
.contact__details a:hover { color: var(--red-hi); }

.forms__tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 30px; }
.forms__tab {
  font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 14px; color: var(--muted); background: none; border: 0; cursor: pointer;
  padding: 14px 20px; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.2s, border-color 0.2s;
}
.forms__tab:hover { color: var(--off); }
.forms__tab.is-active { color: var(--white); border-bottom-color: var(--red); }

.form { position: relative; }
.form.is-hidden { display: none; }
.anchor { position: absolute; top: calc(-1 * var(--nav-h) - 20px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field > span { font-family: var(--f-display); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px; color: var(--silver); }
.field b { color: var(--red); }
.field input, .field textarea {
  font-family: var(--f-body); font-size: 16px; color: var(--off);
  background: var(--ink); border: 1px solid var(--line-2); padding: 13px 15px; width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--red); background: #0d0d0f; outline: none; }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--red-hi); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__status { font-family: var(--f-display); letter-spacing: 0.06em; font-size: 14px; margin: 16px 0 0; min-height: 1.2em; }
.form__status.is-ok { color: #46c46a; }
.form__status.is-err { color: var(--red-hi); }

/* ============================================================
   SECTION 13 — FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-top: clamp(48px, 7vh, 80px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer__logo { height: 56px; width: auto; margin-bottom: 18px; }
.footer__name { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 20px; color: var(--white); margin: 0 0 6px; }
.footer__svc { color: var(--muted); font-size: 13px; letter-spacing: 0.04em; margin: 0; max-width: 30ch; }
.footer__h { font-family: var(--f-display); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; color: var(--muted); margin: 0 0 18px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: var(--silver); font-size: 15px; transition: color 0.2s; width: fit-content; }
.footer__col a:hover { color: var(--red-hi); }
.footer__muted { color: var(--gunmetal); font-size: 14px; margin: 0; }
.footer__bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 26px 0; border-top: 1px solid var(--line); }
.footer__partner { font-family: var(--f-display); letter-spacing: 0.1em; text-transform: uppercase; font-size: 12px; color: var(--muted); margin: 0; }
.footer__partner strong { color: var(--silver); font-weight: 600; }
.footer__legal { display: flex; align-items: center; gap: 22px; font-size: 12.5px; color: var(--gunmetal); flex-wrap: wrap; }
.footer__legal a { color: var(--muted); }
.footer__legal a:hover { color: var(--off); }

/* ============================================================
   MOTION — reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 4px; }
  .hero__logo { order: -1; margin-bottom: 4px; }
  .hero__logo img { max-width: 300px; }
  .hero__sweep { display: none; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .svc, .svc--rev { grid-template-columns: 1fr; gap: 22px; }
  .svc--rev .svc__text { order: 0; }
  .svc__media { aspect-ratio: 16 / 9; }
  .roster__grid { grid-template-columns: 1fr 1fr; }
  .circuit__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .paths { grid-template-columns: 1fr; }
  .path + .path { border-left: 0; border-top: 1px solid var(--line); }
  .events__grid { grid-template-columns: 1fr; }
  .roster__grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .cta-band__actions .btn, .hero__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
  .stats__grid { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__sweep::before, .hero__scroll svg { animation: none !important; }
  .path__media, .event__media { transition: none !important; }
}

/* ============================================================
   SUB-PAGES — roster, artist detail, circuit
   ============================================================ */
.subhero { padding: clamp(48px, 8vh, 90px) 0 clamp(32px, 5vh, 54px); border-bottom: 1px solid var(--line); }
.breadcrumb { font-family: var(--f-display); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 0 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red-hi); }
.subhero__title { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: clamp(36px, 6vw, 82px); line-height: 0.98; margin: 0; color: var(--white); }
.subhero__lede { color: var(--silver); max-width: 56ch; margin: 20px 0 0; font-size: clamp(16px, 1.3vw, 19px); }

/* ---- roster filters ---- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; padding: clamp(26px,4vh,40px) 0 clamp(30px,4vh,44px); }
.filter {
  font-family: var(--f-display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 12.5px; color: var(--silver); background: transparent; cursor: pointer;
  border: 1px solid var(--line-2); padding: 11px 20px; transition: all 0.2s;
}
.filter:hover { border-color: var(--off); color: var(--white); }
.filter.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.roster-page { padding-bottom: clamp(64px, 10vh, 120px); }
.artist.is-hidden { display: none; }
.roster__empty { color: var(--muted); font-family: var(--f-display); letter-spacing: 0.1em; text-transform: uppercase; padding: 40px 0; }

/* ---- artist detail ---- */
.a-top { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 64px); align-items: start; padding: clamp(40px,6vh,70px) 0; }
.a-photo { aspect-ratio: 3 / 4; }
.a-cat { font-family: var(--f-display); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; font-size: 12px; color: var(--red); margin: 0 0 14px; }
.a-name { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: clamp(34px, 5vw, 68px); line-height: 0.98; margin: 0 0 22px; color: var(--white); }
.a-bio { color: var(--silver); font-size: clamp(15px,1.2vw,17px); margin: 0 0 28px; max-width: 56ch; }
.a-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.a-link {
  font-family: var(--f-display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 12.5px; padding: 11px 18px; border: 1px solid var(--line-2); color: var(--off); transition: all 0.2s;
}
.a-link:hover { border-color: var(--off); background: rgba(255,255,255,0.04); }
.a-link.is-placeholder { color: var(--gunmetal); border-style: dashed; cursor: default; }
.a-link.is-placeholder:hover { background: none; border-color: var(--line-2); }
.a-sec { padding: clamp(40px,6vh,70px) 0; border-top: 1px solid var(--line); }
.a-sec__h { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: clamp(20px,2vw,28px); color: var(--white); margin: 0 0 24px; }
.a-video { aspect-ratio: 16 / 9; }
.a-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.a-gallery .ph { aspect-ratio: 4 / 3; }
.a-cta { text-align: center; padding: clamp(56px,9vh,100px) 0; border-top: 1px solid var(--line); }
.a-cta__t { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: clamp(28px,4vw,54px); line-height: 1; margin: 0 0 18px; color: var(--white); }
.a-cta__c { color: var(--silver); max-width: 48ch; margin: 0 auto 30px; }

/* ---- circuit page ---- */
.venues { padding: clamp(48px,7vh,90px) 0 clamp(64px,10vh,120px); }
.vstate { margin-bottom: clamp(36px,5vh,58px); }
.vstate__h { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-bottom: 2px solid var(--red); padding-bottom: 12px; margin-bottom: 4px; }
.vstate__name { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; font-size: clamp(22px,2.6vw,34px); color: var(--white); margin: 0; }
.vstate__n { font-family: var(--f-display); font-size: 14px; letter-spacing: 0.14em; color: var(--muted); }
.vlist { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: clamp(24px,4vw,60px); }
.vlist li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); break-inside: avoid; }
.vlist b { font-weight: 600; font-size: 15.5px; color: var(--off); }
.vlist i { font-family: var(--f-display); font-style: normal; font-size: 12.5px; letter-spacing: 0.08em; color: var(--muted); text-align: right; white-space: nowrap; }

@media (max-width: 900px) {
  .a-top { grid-template-columns: 1fr; }
  .a-gallery { grid-template-columns: repeat(2, 1fr); }
  .vlist { columns: 1; }
}

/* ============================================================
   POLISH — tap targets & honest link placeholders
   ============================================================ */
/* WCAG 2.5.8: keep interactive text links comfortably tappable */
.footer__col a,
.footer__legal a { padding-block: 6px; display: inline-block; }
.breadcrumb a    { padding-block: 4px; display: inline-block; }
.mobile__foot a  { padding-block: 7px; }

/* Links we don't have real URLs for yet — shown, but not clickable dead ends.
   Replace with a real <a href="…"> as soon as the URL exists. */
.link-soon {
  color: var(--gunmetal);
  font-size: 15px;
  padding-block: 6px;
  display: inline-block;
  cursor: default;
}
.link-soon::after {
  content: " —";
  opacity: 0.6;
}
.footer__legal .link-soon { font-size: 12.5px; }

/* Filled image slots (temporary generated imagery or real photos) */
.ph--img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ph--img::after { content: none; }

/* ============================================================
   WordPress-specific
   ============================================================ */
.a-video-wrap { position: relative; aspect-ratio: 16 / 9; }
.a-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.a-bio p { margin: 0 0 1em; }
.a-bio p:last-child { margin-bottom: 0; }
.wp-caption, .aligncenter { margin: 0 auto; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
/* keep the sticky nav below the WP admin bar for logged-in editors */
body.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .nav { top: 46px; } }
body.admin-bar .mobile { top: 46px; }

/* ============================================================
   PREMIUM TYPOGRAPHY LAYER
   One cinematic, editorial type language across the whole site.
   Styling only — layout and structure unchanged.
   ============================================================ */
:root {
  --text-hi:   #f6f6f7;   /* near-white heading fallback (never pure white) */
  --text-body: #e5e5e5;   /* body copy */
  --text-lede: #cbced4;   /* supporting / lede copy */
  /* almost-invisible heading gradient — premium studio lighting, not chrome */
  --head-gradient: linear-gradient(180deg, #ffffff 0%, #f4f4f5 46%, #d4d6da 100%);
  --head-depth: drop-shadow(0 1px 1px rgba(0,0,0,0.45));
}

/* --- shared heading treatment: faint gradient + soft depth --- */
.hero__title,
.sec-title,
.path__title,
.svc__name,
.artist__name,
.event__name,
.cta-band__title,
.subhero__title,
.a-name,
.a-cta__t,
.a-sec__h,
.partner__name,
.vstate__name,
.stat__num,
.circuit__num {
  background: var(--head-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text-hi);               /* fallback if background-clip unsupported */
  filter: var(--head-depth);
  transition: filter 0.25s ease;
  text-wrap: balance;
}

/* very slight brightness lift on hover — no glow, no neon */
.hero__title:hover,
.sec-title:hover,
.cta-band__title:hover,
.partner__name:hover,
.path:hover .path__title,
.artist:hover .artist__name {
  filter: var(--head-depth) brightness(1.06);
}

/* --- tracking + weight contrast per level (everything breathes more) --- */
.hero__title      { font-weight: 700; letter-spacing: 0.012em; }
.cta-band__title  { font-weight: 700; letter-spacing: 0.02em; }
.sec-title        { font-weight: 600; letter-spacing: 0.03em; }
.subhero__title, .a-name        { font-weight: 700; letter-spacing: 0.018em; }
.path__title, .event__name      { font-weight: 700; letter-spacing: 0.02em; }
.svc__name, .artist__name,
.a-sec__h, .vstate__name         { font-weight: 600; letter-spacing: 0.02em; }
.partner__name    { font-weight: 600; letter-spacing: 0.04em; }

/* --- eyebrows / kickers / labels: refined editorial small caps --- */
.eyebrow          { letter-spacing: 0.2em; font-weight: 500; }
.path__kicker, .a-cat, .partner__kicker { letter-spacing: 0.2em; font-weight: 500; }
.stat__label, .circuit__cl, .footer__h  { letter-spacing: 0.18em; font-weight: 500; }

/* --- body / supporting copy: softer white, roomier lines (widths unchanged) --- */
.hero__lede,
.svc__copy,
.circuit__lede,
.cta-band__copy,
.subhero__lede,
.a-bio {
  color: var(--text-body);
  line-height: 1.72;
  text-wrap: pretty;
}
.hero__lede, .cta-band__copy, .subhero__lede { color: var(--text-lede); }

/* --- section numbers 01/02/03: quiet editorial accents, support not dominate --- */
.svc__no {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.16);
  opacity: 0.5;
  letter-spacing: 0.04em;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

/* --- buttons: a touch heavier, more tracking, smoother hover --- */
.btn {
  font-weight: 600;
  letter-spacing: 0.16em;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

/* --- entrance: tasteful fade-up ~18px, ease-out --- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__title, .sec-title, .cta-band__title { transition: none !important; }
}

/* ============================================================
   DISPLAY FACE — editorial serif for statement headlines
   High-contrast luxury serif (Playfair Display) across the headings.
   Labels / buttons / nav stay in the sans → refined serif-display +
   sans-support editorial pairing. Sizes tuned so the wider serif fits.
   ============================================================ */
:root { --f-head: "Playfair Display", Georgia, "Times New Roman", serif; }

.hero__title,
.sec-title,
.cta-band__title,
.path__title,
.event__name,
.subhero__title,
.a-name,
.a-cta__t,
.partner__name,
.svc__name,
.artist__name,
.vstate__name,
.a-sec__h {
  font-family: var(--f-head);
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* size + rhythm re-tuned for the wider serif so nothing overflows */
.hero__title     { font-size: clamp(40px, 6.6vw, 92px); line-height: 1.0;  letter-spacing: 0.005em; }
.sec-title       { font-size: clamp(28px, 3.8vw, 52px); line-height: 1.05; }
.cta-band__title { font-size: clamp(34px, 5.2vw, 74px); line-height: 1.02; }
.path__title     { font-size: clamp(30px, 4vw, 50px);   line-height: 1.05; }
.event__name     { font-size: clamp(24px, 2.8vw, 40px); line-height: 1.05; }
.subhero__title  { line-height: 1.02; }
.svc__name, .artist__name, .a-name, .vstate__name, .a-sec__h { line-height: 1.08; }
.partner__name   { letter-spacing: 0.02em; }

/* ============================================================
   HEADLINE — CHROME + MOVING REFLECTION
   All headings get a polished vertical "chrome body" (bright top →
   darker horizon → bright again, like metal reflecting a room).
   The marquee headlines (hero + closing CTA) add a bright specular
   glint that sweeps across then rests — light catching real chrome.
   ============================================================ */
:root {
  /* static polished-chrome body: bright top → medium horizon → bright band */
  --head-gradient: linear-gradient(180deg,
    #ffffff 0%, #dfe4ea 26%, #a7aeb9 46%, #7c8591 50%,
    #b2bac5 56%, #ffffff 80%, #ced4dc 100%);
}

/* a bright glowing light bar, duplicated over the letters, sweeping across */
.hero__title,
.cta-band__title {
  position: relative;
  text-wrap: normal;           /* stable line breaks so the glare overlay aligns */
}
.hero__title::after,
.cta-band__title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: 2;
  white-space: pre-line;       /* honor the stored line break, still wraps like the base */
  text-wrap: normal;
  pointer-events: none;
  background-image: linear-gradient(115deg,
    transparent 33%,
    rgba(255,255,255,0.0) 40%,
    rgba(255,255,255,0.85) 47%,
    #ffffff 50%,
    rgba(255,255,255,0.85) 53%,
    rgba(255,255,255,0.0) 60%,
    transparent 67%);
  background-size: 260% 100%;
  background-position: 210% 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  /* strong white glow so the sweeping light clearly blooms */
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.6));
  animation: ges-glare 4.5s linear infinite;
}
@keyframes ges-glare {
  0%   { background-position: 210% 0; }
  100% { background-position: -170% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__title::after, .cta-band__title::after { animation: none; opacity: 0; }
}
