@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/Playfair_Display/PlayfairDisplay-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fira Code";
  src: url("../assets/fonts/Fira_Code/FiraCode-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #f7f2ee;
  --text: #1c1917;
  --primary: #eeaab3;
  --accent: #b56a45;
  --surface: #ffffff;
  --border: #c9a8a6;
  --gold: #c4a36a;
  --canvas: var(--background);
  --cream: #ead9d7;
  --ink: var(--text);
  --crimson: var(--primary);
  --red: #c45d70;
  --teal: var(--accent);
  --brown: var(--accent);
  --blush: var(--border);
  --apricot: var(--gold);
  --muted: rgba(28, 25, 23, 0.76);
  --line: color-mix(in srgb, var(--border) 55%, transparent);
  --shadow: 0 18px 50px rgba(28, 25, 23, 0.08);
  --radius: 16px;
  --header-h: 84px;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --mono: "Fira Code", ui-monospace, "Cascadia Code", monospace;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(90% 70% at 85% 8%, color-mix(in srgb, var(--border) 42%, transparent), transparent 58%),
    radial-gradient(70% 50% at 10% 100%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 55%),
    linear-gradient(180deg, #efe6e4 0%, var(--background) 38%, var(--background) 100%);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }


a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.filter-pill:focus-visible,
.inquiry-chips a:focus-visible,
.nav-toggle:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.skip-link {
  position: absolute; left: 12px; top: -48px;
  background: var(--primary); color: var(--text); padding: 8px 12px; z-index: 200;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 80; height: var(--header-h);
  display: flex; align-items: center;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--background) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
  overflow: visible;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--background) 92%, transparent);
}

.header-inner, .section-inner, .footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  position: relative;
  max-width: 100%;
}
.brand { display: flex; flex-direction: column; min-width: 0; }
.brand-name {
  font-family: var(--display); font-size: 1.35rem; font-weight: 600;
  letter-spacing: 0.01em; line-height: 1.1;
}
.brand-meta {
  font-family: var(--mono); font-size: 0.68rem; color: var(--accent);
  letter-spacing: 0.08em; text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 120;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), width 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-toggle-label {
  display: none;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}
body.nav-open .nav-toggle {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 5.5rem;
  height: 44px;
  padding: 0 18px;
  background: var(--accent);
  border-color: transparent;
  gap: 0;
}
body.nav-open .nav-toggle-bars { display: none; }
body.nav-open .nav-toggle-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.site-nav { display: flex; align-items: center; gap: 8px; }
.nav-menu-label { display: none; }
.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.03em;
  padding: 10px 10px; border-radius: 10px; color: var(--muted);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.has-submenu { position: relative; }
