/* ==========================================================================
   HSP ENT · site.css
   Single shared stylesheet for every page. DESIGN.md is the visual authority.
   Palette: carbon / near-black, white, Stellar Gold #FFC627 as the only
   accent, plus neutral grays. No other hue appears in this file.
   Typography: bold modern serif headlines, system sans body.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --accent: #FFC627;
  --accent-dark: #E6B123;
  --accent-wash: rgba(255, 198, 39, 0.08);
  --white: #FFFFFF;
  --ash: #F4F4F4;
  --cloud: #EEEEEE;
  --carbon: #14110C;
  --ink: #0A0806;
  --graphite: #393C41;
  --pewter: #5C5E62;
  --silver-fog: #8E8E8E;
  --frost: rgba(255, 255, 255, 0.78);

  --font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --display: "Didot", "Bodoni 72", Georgia, "Times New Roman", serif;

  --navh: 60px;
  --shell: 1120px;
  --ease: cubic-bezier(0.5, 0, 0, 0.75);
}

/* --------------------------------------------------------------------------
   2. Reset + base
   -------------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  scroll-padding-top: var(--navh);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--carbon);
  overflow-x: hidden;
}

img { max-width: 100%; }

/* Body scroll lock while the mobile menu is open. */
html.menu-open, html.menu-open body { overflow: hidden; }

/* --------------------------------------------------------------------------
   3. Focus + skip link
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 9px;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip:focus { top: 12px; }

/* --------------------------------------------------------------------------
   4. Nav
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 32px;
  min-height: var(--navh);
  background: transparent;
  transition: background 0.33s var(--ease), backdrop-filter 0.33s;
}
.nav.frosted {
  background: var(--frost);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  text-decoration: none;
  color: inherit;
  flex: none;
}

/* The real HSP brush mark. The PNG artwork is white, so it is inverted to
   black for the light and frosted nav states and left white over photography. */
.nav__mark {
  width: 30px;
  height: 30px;
  display: block;
  filter: invert(1);
  transition: filter 0.33s var(--ease);
}
.nav.on-photo:not(.frosted) .nav__mark { filter: none; }

.nav__word {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
  color: var(--carbon);
  transition: color 0.33s var(--ease);
}

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--carbon);
  text-decoration: none;
  transition: background 0.33s var(--ease), color 0.33s var(--ease);
}
.nav__links a:hover { background: rgba(0, 0, 0, 0.06); }
.nav__links a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--accent); }

.nav.on-photo:not(.frosted) .nav__links a,
.nav.on-photo:not(.frosted) .nav__word { color: var(--white); }
.nav.on-photo:not(.frosted) .nav__links a:hover { background: rgba(255, 255, 255, 0.14); }

.nav__cta {
  background: var(--accent);
  color: var(--on-accent) !important;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 20px !important;
  margin-left: 8px;
}
.nav__cta:hover { background: var(--accent-dark) !important; }

/* Hamburger. Hidden on desktop, revealed with the drawer below 960px. */
.nav__burger {
  display: none;
  flex: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  border-radius: 9px;
  color: var(--carbon);
  cursor: pointer;
  transition: color 0.33s var(--ease);
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav.on-photo:not(.frosted) .nav__burger { color: var(--white); }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   5. Panels
   -------------------------------------------------------------------------- */
.panel {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
/* Snap only the full-viewport photo panels. Long editorial and form
   sections must scroll freely. Clipping is likewise scoped to photo panels:
   a light section that outgrows the viewport on a phone must be allowed to
   grow rather than have its content cut off. */
.panel--photo {
  scroll-snap-align: start;
  overflow: hidden;
}

.panel__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center;
}
.panel__bg video.bgvideo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.panel__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(23, 26, 32, 0.34) 0%,
    rgba(23, 26, 32, 0) 30%,
    rgba(23, 26, 32, 0) 60%,
    rgba(23, 26, 32, 0.42) 100%);
}

.panel__head {
  position: relative; z-index: 1;
  width: 100%;
  text-align: center;
  padding: 128px 24px 0;
}
.panel__head h1,
.panel__head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.16;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.panel__head p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  margin-top: 8px;
  text-wrap: pretty;
}
.panel__head p a { color: inherit; }
.panel--photo .panel__head { color: var(--white); }
.panel--photo .panel__head h1,
.panel--photo .panel__head h2 { text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45); }
.panel--photo .panel__head p { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5); }
.panel--light .panel__head { color: var(--carbon); }
.panel--light .panel__head p { color: var(--graphite); }

