:root {
  --ink-abyss: #050308;
  --ink-deep: #0c0714;
  --ink-mid: #1a1128;
  --ink-elevated: #241638;

  --rose-signal: #ff5c93;
  --rose-glow: #ff85a8;
  --rose-mist: #f5c2d4;
  --rose-veil: rgba(255, 92, 147, 0.15);

  --bone: #f2ecf2;
  --ash-warm: #a496af;
  --ash-cool: #6a5f78;

  --glass-fill: rgba(255, 245, 255, 0.035);
  --glass-fill-hover: rgba(255, 200, 220, 0.08);
  --glass-border: rgba(255, 200, 220, 0.10);
  --glass-border-hover: rgba(255, 200, 220, 0.28);

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-voice: 'Instrument Serif', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --gutter: clamp(1.5rem, 4vw, 4rem);
  --section-gap: clamp(5rem, 12vh, 10rem);
  /* One shared container width for every section. Previously the hero was
     1900px, About was 1400px and everything else was full-bleed, so no two
     sections' edges lined up vertically — that mismatch is what made the top
     of the page read as disconnected from the rest. */
  --shell: 1560px;

  --ease-glide: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  /* Hover-specific curve. --ease-glide has a very long tail, which reads as
     lag on interactive elements — great for scroll reveals, wrong for hover. */
  --ease-hover: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink-abyss);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
/* variable-font headings deserve extra rendering care */
.hero-name,
.section-title,
.contact-title,
.hero-quote,
.marquee-card-title,
.tile-title {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--rose-signal); color: var(--ink-abyss); }

/* ============ AMBIENT BACKGROUND LAYERS ============ */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.grain {
  position: absolute;
  inset: -50%;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}
.halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.28;
  will-change: transform;
}
.halo-1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(255, 92, 147, 0.5), transparent 60%);
  top: -200px; right: -200px;
}
.halo-2 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(140, 80, 200, 0.35), transparent 60%);
  bottom: -300px; left: -300px;
}
.halo-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 92, 147, 0.25), transparent 60%);
  top: 55%; left: 50%;
  transform: translate(-50%, -50%);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 3, 8, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--glass-border);
  transition: transform 0.4s var(--ease-glide);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.nav-logo-mark {
  color: var(--rose-signal);
  font-size: 0.85rem;
  animation: pulse 3s var(--ease-soft) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash-warm);
  position: relative;
  transition: color 0.3s var(--ease-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  font-weight: 400;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--rose-signal);
  transition: width 0.35s var(--ease-glide);
}
.nav-links > li > a:hover,
.nav-links > li.has-dropdown:hover > a {
  color: var(--bone);
}
.nav-links > li > a:hover::after,
.nav-links > li.has-dropdown:hover > a::after {
  width: 100%;
}

.chev {
  display: inline-block;
  font-size: 0.55em;
  opacity: 0.7;
  transition: transform 0.35s var(--ease-glide);
  transform-origin: center;
  margin-top: 2px;
}
.has-dropdown:hover .chev,
.has-dropdown:focus-within .chev {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  list-style: none;
  padding: 0.7rem 0;
  background: rgba(10, 5, 18, 0.82);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 200, 220, 0.03), 0 0 30px -8px rgba(255, 92, 147, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-glide), transform 0.3s var(--ease-glide), visibility 0.3s;
}
/* invisible bridge so the dropdown doesn't close in the gap */
.dropdown::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.has-dropdown.open > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.6rem 1.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash-warm);
  transition: color 0.18s var(--ease-hover), background 0.18s var(--ease-hover), border-left-color 0.18s var(--ease-hover), padding-left 0.18s var(--ease-hover);
  white-space: nowrap;
  border-left: 1px solid transparent;
}
.dropdown li a:hover {
  color: var(--bone);
  background: rgba(255, 92, 147, 0.05);
  border-left-color: var(--rose-signal);
  padding-left: 1.85rem;
}

/* ============ HERO ============ */
/* Three rows:
     1. masthead  — name + quote, spans the full width
     2. block     — portrait | mosaic, flush top AND bottom with each other
     3. tail      — location + socials, sits under the portrait
   The old layout put the name in row 1 col 1 and left row 1 col 2 empty,
   which created a dead rectangle at the top right and pushed the gallery
   down so it never lined up with anything. */
.hero {
  position: relative;
  z-index: 2;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 6rem var(--gutter) 3rem;
  display: grid;
  /* 1 : 2.4 is the ratio at which a 3:4 portrait ends up exactly as tall as
     the 4/3/2 mosaic block, so their top and bottom edges line up. */
  grid-template-columns: 1fr 2.4fr;
  grid-template-rows: auto auto auto;
  column-gap: clamp(1.75rem, 3vw, 3.5rem);
  row-gap: clamp(1.5rem, 2.5vw, 2.4rem);
  align-items: start;
}

/* --- Row 1: masthead --- */
.hero-masthead {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-in 1.1s var(--ease-glide) 0.15s forwards;
}
.masthead-left { min-width: 0; }

/* --- Row 2: the picture block --- */
.hero-portrait {
  grid-column: 1;
  grid-row: 2;
  opacity: 0;
  animation: hero-in 1.1s var(--ease-glide) 0.3s forwards;
}

