/* ============================================================
   FELIX — global styles
   Dark, cinematic, photography-led. Mobile-first.
   ============================================================ */

:root {
  --bg:        #0a0a0b;
  --bg-soft:   #121214;
  --panel:     #16161a;
  --line:      rgba(255,255,255,.10);
  --line-soft: rgba(255,255,255,.06);
  --ink:       #f4f3ef;
  --ink-dim:   #a3a29d;
  --ink-faint: #82817a;   /* 5.0:1 on --bg — passes WCAG AA */
  --accent:    #c9a24b;   /* warm gold */
  --accent-2:  #e9d9a8;
  --maxw:      1200px;
  --pad:       clamp(20px, 5vw, 64px);
  --ease:      cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #0a0a0b; }

/* ---- keyboard focus + skip link (a11y) ---- */
:focus { scroll-margin-top: 90px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.btn:focus-visible, .nav a:focus-visible { outline-offset: 5px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: var(--bg);
  padding: 12px 18px; font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
}
.skip-link:focus { left: 8px; top: 8px; }
.noscript { max-width: var(--maxw); margin: 0 auto; padding: 16px var(--pad); color: var(--ink-dim); font-size: .92rem; border-bottom: 1px solid var(--line-soft); }
.noscript a { color: var(--accent); text-decoration: underline; }

/* ---- type ------------------------------------------------- */
.display {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-weight: 400;
  line-height: .92;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.kicker {
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.muted { color: var(--ink-dim); }

/* ---- layout ----------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 12vw, 140px); }
.section--tight { padding-block: clamp(48px, 8vw, 96px); }

/* ---- buttons ---------------------------------------------- */
.btn {
  --bd: var(--ink);
  display: inline-flex; align-items: center; gap: .8em;
  min-height: 48px; padding: 0 28px;
  border: 1px solid var(--bd);
  color: var(--ink);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  background: transparent; cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn--gold { --bd: var(--accent); color: var(--accent); }
.btn--gold:hover { background: var(--accent); color: var(--bg); }
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---- liquid-metal button (vanilla recreation of the shader button) ---- */
.lm-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  min-width: 190px; height: 52px; padding: 0 32px;
  border-radius: 100px; overflow: hidden; isolation: isolate;
  text-decoration: none; cursor: pointer; pointer-events: auto; -webkit-tap-highlight-color: transparent;
  box-shadow: 0 0 0 1px rgba(0,0,0,.55), 0 30px 16px -14px rgba(0,0,0,.5), 0 8px 10px -6px rgba(0,0,0,.4);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), box-shadow .3s var(--ease);
}
.lm-btn__metal {
  position: absolute; top: 50%; left: 50%; width: 240%; aspect-ratio: 1; z-index: 0;
  transform: translate(-50%,-50%) rotate(0deg);
  background: conic-gradient(from 0deg,
    #3a3a3a, #f4f4f4, #8a8a8a, #1e1e1e, #d8dde2, #6a6a6a, #ffffff, #2a2a2a,
    #cfd6da, #545454, #ededed, #3a3a3a);
  filter: blur(2px) saturate(1.1);
  /* idle: a slow drift; the expensive fast spin only runs on hover (perf) */
  animation: lm-spin 26s linear infinite;
}
@keyframes lm-spin { to { transform: translate(-50%,-50%) rotate(1turn); } }
.lm-btn__face {
  position: absolute; inset: 2.5px; z-index: 1; border-radius: 100px;
  background: linear-gradient(180deg, #242424 0%, #050505 100%);
  transition: inset .16s var(--ease), box-shadow .16s var(--ease);
}
.lm-btn__label {
  position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .7em;
  color: #cbc9c2; font-size: .8rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
.lm-btn__label .arr { transition: transform .4s var(--ease); }
.lm-btn:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(0,0,0,.55), 0 16px 16px -10px rgba(0,0,0,.45), 0 6px 8px -4px rgba(0,0,0,.4); }
.lm-btn:hover .lm-btn__metal { animation-duration: 2.6s; filter: blur(1.5px) saturate(1.25) brightness(1.12); }
.lm-btn:hover .lm-btn__label .arr { transform: translateX(4px); }
.lm-btn:active { transform: translateY(0) scale(.985); }
.lm-btn:active .lm-btn__face { inset: 3.5px; box-shadow: inset 0 2px 5px rgba(0,0,0,.6); }
.lm-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.lm-ripple {
  position: absolute; z-index: 3; width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.45) 0%, rgba(255,255,255,0) 70%);
  transform: translate(-50%,-50%) scale(0); pointer-events: none;
  animation: lm-ripple .6s ease-out forwards;
}
@keyframes lm-ripple { to { transform: translate(-50%,-50%) scale(5); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .lm-btn__metal { animation: none; } }

/* ============================================================
   SPLASH (index.html)
   ============================================================ */
.splash {
  position: relative;
  min-height: 100svh;
  display: grid; place-items: center;
  overflow: hidden;
  text-align: center;
}
.splash__wall {
  position: absolute; inset: -8% -8% -8% -8%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  opacity: .92;
  filter: grayscale(.12) brightness(.92) contrast(1.03);
  transform: scale(1.06);
  animation: wallDrift 60s linear infinite alternate;
}
@media (max-width: 760px){ .splash__wall { grid-template-columns: repeat(4, 1fr); } }
@keyframes wallDrift { from { transform: scale(1.06) translateY(0); } to { transform: scale(1.12) translateY(-4%); } }
.splash__wall .tile { aspect-ratio: 1; border-radius: 2px; }
.splash::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 52% at 50% 50%, rgba(10,10,11,.86) 0%, rgba(10,10,11,.62) 45%, rgba(10,10,11,0) 100%),
    linear-gradient(180deg, rgba(10,10,11,.42) 0%, rgba(10,10,11,.20) 30%, rgba(10,10,11,.20) 70%, rgba(10,10,11,.55) 100%);
}
.splash__inner { position: relative; z-index: 2; padding: var(--pad); }
.splash__name {
  font-size: clamp(3.6rem, 22vw, 18rem);
  margin: .12em 0 .18em;
  background: linear-gradient(180deg, #fff 0%, #cfccc2 60%, #8d8a82 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.splash__tag { color: var(--ink-dim); font-size: clamp(.85rem,2.6vw,1.05rem); letter-spacing: .28em; text-transform: uppercase; }
.splash__cta { margin-top: clamp(28px, 6vw, 48px); }
.splash__scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--ink-faint); font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
}

/* ============================================================
   HOME — scroll-tilted cover grid + fixed brand overlay
   ============================================================ */
.tilt-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 30px);
  width: 100%; max-width: 66rem; margin: 0 auto;
  padding: 54vh 24px 30vh;
}
@media (max-width: 1000px) { .tilt-grid { grid-template-columns: repeat(3, 1fr); max-width: 46rem; } }
.tilt-tile { position: relative; margin: 0; perspective: 900px; }
.tilt-tile__inner {
  position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden;
  border-radius: 6px; transform-origin: center; will-change: transform, filter;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}