.panel__foot {
  position: relative; z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 24px 48px;
}

.panel--light {
  background: var(--white);
  justify-content: center;
  gap: 40px;
  padding: 24px 0 56px;
}
.panel--light .panel__head { padding-top: 96px; }
.panel--ash { background: var(--ash); }
.panel--carbon { background: #14110C; }

/* Auto-height content sections. */
.panel--auto { min-height: auto; padding: 72px 0; }
.panel--auto .panel__head { padding-top: 0; }
/* A content section that is the first thing on the page needs nav clearance. */
.panel--first { padding-top: 96px; }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  max-width: 100%;
  min-height: 44px;
  padding: 6px 16px;
  border: 0;
  border-radius: 9px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.33s var(--ease), color 0.33s var(--ease);
}
.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--secondary { background: rgba(255, 255, 255, 0.9); color: var(--carbon); }
.btn--secondary:hover { background: var(--white); }
.panel--light .btn--secondary { background: #14110C; color: var(--white); }
.panel--light .btn--secondary:hover { background: var(--graphite); }

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.cards {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(var(--shell), calc(100% - 64px));
  margin: 0 auto;
}
.card { text-align: center; padding: 8px; }
.card__img {
  aspect-ratio: 2 / 1;
  background-color: var(--ash);
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
.card__img span {
  position: absolute; top: 12px; left: 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.card__img video { width: 100%; height: 100%; object-fit: cover; display: block; }
.card h3 { font-size: 17px; font-weight: 500; line-height: 1.18; color: var(--carbon); }
.card p { font-size: 14px; font-weight: 400; line-height: 1.43; color: var(--graphite); margin-top: 6px; }
.card__links { display: flex; gap: 8px; justify-content: center; margin-top: 6px; flex-wrap: wrap; }
.card__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 8px;
  font-size: 14px;
  color: var(--pewter);
  text-decoration: none;
  box-shadow: inset 0 -1px 0 transparent;
  transition: box-shadow 0.33s var(--ease), color 0.33s var(--ease);
}
.card__links a:hover { color: var(--carbon); box-shadow: inset 0 -1px 0 var(--pewter); }

/* --------------------------------------------------------------------------
   8. Display type
   -------------------------------------------------------------------------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 10px;
}
h1.giant, h2.giant, .giant {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 12vw, 150px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  text-align: center;
  overflow-wrap: break-word;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
}
/* Long names need a gentler floor so they never overflow a 375px screen. */
h1.giant--name, .giant--name { font-size: clamp(34px, 8.6vw, 110px); }

.kicker {
  font-size: clamp(11px, 2.4vw, 14px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   9. Photo cards (artist panels + project grid)
   -------------------------------------------------------------------------- */
.pcard {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #14110C;
  background-size: cover;
  background-position: center;
}
.pcard::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 7, 0) 45%, rgba(4, 5, 7, 0.62) 100%);
}
.pcard span,
.pcard i { position: absolute; left: 16px; z-index: 1; }
.pcard span {
  bottom: 12px;
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
.pcard i {
  bottom: 40px;
  color: var(--accent);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.apanel,
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(var(--shell), calc(100% - 64px));
  margin: 0 auto;
}
.apanel .pcard { aspect-ratio: 3 / 4; }
.apanel .pcard span { font-size: 22px; }
.pgrid .pcard { aspect-ratio: 4 / 3; }
.pgrid .pcard i { bottom: 36px; }

/* --------------------------------------------------------------------------
   10. Pill lists, stats
   -------------------------------------------------------------------------- */
.exp {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.exp b {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: var(--carbon);
  background: var(--ash);
  border: 1px solid var(--cloud);
  border-radius: 999px;
  padding: 10px 22px;
}
.panel--ash .exp b { background: #211C14; color: var(--text); }

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  justify-content: center;
}
.stat { text-align: center; color: var(--white); }
.stat b {
  display: block;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

/* --------------------------------------------------------------------------
   11. Quotes
   -------------------------------------------------------------------------- */
.quote { max-width: 720px; margin: 0 auto; text-align: center; padding: 0 24px; }
.quote blockquote {
  font-family: var(--display);
  font-size: clamp(19px, 3.2vw, 24px);
  line-height: 1.35;
  color: var(--carbon);
  text-wrap: pretty;
}
.quote figcaption { font-size: 14px; color: var(--pewter); margin-top: 16px; }

.valquote { text-align: center; padding: 40px 24px; background: #14110C; }
.valquote p {
  font-family: var(--display);
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.4;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
  transition: opacity 0.6s;
}
.valquote p b { color: var(--accent); font-weight: 400; }

/* --------------------------------------------------------------------------
   12. Client + partner names
   -------------------------------------------------------------------------- */
.clients__names {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.clients__names a,
.clients__names b {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(21px, 4.2vw, 30px);
  line-height: 1.6;
  color: var(--carbon);
  text-decoration: none;
  white-space: nowrap;
}
.clients__names a { transition: color 0.33s var(--ease); }
.clients__names a:hover { color: var(--accent-dark); }
.clients__names i { color: var(--accent); font-style: normal; padding: 0 10px; }

/* --------------------------------------------------------------------------
   13. Partner logo strip
   Real client artwork, held to one optical height and desaturated so the
   strip stays black-and-white. Continuous drift, static when the visitor
   prefers reduced motion.
   -------------------------------------------------------------------------- */
/* The wrapper must claim the full panel width. Without it the flex parent
   shrink-to-fits around the max-content marquee track and the whole page
   gains a horizontal scrollbar. */
.partners { width: 100%; }
.pstrip {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.pstrip__track {
  display: flex;
  width: max-content;
  animation: pstrip-drift 46s linear infinite;
}
.pstrip:hover .pstrip__track,
.pstrip:focus-within .pstrip__track { animation-play-state: paused; }
.pstrip__set {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(38px, 6vw, 72px);
  padding: 18px clamp(19px, 3vw, 36px);
}
.pstrip img {
  height: 26px;
  width: auto;
  flex: none;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.78;
  transition: opacity 0.33s var(--ease);
}
/* Square and stacked marks read small at wordmark height, so they get a lift. */
.pstrip img.pstrip--sq { height: 38px; }
.pstrip:hover img { opacity: 0.85; }
@keyframes pstrip-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.pstrip__label,
.section__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pewter);
  text-align: center;
}
.pnames {
  max-width: 760px;
  margin: 10px auto 0;
  padding: 0 24px;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  color: var(--graphite);
}
.pnames span { white-space: nowrap; }
.pnames i { color: var(--accent); font-style: normal; padding: 0 6px; }

/* --------------------------------------------------------------------------
   14. Why choose us
   -------------------------------------------------------------------------- */
.why {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 40px;
  width: min(var(--shell), calc(100% - 64px));
  margin: 0 auto;
}
.why__item { padding: 24px 0 0; border-top: 2px solid var(--carbon); }
.why__item h3 {
  font-family: var(--display);
  font-size: clamp(21px, 2.6vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--carbon);
  text-wrap: balance;
}
.why__item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--graphite);
  margin-top: 10px;
  text-wrap: pretty;
}

.values {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}
.values b {
  font-family: var(--display);
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 700;
  color: var(--carbon);
  white-space: nowrap;
}
.values i { color: var(--accent); font-style: normal; padding: 0 10px; }

/* --------------------------------------------------------------------------
   15. Booking form
   -------------------------------------------------------------------------- */
.bform { max-width: 720px; margin: 0 auto; padding: 0 24px; text-align: left; }
.bform fieldset { border: 0; padding: 0; margin: 0; }
.bform legend,
.bform h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--carbon);
  margin: 28px 0 10px;
  padding: 0;
}
.bform fieldset:first-of-type legend { margin-top: 0; }
.bform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bform label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pewter);
  margin: 10px 0 4px;
}
.bform input,
.bform select,
.bform textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--carbon);
  background: var(--ash);
  border: 1px solid var(--cloud);
  border-radius: 9px;
}
.bform textarea { min-height: 88px; resize: vertical; }
.bform input:focus-visible,
.bform select:focus-visible,
.bform textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: transparent;
  background: var(--white);
}
.bform .hint {
  text-align: center;
  color: var(--pewter);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 14px;
}
.req { color: var(--graphite); }