/* --- Row 3: caption + socials, tucked under the portrait --- */
.hero-tail {
  grid-column: 1;
  grid-row: 3;
  opacity: 0;
  animation: hero-in 1.1s var(--ease-glide) 0.55s forwards;
}
.hero-portrait-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ink-mid);
}
.hero-portrait-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255, 200, 220, 0.45), rgba(255, 200, 220, 0.02) 40%, rgba(255, 200, 220, 0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}
/* subtle gloss on portrait — top-edge highlight simulating light from above */
.hero-portrait-frame::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: 4px 4px 0 0;
}
.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05) saturate(0.85);
}
.hero-portrait-caption {
  margin-top: 0;
  font-family: var(--font-voice);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ash-warm);
  letter-spacing: 0.01em;
}
.social-row {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Mosaic gallery on the right — 4 / 3 / 2 descending layout.
   Tiles grow as they go down so the block fills to meet the bottom of the
   portrait stack, and the largest work sits at the bottom where it reads best.
   Built on a 12-column grid: row 1 spans 3, row 2 spans 4, row 3 spans 6. */
.hero-mosaic {
  grid-column: 2;
  grid-row: 2;
  opacity: 0;
  animation: hero-in 1.2s var(--ease-glide) 0.5s forwards;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
  align-content: start;
}
.mosaic-tile { grid-column: span 3; }   /* row 1 — four tiles  */
.mosaic-tile.m-md { grid-column: span 4; }   /* row 2 — three tiles */
.mosaic-tile.m-lg { grid-column: span 6; }   /* row 3 — two tiles   */

.mosaic-tile {
  aspect-ratio: 2/1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--ink-mid);
  border: 1px solid var(--glass-border);
  /* Was `transition: all 0.4s` — animating every property is what made this
     feel laggy. Now only the properties that actually change, on a fast curve. */
  transition: transform 0.25s var(--ease-hover), box-shadow 0.25s var(--ease-hover);
  cursor: pointer;
  isolation: isolate;
  display: block;
  /* subtle inner top-edge highlight for gloss depth */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease-hover);
}
.mosaic-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--rose-veil), transparent 60%);
  opacity: 0;
  transition: opacity 0.22s var(--ease-hover);
  z-index: 1;
  pointer-events: none;
}
/* Gloss + hover border combined in ::after */
.mosaic-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0) 45%
  );
  transition: border-color 0.22s var(--ease-hover);
  pointer-events: none;
  z-index: 2;
}
.mosaic-tile:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 30px -10px rgba(255, 92, 147, 0.35);
}
.mosaic-tile:hover::before { opacity: 1; }
.mosaic-tile:hover::after { border-color: rgba(255, 200, 220, 0.35); }
.mosaic-tile:hover img {
  transform: scale(1.06);
}
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  color: var(--ash-warm);
  transition: color 0.22s var(--ease-hover), border-color 0.22s var(--ease-hover), transform 0.22s var(--ease-hover);
  position: relative;
  overflow: hidden;
}
.social-icon svg { width: 16px; height: 16px; position: relative; z-index: 2; }
.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--rose-veil), transparent 70%);
  opacity: 0;
  transition: opacity 0.22s var(--ease-hover);
}
.social-icon:hover {
  color: var(--bone);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}
.social-icon:hover::before { opacity: 1; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-mist);
  margin-bottom: 0.8rem;
  font-weight: 400;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--rose-mist);
  opacity: 0.6;
}

.hero-name {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--bone);
  margin-bottom: 0;
  white-space: nowrap;
}

/* Quote sits at the right end of the masthead, baseline-aligned to the name */
.hero-quote {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: clamp(0.95rem, 1.05vw, 1.15rem);
  color: var(--ash-warm);
  line-height: 1.5;
  padding-left: 1rem;
  border-left: 1px solid var(--rose-mist);
  max-width: 32ch;
  margin-bottom: 0.35rem;
}
.hero-quote em {
  color: var(--rose-glow);
  font-style: italic;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-fill);
  backdrop-filter: blur(10px);
  transition: border-color 0.22s var(--ease-hover), transform 0.22s var(--ease-hover);
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), var(--rose-veil), transparent 60%);
  opacity: 0;
  transition: opacity 0.22s var(--ease-hover);
}
.hero-cta:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-1px);
}
.hero-cta:hover::before { opacity: 1; }
.hero-cta .arrow {
  display: inline-block;
  transition: transform 0.22s var(--ease-hover);
}
.hero-cta:hover .arrow { transform: translateX(4px); }

/* ============ SECTION LABELS ============ */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-mist);
  font-weight: 400;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--rose-mist);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-top: 1.2rem;
}
.section-title em {
  font-family: var(--font-voice);
  font-style: italic;
  color: var(--rose-mist);
  font-variation-settings: normal;
}

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-glide), transform 1s var(--ease-glide);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============ MARQUEE ============ */
.marquee-section {
  position: relative;
  z-index: 2;
  padding: var(--section-gap) 0 4rem;
}
.marquee-header {
  padding: 0 var(--gutter);
  max-width: var(--shell);
  margin: 0 auto 2.5rem;
}
.section-sublabel {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  color: var(--ash-warm);
  margin-top: 0.55rem;
  letter-spacing: 0.01em;
}

.marquee-wrapper {
  position: relative;
}
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  will-change: transform;
  backface-visibility: hidden;
  gap: 1.5rem;
  width: max-content;
  /* animation is driven by JS; deliberately no will-change so text inside cards stays crisp */
}
.marquee-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 5, 18, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--glass-border);
  color: var(--bone);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  font-family: var(--font-body);
  font-size: 1.15rem;
  transition: opacity 0.4s var(--ease-glide), border-color 0.4s var(--ease-glide), transform 0.4s var(--ease-glide), color 0.4s var(--ease-glide), background 0.4s var(--ease-glide);
  padding: 0;
}
.marquee-wrapper:hover .marquee-arrow,
.marquee-arrow:focus-visible {
  opacity: 1;
}
.marquee-arrow:hover {
  border-color: var(--rose-mist);
  color: var(--rose-glow);
  background: rgba(20, 10, 30, 0.85);
}
.marquee-arrow-left { left: 1rem; }
.marquee-arrow-right { right: 1rem; }
.marquee-arrow-left:hover { transform: translateY(-50%) translateX(-2px); }
.marquee-arrow-right:hover { transform: translateY(-50%) translateX(2px); }

