/* ═══════════════════════════════════════════════════════════════════════════
   SHARED STYLESHEET — every page links this file.

   ► START HERE TO RE-SKIN THE SITE: change the tokens in :root below and the
     whole site follows. Nothing else needs touching for a colour/font change.

   Sections in this file:
     :root tokens · nav (+ mobile fullscreen menu) · buttons · section helpers
     · audio player · bottom player bar · logo marquee · contact form · footer
     · reveal-on-scroll · responsive (@media max-width 900px)

   FONT: Inter is expected in fonts/ as two self-hosted .woff2 files (no
   third-party request, which keeps the cookie policy simple). If those files
   are missing the site still works — it just falls back to the system
   sans-serif. See README.md ► "Fonts".
   ═══════════════════════════════════════════════════════════════════════════ */

/* Inter self-hosted (SIL OFL) — no Google Fonts / no third-party requests.
   Single variable file (weights 100–900), full Latin + Latin Extended range —
   covers both English and Italian (accented vowels included) in one request. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
}

:root {
  --bg: #0E0D0B;
  --bg-2: #131210;
  --bg-card: #181714;
  --silver: #C8C4BC;
  --silver-mid: #8A8680;
  --silver-dim: rgba(200, 196, 188, 0.18);
  --silver-ghost: rgba(200, 196, 188, 0.07);
  --parchment: #E8E2D4;
  --border: rgba(200, 196, 188, 0.1);
  --border-mid: rgba(200, 196, 188, 0.18);
  --color-accent: #0D7377;
  /* --serif kept as an alias for the light-weight display treatment; both map to Inter now */
  --serif: 'Inter', sans-serif;
  --sans: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--silver);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Add padding to body when bottom player is present */
body.has-bottom-player {
  padding-bottom: 72px;
}

/* Grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9000;
}

/* ── NAV ── */
nav.saga-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 52px;
  transition: padding 0.3s, background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

nav.saga-nav.scrolled {
  padding: 15px 52px;
  background: rgba(14, 13, 11, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  /* The logo mark is drawn with currentColor; without this it inherits the
     browser's default link blue. */
  color: var(--parchment);
}

.nav-logo-mark svg {
  width: 28px;
  height: 28px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.nav-logo-top {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment);
}

.nav-logo-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-mid);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

.nav-links .nav-contact {
  border: 1px solid var(--border-mid);
  padding: 7px 18px;
  color: var(--silver) !important;
  transition: border-color 0.2s, color 0.2s !important;
}

.nav-links .nav-contact:hover {
  border-color: var(--color-accent);
  color: var(--color-accent) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  /* Stay above the fullscreen menu overlay (z-index 999) so it can be tapped to close */
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--silver-mid);
  transition: all 0.3s;
}

/* ── NAV DROPDOWN ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid var(--silver-mid);
  border-bottom: 1px solid var(--silver-mid);
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.2s, border-color 0.2s;
}

.nav-dropdown:hover > a::after {
  transform: rotate(-135deg);
  border-color: var(--parchment);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 12px 0;
  margin-top: 12px;
  background: rgba(14, 13, 11, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 8px 22px;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  color: var(--silver-mid) !important;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-menu li a:hover {
  color: var(--parchment) !important;
  background: var(--silver-ghost);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-outline {
  color: var(--silver);
  border: 1px solid var(--border-mid);
  padding: 12px 28px;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--silver);
  color: var(--parchment);
  background: var(--silver-ghost);
}

.btn-fill {
  color: #F7F7F7;
  background: var(--color-accent);
  padding: 12px 28px;
}

.btn-fill:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

/* ── SECTION UTILITIES ── */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--silver-mid);
  flex-shrink: 0;
}

h2.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--parchment);
  margin-bottom: 18px;
}

h2.section-title em {
  font-style: normal;
  font-weight: 400;
}

.section-lead {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--silver-mid);
  line-height: 1.85;
  max-width: 520px;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

/* ── BOTTOM PLAYER BAR (Anchored) ── */
.bottom-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 72px;
  background: rgba(14, 13, 11, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}