/* --------------------------------------------------------------------------
   16. Contact router
   -------------------------------------------------------------------------- */
.router {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(900px, calc(100% - 64px));
  margin: 0 auto;
}
.router a {
  display: block;
  text-align: center;
  padding: 30px 16px;
  border: 1px solid var(--cloud);
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--carbon);
  transition: border-color 0.33s var(--ease), background 0.33s var(--ease);
}
.router a small {
  display: block;
  font-family: var(--font);
  font-weight: 400;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--pewter);
  margin-top: 8px;
}
.router a:hover { border-color: var(--accent); background: var(--accent-wash); }

/* --------------------------------------------------------------------------
   17. Journey line
   -------------------------------------------------------------------------- */
.journey {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(17px, 3.2vw, 24px);
  color: var(--carbon);
}
.journey i { color: var(--accent); font-style: normal; }

/* --------------------------------------------------------------------------
   18. Long-form copy (about, inner circle, projects lists)
   -------------------------------------------------------------------------- */
.ic-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.7;
}
.ic-wrap p + p { margin-top: 14px; }
.ic-wrap strong { color: var(--carbon); }
.ic-wrap h3 {
  font-family: var(--display);
  font-size: clamp(22px, 3.4vw, 26px);
  font-weight: 700;
  color: var(--carbon);
  margin: 34px 0 12px;
}
.ic-wrap ul { margin: 8px 0 8px 20px; }
.ic-wrap li { margin: 6px 0; }
.ic-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--carbon);
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
  padding: 7px 14px;
  margin: 4px 4px 4px 0;
}
.note {
  text-align: center;
  color: var(--pewter);
  font-size: 13px;
  line-height: 1.6;
  padding: 0 24px;
}