.marquee-card {
  flex: 0 0 auto;
  /* Uniform across the board — the old mix of 360px 3:2 and 520px 16:9
     cards read as random rather than rhythmic. */
  width: 400px;
  aspect-ratio: 3/2;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--ink-mid);
  border: 1px solid var(--glass-border);
  transition: transform 0.28s var(--ease-hover), border-color 0.28s var(--ease-hover);
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.marquee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.marquee-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
}
.marquee-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05) saturate(0.9);
  transition: filter 0.28s var(--ease-hover), transform 0.35s var(--ease-hover);
}
.marquee-card:hover img {
  filter: brightness(1) contrast(1.05) saturate(1);
  transform: scale(1.05);
}
.marquee-card-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem;
  background: linear-gradient(to top, rgba(5, 3, 8, 0.95), rgba(5, 3, 8, 0.3), transparent);
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.28s var(--ease-hover), opacity 0.22s var(--ease-hover);
}
.marquee-card:hover .marquee-card-caption {
  transform: translateY(0);
  opacity: 1;
}
.marquee-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bone);
  margin-bottom: 0.25rem;
}
.marquee-card-meta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-mist);
}

/* ============ DISCIPLINES GRID ============ */
.disciplines {
  position: relative;
  z-index: 2;
  padding: var(--section-gap) var(--gutter);
  max-width: var(--shell);
  margin: 0 auto;
}
.section-header {
  margin-bottom: 4rem;
  max-width: 900px;
}
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.tile {
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--ink-mid);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: transform 0.28s var(--ease-hover), border-color 0.28s var(--ease-hover), box-shadow 0.28s var(--ease-hover);
  isolation: isolate;
  /* gloss depth — subtle inner top-edge highlight */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.tile-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1/1;
}
.tile-wide {
  grid-column: span 2;
  aspect-ratio: 8/5;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.08) saturate(0.85);
  transition: transform 0.4s var(--ease-hover), filter 0.3s var(--ease-hover);
}
.tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--rose-veil), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s var(--ease-hover);
  z-index: 1;
  pointer-events: none;
}
.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(to top, rgba(5, 3, 8, 0.92) 0%, rgba(5, 3, 8, 0.55) 35%, rgba(5, 3, 8, 0.15) 65%, transparent 100%);
  z-index: 2;
  transition: opacity 0.25s var(--ease-hover);
  pointer-events: none;
}
.tile:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 60px -20px rgba(255, 92, 147, 0.35),
    0 0 40px -10px rgba(255, 92, 147, 0.2);
}
.tile:hover::before { opacity: 1; }
.tile:hover img {
  transform: scale(1.06);
  filter: brightness(0.85) contrast(1.08) saturate(1);
}
.tile-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem;
  z-index: 3;
  transform: translateY(6px);
  transition: transform 0.28s var(--ease-hover);
}
.tile:hover .tile-content { transform: translateY(0); }
.tile-index {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--rose-mist);
  opacity: 0.7;
  margin-bottom: 0.4rem;
}
.tile-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.tile-large .tile-title { font-size: 2.4rem; }
.tile-tagline {
  font-size: 0.8rem;
  color: var(--ash-warm);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s var(--ease-hover) 0.04s, transform 0.25s var(--ease-hover) 0.04s;
  line-height: 1.5;
}
.tile:hover .tile-tagline {
  opacity: 1;
  transform: translateY(0);
}
.tile-arrow {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  color: var(--bone);
  z-index: 3;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity 0.25s var(--ease-hover), transform 0.25s var(--ease-hover), border-color 0.25s var(--ease-hover);
}
.tile:hover .tile-arrow {
  opacity: 1;
  transform: translate(0, 0);
  border-color: var(--rose-mist);
}

/* ============ ABOUT PREVIEW ============ */
.about-preview {
  position: relative;
  z-index: 2;
  padding: var(--section-gap) var(--gutter);
  max-width: var(--shell);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-copy {
  max-width: 52ch;
}
.about-copy .section-title { margin-bottom: 2rem; }
.about-text {
  font-size: 1.05rem;
  color: var(--ash-warm);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.about-quote {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--bone);
  line-height: 1.5;
  padding: 1.5rem 0 1.5rem 1.8rem;
  border-left: 1px solid var(--rose-mist);
  margin: 2rem 0;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink-mid);
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255, 200, 220, 0.35), rgba(255, 200, 220, 0.02) 40%, rgba(255, 200, 220, 0.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1) saturate(0.85);
}

/* ============ CONTACT CTA ============ */
.contact {
  position: relative;
  z-index: 2;
  padding: var(--section-gap) var(--gutter);
  max-width: var(--shell);
  margin: 0 auto;
  text-align: center;
}
.contact-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 120, "wght" 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--bone);
  margin: 2rem 0 3rem;
  letter-spacing: -0.02em;
}
.contact-title em {
  font-family: var(--font-voice);
  font-style: italic;
  color: var(--rose-mist);
  font-variation-settings: normal;
}
.contact-mail {
  display: inline-block;
  font-family: var(--font-voice);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--rose-glow);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.22s var(--ease-hover), border-bottom-color 0.22s var(--ease-hover);
}
.contact-mail:hover {
  color: var(--bone);
  border-bottom-color: var(--rose-signal);
}