.tilt-tile__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-color: var(--panel); will-change: transform; backface-visibility: hidden;
}

.splash-hero {
  position: fixed; inset: 0; z-index: 3;
  display: grid; place-items: center; text-align: center;
  pointer-events: none;
}
.splash-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(44% 30% at 50% 47%, rgba(10,10,11,.74) 0%, rgba(10,10,11,.32) 52%, rgba(10,10,11,0) 76%),
    linear-gradient(180deg, rgba(10,10,11,.38) 0%, rgba(10,10,11,0) 24%, rgba(10,10,11,0) 76%, rgba(10,10,11,.38) 100%);
}
.splash-hero__inner { position: relative; z-index: 1; padding: var(--pad); }
.splash-hero__tag { color: var(--ink-dim); font-size: clamp(.85rem,2.6vw,1.05rem); letter-spacing: .28em; text-transform: uppercase; }
.splash-hero__cta { margin-top: clamp(24px, 5vw, 44px); }
.splash-hero__cta .btn { pointer-events: auto; }
.splash-hero__scroll {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 4;
  pointer-events: auto; color: var(--ink-faint); font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.splash-hero__scroll::after { content: "↓"; font-size: .8rem; animation: heroBob 2.4s ease-in-out infinite; }
@keyframes heroBob { 0%,100% { transform: translateY(0); opacity:.6 } 50% { transform: translateY(4px); opacity:1 } }
@media (max-width: 640px) { .tilt-grid { grid-template-columns: repeat(2, 1fr); max-width: 30rem; padding: 48vh 16px 28vh; gap: 14px; } .splash-hero__scroll { display: none; } }
@media (prefers-reduced-motion: reduce) { .splash-hero__scroll::after { animation: none; } }

/* ============================================================
   SITE CHROME (interior pages)
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.topbar__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 70px;
}
.brand { font-family: "Bebas Neue", sans-serif; font-size: 1.9rem; letter-spacing: .12em; }
.brand a { display: inline-flex; align-items: baseline; gap: .35em; }
.brand .dot { color: var(--accent); }

.nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 34px); }
.nav a {
  position: relative; font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim);
  padding: 6px 0; transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--accent); transition: width .35s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.nav-toggle { display: none; background: none; border: 0; color: var(--ink); width: 44px; height: 44px; cursor: pointer; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 760px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav {
    position: fixed; inset: 70px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg-soft); border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 20px;
    transform: translateY(-130%); transition: transform .45s var(--ease), visibility .45s;
    visibility: hidden; z-index: 49;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav a { width: 100%; padding: 16px 0; font-size: .95rem; border-bottom: 1px solid var(--line-soft); }
}

/* ---- page hero ---- */
.page-hero { border-bottom: 1px solid var(--line-soft); }
.page-hero .wrap { padding-block: clamp(44px, 7vw, 84px); }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6rem); }
.page-hero p { max-width: 56ch; margin-top: 18px; color: var(--ink-dim); font-size: clamp(1rem,2.2vw,1.18rem); }
.page-hero .hero-cta { margin-top: 28px; }
/* collapse the doubled gap when content follows a hero directly */
.page-hero + .section,
.page-hero + .section--tight { padding-top: clamp(40px, 6vw, 72px); }