.bottom-player.hidden {
  transform: translateY(100%);
}

/* Progress bar at the top of the bottom player */
.bp-progress-wrap {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(200,196,188,0.08);
  cursor: pointer;
}

.bp-progress-fill {
  height: 100%;
  background: var(--color-accent);
  width: 0%;
  transition: width 0.15s linear;
  pointer-events: none;
}

/* Track info in the bottom player */
.bp-track-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 160px;
  max-width: 240px;
  overflow: hidden;
}

.bp-track-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--parchment);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.bp-track-credit {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--silver-mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Controls */
.bp-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bp-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--silver-mid);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.bp-btn:hover { color: var(--parchment); }

.bp-btn-play {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-mid) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--parchment) !important;
  transition: border-color 0.2s, background 0.2s !important;
}

.bp-btn-play:hover {
  background: var(--silver-ghost) !important;
  border-color: var(--silver) !important;
}

/* Time display */
.bp-time {
  font-size: 11px;
  color: var(--silver-mid);
  letter-spacing: 0.06em;
  min-width: 90px;
  text-align: center;
  white-space: nowrap;
}

/* Seek bar — tall invisible hitbox, thin visible track via ::before */
.bp-seek-wrap {
  flex: 1;
  height: 22px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Volume */
.bp-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.bp-vol-slider {
  -webkit-appearance: none;
  width: 64px;
  height: 2px;
  background: rgba(200,196,188,0.12);
  outline: none;
  cursor: pointer;
  border-radius: 1px;
}

.bp-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--silver);
  cursor: pointer;
}

.bp-vol-slider::-moz-range-thumb {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--silver);
  cursor: pointer;
  border: none;
}

/* ── CREDENTIALS LOGO STRIP (floating, continuous scroll) ── */
.cred-section-title {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-mid);
}

.cred-logos {
  max-width: 780px;
  margin: 40px auto 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.cred-logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 48px;
  animation: cred-scroll 26s linear infinite;
}

.cred-logos:hover .cred-logos-track {
  animation-play-state: paused;
}

@keyframes cred-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cred-logo-slot {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cred-logo-slot img {
  max-width: 76px;
  max-height: 34px;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(100%) brightness(2);
  transition: opacity 0.3s;
}

.cred-logo-slot:hover img {
  opacity: 0.8;
}

@media (prefers-reduced-motion: reduce) {
  .cred-logos-track {
    animation: none;
  }
}

/* ── CONTACT STRIP (shared across pages) ── */
.contact-strip {
  padding: 100px 52px;
  border-top: 1px solid var(--border);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-strip .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.contact-strip-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 44px;
}

.contact-general-email {
  margin-top: 28px;
  font-size: 14px;
  color: var(--silver-mid);
}

.contact-general-email a {
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-general-email a:hover {
  color: var(--color-accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--silver);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--silver-mid);
  opacity: 0.5;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--border-mid);
}