.has-submenu > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: 0.1em;
}
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  min-width: 210px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  display: block;
}
.submenu a {
  display: block;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.is-active {
  color: var(--text); background: color-mix(in srgb, var(--border) 28%, transparent);
}
.nav-cta { margin-left: 8px; }
.nav-backdrop { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.06em;
  text-transform: uppercase; border: 0; cursor: pointer; border-radius: 12px;
  padding: 13px 20px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--primary); color: var(--text);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 40%, transparent);
}
.btn-primary:hover { background: var(--red); color: #fff; }
.btn-secondary {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-on-dark {
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  border: 1px solid transparent;
}
.btn-on-dark:hover {
  background: #fff;
  color: var(--red);
}
.section-tight { padding-top: 36px; padding-bottom: 36px; }
.section-follow { padding-top: 24px; }
.path-img-wide { aspect-ratio: 16 / 10; }
.portrait-frame img.ratio-wide { aspect-ratio: 16 / 10; }
.anchor-offset { scroll-margin-top: calc(var(--header-h) + 16px); }
.closing-cta {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.inquiry-note {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.btn-ghost {
  background: transparent; color: var(--text); border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--accent); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero */
.hero {
  position: relative; min-height: calc(100vh - var(--header-h));
  display: grid; place-items: end start; overflow: hidden; color: #fff;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 28%;
  transform: scale(1.03);
  animation: heroDrift 18s var(--ease) infinite alternate;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 25, 23, 0.55) 0%, rgba(28, 25, 23, 0.18) 52%, rgba(28, 25, 23, 0.06) 100%),
    linear-gradient(180deg, rgba(28, 25, 23, 0.05) 0%, rgba(28, 25, 23, 0.42) 100%);
}
.hero-copy {
  position: relative; z-index: 1; padding: 72px 0 88px;
  width: min(1120px, calc(100% - 40px)); margin: 0 auto;
}
.eyebrow {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 16px;
}
.hero h1 {
  font-family: var(--display); font-size: clamp(3.2rem, 7.5vw, 6.4rem);
  font-weight: 500; line-height: 0.92; margin: 0 0 16px; letter-spacing: -0.03em;
}
.hero-sub {
  max-width: 34rem; font-size: 1.08rem; color: rgba(255,255,255,0.9); margin: 0 0 28px;
}
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-sub,
.hero-copy .cta-row,
.page-hero .kicker,
.page-hero h1,
.page-hero .lede {
  animation: riseIn 1.15s var(--ease) both;
}
.hero-copy h1,
.page-hero h1 { animation-delay: 0.14s; }
.hero-copy .hero-sub,
.page-hero .lede { animation-delay: 0.28s; }
.hero-copy .cta-row { animation-delay: 0.42s; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}
@keyframes drawLine {
  from { width: 0; }
  to { width: 2.75rem; }
}
.kicker::after,
.hero .eyebrow::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 10px;
  background: var(--accent);
  transition: width 1.15s var(--ease);
}
.hero .eyebrow::after { background: var(--gold); }
.reveal.is-visible .kicker::after,
.kicker.reveal.is-visible::after {
  width: 2.75rem;
}
.hero .eyebrow::after,
.page-hero .kicker::after {
  animation: drawLine 1.15s var(--ease) 0.2s both;
}

/* Sections + ambiance blur */
.section { position: relative; padding: 88px 0; overflow: hidden; }
.section-inner { position: relative; z-index: 1; }
.section-soft { background: var(--cream); }
.section-ambiance { isolation: isolate; }
.ambiance {
  position: absolute; inset: -8% -4%; z-index: 0; pointer-events: none; overflow: hidden;
}
.ambiance img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(72px) saturate(1.15); opacity: 0.28; transform: scale(1.15);
}
.ambiance::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--background) 55%, transparent) 0%,
    color-mix(in srgb, var(--background) 82%, transparent) 55%,
    color-mix(in srgb, var(--background) 94%, transparent) 100%
  );
}
.section-soft .ambiance::after {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--cream) 50%, transparent) 0%,
    color-mix(in srgb, var(--cream) 88%, transparent) 100%
  );
}

.kicker {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 12px;
}
h2, .display {
  font-family: var(--display); font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.08; margin: 0 0 16px;
}
.section h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
.lede { font-size: 1.06rem; color: var(--muted); max-width: 62ch; margin: 0 0 12px; }
.section p { margin: 0 0 14px; }

.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.about-card {
  gap: clamp(22px, 3vw, 40px);
  padding: clamp(22px, 3.2vw, 40px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(70% 80% at 100% 20%, color-mix(in srgb, var(--primary) 28%, transparent), transparent 62%),
    color-mix(in srgb, var(--surface) 90%, var(--background));
  box-shadow: var(--shadow);
}
.about-card .portrait-frame {
  width: min(100%, calc(min(46vh, 520px) * 1024 / 771));
  justify-self: end;
  box-shadow: 0 14px 36px rgba(28, 25, 23, 0.1);
}
.about-card .portrait-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 771;
  object-fit: cover;
  object-position: center;
}
.portrait-frame {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); background: var(--surface);
}
.portrait-frame img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.reveal:not(.is-visible) .portrait-frame img,
.portrait-frame.reveal:not(.is-visible) img,
.path-panel.reveal:not(.is-visible) img {
  transform: scale(1.06);
}
.portrait-frame:hover img,
.path-panel:hover img { transform: scale(1.035); }
.portrait-caption {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-top: 12px;
}

.proof-strip {
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center;
  padding: 18px 0; border-block: 1px solid var(--line);
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}
.proof-strip strong { color: var(--text); font-weight: 500; letter-spacing: 0.04em; }
.proof-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