/* ============ FOOTER ============ */
.footer {
  position: relative;
  z-index: 2;
  padding: 4rem var(--gutter) 2rem;
  border-top: 1px solid var(--glass-border);
  margin: 4rem auto 0;
  max-width: var(--shell);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand {
  max-width: 32ch;
}
.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.footer-brand-text {
  font-size: 0.9rem;
  color: var(--ash-warm);
  line-height: 1.6;
}
.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-mist);
  margin-bottom: 1.4rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--ash-warm);
  transition: color 0.3s var(--ease-soft);
}
.footer-col a:hover { color: var(--bone); }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--ash-cool);
  letter-spacing: 0.05em;
}
.footer-back-top {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-warm);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.3s var(--ease-soft);
}
.footer-back-top:hover { color: var(--rose-mist); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .disciplines-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-large { grid-column: span 2; aspect-ratio: 16/10; }
  .tile-wide { grid-column: span 2; }
  /* Mosaic collapses to a simpler 2-up rhythm */
  .mosaic-tile { grid-column: span 6; }
  .mosaic-tile.m-md { grid-column: span 6; }
  .mosaic-tile.m-lg { grid-column: span 12; }
  /* Portrait no longer needs to match mosaic height once the grid changes */
  .hero { grid-template-columns: 1fr 1.9fr; }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    padding-top: 6rem;
    row-gap: 2rem;
  }
  .hero-masthead {
    grid-column: 1; grid-row: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .hero-name { white-space: normal; }
  .hero-quote { margin-bottom: 0; }
  .hero-portrait { grid-column: 1; grid-row: 2; max-width: 420px; }
  .hero-tail { grid-column: 1; grid-row: 3; }
  .hero-mosaic { grid-column: 1; grid-row: 4; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links { gap: 1.4rem; }
  .nav-links > li > a { font-size: 0.7rem; }
  .marquee-arrow { width: 44px; height: 44px; }
}
@media (max-width: 640px) {
  .disciplines-grid { grid-template-columns: 1fr; }
  .tile-large, .tile-wide { grid-column: span 1; aspect-ratio: 4/5; }
  .nav-links > li:not(:first-child):not(:last-child) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .marquee-card { width: 280px; }
  .mosaic-tile,
  .mosaic-tile.m-md,
  .mosaic-tile.m-lg { grid-column: span 12; }
  .hero-name { font-size: clamp(2rem, 8vw, 3rem); }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .marquee-track { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ SUB-PAGE HEADER ============ */
.page-hero {
  position: relative;
  z-index: 2;
  padding: 10rem var(--gutter) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--shell);
  margin: 0 auto;
  min-height: 44vh;
  opacity: 0;
  animation: hero-in 1s var(--ease-glide) 0.15s forwards;
}
.page-hero .eyebrow {
  margin-bottom: 1.4rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--bone);
  margin-bottom: 1.6rem;
  text-rendering: geometricPrecision;
  max-width: 22ch;
}
.page-hero-title em {
  font-family: var(--font-voice);
  font-style: italic;
  color: var(--rose-mist);
  font-variation-settings: normal;
}
.page-hero-lede {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  color: var(--ash-warm);
  max-width: 60ch;
  line-height: 1.6;
  border-left: 1px solid var(--rose-mist);
  padding-left: 1.2rem;
}

/* ============ ACTIVE NAV STATE ============ */
.nav-links > li.active > a { color: var(--bone); }
.nav-links > li.active > a::after {
  width: 100%;
  opacity: 0.5;
}

/* ============ IN-DEVELOPMENT PLACEHOLDER ============ */
.in-development {
  position: relative;
  z-index: 2;
  padding: 3rem var(--gutter) 8rem;
  max-width: var(--shell);
  margin: 0 auto;
}
.dev-panel {
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  background: var(--glass-fill);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.dev-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 30% 20%, var(--rose-veil), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(140, 80, 200, 0.10), transparent 55%);
  z-index: -1;
}
.dev-panel::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  border-radius: 10px 10px 0 0;
}
.dev-label {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-mist);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.dev-label::before,
.dev-label::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--rose-mist);
  opacity: 0.6;
}
.dev-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--bone);
  margin-bottom: 1.3rem;
  text-rendering: geometricPrecision;
}
.dev-title em {
  font-family: var(--font-voice);
  font-style: italic;
  color: var(--rose-mist);
  font-variation-settings: normal;
}
.dev-body {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ash-warm);
  max-width: 46ch;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.dev-back {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 0.9rem 1.7rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-fill);
  transition: border-color 0.22s var(--ease-hover), color 0.22s var(--ease-hover), transform 0.22s var(--ease-hover);
}
.dev-back .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-glide);
}
.dev-back:hover {
  border-color: var(--glass-border-hover);
  color: var(--rose-glow);
  transform: translateY(-1px);
}
.dev-back:hover .arrow { transform: translateX(-4px); }

/* ============ SUB-PAGE GALLERY ============ */
.gallery {
  position: relative;
  z-index: 2;
  padding: 2rem var(--gutter) 6rem;
  max-width: var(--shell);
  margin: 0 auto;
}
/* Column-based masonry — handles portrait and landscape frames side by side
   without cropping either one. */
.gallery-grid {
  column-count: 3;
  column-gap: 1.1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  display: block;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--ink-mid);
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s var(--ease-hover), box-shadow 0.25s var(--ease-hover);
}
.gallery-item img {
  width: 100%;
  display: block;
  filter: brightness(0.88) saturate(0.94);
  transition: filter 0.28s var(--ease-hover), transform 0.4s var(--ease-hover);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 5px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 40%);
  transition: border-color 0.22s var(--ease-hover);
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 14px 38px -14px rgba(255, 92, 147, 0.4);
}
.gallery-item:hover img { filter: brightness(1) saturate(1); transform: scale(1.03); }
.gallery-item:hover::after { border-color: rgba(255, 200, 220, 0.32); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.3rem 1.1rem;
  background: linear-gradient(to top, rgba(5,3,8,0.94), rgba(5,3,8,0.28), transparent);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.28s var(--ease-hover), opacity 0.22s var(--ease-hover);
  z-index: 3;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }
.gallery-caption-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 48, "wght" 400;
  font-size: 1.05rem;
  color: var(--bone);
  margin-bottom: 0.2rem;
}
.gallery-caption-meta {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-mist);
}