.tourlist {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.9;
  padding: 0 24px;
}
.tourlist b { font-family: var(--display); font-size: 21px; color: var(--carbon); }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #14110C;
  padding: 44px 24px 40px;
  text-align: center;
}
.footer__mark {
  width: 34px;
  height: 34px;
  display: block;
  margin: 0 auto 18px;
}
.footer__social {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 9px;
  transition: color 0.33s var(--ease);
}
.footer__social a:hover { color: var(--accent); }
.footer p {
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--silver-fog);
}
.footer p + p { margin-top: 2px; }
.footer a { color: var(--white); text-decoration: none; }
.footer a:hover { color: var(--accent); }
.footer i { color: var(--accent); font-style: normal; padding: 0 4px; }

/* --------------------------------------------------------------------------
   20. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .why { grid-template-columns: repeat(2, 1fr); gap: 8px 32px; }
}

/* Three-up card grids hold their shape down to the tablet range: at 1024 a
   two-column layout leaves a lone orphan card. */
@media (max-width: 940px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .apanel, .router { grid-template-columns: 1fr; }
  .bform .row { grid-template-columns: 1fr; }

  /* Mobile navigation: hamburger plus a full-height drawer that reuses the
     one canonical link list, so the tab order and the CTA never diverge. */
  .nav { --navh: 56px; padding: 6px 16px; }
  .nav__burger { display: flex; flex-direction: column; }
  .nav.is-open,
  .nav.is-open.frosted {
    background: #14110C;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav.is-open .nav__word { color: var(--white); }
  .nav.is-open .nav__mark { filter: none; }
  .nav.is-open .nav__burger { color: var(--white); }

  .nav__links {
    position: fixed;
    top: var(--navh);
    left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 20px 16px calc(24px + env(safe-area-inset-bottom));
    background: #14110C;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav.is-open .nav__links {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav .nav__links a,
  .nav.on-photo:not(.frosted) .nav__links a {
    justify-content: flex-start;
    min-height: 52px;
    padding: 10px 12px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
  }
  .nav .nav__links a:hover,
  .nav.on-photo:not(.frosted) .nav__links a:hover { background: rgba(255, 255, 255, 0.07); }
  .nav .nav__links a[aria-current="page"] { color: var(--accent); box-shadow: none; }
  .nav .nav__links .nav__cta,
  .nav.on-photo:not(.frosted) .nav__links .nav__cta {
    justify-content: center;
    margin: 22px 0 0;
    padding: 14px 20px !important;
    background: var(--accent);
    color: var(--on-accent) !important;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border: 0;
    border-radius: 999px;
  }
}

@media (max-width: 768px) {
  .panel__head { padding: 96px 16px 0; }
  .panel--light .panel__head { padding-top: 72px; }
  .panel--auto .panel__head { padding-top: 0; }
  .panel__foot { padding: 0 16px 40px; }
  .panel--auto { padding: 56px 0; }
  .panel--first { padding-top: 88px; }
  .cards, .pgrid, .why { grid-template-columns: 1fr; }
  .cards, .apanel, .pgrid, .why { width: calc(100% - 32px); }
  .stats { gap: 18px 28px; }
  .ctas { flex-direction: column; align-items: center; width: 100%; }
  .btn { width: min(320px, 100%); }
  .exp b { font-size: 15px; padding: 9px 18px; }
  .footer { padding: 36px 18px 32px; }
}

@media (max-width: 380px) {
  .nav__word { font-size: 12px; letter-spacing: 0.08em; }
}

/* --------------------------------------------------------------------------
   21. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .panel__bg video.bgvideo { display: none; }
  /* Static, wrapped partner strip instead of a marquee. */
  .pstrip { -webkit-mask-image: none; mask-image: none; }
  .pstrip__track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pstrip__set { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .pstrip__set[aria-hidden="true"] { display: none; }
}

/* Hero video rotator: two stacked layers, the active one fades in over the other */
.hero-rotator__v { opacity: 0; transition: opacity 1.1s ease; }
.hero-rotator__v.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-rotator__v { transition: none; } }

/* =====================================================================
   DARK THEME (site-wide). Light surfaces flip to carbon/ink; photo panels
   are already dark. Gold stays the single accent. Appended last so it wins.
   ===================================================================== */
:root {
  --bg: #0F0D0A;          /* page ground */
  --surface: #17140F;     /* cards, inputs, alt bands */
  --surface-2: #211C14;   /* raised */
  --line: rgba(255,220,160,0.12);
  --text: #F6EFE3;        /* warm off-white */
  --text-2: #CFC4B0;      /* secondary */
  --text-3: #9C9080;      /* tertiary */
}
html, body { background: var(--bg); color: var(--text); }
body { color: var(--text); }

/* Light/ash panels become dark bands */
.panel--light { background: var(--bg); }
.panel--light .panel__head, .panel--light .panel__head h1, .panel--light .panel__head h2 { color: var(--text); }
.panel--light .panel__head p { color: var(--text-2); }
.panel--ash { background: var(--surface); }
.panel--carbon { background: var(--ink); }

/* Nav: frosted state goes dark glass; logo stays white (no invert) */
.nav.frosted { background: rgba(15,13,10,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav.frosted .nav__links a, .nav.frosted .nav__word, .nav .nav__links a, .nav .nav__word { color: var(--text); }
.nav.frosted .nav__mark, .nav .nav__mark { filter: none; }
.nav.frosted .nav__burger span, .nav .nav__burger span { background: var(--text); }
.nav__links a:hover, .nav__links a:focus-visible { background: rgba(255,255,255,0.08); color: var(--text); }
.nav.is-open .nav__links { background: var(--ink); }

/* Buttons */
.btn--secondary { background: rgba(255,220,160,0.12); color: var(--text); border-color: transparent; }
.btn--secondary:hover { background: rgba(255,255,255,0.18); }
.panel--light .btn--secondary { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28); }
.panel--light .btn--secondary:hover { background: rgba(255,255,255,0.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5); }
.btn--primary { background: var(--accent); color: var(--on-accent); }

/* Cards, grids, chips */
.card__img { background-color: var(--surface-2); }
.card h3 { color: var(--text); }
.card p { color: var(--text-2); }
.card__links a { color: var(--text-2); }
.card__links a:hover { color: var(--text); box-shadow: inset 0 -1px 0 var(--text); }
.exp b { background: var(--surface-2); color: var(--text); }
.clients__names a, .clients__names b { color: var(--text); }
.clients__names a:hover { color: var(--accent); }
.pnames, .pnames span { color: var(--text-3); }
.pstrip__label, .section__label, .kicker { color: var(--text-3); }
/* partner logos: dark marks must read on dark; invert to white, keep grayscale */
.pstrip img { filter: grayscale(1) invert(1) brightness(1.6) contrast(0.9); opacity: 0.85; }
.pstrip img:hover { opacity: 1; }

/* Why / values */
.why__item h3 { color: var(--text); }
.why__item p, .why p { color: var(--text-2); }
.why__item { border-top-color: var(--line); }
.values, .values span { color: var(--text-2); }

/* Quotes, value banner, testimonials */
.valquote { background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote blockquote { color: var(--text); }
.quote figcaption { color: var(--text-3); }

/* Forms (booking, apply) */
.bform h4 { color: var(--text); }
.bform label, .bform legend { color: var(--text-3); }
.bform input, .bform select, .bform textarea { background: var(--surface); color: var(--text); border-color: var(--line); }
.bform input::placeholder, .bform textarea::placeholder { color: var(--text-3); }
.bform input:focus, .bform select:focus, .bform textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
.note, .req { color: var(--text-3); }

/* Contact router */
.router a { border-color: var(--line); color: var(--text); background: var(--surface); }
.router a small { color: var(--text-3); }
.router a:hover { border-color: var(--accent); background: var(--surface-2); }

/* Inner circle */
.ic-wrap, .ic-wrap p, .ic-wrap li { color: var(--text-2); }
.ic-wrap h3, .ic-wrap strong { color: var(--text); }
.ic-badge { background: var(--accent); color: var(--on-accent); }

/* Tour list / journey / stats */
.tourlist { color: var(--text-2); } .tourlist b { color: var(--text); }
.journey, .journey span { color: var(--text); }
.stat, .stat b { color: var(--text); } .stat span { color: var(--text-2); }

/* Footer */
.footer { background: var(--ink); border-top: 1px solid var(--line); }
.footer p, .footer a, .footer__social a { color: var(--text-3); }
.footer a:hover, .footer__social a:hover { color: var(--text); }

/* Skip link + focus */
.skip { background: var(--accent); color: var(--on-accent); }

/* ---- Dark-mode token remap: make every dark-text token resolve LIGHT ----
   (backgrounds were pinned to literals above, gold-text uses --on-accent) */
:root {
  --on-accent: #14110C;     /* text on gold: always dark */
  --carbon:   #F6EFE3;      /* was near-black text -> now off-white */
  --graphite: #CFC4B0;      /* was dark gray text -> now light gray */
  --pewter:   #A89B85;      /* was mid gray text  -> now muted light */
  --silver-fog: #9C9080;
  --white: #FFFFFF;
  --ash: #17140F;           /* light surface -> dark surface */
  --cloud: rgba(255,220,160,0.14);  /* borders */
  --frost: rgba(15,13,10,0.82);
}
/* surfaces that should be genuinely dark even though --ash now is dark-ish */
.panel--ash { background: #17140F; }
.bform input, .bform select, .bform textarea { background: #17140F; color: var(--carbon); border-color: var(--cloud); }
.router a { background: #17140F; }
.exp b { background: #211C14; color: var(--text); border: 1px solid rgba(255,198,39,0.18); box-shadow: 0 4px 14px rgba(0,0,0,0.35); transition: background 0.33s, color 0.33s, border-color 0.33s; }
.panel--ash .exp b { background: #131009; color: var(--text); }
.exp b:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.card__img { background-color: #211C14; }
/* mobile menu background stays ink */
.nav.is-open .nav__links { background: #0A0806; }

/* =====================================================================
   COLOR PASS: stage-light ambiance across the dark theme.
   Low-alpha violet/magenta/cyan washes + a stronger gold presence.
   ===================================================================== */
.panel--light {
  background:
    radial-gradient(1000px 520px at 92% 0%, rgba(255,198,39,0.07), transparent 55%),
    radial-gradient(900px 560px at 0% 100%, rgba(255,158,44,0.09), transparent 60%),
    var(--bg);
}
.panel--ash, .panel--light.panel--ash {
  background:
    radial-gradient(900px 500px at 6% 0%, rgba(214,92,40,0.07), transparent 55%),
    radial-gradient(1000px 560px at 100% 100%, rgba(226,116,44,0.06), transparent 60%),
    #17140F;
}
.valquote {
  background: linear-gradient(90deg, rgba(255,158,44,0.14), rgba(255,198,39,0.12)), #0A0806;
}
.panel--light .panel__head h2::after,
.panel--ash .panel__head h2::after {
  content: ""; display: block; width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(255,198,39,0.15));
  border-radius: 2px; margin: 16px auto 0;
}
.proof a { transition: transform 0.33s var(--ease), box-shadow 0.33s var(--ease); }
.proof a:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(255,198,39,0.22); }
.card__img { transition: box-shadow 0.33s var(--ease); }
.card:hover .card__img { box-shadow: 0 12px 36px rgba(255,158,44,0.25); }
.router a:hover { border-color: var(--accent); background: linear-gradient(135deg, rgba(255,198,39,0.10), rgba(255,158,44,0.10)), #211C14; }
.pstrip img { transition: opacity 0.33s, filter 0.33s; }
.pstrip img:hover { opacity: 1; filter: grayscale(1) invert(1) brightness(2) drop-shadow(0 0 14px rgba(255,198,39,0.45)); }
.footer { border-top: 1px solid transparent; border-image: linear-gradient(90deg, transparent, rgba(255,198,39,0.5), transparent) 1; }
.nav__cta { box-shadow: 0 0 22px rgba(255,198,39,0.28); }
.btn--primary { box-shadow: 0 6px 24px rgba(255,198,39,0.22); }
.btn--primary:hover { box-shadow: 0 8px 34px rgba(255,198,39,0.4); }
.seal { box-shadow: 0 0 28px rgba(255,198,39,0.3), inset 0 0 14px rgba(255,198,39,0.12); }
.ic-badge { box-shadow: 0 4px 18px rgba(255,198,39,0.28); }
@media (prefers-reduced-motion: reduce) { .proof a, .card__img, .pstrip img { transition: none; } }

/* =====================================================================
   NIKE-SYSTEM SKIN (VoltAgent/awesome-design-md nike): white canvas,
   ink chrome, pills, hairlines, zero shadows. HSP identity kept via the
   serif display + a single gold CTA. Appended last: this layer wins.
   ===================================================================== */
:root {
  --n-ink: #111111; --n-canvas: #ffffff; --n-cloud: #f5f5f5;
  --n-t2: #39393b; --n-t3: #757575; --n-hair: #e5e5e5;
}
html, body { background: var(--n-canvas); color: var(--n-ink); }

/* --- surfaces: white + soft-cloud, no washes, no glows --- */
.panel--light { background: var(--n-canvas); }
.panel--ash, .panel--light.panel--ash { background: var(--n-cloud); }
.panel--light .panel__head, .panel--light .panel__head h1, .panel--light .panel__head h2 { color: var(--n-ink); }
.panel--light .panel__head p { color: var(--n-t3); }
.panel--light .panel__head h2::after, .panel--ash .panel__head h2::after { display: none; }

/* --- nav: solid white bar, hairline, ink links, active underline --- */
.nav, .nav.on-photo, .nav.frosted { background: var(--n-canvas) !important; backdrop-filter: none !important; border-bottom: 1px solid var(--n-hair); }
.nav .nav__links a, .nav.on-photo .nav__links a, .nav.frosted .nav__links a,
.nav .nav__word, .nav.on-photo .nav__word { color: var(--n-ink); }
.nav .nav__links a:hover { background: transparent; box-shadow: inset 0 -2px 0 var(--n-ink); border-radius: 0; }
.nav .nav__links a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--n-ink); border-radius: 0; }
.nav .nav__mark, .nav.on-photo .nav__mark, .nav.frosted .nav__mark { filter: invert(1) !important; }
.nav .nav__burger span { background: var(--n-ink); }
.nav.is-open .nav__links { background: var(--n-canvas); }
.nav.is-open .nav__links a { color: var(--n-ink); }

/* --- type: billboard display, uppercase, 0.9 --- */
.giant, .band__t, .panel--photo .panel__head h1, .panel--photo .panel__head h2 { text-transform: uppercase; line-height: 0.9; }
.giant { font-size: clamp(56px, 9vw, 120px); }

/* --- buttons: pill geometry, ink/cloud/white trio; gold only for Book The LOX --- */
.btn { border-radius: 30px; min-height: 48px; padding: 12px 28px; box-shadow: none !important; border: none; font-weight: 500; }
.btn--primary { background: var(--n-ink); color: #fff; }
.btn--primary:hover { background: #292929; box-shadow: none !important; }
.panel--photo .btn--primary { background: #fff; color: var(--n-ink); }      /* on-image pill */
.panel--photo .btn--primary:hover { background: var(--n-cloud); }
.btn--secondary, .panel--light .btn--secondary { background: var(--n-cloud); color: var(--n-ink); box-shadow: none; }
.btn--secondary:hover, .panel--light .btn--secondary:hover { background: #ececec; box-shadow: none; }
.panel--photo .btn--secondary { background: rgba(255,255,255,0.22); color: #fff; }
.nav__cta { border-radius: 30px !important; box-shadow: none !important; }   /* stays gold: the one brand signal */
.btn:active { transform: scale(0.97); }

/* --- kill all elevation/glow/decoration --- */
.proof a, .card:hover .card__img, .seal, .ic-badge, .router a { box-shadow: none !important; }
.proof a:hover { transform: none; }
.proof a, .card__img, .pcard { border-radius: 0; }
.router a { border-radius: 30px; border: 1px solid var(--n-hair); background: var(--n-canvas); color: var(--n-ink); }
.router a small { color: var(--n-t3); }
.router a:hover { background: var(--n-cloud); border-color: var(--n-ink); }

/* --- stats bar: white catalog strip --- */
.statbar { background: var(--n-canvas); border-top: 1px solid var(--n-hair); border-bottom: 1px solid var(--n-hair); }
.statbar__i { border-left: 1px solid var(--n-hair); }
.statbar__i b { color: var(--n-ink); }
.statbar__i span { color: var(--n-t3); }

/* --- bands: neutral scrims only (no color tints) --- */
#lox .band__bg::after, #production .band__bg::after, #live .band__bg::after, #levelup .band__bg::after {
  background: linear-gradient(90deg, rgba(17,17,17,0.72) 0%, rgba(17,17,17,0.45) 45%, rgba(17,17,17,0.08) 80%);
}
.band--r .band__bg::after,
#production .band__bg::after, #levelup .band__bg::after {
  background: linear-gradient(270deg, rgba(17,17,17,0.72) 0%, rgba(17,17,17,0.45) 45%, rgba(17,17,17,0.08) 80%) !important;
}
.band__k b { color: #fff; }   /* no gold letter device in this skin */

/* --- content colors on light --- */
.card h3, .clients__names a, .clients__names b, .journey, .journey span,
.tourlist b, .why__item h3, .ic-wrap h3, .ic-wrap strong, .bform h4, .quote blockquote { color: var(--n-ink); }
.card p, .why__item p, .why p, .tourlist, .ic-wrap, .ic-wrap p, .ic-wrap li, .values, .values span { color: var(--n-t2); }
.pnames, .pnames span, .quote figcaption, .pstrip__label, .eyebrow, .bform label, .bform legend, .note, .req { color: var(--n-t3); }
.journey i { color: var(--n-ink); }
.clients__names i { color: var(--n-t3); }
.clients__names a:hover { color: var(--n-ink); text-decoration: underline; }
.exp b { background: var(--n-canvas); color: var(--n-ink); border: 1px solid var(--n-hair); box-shadow: none; }
.panel--ash .exp b { background: var(--n-canvas); color: var(--n-ink); }
.exp b:hover { background: var(--n-ink); color: #fff; border-color: var(--n-ink); }

/* --- partner strip: dark marks on white, plain grayscale --- */
.pstrip img { filter: grayscale(1); opacity: 0.8; }
.pstrip img:hover { filter: grayscale(0); opacity: 1; }

/* --- value quote: cloud strip, ink text --- */
.valquote { background: var(--n-cloud); border-top: 1px solid var(--n-hair); border-bottom: 1px solid var(--n-hair); }
.valquote p { color: var(--n-ink); }
.valquote p b { color: var(--n-ink); }

/* --- forms: cloud fields, focus ring ink --- */
.bform input, .bform select, .bform textarea { background: var(--n-cloud); color: var(--n-ink); border: 1px solid transparent; border-radius: 24px; }
.bform textarea { border-radius: 16px; }
.bform input:focus, .bform select:focus, .bform textarea:focus { outline: none; background: #fff; border: 2px solid var(--n-ink); }
.ic-badge { background: var(--n-ink); color: #fff; box-shadow: none; }

/* --- footer: inverse ink block --- */
.footer { background: var(--n-ink); border-top: none; border-image: none; }
.footer p, .footer a, .footer__social a { color: #9e9ea0; }
.footer a:hover, .footer__social a:hover { color: #fff; }

/* --- hero seal: white ring on photo --- */
.seal { border-color: #fff; color: #fff; background: rgba(17,17,17,0.25); }

/* --- skip link --- */
.skip { background: var(--n-ink); color: #fff; }

/* nike-skin fixups */
.panel--light .values, .panel--light .values span, .panel--light .values b,
.values, .values span, .values b { color: #39393b; }
.panel--photo#top .panel__bg::after {
  background: linear-gradient(180deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.15) 34%, rgba(17,17,17,0) 60%, rgba(17,17,17,0.35) 100%);
}

/* nike-skin: mobile drawer must be ink-on-white in every nav state */
.nav.is-open.on-photo:not(.frosted) .nav__links a,
.nav.is-open.frosted .nav__links a,
.nav.is-open .nav__links a { color: var(--n-ink); border-bottom-color: #ececec; }
.nav.is-open.on-photo:not(.frosted) .nav__links a:hover,
.nav.is-open .nav__links a:hover { background: var(--n-cloud); }
.nav.is-open .nav__links a[aria-current="page"] { color: var(--n-ink); }
.nav.is-open, .nav.is-open.frosted { background: var(--n-canvas) !important; }
.nav.is-open .nav__word { color: var(--n-ink); }
.nav.is-open .nav__mark { filter: invert(1) !important; }
.nav.is-open .nav__burger span { background: var(--n-ink); }
/* Craft "H" language: single accent (ember) reserved for the letter H on service bands */
.band__k b { color: #FF6A2A !important; font-style: italic; letter-spacing: -0.01em; }