.path-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 32px;
}
.path-panel {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); min-height: 280px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.path-panel:hover {
  transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border);
}
.path-panel img {
  width: 100%; height: 160px; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.path-panel .path-body { padding: 22px; }
.path-panel h3 {
  font-family: var(--display); font-size: 1.7rem; margin: 0 0 8px; font-weight: 500;
}
.path-panel p { color: var(--muted); margin: 0 0 16px; }
.path-links { display: flex; flex-wrap: wrap; gap: 8px; }
.path-links a {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 8px 12px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--background); color: var(--text);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.path-links a:hover {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 28%, var(--surface));
}
.collab-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px;
}
a.credit-item {
  display: block;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
a.credit-item:hover {
  transform: translateY(-3px);
  background: var(--surface);
}
.collab-grid + .btn { margin-top: 22px; }
.embed-row {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr;
  gap: 22px;
  margin-top: 32px;
  align-items: start;
}
.paired-list { display: flex; flex-direction: column; gap: 40px; margin-top: 36px; }
.paired-row {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: 28px 36px;
  align-items: center;
  justify-content: start;
}
.paired-row.is-reel {
  align-items: start;
  grid-template-columns: minmax(220px, 340px) minmax(280px, 420px);
}
.paired-copy h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  margin: 10px 0 8px;
}
.paired-copy p { color: var(--muted); margin: 0; max-width: 36ch; }
.paired-row .reel-frame { justify-self: start; }
.paired-row .video-frame,
.paired-row .soundcloud-frame { width: 100%; margin-top: 0; }
.reel-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 740px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.reel-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.player-block { margin-top: 32px; }
.soundcloud-frame {
  margin-top: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.soundcloud-frame iframe {
  display: block;
  width: 100%;
  height: 166px;
  border: 0;
}
.option-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px;
}
.option-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 22px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.option-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border);
}
.option-card h3 {
  font-family: var(--display); font-size: 1.6rem; font-weight: 500; margin: 0;
}
.option-card p { color: var(--muted); margin: 0; }
.option-card .btn { align-self: flex-start; margin-top: 8px; }
.option-card .badge { align-self: flex-start; }
.option-grid + p { margin-top: 28px; }

.credit-rail {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px;
}
.credit-item {
  padding: 16px 18px; border-left: 2px solid var(--primary);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}
.credit-item span {
  display: block; font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.credit-item strong {
  font-family: var(--display); font-size: 1.15rem; font-weight: 500; line-height: 1.25;
}

.video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden; background: #111;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.genre-grid, .card-grid, .gallery-grid, .media-grid, .faq-grid, .accolade-grid {
  display: grid; gap: 16px;
}
.genre-grid {
  grid-template-columns: repeat(5, 1fr); margin: 32px 0 24px;
}
.genre-card, .music-card, .accolade-card, .faq-card, .photo-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 20px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.genre-card:hover, .music-card:hover, .accolade-card:hover, .photo-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border);
}
.genre-card h3, .music-card h3 {
  font-family: var(--display); margin: 8px 0; font-size: 1.4rem; font-weight: 500;
}
.genre-index { font-family: var(--mono); font-size: 0.72rem; color: var(--red); }

.page-hero { padding: 64px 0 20px; position: relative; overflow: hidden; }
.page-hero h1 {
  font-family: var(--display); font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  margin: 0 0 12px; letter-spacing: -0.04em; line-height: 0.96;
}

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.filter-pill {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em;
  text-transform: uppercase; border: 1px solid var(--line); background: var(--surface);
  color: var(--text); border-radius: 12px; padding: 9px 14px; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.filter-pill:hover, .filter-pill.is-active {
  background: var(--primary); color: var(--text); border-color: var(--primary);
}
.card-grid { grid-template-columns: repeat(3, 1fr); }
.badge {
  display: inline-block; font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: 12px; padding: 5px 9px;
}
.callout {
  margin-top: 32px; padding: 24px; border-radius: var(--radius);
  background: var(--cream); border: 1px solid var(--line);
}
.callout strong {
  font-family: var(--display); font-size: 1.35rem; display: block; margin-bottom: 6px; font-weight: 500;
}
.form-frame {
  width: 100%; max-width: 700px; min-height: 1100px;
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; background: var(--surface);
}
.form-frame iframe { width: 100%; min-height: 1100px; border: 0; display: block; }

.gallery-grid { grid-template-columns: repeat(12, 1fr); }
.gallery-grid .photo-card { padding: 0; overflow: hidden; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5;
  transition: transform 0.55s var(--ease);
}
.photo-card:hover img { transform: scale(1.04); }
.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; }
.gallery-grid .span-8 img, .gallery-grid .span-6 img { aspect-ratio: 16 / 10; }