/* Row-based variant. The default gallery uses CSS columns, which flows items
   DOWN each column — so items 1,2,3 stack vertically rather than sitting side
   by side. Where a sequence is meant to read as rows of three, use this. */
.gallery-grid.grid-rows {
  column-count: initial;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: start;
}
.gallery-grid.grid-rows .gallery-item { margin-bottom: 0; }

@media (max-width: 1100px) { .gallery-grid.grid-rows { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .gallery-grid.grid-rows { grid-template-columns: 1fr; } }

@media (max-width: 1100px) { .gallery-grid { column-count: 2; } }
@media (max-width: 640px)  { .gallery-grid { column-count: 1; } }

/* ============ BANNER ARCHIVE ============ */
/* Legacy signature banners are small originals (330–979px wide, ~150px tall).
   Upscaling them into a normal gallery grid would make them visibly soft, so
   they render at native pixel size instead — sharp, and honest to the format. */
.banner-section {
  position: relative;
  z-index: 2;
  padding: 1rem var(--gutter) 6rem;
  max-width: var(--shell);
  margin: 0 auto;
}
.banner-intro {
  margin-bottom: 2.2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--glass-border);
}
.banner-intro-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 72, "wght" 400;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--bone);
  margin-bottom: 0.5rem;
}
.banner-intro-text {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ash-warm);
  max-width: 56ch;
  line-height: 1.6;
}
.banner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: flex-start;
}
.banner-item {
  flex: 0 0 auto;
  max-width: 100%;
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--ink-mid);
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.25s var(--ease-hover), box-shadow 0.25s var(--ease-hover);
}
.banner-item img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.9) saturate(0.95);
  transition: filter 0.25s var(--ease-hover);
}
.banner-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color 0.22s var(--ease-hover);
  pointer-events: none;
}
.banner-item:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04),
              0 10px 26px -12px rgba(255,92,147,0.45);
}
.banner-item:hover img { filter: brightness(1) saturate(1); }
.banner-item:hover::after { border-color: rgba(255,200,220,0.34); }
.banner-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.1rem 0.7rem 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-mist);
  background: linear-gradient(to top, rgba(5,3,8,0.9), transparent);
  opacity: 0;
  transition: opacity 0.22s var(--ease-hover);
}
.banner-item:hover .banner-label { opacity: 1; }

@media (max-width: 640px) {
  .banner-grid { gap: 0.7rem; }
  .banner-item { width: 100% !important; }
}

/* ============ AUDIO PLAYER ============ */
.tracklist {
  position: relative;
  z-index: 2;
  padding: 2rem var(--gutter) 4rem;
  max-width: var(--shell);
  margin: 0 auto;
}
.track {
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-fill);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: clamp(1.2rem, 2.4vw, 1.9rem);
  margin-bottom: 1rem;
  position: relative;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 0.25s var(--ease-hover), box-shadow 0.25s var(--ease-hover);
}
.track::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(ellipse at 12% 0%, var(--rose-veil), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-hover);
  z-index: -1;
}
.track:hover { border-color: var(--glass-border-hover); }
.track.playing { border-color: rgba(255,200,220,0.34); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 16px 46px -20px rgba(255,92,147,0.5); }
.track.playing::before { opacity: 1; }

.track-top {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}
.track-play {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-fill);
  color: var(--bone);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: border-color 0.22s var(--ease-hover), color 0.22s var(--ease-hover), transform 0.22s var(--ease-hover);
}
.track-play:hover { border-color: var(--glass-border-hover); color: var(--rose-glow); transform: scale(1.05); }
.track.playing .track-play { border-color: var(--rose-mist); color: var(--rose-glow); }

.track-id { flex: 1 1 auto; min-width: 0; }
.track-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 72, "wght" 400;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  color: var(--bone);
  line-height: 1.15;
  margin-bottom: 0.3rem;
}
.track-artist {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ash-warm);
}
.track-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.7rem; }
.tag {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  color: var(--ash-warm);
  white-space: nowrap;
}
.tag.tag-original { color: var(--rose-glow); border-color: rgba(255,200,220,0.32); }
.tag.tag-cover { color: var(--ash-warm); }
.tag.tag-format { color: var(--rose-mist); border-color: rgba(255,200,220,0.22); font-variant-numeric: tabular-nums; }

.track-time {
  flex: 0 0 auto;
  font-size: 0.8rem;
  color: var(--ash-warm);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  padding-top: 0.5rem;
}

/* Waveform */
.wave {
  width: 100%;
  height: 62px;
  display: block;
  cursor: pointer;
  overflow: visible;
}
.wave rect { fill: rgba(255,255,255,0.16); transition: fill 0.18s linear; }
.wave rect.on { fill: var(--rose-signal); }
.track.playing .wave rect.on { fill: var(--rose-glow); }
.wave:hover rect { fill: rgba(255,255,255,0.24); }
.wave:hover rect.on { fill: var(--rose-glow); }

.track-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}
.track-credit {
  font-size: 0.76rem;
  color: var(--ash-cool);
  letter-spacing: 0.02em;
}
.track-dl {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash-warm);
  border-bottom: 1px solid transparent;
  transition: color 0.22s var(--ease-hover), border-bottom-color 0.22s var(--ease-hover);
  white-space: nowrap;
}
.track-dl:hover { color: var(--rose-glow); border-bottom-color: var(--rose-mist); }

/* Format note above the list */
.audio-note {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.audio-note-inner {
  border-left: 1px solid var(--rose-mist);
  padding: 0.2rem 0 0.2rem 1.1rem;
  font-family: var(--font-voice);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ash-warm);
  max-width: 62ch;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .track-top { flex-wrap: wrap; }
  .track-time { width: 100%; padding-top: 0; }
  .wave { height: 48px; }
}