/* ============================================================
   WORK / cover wall
   ============================================================ */
.grid-covers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(12px, 2vw, 22px);
}
@media (max-width: 560px){ .grid-covers { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.cover {
  position: relative; display: block;
  aspect-ratio: 1; border-radius: 3px; overflow: hidden;
  background: var(--panel); border: 1px solid var(--line-soft);
  transform-style: preserve-3d; cursor: pointer;
  transition: transform .13s ease-out, box-shadow .5s var(--ease);
}
.cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s var(--ease); filter: grayscale(.15); }
.cover__art { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 16px; }
.cover__art .ttl { font-family: "Bebas Neue", sans-serif; font-size: clamp(1.4rem, 4vw, 2.2rem); line-height: .95; letter-spacing: .03em; }
/* credits are always legible (artist name + 1-line track preview);
   the full tracklist expands on hover/focus so the grid reads as a credit wall */
.cover__meta {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 14px 14px 13px; padding-top: 46px;
  background: linear-gradient(0deg, rgba(7,7,8,.94) 0%, rgba(7,7,8,.62) 48%, rgba(7,7,8,0) 100%);
}
.cover:hover, .cover:focus-visible { box-shadow: 0 34px 70px rgba(0,0,0,.62); }
.cover:hover img, .cover:focus-visible img { transform: scale(1.06); filter: grayscale(0); }
.cover.is-tilting { transition: box-shadow .5s var(--ease); }   /* JS drives transform live during tilt */
.cover__meta .artist {
  font-weight: 700; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,.65);
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1;
  overflow: hidden; max-height: 1.5em; transition: max-height .5s var(--ease);
}
.cover:hover .cover__meta .artist, .cover:focus-visible .cover__meta .artist { -webkit-line-clamp: 2; max-height: 3em; }
.cover__meta .sub {
  color: var(--ink-dim); font-size: .74rem; line-height: 1.45; margin-top: 4px;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden;
  max-height: 1.5em; transition: max-height .5s var(--ease);
}
.cover:hover .cover__meta .sub, .cover:focus-visible .cover__meta .sub { -webkit-line-clamp: 6; max-height: 9em; }
.cover__year { position: absolute; top: 12px; right: 12px; z-index: 2; font-size: .7rem; letter-spacing: .12em; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.8); background: rgba(0,0,0,.55); padding: 3px 8px; border-radius: 2px; backdrop-filter: blur(4px); }
.cover__play { position: absolute; top: 50%; left: 50%; z-index: 2; width: 52px; height: 52px; border-radius: 999px; display: grid; place-items: center; background: rgba(8,8,9,.6); color: #fff; opacity: 0; transform: translate(-50%,-50%) scale(.8); transition: opacity .3s var(--ease), transform .3s var(--ease); backdrop-filter: blur(4px); box-shadow: 0 8px 22px rgba(0,0,0,.45); }
.cover__play svg { width: 20px; height: 20px; margin-left: 2px; }
.cover:hover .cover__play, .cover:focus-visible .cover__play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
@media (hover: none){ .cover__play { opacity: .9; transform: translate(-50%,-50%) scale(.92); } }
/* corner shortcut straight to Spotify (the cover itself plays in-page) */
.cover__spotify { position: absolute; top: 11px; left: 11px; z-index: 4; width: 26px; height: 26px; border-radius: 999px; display: grid; place-items: center; background: rgba(8,8,9,.6); color: #cfcdc7; opacity: 0; transition: opacity .3s var(--ease), color .2s, background .2s; backdrop-filter: blur(4px); text-decoration: none; }
.cover__spotify svg { width: 15px; height: 15px; }
.cover:hover .cover__spotify, .cover:focus-within .cover__spotify { opacity: 1; }
.cover__spotify:hover { color: #1DB954; background: rgba(0,0,0,.78); }
@media (hover: none){ .cover__spotify { opacity: .9; } }
.cover.is-playing { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---- in-page Spotify player (Work page) ---- */
.player {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(12,12,14,.94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(115%); transition: transform .42s var(--ease);
}
.player.open { transform: translateY(0); }
.player__row { display: flex; align-items: center; gap: 14px; padding: 12px var(--pad); max-width: var(--maxw); margin: 0 auto; }
.player__embed { flex: 1; min-width: 0; }
.player__embed iframe { width: 100% !important; border-radius: 12px; display: block; }
.player__sp { white-space: nowrap; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); display: inline-flex; align-items: center; gap: 7px; text-decoration: none; }
.player__sp svg { width: 15px; height: 15px; }
.player__sp:hover { color: #1DB954; }
.player__close { flex-shrink: 0; width: 40px; height: 40px; border: 0; background: none; color: var(--ink-dim); font-size: 1.2rem; line-height: 1; cursor: pointer; border-radius: 8px; }
.player__close:hover { color: var(--ink); background: rgba(255,255,255,.06); }
body.player-active { padding-bottom: 112px; }
@media (max-width: 640px){ .player__sp span { display: none; } .player__row { gap: 10px; } }

/* ============================================================
   ABOUT / generic content
   ============================================================ */
.lede { font-size: clamp(1.3rem, 3.4vw, 2rem); line-height: 1.35; max-width: 24ch; }
.split { display: grid; gap: clamp(28px, 5vw, 64px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 860px) { .split { grid-template-columns: 0.9fr 1.1fr; } }
.prose p + p { margin-top: 1.1em; }
.prose p { color: var(--ink-dim); max-width: 62ch; }
.prose-cta { margin-top: 36px; }

/* ---- About: 3D orbit gallery hero ---- */
.orbit-hero {
  position: relative; width: 100%; height: clamp(440px, 78svh, 820px);
  overflow: hidden; border-bottom: 1px solid var(--line-soft);
  background: radial-gradient(60% 60% at 50% 38%, #16140d 0%, var(--bg) 72%);
}
#orbit-canvas { position: absolute; inset: 0; z-index: 1; touch-action: pan-y; }
#orbit-canvas canvas { display: block; }
/* wordmark is now drawn inside the 3D scene; overlay only holds the kicker (top)
   and the hint (bottom), leaving the centre clear for the orbiting depth effect */
.orbit-hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between; align-items: center;
  text-align: center; pointer-events: none; padding: clamp(26px, 5vw, 56px) var(--pad);
}
.orbit-hero__overlay::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.5) 0%, rgba(10,10,11,0) 24%, rgba(10,10,11,0) 76%, rgba(10,10,11,.5) 100%);
}
.orbit-hero__overlay > * { position: relative; z-index: 1; }
.orbit-hero__hint { color: var(--ink-faint); font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; } }
.stat { border-top: 1px solid var(--line); padding-top: 16px; }
.stat .n { font-family: "Bebas Neue", sans-serif; font-size: clamp(2.4rem, 7vw, 4rem); line-height: 1; }
.stat .l { color: var(--ink-faint); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; margin-top: 6px; }

/* ---- services list ---- */
.services { border-top: 1px solid var(--line); }
.service {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(16px,4vw,48px);
  align-items: baseline; padding: clamp(28px,5vw,46px) 0;
  border-bottom: 1px solid var(--line);
}
.service__n { font-family: "Bebas Neue", sans-serif; color: var(--accent); font-size: 1.1rem; letter-spacing: .1em; }
.service__name { font-family: "Bebas Neue", sans-serif; font-size: clamp(2rem,6vw,3.4rem); line-height: 1; }
.service__blurb { color: var(--ink-dim); max-width: 52ch; margin-top: 10px; }
@media (min-width: 760px){ .service { grid-template-columns: 2.4rem 1fr 1.4fr; } .service__body{display:contents} }

/* ---- how it works ---- */
.steps { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 3vw, 32px); margin-top: 8px; }
@media (min-width: 720px){ .steps { grid-template-columns: repeat(3, 1fr); } }
.step { border-top: 2px solid var(--accent); padding-top: 18px; }
.step .num { font-family: "Bebas Neue", sans-serif; font-size: 1rem; letter-spacing: .18em; color: var(--accent); }
.step h3 { font-size: 1.15rem; margin-top: 6px; letter-spacing: .01em; }
.step p { color: var(--ink-dim); margin-top: 8px; font-size: .95rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; gap: clamp(36px, 5vw, 72px); grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.8fr 1.2fr; } }