.accolade-grid { grid-template-columns: repeat(2, 1fr); margin-top: 32px; }
.accolade-card h3 { font-family: var(--display); margin: 10px 0 8px; font-weight: 500; }
.media-grid { grid-template-columns: 1.35fr 1fr; gap: 22px; }
.media-photos { display: grid; gap: 16px; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 0.85fr; gap: 36px; align-items: start;
}
.email-link {
  color: var(--red); font-family: var(--mono); font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.email-link:hover { color: var(--red); border-color: var(--red); }
.faq-grid { grid-template-columns: 1fr; }
.social-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.inquiry-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 8px;
}
.inquiry-chips a {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 8px 12px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--surface); color: var(--muted);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.inquiry-chips a:hover, .inquiry-chips a.is-active {
  color: var(--text); border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, var(--surface));
}

.site-footer {
  background: var(--text); color: #f7f2ee; padding: 48px 0 28px;
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 24px; align-items: end;
}
.site-footer .brand-meta, .footer-copy { color: rgba(247, 242, 238, 0.7); }
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-family: var(--mono); font-size: 0.74rem;
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1.05s var(--ease), transform 1.05s var(--ease);
}
@media (scripting: none) {
  .reveal { opacity: 1; transform: none; }
}
html.no-js .reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (max-width: 980px) {
  .split, .contact-layout, .media-grid, .card-grid, .accolade-grid, .path-grid, .credit-rail, .collab-grid, .option-grid, .embed-row, .reel-grid, .paired-row {
    grid-template-columns: 1fr;
  }
  .about-card .portrait-frame {
    width: min(100%, calc(min(38vh, 320px) * 1024 / 771));
    justify-self: center;
  }
  .about-card .portrait-frame img {
    aspect-ratio: 1024 / 771;
    object-position: center;
  }
  .genre-grid { grid-template-columns: 1fr 1fr; }
  .span-6, .span-4, .span-8 { grid-column: span 12; }
  .footer-inner { flex-direction: column; align-items: start; }
}