/* ============ VIDEO — FEATURED PLAYER + GALLERY ============ */
.video-stage {
  position: relative;
  z-index: 2;
  padding: 2rem var(--gutter) 1.6rem;
  max-width: var(--shell);
  margin: 0 auto;
}
.stage-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--ink-deep);
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05),
              0 26px 70px -30px rgba(255,92,147,0.4);
}
.stage-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Facade — nothing is requested from YouTube until this is clicked */
.stage-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: block;
  border: 0;
  padding: 0;
  width: 100%;
  background: var(--ink-deep);
}
.stage-facade img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.92);
  transition: filter 0.35s var(--ease-hover), transform 0.5s var(--ease-hover);
}
.stage-facade:hover img { filter: brightness(0.86) saturate(1); transform: scale(1.02); }
.stage-facade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,3,8,0.9) 0%, rgba(5,3,8,0.15) 45%, transparent 70%);
  pointer-events: none;
}
.stage-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: clamp(64px, 7vw, 88px);
  height: clamp(64px, 7vw, 88px);
  border-radius: 50%;
  border: 1px solid rgba(255,200,220,0.35);
  background: rgba(10,5,18,0.5);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  display: flex; align-items: center; justify-content: center;
  color: var(--bone);
  font-size: 1.3rem;
  z-index: 2;
  transition: border-color 0.25s var(--ease-hover), color 0.25s var(--ease-hover),
              transform 0.25s var(--ease-hover), background 0.25s var(--ease-hover);
  pointer-events: none;
}
.stage-facade:hover .stage-play {
  border-color: var(--rose-mist);
  color: var(--rose-glow);
  background: rgba(10,5,18,0.66);
  transform: translate(-50%,-50%) scale(1.07);
}
.stage-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  z-index: 2;
  pointer-events: none;
}
.stage-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  color: var(--bone);
  line-height: 1.12;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}
.stage-meta {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-mist);
}


/* Narrower stage for lower-resolution source footage — displaying a 1080p or
   sub-1080p master at full shell width magnifies compression artefacts. */
.video-stage.stage-compact {
  max-width: 1120px;
}
.video-stage.stage-compact + .gallery {
  padding-top: 1.5rem;
}

/* Thumbnail gallery */
.video-gallery {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) 6rem;
  max-width: var(--shell);
  margin: 0 auto;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.video-thumb {
  display: block;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s var(--ease-hover);
}
.video-thumb:hover { transform: translateY(-3px); }
.thumb-shot {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--ink-mid);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color 0.22s var(--ease-hover), box-shadow 0.22s var(--ease-hover);
}
.thumb-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.66) saturate(0.85);
  transition: filter 0.25s var(--ease-hover);
}
.video-thumb:hover .thumb-shot img { filter: brightness(0.92) saturate(1); }
.video-thumb:hover .thumb-shot { border-color: var(--glass-border-hover); }
.video-thumb.active .thumb-shot {
  border-color: rgba(255,200,220,0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05),
              0 12px 32px -14px rgba(255,92,147,0.55);
}
.video-thumb.active .thumb-shot img { filter: brightness(1) saturate(1); }
.thumb-now {
  position: absolute;
  top: 0.55rem; left: 0.55rem;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-glow);
  background: rgba(10,5,18,0.75);
  border: 1px solid rgba(255,200,220,0.3);
  border-radius: 999px;
  padding: 0.24rem 0.55rem;
  opacity: 0;
  transition: opacity 0.22s var(--ease-hover);
}
.video-thumb.active .thumb-now { opacity: 1; }
.thumb-label {
  margin-top: 0.7rem;
  font-size: 0.88rem;
  color: var(--ash-warm);
  line-height: 1.35;
  transition: color 0.22s var(--ease-hover);
}
.video-thumb:hover .thumb-label,
.video-thumb.active .thumb-label { color: var(--bone); }

@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .video-grid { grid-template-columns: 1fr; } }

/* ============ LYRICS ============ */
.lyric-index {
  position: relative;
  z-index: 2;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 1rem var(--gutter) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lyric-jump {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass-fill);
  color: var(--ash-warm);
  transition: color 0.22s var(--ease-hover), border-color 0.22s var(--ease-hover), transform 0.22s var(--ease-hover);
}
.lyric-jump:hover { color: var(--rose-glow); border-color: var(--glass-border-hover); transform: translateY(-1px); }

.lyrics {
  position: relative;
  z-index: 2;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 2rem var(--gutter) 6rem;
}
.song {
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-fill);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: clamp(1.6rem, 3.5vw, 3rem);
  margin-bottom: 1.4rem;
  position: relative;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  scroll-margin-top: 6rem;
}
.song::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(ellipse at 10% 0%, var(--rose-veil), transparent 58%);
  z-index: -1;
}
.song-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding-bottom: 1.4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}
.song-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  color: var(--bone);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}
.song-credit {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ash-warm);
  max-width: 52ch;
  line-height: 1.55;
}
.song-side { display: flex; flex-direction: column; gap: 0.55rem; align-items: flex-end; }
.song-listen {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-mist);
  border: 1px solid rgba(255,200,220,0.28);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  white-space: nowrap;
  transition: color 0.22s var(--ease-hover), border-color 0.22s var(--ease-hover), transform 0.22s var(--ease-hover);
}
.song-listen:hover { color: var(--rose-glow); border-color: var(--rose-mist); transform: translateY(-1px); }