.contact-form textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-form select option {
  background: var(--bg-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-success-msg {
  display: none;
  font-size: 14px;
  color: var(--silver);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── FOOTER ── */
/* 1fr auto 1fr keeps the links centred on the page: with space-between they were
   centred in the gap left over by the brand and the copyright, whose widths differ
   (and differ per page), so they drifted off-centre. */
footer.saga-footer {
  border-top: 1px solid var(--border);
  padding: 36px 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  justify-self: start;
}

.footer-links {
  justify-self: center;
}

.footer-copy {
  justify-self: end;
  text-align: right;
}

/* Company identification (legal). Spans the full width on its own row and is kept
   a touch more legible than the copyright, since it has to be easy to find. */
.footer-company {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(200, 196, 188, 0.32);
  letter-spacing: 0.04em;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--silver-dim);
}

.footer-brand-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 196, 188, 0.22);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-copy {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(200, 196, 188, 0.18);
  letter-spacing: 0.04em;
}

/* GDPR notice shown at the point of collection, under each contact form */
.form-privacy {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.6;
  color: var(--silver-mid);
  text-align: center;
  max-width: 420px;
  margin: 4px auto 0;
}

.form-privacy a {
  color: var(--silver);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.form-privacy a:hover {
  color: var(--color-accent);
}

/* ── MOBILE ── */
@media (max-width: 900px) {

  nav.saga-nav,
  nav.saga-nav.scrolled {
    padding: 16px 24px;
  }

  /* No backdrop-filter on mobile: on a backdrop-filtered element the fixed
     fullscreen menu overlay (a descendant) would use the bar as its containing
     block and collapse to the bar's height on scroll. */
  nav.saga-nav.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 17px;
  }

  /* Center the "Home" dropdown group so its label doesn't sit left of the
     (wider) submenu items inside the same <li>. */
  .nav-links.open .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .nav-links.open .nav-dropdown > a {
    justify-content: center;
  }

  /* Keep the fullscreen menu opaque and stop the page scrolling behind it.
     The scrolled navbar's backdrop-filter would otherwise become the containing
     block for the fixed overlay, collapsing it to the bar's height on scroll. */
  nav.saga-nav:has(.nav-links.open) {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:has(.nav-links.open) {
    overflow: hidden;
  }

  .nav-toggle {
    display: flex;
  }

  /* Mobile dropdown */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 8px 0;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
  }

  /* The desktop hover rule shifts the submenu with translateX(-50%); cancel it on
     mobile so the items don't jump left when hovered/tapped. */
  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown > a::after {
    display: none;
  }

  /* Hamburger → X while the menu is open, so it's clear how to close it */
  nav.saga-nav:has(.nav-links.open) .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  nav.saga-nav:has(.nav-links.open) .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  nav.saga-nav:has(.nav-links.open) .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-dropdown-menu li a {
    text-align: center;
    padding: 6px 16px;
  }

  /* Bottom player mobile */
  .bottom-player {
    height: 64px;
    padding: 0 16px;
    gap: 10px;
  }

  body.has-bottom-player {
    padding-bottom: 64px;
  }

  .bp-track-info {
    min-width: 80px;
    max-width: 120px;
  }

  .bp-track-title {
    font-size: 13px;
  }

  .bp-volume {
    display: none;
  }

  .bp-time {
    display: none;
  }

  /* Contact strip */
  .contact-strip {
    grid-template-columns: 1fr;
    padding: 72px 24px;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer.saga-footer {
    padding: 28px 24px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-copy {
    justify-self: center;
  }

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

/* ── PLAYER TRACKLIST SCROLLBAR (shared by Home/Music/Licensing players) ── */
.player-tracklist {
  scrollbar-width: thin;
  scrollbar-color: var(--border-mid) transparent;
}

.player-tracklist::-webkit-scrollbar {
  width: 6px;
}

.player-tracklist::-webkit-scrollbar-track {
  background: transparent;
}

.player-tracklist::-webkit-scrollbar-thumb {
  background: var(--border-mid);
  border-radius: 3px;
}

.player-tracklist::-webkit-scrollbar-thumb:hover {
  background: var(--silver-mid);
}

/* ── VIDEO PLAYERS ── */
.video-stack { display: flex; flex-direction: column; gap: 0; margin-top: 52px; }
.video-item { display: flex; flex-direction: column; align-items: center; padding: 0 0 52px; }

.video-frame {
  width: 67%;
  background: #0A0A08;
  border: 1px solid var(--border);
  padding: 16px;
}

/* Fullscreening the frame (not the bare <video>) keeps our own dark controls visible */
.video-frame:fullscreen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
}

.video-frame:fullscreen .v-screen video {
  aspect-ratio: auto;
  max-height: calc(100vh - 80px);
}

.v-screen { position: relative; width: 100%; background: #000; cursor: pointer; }
.v-screen video { display: block; width: 100%; aspect-ratio: 16/9; object-fit: contain; }

.v-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: opacity 0.25s;
}
.v-overlay.hidden { opacity: 0; pointer-events: none; }
.v-play-btn {
  width: 52px; height: 52px;
  border: 1px solid rgba(232,226,212,0.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--parchment);
  transition: background 0.2s, border-color 0.2s;
}
.v-play-btn:hover { background: rgba(232,226,212,0.1); border-color: var(--parchment); }

.v-controls { padding: 10px 0 0; display: flex; flex-direction: column; gap: 8px; }
.v-progress-bar {
  width: 100%; height: 14px;
  position: relative; cursor: pointer;
  display: flex; align-items: center;
}
.v-progress-bar::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: rgba(200,196,188,0.15);
}
.v-progress-fill {
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  height: 1px; background: var(--color-accent); width: 0%; pointer-events: none;
}
.v-progress-handle {
  position: absolute; top: 50%; left: 0%;
  transform: translate(-50%, -50%);
  width: 7px; height: 7px;
  background: var(--color-accent); border-radius: 50%;
  pointer-events: none;
}
.v-bottom { display: flex; align-items: center; gap: 12px; }
.v-btn {
  background: none; border: none; cursor: pointer; padding: 0;
  color: var(--silver-mid); transition: color 0.2s; display: flex; align-items: center;
}
.v-btn:hover { color: var(--parchment); }
.v-times { font-size: 11px; color: var(--silver-mid); letter-spacing: 0.08em; }
.v-vol { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.v-vol-slider {
  -webkit-appearance: none; width: 60px; height: 1px;
  background: rgba(200,196,188,0.15); outline: none; cursor: pointer;
}
.v-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 7px; height: 7px;
  border-radius: 50%; background: var(--silver); cursor: pointer;
}

.video-meta {
  width: 67%;
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 12px; padding: 0 2px;
}
.video-title {
  font-family: var(--serif);
  font-size: 20px; font-weight: 300;
  color: var(--parchment); letter-spacing: -0.01em;
}
.video-credit {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--silver-mid); text-align: right;
}

.video-divider {
  width: 100%; height: 1px;
  background: var(--border);
  margin-bottom: 52px; position: relative;
}
.video-divider::after {
  content: ''; position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px; height: 6px;
  border: 1px solid var(--border-mid);
  background: var(--bg);
}

@media (max-width: 900px) {
  .video-frame { width: 100%; }
  .video-meta { width: 100%; flex-direction: column; gap: 4px; }
}

/* ── CONTENT CARDS ──
   The 3-column card grid used for teasers and offering lists (Selected Work,
   Services). Section padding stays local to each page's <style> block —
   this only owns the card component itself. */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 52px;
}
.card {
  background: var(--bg-2);
  padding: 36px 28px;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.card:hover { background: var(--bg-card); }
.card-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-accent); margin-bottom: 10px;
}
.card-title {
  font-family: var(--serif);
  font-size: 24px; font-weight: 300;
  color: var(--parchment); margin-bottom: 12px;
}
.card-desc {
  font-size: 16px; color: var(--silver-mid);
  line-height: 1.8; flex-grow: 1;
}
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--silver); text-decoration: none;
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 2px; align-self: flex-start;
  transition: border-color 0.2s, color 0.2s;
}
.card-link:hover { color: var(--parchment); border-color: var(--parchment); }

@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ── TWO-COLUMN STORY SECTION ──
   Image on one side, text on the other; used for About teasers/bio blocks. */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  aspect-ratio: 4/3.6;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.story-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 80%;
  display: block; filter: grayscale(20%) contrast(1.05);
}
/* Shown until a real portrait is dropped in — keeps the layout intentional
   rather than looking like a broken image. */
.story-visual.placeholder {
  display: flex; align-items: center; justify-content: center;
}
.story-visual.placeholder svg { color: var(--border-mid); width: 30%; height: 30%; }
.story-corner {
  position: absolute; width: 16px; height: 16px;
  border-color: var(--border-mid); border-style: solid;
}
.story-corner.tl { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
.story-corner.tr { top: 12px; right: 12px; border-width: 1px 1px 0 0; }
.story-corner.bl { bottom: 12px; left: 12px; border-width: 0 0 1px 1px; }
.story-corner.br { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }
.story-content p {
  font-size: 17px; color: var(--silver-mid);
  line-height: 1.85; margin-bottom: 18px;
}
.story-content p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
}