/* Full-screen menu overlay (Art-of-Documentary style open), brand palette. */
@media (max-width: 960px) {
  .site-header {
    overflow: visible;
  }
  .header-inner {
    width: min(1120px, calc(100% - 28px));
  }
  .brand {
    position: relative;
    z-index: 120;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-backdrop {
    display: none;
  }
  .site-nav {
    --nav-edge-gap: 20px;
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--nav-edge-gap);
    width: 100%;
    height: 100%;
    max-height: 100dvh;
    margin: 0;
    padding: calc(var(--header-h) + var(--nav-edge-gap)) clamp(22px, 5vw, 40px) var(--nav-edge-gap);
    background:
      radial-gradient(80% 60% at 100% 0%, color-mix(in srgb, var(--primary) 28%, transparent), transparent 55%),
      linear-gradient(160deg, #241c1a 0%, var(--text) 45%, #151210 100%);
    color: var(--background);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    overscroll-behavior: none;
    pointer-events: none;
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
    transition:
      clip-path 0.7s var(--ease),
      visibility 0s linear 0.7s;
  }
  body.nav-open .site-nav {
    pointer-events: auto;
    visibility: visible;
    clip-path: inset(0 0 0 0);
    overflow-y: auto;
    transition:
      clip-path 0.7s var(--ease),
      visibility 0s linear 0s;
  }
  html.no-js .site-nav {
    position: static;
    inset: auto;
    height: auto;
    max-height: none;
    width: auto;
    padding: 0;
    background: transparent;
    color: inherit;
    clip-path: none;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
    flex-direction: row;
    align-items: center;
  }
  html.no-js .nav-toggle {
    display: none;
  }
  body.nav-open .site-header {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.nav-open .brand-name { color: #fff; }
  body.nav-open .brand-meta { color: var(--gold); }
  /* Avoid stacking "Menu" under the sticky brand name. */
  .nav-menu-label {
    display: none;
  }
  .nav-links {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 22rem;
    gap: 0;
    margin: 0;
    overflow: visible;
  }
  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  }
  .nav-links li:nth-child(1) { transition-delay: 0.3s; }
  .nav-links li:nth-child(2) { transition-delay: 0.24s; }
  .nav-links li:nth-child(3) { transition-delay: 0.18s; }
  .nav-links li:nth-child(4) { transition-delay: 0.12s; }
  .nav-links li:nth-child(5) { transition-delay: 0.06s; }
  .nav-links li:nth-child(6) { transition-delay: 0s; }
  body.nav-open .nav-links li {
    opacity: 1;
    transform: none;
  }
  body.nav-open .nav-links li:nth-child(1) { transition-delay: 0.12s; }
  body.nav-open .nav-links li:nth-child(2) { transition-delay: 0.18s; }
  body.nav-open .nav-links li:nth-child(3) { transition-delay: 0.24s; }
  body.nav-open .nav-links li:nth-child(4) { transition-delay: 0.3s; }
  body.nav-open .nav-links li:nth-child(5) { transition-delay: 0.36s; }
  body.nav-open .nav-links li:nth-child(6) { transition-delay: 0.42s; }
  .nav-links a {
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: 100%;
    min-height: 0;
    padding: 7px 0;
    border-radius: 0;
    font-family: var(--display);
    font-size: clamp(1.35rem, 4.6vw, 1.9rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: rgba(247, 242, 238, 0.9);
    background: transparent;
  }
  .nav-links a:hover,
  .nav-links a.is-active {
    color: #fff;
    background: transparent;
  }
  .nav-links a.is-active::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 12px;
    border-radius: 50%;
    background: var(--accent);
    flex: 0 0 auto;
  }
  .has-submenu > a::after { display: none; }
  .submenu {
    display: flex;
    flex-direction: column;
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0 0 6px 18px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .submenu a {
    font-family: var(--mono);
    font-size: clamp(1.05rem, 3.6vw, 1.35rem);
    font-weight: 450;
    letter-spacing: 0.01em;
    line-height: 1.35;
    padding: 8px 0;
    color: rgba(247, 242, 238, 0.9);
    white-space: normal;
  }
  .submenu a:hover,
  .submenu a.is-active {
    color: #fff;
  }
  .submenu a.is-active::before {
    width: 5px;
    height: 5px;
    margin-right: 8px;
  }
  .nav-cta {
    width: auto;
    margin: 0;
    min-height: 44px;
    flex: 0 0 auto;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s var(--ease);
    transition-delay: 0s;
  }
  body.nav-open .nav-cta {
    opacity: 1;
    transform: none;
    transition-delay: 0.48s;
  }
  .brand-name,
  .brand-meta {
    transition: color 0.2s var(--ease) 0.62s;
  }
  body.nav-open .brand-name,
  body.nav-open .brand-meta {
    transition-delay: 0s;
  }
  .site-header {
    transition: border-color 0.35s var(--ease), background 0.25s var(--ease) 0.55s, backdrop-filter 0.25s var(--ease) 0.55s;
  }
  body.nav-open .site-header {
    transition-delay: 0s;
  }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .genre-grid, .header-inner, .section-inner, .footer-inner {
    width: min(1120px, calc(100% - 28px));
  }
  .genre-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 64px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .hero-sub,
  .hero-copy .cta-row,
  .page-hero .kicker,
  .page-hero h1,
  .page-hero .lede,
  .kicker::after,
  .hero .eyebrow::after,
  .reveal,
  .portrait-frame img,
  .gallery-grid img,
  .path-panel,
  .genre-card,
  .music-card,
  .photo-card,
  .site-nav,
  .nav-menu-label,
  .nav-links li,
  .nav-cta {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-media img { transform: none; }
  .kicker::after,
  .hero .eyebrow::after,
  .page-hero .kicker::after { width: 2.75rem; animation: none; }
  .btn:hover, .path-panel:hover, .genre-card:hover, .music-card:hover, .photo-card:hover {
    transform: none;
  }
  body.nav-open .site-nav {
    clip-path: none;
  }
  body.nav-open .nav-menu-label,
  body.nav-open .nav-links li,
  body.nav-open .nav-cta {
    opacity: 1;
    transform: none;
  }
}