/* Lyric body — two columns on wide screens so a long song doesn't run forever */
.lyric-body { columns: 2; column-gap: clamp(2rem, 5vw, 4.5rem); }
.lyric-block { break-inside: avoid; margin-bottom: 2rem; }
.lyric-section {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-mist);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.lyric-section::after {
  content: '';
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(to right, rgba(255,200,220,0.28), transparent);
}
.lyric-line {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 32, "wght" 300;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.72;
  color: var(--bone);
  text-rendering: geometricPrecision;
}
.lyric-line.blank { height: 0.7rem; }
/* Layered / backing vocal — bracketed in the source */
.backing {
  color: var(--rose-mist);
  font-size: 0.86em;
  font-style: italic;
  opacity: 0.92;
}
.lyric-line.backing-only {
  color: var(--rose-mist);
  font-size: 0.92em;
  font-style: italic;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(255,200,220,0.25);
  opacity: 0.94;
}
.lyric-note {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ash-cool);
  margin-top: 0.3rem;
}
.lyric-legend {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.76rem;
  color: var(--ash-cool);
  column-span: all;
}
.lyric-legend .swatch { color: var(--rose-mist); font-style: italic; }

@media (max-width: 900px) { .lyric-body { columns: 1; } }

/* ============ STORIES / PROSE ============ */
.prose-section {
  position: relative;
  z-index: 2;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 2rem var(--gutter) 6rem;
}
.story {
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-fill);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: clamp(1.8rem, 4vw, 3.4rem);
  margin-bottom: 1.4rem;
  position: relative;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  scroll-margin-top: 6rem;
}
.story::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(ellipse at 8% 0%, var(--rose-veil), transparent 55%);
  z-index: -1;
}
.story-head {
  padding-bottom: 1.5rem;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid var(--glass-border);
}
.story-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  color: var(--bone);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 0.7rem;
}
.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}
.story-meta .tag { font-size: 0.6rem; }
.story-note {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: 1rem;
  color: var(--ash-warm);
  line-height: 1.6;
  max-width: 60ch;
}

/* Reading column. Measure is capped in ch so the line length stays comfortable
   no matter how wide the screen gets — the single biggest factor in whether
   long prose is actually readable. */
.prose {
  max-width: 68ch;
  font-family: var(--font-display);
  /* Fraunces has an optical-size axis; low opsz is the text-tuned cut, not the
     display cut used for headings. */
  font-variation-settings: "opsz" 14, "wght" 300;
  font-size: clamp(1.02rem, 1.15vw, 1.14rem);
  line-height: 1.82;
  color: var(--bone);
  text-rendering: optimizeLegibility;
}
.prose p { margin-bottom: 1.6rem; }
.prose p:last-child { margin-bottom: 0; }

/* Drop cap on the opening paragraph */
.prose p.opening::first-letter {
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: 3.5em;
  line-height: 0.82;
  float: left;
  padding: 0.06em 0.12em 0 0;
  color: var(--rose-glow);
}

.story-foot {
  margin-top: 2.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: var(--ash-cool);
}
.story-continues {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--rose-mist);
}

@media (max-width: 640px) {
  .prose { font-size: 1rem; line-height: 1.76; }
  .prose p.opening::first-letter { font-size: 3em; }
}

/* ============ SIMULTANEOUS PARTS ============ */
/* Two vocal parts sung at the same time. Stacking them vertically implies a
   sequence that isn't there, so they sit side by side with a shared rule. */
.overlap-pair {
  break-inside: avoid;
  margin-bottom: 2rem;
  border: 1px solid var(--glass-border);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.018);
  padding: 1.2rem 1.3rem 1.1rem;
  position: relative;
}
.overlap-tag {
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose-mist);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.overlap-tag::after {
  content: '';
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(to right, rgba(255,200,220,0.24), transparent);
}
.overlap-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  position: relative;
}
.overlap-cols::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0.1rem;
  bottom: 0.1rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,200,220,0.2), transparent);
}
.overlap-col > .part-name {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-cool);
  margin-bottom: 0.6rem;
}
.overlap-col .lyric-line { font-size: 0.96em; }
.overlap-col.part-two .lyric-line { color: var(--rose-mist); }

/* Unison — both parts on the same words */
.unison-block {
  break-inside: avoid;
  margin-bottom: 2rem;
  padding-left: 1.1rem;
  border-left: 2px solid rgba(255,200,220,0.4);
}

@media (max-width: 700px) {
  .overlap-cols { grid-template-columns: 1fr; gap: 1.3rem; }
  .overlap-cols::before { display: none; }
  .overlap-col + .overlap-col {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.1rem;
  }
}

/* ============ ABOUT ============ */
.about-lead {
  position: relative;
  z-index: 2;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 1rem var(--gutter) 0;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: start;
}
.about-portrait {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--ink-mid);
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06),
              0 24px 60px -28px rgba(255,92,147,0.4);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 38%);
  pointer-events: none;
}
.about-standfirst {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: clamp(1.15rem, 1.9vw, 1.65rem);
  line-height: 1.5;
  color: var(--bone);
  border-left: 1px solid var(--rose-mist);
  padding-left: 1.3rem;
  margin-bottom: 1.6rem;
}
.about-standfirst em { color: var(--rose-glow); font-style: italic; }

.about-body {
  position: relative;
  z-index: 2;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 2.5rem var(--gutter) 2rem;
}
.about-col { max-width: 70ch; }
.about-col h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 72, "wght" 400;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  color: var(--bone);
  margin: 2.8rem 0 1rem;
  letter-spacing: -0.015em;
}
.about-col h2:first-child { margin-top: 0; }
.about-col p {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 14, "wght" 300;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.8;
  color: var(--bone);
  margin-bottom: 1.35rem;
}
.about-col p.aside {
  font-family: var(--font-voice);
  font-style: italic;
  color: var(--ash-warm);
  font-size: 1rem;
  border-left: 1px solid var(--glass-border);
  padding-left: 1.1rem;
}
.about-col strong { font-variation-settings: "opsz" 14, "wght" 500; color: var(--bone); }