.info-row { display: flex; flex-direction: column; gap: 4px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.info-row .l { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); }
.info-row .v { font-size: 1.1rem; }
.info-row a:hover { color: var(--accent); }

form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
form .field { margin-bottom: 18px; }
form label { display: block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 8px; }
form input, form select, form textarea {
  width: 100%; background: var(--bg-soft); color: var(--ink);
  border: 1px solid var(--line); border-radius: 0;
  padding: 16px 18px; font: inherit; font-size: 1rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
form textarea { min-height: 150px; resize: vertical; }
form input:focus-visible, form select:focus-visible, form textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 0; border-color: var(--accent); background: #0e0e10;
}
form .row2 { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 1040px){ form .row2 { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: 6px; }
.form-status { margin-top: 16px; font-size: .9rem; min-height: 1.2em; }
.form-status.ok { color: var(--accent-2); }
.form-status.err { color: #e08a7a; }

/* conversational booking form (TypeForm component) */
.tf-card { position: relative; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: var(--bg-soft); }
/* id+class beats the component's `.tf-root{height:100%}` regardless of load order */
#tf-form.tf-card { height: clamp(540px, 72vh, 660px); }
@media (max-width: 900px) { #tf-form.tf-card { height: clamp(560px, 78svh, 640px); } }
/* re-skin component accents to the site's gold-on-dark system */
#tf-form .tf-start-btn, #tf-form .tf-ok-btn { color: #0a0a0b; border-radius: 0; font-weight: 700; letter-spacing: .04em; }
#tf-form .tf-choice.selected { background: rgba(201,162,75,.16); }
#tf-form .tf-choice.selected .tf-choice-key { color: #0a0a0b; }
#tf-form .tf-rating-opt.selected { color: #0a0a0b; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line-soft); background: var(--bg-soft); }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; padding-block: 34px; }
.footer .brand { font-size: 1.5rem; }
.socials { display: flex; flex-wrap: wrap; gap: 22px; }
.socials a { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); }
.socials a:hover { color: var(--accent); }
.copy { color: var(--ink-faint); font-size: .76rem; width: 100%; border-top: 1px solid var(--line-soft); padding-top: 16px; }

/* generous tap targets on touch */
@media (max-width: 760px) {
  .socials a, .footer .copy a, .info-row .v a { display: inline-block; padding: 8px 0; }
  .splash__scroll { display: none; }
}

/* ---- reveal on scroll (only hidden once JS confirms it can reveal them) ---- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   VLOG — index cards + article pages
   ============================================================ */
.vlog-intro { max-width: 62ch; }

/* topic filter chips (progressive enhancement) */
.vlog-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(24px, 4vw, 38px); }
.vlog-chip {
  border: 1px solid var(--line); background: transparent; color: var(--ink-dim);
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 100px; cursor: pointer; min-height: 38px;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.vlog-chip:hover { color: var(--ink); border-color: var(--ink-dim); }
.vlog-chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #0a0a0b; }
.vlog-chip:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* card grid */
.vlog-grid { display: grid; gap: clamp(20px, 3vw, 34px); grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
@media (max-width: 560px) { .vlog-grid { grid-template-columns: 1fr; } }

.post-card {
  border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden;
  background: var(--bg-soft);
  transition: transform .5s var(--ease), border-color .4s var(--ease), box-shadow .5s var(--ease);
}
.post-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.post-card[hidden] { display: none; }
.post-card__link { display: flex; flex-direction: column; height: 100%; }

.post-card__media { position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center; overflow: hidden; background: var(--panel); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__ghost { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 0 16px; }
.post-card__ghost span { font-family: "Bebas Neue", sans-serif; font-size: clamp(1.5rem, 4vw, 2.3rem); letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.20); }
.post-card__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 999px; display: grid; place-items: center;
  background: rgba(8,8,9,.55); color: #fff; backdrop-filter: blur(4px);
  box-shadow: 0 10px 26px rgba(0,0,0,.5); transition: transform .3s var(--ease), background .3s var(--ease);
}
.post-card__play svg { width: 22px; height: 22px; margin-left: 3px; }
.post-card:hover .post-card__play { transform: translate(-50%,-50%) scale(1.08); background: var(--accent); color: #0a0a0b; }

.post-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.post-card__tag { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.post-card__title { font-size: 1.22rem; line-height: 1.25; letter-spacing: .01em; }
.post-card__excerpt { color: var(--ink-dim); font-size: .94rem; line-height: 1.55; flex: 1; }
.post-card__meta { margin-top: 4px; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); display: flex; gap: 9px; align-items: center; }

.vlog-empty { margin-top: 28px; color: var(--ink-dim); }
.vlog-empty .vlog-reset { background: none; border: 0; color: var(--accent); cursor: pointer; text-decoration: underline; font: inherit; }

/* ---- article page ---- */
.article { padding-block: clamp(36px, 6vw, 72px); }
.article__back { display: inline-block; color: var(--ink-dim); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: clamp(22px, 4vw, 40px); transition: color .25s var(--ease); }
.article__back:hover { color: var(--accent); }
.article__head { max-width: 760px; }
.article__tags { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 14px; }
.article__tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.article__tag:hover { text-decoration: underline; text-underline-offset: 3px; }
.article__title { font-size: clamp(2.1rem, 6vw, 3.6rem); line-height: 1.02; margin: 0; }
.article__meta { margin-top: 18px; color: var(--ink-faint); font-size: .82rem; letter-spacing: .04em; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.article__meta .dot-sep { opacity: .5; }

.article__media { max-width: 920px; margin: clamp(28px, 5vw, 48px) 0; }
.article__cover { width: 100%; border-radius: 14px; aspect-ratio: 16 / 9; object-fit: cover; }
.article__cover--ghost { display: block; }

.article-body { max-width: 720px; font-size: clamp(1.02rem, 2vw, 1.12rem); line-height: 1.75; color: var(--ink-dim); }
.article-body > * + * { margin-top: 1.15em; }
.article-body h2 { color: var(--ink); font-size: clamp(1.5rem, 3.5vw, 2rem); line-height: 1.15; letter-spacing: .01em; margin-top: 1.9em; }
.article-body h3 { color: var(--ink); font-size: 1.25rem; margin-top: 1.5em; }
.article-body p { color: var(--ink-dim); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body em { font-style: italic; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article-body ul, .article-body ol { padding-left: 1.35em; }
.article-body li + li { margin-top: .5em; }
.article-body li::marker { color: var(--accent); }
.article-body blockquote {
  border-left: 3px solid var(--accent); padding: 4px 0 4px 22px; margin: 1.6em 0;
  color: var(--ink); font-size: 1.08em;
}
.article-body blockquote p { color: var(--ink); }
.article-body img { border-radius: 12px; margin: 1.6em auto; }
.article-body hr { border: 0; border-top: 1px solid var(--line-soft); margin: 2.2em 0; }
.article-body code { background: var(--panel); padding: .12em .42em; border-radius: 4px; font-size: .9em; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.article-body pre { background: var(--panel); padding: 16px 18px; border-radius: 10px; overflow-x: auto; border: 1px solid var(--line-soft); }
.article-body pre code { background: none; padding: 0; }

/* responsive video embed */
.yt-embed { position: relative; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; margin: 1.8em 0; border: 1px solid var(--line-soft); background: #000; }
.yt-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-fallback { border: 1px dashed var(--line); border-radius: 12px; padding: clamp(28px, 5vw, 48px); text-align: center; margin: 1.8em 0; background: var(--bg-soft); }
.yt-fallback p { color: var(--ink-dim); margin-bottom: 18px; }

/* booking CTA + post-to-post nav */
.article-cta { max-width: 720px; margin-top: clamp(44px, 7vw, 72px); padding: clamp(28px, 4vw, 40px); border: 1px solid var(--line-soft); border-radius: 16px; background: linear-gradient(160deg, var(--panel), var(--bg-soft)); }
.article-cta h2 { font-size: clamp(1.4rem, 4vw, 1.9rem); }
.article-cta p { color: var(--ink-dim); margin: 12px 0 22px; max-width: 56ch; }

.article-foot { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; max-width: 920px; margin-top: clamp(40px, 6vw, 64px); padding-top: 28px; border-top: 1px solid var(--line-soft); }
.article-foot__link { display: flex; flex-direction: column; gap: 5px; max-width: 46%; }
.article-foot__link--next { text-align: right; margin-left: auto; }
.article-foot__link span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.article-foot__link strong { color: var(--ink-dim); font-weight: 600; transition: color .25s var(--ease); }
.article-foot__link:hover strong { color: var(--accent); }
@media (max-width: 560px) { .article-foot__link { max-width: 100%; } .article-foot__link--next { text-align: left; } }

/* article figures (diagrams + photos with captions) */
.article-fig { margin: 1.9em 0; }
.article-fig img { width: 100%; border-radius: 12px; display: block; }
.article-fig figcaption { margin-top: 10px; font-size: .84rem; line-height: 1.5; color: var(--ink-faint); font-style: italic; }

/* orbit hero — static photo-montage fallback when WebGL/Three is unavailable */
.orbit-fallback { position: absolute; inset: 0; z-index: 0; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 2px; }
@media (max-width: 680px) { .orbit-fallback { grid-template-columns: repeat(3, 1fr); } }
.orbit-fallback img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25) brightness(.6); }
.orbit-fallback::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(10,10,11,.3), rgba(10,10,11,.72)); }
.orbit-hero.is-fallback .orbit-hero__hint { display: none; }
.orbit-hero.is-fallback .orbit-hero__overlay .visually-hidden {
  position: static !important; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; white-space: normal;
  font-size: clamp(3.4rem, 14vw, 9rem); line-height: .9; color: #f3f1ec; text-shadow: 0 6px 40px rgba(10,10,11,.8);
}