/* Capability grid */
.cap-grid {
  position: relative;
  z-index: 2;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 1rem var(--gutter) 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cap {
  border: 1px solid var(--glass-border);
  border-radius: 7px;
  background: var(--glass-fill);
  padding: 1.3rem 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color 0.22s var(--ease-hover), transform 0.22s var(--ease-hover);
}
.cap:hover { border-color: var(--glass-border-hover); transform: translateY(-2px); }
.cap-title {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-mist);
  margin-bottom: 0.7rem;
}
.cap ul { list-style: none; }
.cap li {
  font-size: 0.92rem;
  color: var(--ash-warm);
  line-height: 1.65;
  padding-left: 0.9rem;
  position: relative;
}
.cap li::before {
  content: '·';
  position: absolute; left: 0;
  color: var(--rose-mist);
}
.cap li a { color: var(--bone); border-bottom: 1px solid transparent; transition: border-bottom-color 0.2s var(--ease-hover), color 0.2s var(--ease-hover); }
.cap li a:hover { color: var(--rose-glow); border-bottom-color: var(--rose-mist); }

@media (max-width: 900px) {
  .about-lead { grid-template-columns: 1fr; }
  .about-portrait { max-width: 340px; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) { .cap-grid { grid-template-columns: 1fr; } }

/* ============ CONTACT ============ */
.contact-lead {
  position: relative; z-index: 2;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 1rem var(--gutter) 0;
}
.contact-statement {
  font-family: var(--font-voice);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.5;
  color: var(--bone);
  border-left: 1px solid var(--rose-mist);
  padding-left: 1.3rem;
  max-width: 58ch;
}
.contact-statement em { color: var(--rose-glow); font-style: italic; }

/* Direct channels */
.channels {
  position: relative; z-index: 2;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 2.5rem var(--gutter) 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.channel {
  border: 1px solid var(--glass-border);
  border-radius: 7px;
  background: var(--glass-fill);
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color 0.22s var(--ease-hover), transform 0.22s var(--ease-hover);
}
.channel:hover { border-color: var(--glass-border-hover); transform: translateY(-2px); }
.channel-label {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-mist); margin-bottom: 0.8rem;
}
.channel-value {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 32, "wght" 300;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--bone);
  word-break: break-word;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: color 0.22s var(--ease-hover), border-bottom-color 0.22s var(--ease-hover);
}
a.channel-value:hover { color: var(--rose-glow); border-bottom-color: var(--rose-mist); }
.channel-note { font-size: 0.8rem; color: var(--ash-cool); margin-top: 0.6rem; line-height: 1.5; }
.channel-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.2rem; }
.channel-links a {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ash-warm);
  border: 1px solid var(--glass-border);
  border-radius: 999px; padding: 0.4rem 0.8rem;
  transition: color 0.2s var(--ease-hover), border-color 0.2s var(--ease-hover);
}
.channel-links a:hover { color: var(--rose-glow); border-color: var(--glass-border-hover); }

/* Form + guidance */
.contact-grid {
  position: relative; z-index: 2;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 2.5rem var(--gutter) 6rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: start;
}
.form-panel, .guide-panel {
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-fill);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.panel-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 72, "wght" 400;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--bone);
  margin-bottom: 1.4rem;
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-mist); margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  padding: 0.8rem 0.9rem;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease-hover), background 0.2s var(--ease-hover);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(255,200,220,0.4);
  background: rgba(255,255,255,0.05);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ash-cool); opacity: 0.7; }
.field select option { background: var(--ink-mid); color: var(--bone); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hp { position: absolute; left: -9999px; }
.form-submit {
  margin-top: 0.6rem;
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone);
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  cursor: pointer;
  transition: border-color 0.22s var(--ease-hover), color 0.22s var(--ease-hover), transform 0.22s var(--ease-hover);
}
.form-submit:hover { border-color: var(--glass-border-hover); color: var(--rose-glow); transform: translateY(-1px); }
.form-fallback { margin-top: 1.1rem; font-size: 0.8rem; color: var(--ash-cool); line-height: 1.6; }
.form-fallback a { color: var(--rose-mist); border-bottom: 1px solid transparent; }
.form-fallback a:hover { border-bottom-color: var(--rose-mist); }

.guide-panel ol { list-style: none; counter-reset: g; }
.guide-panel li {
  counter-increment: g;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--ash-warm);
  line-height: 1.6;
}
.guide-panel li::before {
  content: counter(g);
  position: absolute; left: 0; top: 0.05rem;
  width: 1.3rem; height: 1.3rem;
  border: 1px solid rgba(255,200,220,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  color: var(--rose-mist);
}
.guide-panel li strong { color: var(--bone); font-weight: 500; }
.guide-foot {
  margin-top: 1.6rem; padding-top: 1.2rem;
  border-top: 1px solid var(--glass-border);
  font-family: var(--font-voice); font-style: italic;
  font-size: 0.9rem; color: var(--ash-warm); line-height: 1.6;
}

@media (max-width: 900px) {
  .channels { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* Discord copy button — matches the icon/link styling around it */
button.social-icon.copy-discord,
button.channel-value.copy-discord {
  cursor: pointer;
  font: inherit;
  text-align: left;
}
button.social-icon.copy-discord { background: var(--glass-fill); }
button.channel-value.copy-discord {
  background: none;
  border: 0;
  border-bottom: 1px dashed rgba(255, 200, 220, 0.4);
  padding: 0;
  color: var(--bone);
  transition: color 0.22s var(--ease-hover), border-bottom-color 0.22s var(--ease-hover);
}
button.channel-value.copy-discord:hover {
  color: var(--rose-glow);
  border-bottom-color: var(--rose-mist);
}
.copy-discord.copied,
button.channel-value.copy-discord.copied {
  color: var(--rose-glow);
  border-color: var(--rose-mist);
}
