/*
 * Build Studio release boundary.
 * Standalone cascade for the public Studio index and generated detail pages.
 * Consolidated in the approved source order from:
 * - styles.css: 1-39, 51-93, 95-230, 317-374, 750-811, 1845-1860,
 *   2284-2308, 3038-3042, 3192-3205, 3451-3469, 4219-4224,
 *   4675-4678, 5647-5720,
 *   5870-5880, 5943-5957, 6240-6397, 6802-6869,
 *   6898-6914, 7780-8445, 8523-8702, 8704-9338, 10058-10094,
 *   and the active mobile Studio type rules at 10400-10422.
 * - studio-v41.css: active Studio index/detail refinements, 1-1046.
 * - presentation.css: Studio and shared footer presentation rules.
 * - brand-v45.css: local fonts, typography, and NAS emblem.
 */

:root {
  --bg: #121014;
  --bg-raised: #171418;
  --bg-card: #1b171c;
  --ivory: #f5f1e8;
  --white: var(--ivory);
  --cream: #d6d0c6;
  --platinum: #d4d4d4;
  --champagne: #b8b2a8;
  --text: #ebe6dc;
  --text-muted: #cfc9be;
  --text-dim: #9a948a;
  --driftwood: #8a847a;
  --taupe: #b8b2a8;
  --gold: var(--accent-soft);
  --gold-soft: #a3a3a3;
  --accent: #7a2838;
  --oxblood: #7a2838;
  --accent-soft: #c4878f;
  --copper: #b87333;
  --line: rgba(255, 255, 255, 0.08);
  --line-bright: rgba(255, 255, 255, 0.16);
  --glow: rgba(255, 255, 255, 0.04);
  --max: 1240px;
  --section-y: 128px;
  --section-y-tight: 80px;
  --radius: 0px;
  /* System-font stack avoids a cross-origin font request and renders immediately. */
  --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: ui-sans-serif, system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

p {
  margin: 0;
}

.site-shell {
  min-height: 100vh;
  perspective: 1600px;
  background: var(--bg);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(28px) saturate(160%);
}

.nav-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
}

.brand strong {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--ivory);
  text-transform: none;
}

.brand span {
  margin-top: 5px;
  color: var(--text-dim);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 200ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ivory);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
}

.btn {
  position: relative;
  overflow: hidden;
  padding: 0 36px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform-style: preserve-3d;
  transform: translateZ(0);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.18) 50%, transparent 65%);
  opacity: 0;
  transform: translateX(-130%);
  transition: transform 0.9s ease, opacity 0.35s ease;
  pointer-events: none;
}

.btn:hover {
  background: #7d2531;
  border-color: #7d2531;
  color: var(--ivory);
  transform: translateY(-2px) translateZ(8px);
  box-shadow: 0 0 40px rgba(107, 31, 42, 0.35);
}

.btn:hover::after {
  opacity: 1;
  transform: translateX(130%);
}

.btn:active {
  transform: translateY(0) translateZ(2px);
  box-shadow: none;
}

.eyebrow {
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  color: var(--ivory);
}

h1 {
  max-width: 800px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
}

h2 {
  max-width: 700px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ivory);
}

h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ivory);
}

.lead {
  max-width: 560px;
  margin-top: 24px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 96px;
  color: var(--text-dim);
}

.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 20px;
  font-size: 13px;
}

.footer-meta {
  display: grid;
  gap: 6px;
}

.footer-brand {
  margin: 0;
  color: var(--ivory);
  font-size: 14px;
  font-weight: 500;
}

.footer-license {
  margin: 0;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.55;
  max-width: 520px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.footer-nav a {
  color: var(--text);
  font-weight: 400;
  font-size: 13px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 200ms ease;
}

.footer-nav a:hover {
  color: var(--ivory);
}

.footer-compliance {
  margin: 0;
  max-width: 720px;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.65;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--ivory);
  color: #f5f2ec;
  font-weight: 850;
}

.skip-link:focus {
  transform: translateY(0);
}

.nav {
  animation: nav-fade 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes nav-fade {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.scroll-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: calc(var(--progress, 0) * 100%);
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
  box-shadow: 0 0 12px rgba(185, 112, 123, 0.35);
}

@media (max-width: 560px) {
  .footer-license,
  .footer-compliance {
    font-size: 12px;
    line-height: 1.6;
  }
}

.executive-tier .footer-nav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
}

.executive-tier .footer {
  position: relative;
  isolation: isolate;
  padding-block: clamp(54px, 6vw, 76px);
  background:
    radial-gradient(circle at 88% 18%, rgba(122, 40, 56, 0.11), transparent 28%),
    linear-gradient(180deg, #070606, #020202);
  border-top: 1px solid rgba(196, 135, 143, 0.26);
}

.executive-tier .footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 4%, var(--accent-soft) 34%, var(--copper) 52%, transparent 88%);
  opacity: 0.7;
}

.executive-tier .footer-inner {
  grid-template-columns: minmax(320px, 1.15fr) minmax(360px, 0.85fr);
  gap: 36px clamp(48px, 7vw, 100px);
  align-items: start;
}

.executive-tier .footer-meta {
  gap: 14px;
}

.executive-tier .footer-brand {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.executive-tier .footer-license {
  max-width: 570px;
  color: #aaa39a;
  font-size: 13px;
  line-height: 1.7;
}

.executive-tier .footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.11);
}

.executive-tier .footer-nav a {
  min-height: 52px;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.075);
  color: #d8d2c9;
}

.executive-tier .footer-nav a:nth-child(3n) {
  border-right: 0;
}

.executive-tier .footer-nav a:nth-child(-n + 3) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.executive-tier .footer-compliance {
  grid-column: 1 / -1;
  max-width: none;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: #827d76;
  font-size: 11px;
  letter-spacing: 0.025em;
}

@media (max-width: 980px) {
  .executive-tier .footer-inner {
    grid-template-columns: 1fr;
  }

  .executive-tier .footer-nav {
    width: min(620px, 100%);
  }

  .executive-tier .footer-compliance {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .executive-tier .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .executive-tier .footer-nav a:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.075);
  }

  .executive-tier .footer-nav a:nth-child(2n) {
    border-right: 0;
  }

  .executive-tier .footer-nav a:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  }
}

:root {
  --bg: #0b090a;
  --bg-raised: #100d0f;
  --bg-card: #151013;
  --ivory: #f4eee5;
  --white: #fffaf2;
  --cream: #d8cfc4;
  --champagne: #c3b6a8;
  --text: #e9e0d7;
  --text-muted: #c7bdb3;
  --text-dim: #938a82;
  --accent: #6f2635;
  --accent-soft: #c98a94;
  --copper: #a97648;
  --line: rgba(235, 221, 207, 0.085);
  --line-bright: rgba(235, 221, 207, 0.17);
  --max: 1200px;
  --section-y: 118px;
  --section-y-tight: 74px;
  --radius: 2px;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-accent: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

body.executive-tier {
  color: var(--text);
  background: #080607;
  font-family: var(--font-body);
  letter-spacing: 0.004em;
}

.executive-tier .site-shell {
  background:
    radial-gradient(circle at 85% 4%, rgba(111, 38, 53, 0.08), transparent 24%),
    linear-gradient(180deg, #0b090a 0%, #080607 100%);
}

.executive-tier h1,
.executive-tier h2,
.executive-tier h3,
.executive-tier .footer-brand {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.executive-tier h2 {
  line-height: 1.08;
}

.executive-tier h3 {
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.18;
}

.executive-tier .eyebrow {
  color: var(--accent-soft);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.executive-tier .nav {
  border-bottom-color: rgba(235, 221, 207, 0.1);
}

.executive-tier .nav-inner {
  min-height: 74px;
}

.executive-tier .brand strong {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.executive-tier .nav-links {
  gap: 24px;
}

.executive-tier .nav-links > a:not(.btn) {
  color: #c6bcb2;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.executive-tier .nav-links > a:not(.btn):hover,
.executive-tier .nav-links > a[aria-current="page"]:not(.btn) {
  color: var(--ivory);
}

.executive-tier .btn {
  min-height: 50px;
  padding-inline: 32px;
  border-color: rgba(201, 138, 148, 0.55);
  border-radius: 2px;
  background: linear-gradient(145deg, #783044, #60202f);
  color: #fffaf2;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  box-shadow: 0 14px 34px rgba(55, 15, 25, 0.22);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease, background 300ms ease, box-shadow 400ms ease;
}

.executive-tier .btn::after {
  display: none;
}

.executive-tier .btn:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 216, 218, 0.72);
  background: linear-gradient(145deg, #84394d, #692637);
  box-shadow: 0 18px 42px rgba(55, 15, 25, 0.3);
}

.executive-tier input,
.executive-tier textarea,
.executive-tier select {
  border: 1px solid rgba(235, 221, 207, 0.15);
  border-radius: 2px;
  background: #0f0c0e;
  color: var(--ivory);
  font: inherit;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.executive-tier input:focus,
.executive-tier textarea:focus,
.executive-tier select:focus {
  outline: none;
  border-color: rgba(201, 138, 148, 0.62);
  box-shadow: 0 0 0 3px rgba(111, 38, 53, 0.16);
}

.executive-tier details {
  padding: 20px 22px;
}

.executive-tier summary {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 20px;
}

.executive-tier .footer {
  padding-block: clamp(58px, 6vw, 78px);
  border-top-color: rgba(201, 138, 148, 0.2);
  background:
    radial-gradient(circle at 88% 16%, rgba(111, 38, 53, 0.09), transparent 28%),
    linear-gradient(180deg, #0b080a, #050405);
}

.executive-tier .footer-brand {
  color: var(--ivory);
  font-size: clamp(27px, 2.8vw, 37px);
  font-weight: 400;
}

.executive-tier .footer-license {
  color: #a9a097;
}

.executive-tier .footer-nav {
  border-block-color: rgba(235, 221, 207, 0.1);
}

.executive-tier .footer-nav a {
  color: #d2c8be;
  border-color: rgba(235, 221, 207, 0.065);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.executive-tier .footer-compliance {
  color: #7e7670;
  border-top-color: rgba(235, 221, 207, 0.065);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: rgba(14, 13, 11, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .executive-tier .nav-inner {
    min-height: 68px;
  }

  .executive-tier .brand strong {
    font-size: 17px;
  }

  .executive-tier .nav-toggle {
    border-color: rgba(235, 221, 207, 0.16);
    color: var(--ivory);
  }

  .executive-tier .nav-links {
    background: rgba(9, 7, 8, 0.98);
    border-color: rgba(235, 221, 207, 0.11);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nav {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }
}

/* ─── v30 Build Studio · ink, plum, rose, and pearl ─── */
.studio-page {
  --bg: #09070d;
  --bg-raised: #120d15;
  --bg-card: #171019;
  --ivory: #faf5f6;
  --cream: #ddd3d9;
  --text: #f0e9ed;
  --text-muted: #d2c7ce;
  --text-dim: #a597a1;
  --champagne: #c8b9c2;
  --taupe: #c8b9c2;
  --driftwood: #958892;
  --accent: #8d2f56;
  --oxblood: #8d2f56;
  --accent-soft: #d59aaf;
  --line: rgba(243, 224, 234, 0.09);
  --line-bright: rgba(243, 224, 234, 0.18);
  background: #09070d;
}

.studio-page .site-shell {
  background:
    radial-gradient(ellipse at 9% 5%, rgba(157, 47, 92, 0.21), transparent 38%),
    radial-gradient(ellipse at 90% 1%, rgba(112, 78, 148, 0.13), transparent 30%),
    linear-gradient(180deg, #0b0710 0%, #100a14 44%, #09070d 100%);
}

.studio-page .nav {
  border-bottom-color: rgba(235, 205, 221, 0.1);
  background: rgba(9, 6, 12, 0.84);
  box-shadow: 0 18px 52px rgba(2, 1, 4, 0.2);
}

.studio-page .nav-inner {
  width: min(1380px, calc(100% - 48px));
}

.studio-page .nav-links {
  gap: clamp(18px, 2vw, 29px);
}

.studio-hero {
  position: relative;
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 134px) 0 clamp(86px, 10vw, 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: center;
}

.studio-hero::after {
  content: "";
  position: absolute;
  right: 42%;
  bottom: 13%;
  width: 1px;
  height: 19%;
  background: linear-gradient(to bottom, rgba(213, 154, 175, 0), rgba(213, 154, 175, 0.76), rgba(213, 154, 175, 0));
}

.studio-hero-copy {
  position: relative;
  z-index: 1;
}

.studio-hero .eyebrow,
.studio-introduction .eyebrow,
.studio-atlas .eyebrow,
.studio-closing .eyebrow {
  margin-bottom: 18px;
  color: var(--accent-soft);
}

.executive-tier .studio-hero h1 {
  max-width: 8.7ch;
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(66px, 7.9vw, 120px);
  font-weight: 500;
  letter-spacing: -0.068em;
  line-height: 0.88;
}

.studio-hero .lead {
  max-width: 54ch;
  margin-top: clamp(32px, 4vw, 50px);
  color: var(--text-muted);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.58;
}

.studio-hero-stat {
  display: flex;
  align-items: baseline;
  gap: 17px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(238, 215, 227, 0.12);
}

.studio-hero-stat strong {
  color: var(--ivory);
  font-size: clamp(42px, 4.6vw, 70px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.studio-hero-stat span {
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.studio-hero-note {
  max-width: 59ch;
  margin-top: 22px;
  color: #aa9ba5;
  font-size: 12px;
  line-height: 1.65;
}

.studio-founder-portrait {
  position: relative;
  margin: 0;
  padding: 15px 15px 0;
  border: 1px solid rgba(238, 214, 227, 0.17);
  background:
    radial-gradient(circle at 70% 16%, rgba(213, 154, 175, 0.19), transparent 34%),
    linear-gradient(145deg, #1b111b, #100b13);
  box-shadow: 0 42px 110px rgba(2, 1, 5, 0.48), 0 0 70px rgba(126, 42, 82, 0.08);
  transform: rotate(1.4deg);
}

.studio-founder-portrait::before {
  content: "";
  position: absolute;
  inset: -22px 20px 28px -18px;
  z-index: -1;
  border: 1px solid rgba(213, 154, 175, 0.22);
  transform: rotate(-3.2deg);
}

.studio-founder-portrait img {
  width: 100%;
  height: clamp(460px, 48vw, 650px);
  object-fit: cover;
  object-position: center 16%;
  filter: saturate(0.82) contrast(1.03);
}

.studio-founder-portrait figcaption {
  min-height: 74px;
  padding: 18px 5px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-dim);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

.studio-founder-portrait figcaption span:first-child {
  color: var(--ivory);
}

.studio-founder-portrait figcaption span:last-child {
  text-align: right;
}

.studio-introduction {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 126px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(52px, 8vw, 132px);
  border-top: 1px solid rgba(238, 215, 227, 0.1);
}

.executive-tier .studio-introduction h2,
.executive-tier .studio-atlas-heading h2,
.executive-tier .studio-closing h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(48px, 5.7vw, 82px);
  font-weight: 500;
  letter-spacing: -0.056em;
  line-height: 0.98;
}

.studio-introduction > div:last-child {
  padding-top: 42px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.82;
}

.studio-introduction > div:last-child p + p {
  margin-top: 22px;
  color: var(--text-dim);
  font-size: 14px;
}

.studio-latest {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto clamp(84px, 10vw, 142px);
  padding: clamp(22px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(480px, 1fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(238, 215, 227, 0.14);
  background:
    radial-gradient(circle at 10% 15%, rgba(158, 63, 100, 0.17), transparent 34%),
    linear-gradient(145deg, rgba(31, 19, 34, 0.94), rgba(12, 9, 17, 0.98));
  box-shadow: 0 38px 100px rgba(3, 2, 6, 0.38);
}

.studio-latest-copy {
  padding: clamp(16px, 2.2vw, 30px);
}

.executive-tier .studio-latest h2 {
  max-width: 10ch;
  margin: 17px 0 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(46px, 5.2vw, 76px);
  font-weight: 500;
  letter-spacing: -0.054em;
  line-height: 0.98;
}

.studio-latest-copy > p:last-child {
  max-width: 48ch;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.78;
}

.studio-latest-visual {
  margin: 0;
  padding: 10px 10px 0;
  border: 1px solid rgba(238, 215, 227, 0.12);
  background: rgba(7, 5, 10, 0.72);
  box-shadow: 0 26px 70px rgba(2, 1, 5, 0.42);
}

.studio-latest-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.studio-latest-visual figcaption {
  min-height: 58px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #b5a5af;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.studio-latest-visual figcaption span:last-child {
  color: var(--accent-soft);
  text-align: right;
}

.studio-atlas {
  padding: clamp(84px, 10vw, 142px) max(24px, calc((100vw - 1380px) / 2));
  border-top: 1px solid rgba(238, 215, 227, 0.1);
  background:
    radial-gradient(ellipse at 85% 10%, rgba(133, 65, 121, 0.12), transparent 32%),
    radial-gradient(ellipse at 8% 46%, rgba(151, 43, 83, 0.1), transparent 34%),
    linear-gradient(rgba(239, 213, 227, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 213, 227, 0.018) 1px, transparent 1px),
    linear-gradient(160deg, #160e19 0%, #0c0911 48%, #100a14 100%);
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.studio-atlas-heading {
  max-width: 1380px;
  margin: 0 auto clamp(46px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.72fr);
  gap: clamp(40px, 7vw, 108px);
  align-items: end;
}

.studio-collections {
  width: min(1380px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(100px, 12vw, 176px);
}

.studio-collection {
  min-width: 0;
  scroll-margin-top: 110px;
}

.studio-collection-heading {
  margin-bottom: clamp(38px, 5vw, 64px);
  padding: 0 0 clamp(28px, 3.4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 0.62fr);
  gap: clamp(38px, 7vw, 104px);
  align-items: end;
  border-bottom: 1px solid rgba(238, 215, 227, 0.14);
}

.studio-collection-heading .eyebrow {
  margin-bottom: 13px;
}

.executive-tier .studio-collection-heading h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(44px, 5.1vw, 72px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.studio-collection-summary {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.studio-collection-summary strong {
  color: var(--accent-soft);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.studio-collection-summary p {
  margin: 0;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.7;
}

.studio-grid {
  width: min(1380px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.studio-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(238, 215, 227, 0.11);
  background: linear-gradient(150deg, rgba(29, 19, 30, 0.98), rgba(13, 9, 17, 0.99));
  box-shadow: 0 22px 54px rgba(2, 1, 5, 0.24);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, box-shadow 320ms ease;
}

.studio-card:hover {
  z-index: 2;
  border-color: rgba(213, 154, 175, 0.36);
  box-shadow: 0 32px 78px rgba(2, 1, 5, 0.46), 0 0 42px rgba(128, 42, 83, 0.08);
  transform: translateY(-5px);
}

.studio-card-visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(238, 215, 227, 0.09);
  background-color: #090709;
  background-repeat: no-repeat;
  background-position: var(--studio-x, 0%) var(--studio-y, 0%);
  background-size: var(--studio-size, 600% 600%);
}

.studio-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 4, 5, 0.02) 58%, rgba(5, 4, 5, 0.58)),
    linear-gradient(90deg, rgba(5, 4, 5, 0.12), transparent 30%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.studio-card-copy {
  min-height: 360px;
  padding: 24px 24px 27px;
  display: flex;
  flex-direction: column;
}

.studio-card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: var(--accent-soft);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.studio-card-meta span:last-child {
  color: #9c8d97;
  text-align: right;
}

.studio-card-note {
  margin-top: 13px;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.65;
}

.studio-card-release {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(238, 215, 227, 0.1);
}

.studio-card-release span,
.studio-card-release strong {
  display: block;
}

.studio-card-release span {
  color: var(--accent-soft);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.studio-card-release strong {
  margin-top: 7px;
  color: #c8bac3;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.55;
}

.studio-noscript {
  max-width: 1380px;
  margin: 24px auto 0;
  color: var(--text-muted);
}

.studio-closing {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(96px, 13vw, 186px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(141, 47, 86, 0.11), transparent 43%);
}

.studio-page .footer {
  border-top-color: rgba(238, 215, 227, 0.1);
  background: linear-gradient(180deg, rgba(15, 9, 17, 0.28), rgba(7, 5, 10, 0.68));
}

.executive-tier .studio-closing h2 {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(58px, 7.7vw, 112px);
  line-height: 0.92;
}

.studio-closing > p:not(.eyebrow) {
  max-width: 62ch;
  margin: 34px auto 0;
  color: var(--text-muted);
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.72;
}

.studio-closing .btn {
  margin-top: 40px;
}

@media (max-width: 1180px) {
.studio-page .nav-links {
    gap: 17px;
    font-size: 10px;
  }

  .studio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .studio-hero::after {
    display: none;
  }

  .executive-tier .studio-hero h1 {
    max-width: 9.5ch;
  }

  .studio-founder-portrait {
    width: min(100%, 570px);
    margin-left: auto;
    margin-right: auto;
  }

  .studio-introduction,
.studio-latest,
.studio-atlas-heading,
.studio-collection-heading {
    grid-template-columns: 1fr;
  }

  .studio-introduction > div:last-child {
    max-width: 62ch;
    padding-top: 0;
  }

  .studio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
.studio-hero,
.studio-introduction,
.studio-latest,
.studio-closing {
    width: min(100% - 32px, 1380px);
  }

  .studio-hero {
    padding-top: 58px;
  }

  .executive-tier .studio-hero h1 {
    font-size: clamp(56px, 19vw, 82px);
  }

  .studio-hero-stat {
    align-items: center;
  }

  .studio-founder-portrait {
    padding: 10px 10px 0;
  }

  .studio-founder-portrait img {
    height: min(118vw, 560px);
  }

  .studio-founder-portrait figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .studio-founder-portrait figcaption span:last-child {
    text-align: left;
  }

  .executive-tier .studio-introduction h2,
.executive-tier .studio-latest h2,
.executive-tier .studio-atlas-heading h2 {
    font-size: 47px;
  }

  .studio-latest {
    padding: 12px;
  }

  .studio-latest-copy {
    padding: 26px 12px 4px;
  }

  .studio-latest-visual figcaption {
    min-height: 68px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .studio-latest-visual figcaption span:last-child {
    text-align: left;
  }

  .studio-atlas {
    padding-left: 16px;
    padding-right: 16px;
  }

  .studio-grid {
    grid-template-columns: 1fr;
  }

  .studio-collection-summary {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
  }

  .studio-collection-summary strong {
    font-size: 40px;
  }

  .studio-card-copy {
    min-height: 330px;
  }
}

@media (prefers-reduced-motion: reduce) {
.studio-card {
    transition: none;
  }

  .studio-card:hover {
    transform: none;
  }
}

/* Build Studio v36 — curated directory, progressive disclosure, and evaluation-ready browse tools */
.studio-page .skip-link {
  background: #faf5f6;
  color: #160d15;
}

.studio-latest-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.studio-latest-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.studio-latest-links button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(238, 215, 227, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #cbbdc6;
  font: inherit;
  font-size: 12px;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.studio-latest-links button:hover,
.studio-latest-links button:focus-visible {
  border-color: rgba(213, 154, 175, 0.55);
  background: rgba(141, 47, 86, 0.24);
  color: var(--ivory);
}

.studio-atlas-heading {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.62fr);
}

.studio-atlas-intro {
  max-width: 56ch;
  margin: 0 0 4px auto;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.studio-directory {
  width: min(1380px, 100%);
  margin: 0 auto clamp(38px, 5vw, 66px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.studio-directory-card {
  min-width: 0;
  min-height: 178px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  gap: 16px 18px;
  border: 1px solid rgba(238, 215, 227, 0.12);
  background:
    radial-gradient(circle at 88% 8%, rgba(141, 47, 86, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(28, 18, 30, 0.86), rgba(12, 8, 16, 0.92));
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease, border-color 180ms ease, background-color 180ms ease;
}

.studio-directory-card--overview {
  grid-column: span 2;
  background:
    radial-gradient(circle at 80% 10%, rgba(157, 47, 92, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(39, 22, 38, 0.96), rgba(14, 9, 18, 0.96));
}

.studio-directory-card:hover,
.studio-directory-card:focus-visible,
.studio-directory-card[aria-pressed="true"] {
  border-color: rgba(213, 154, 175, 0.5);
  background-color: rgba(141, 47, 86, 0.14);
  transform: translateY(-2px);
}

.studio-directory-card > span {
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.studio-directory-card > strong {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.8;
}

.studio-directory-card > small {
  grid-column: 1 / -1;
  max-width: 46ch;
  color: #aa9ca6;
  font-size: 11px;
  line-height: 1.58;
}

.studio-browse {
  position: sticky;
  top: 76px;
  z-index: 12;
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(260px, 1.55fr) repeat(3, minmax(142px, 0.66fr)) auto;
  gap: 12px;
  align-items: end;
  border: 1px solid rgba(238, 215, 227, 0.16);
  background: rgba(13, 8, 17, 0.92);
  box-shadow: 0 20px 58px rgba(2, 1, 5, 0.42);
  backdrop-filter: blur(22px);
}

.studio-search-field,
.studio-select-field {
  min-width: 0;
}

.studio-search-field label,
.studio-select-field label {
  display: block;
  margin: 0 0 7px 2px;
  color: #ad9da7;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.studio-search-field input,
.studio-select-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(238, 215, 227, 0.14);
  border-radius: 0;
  background: #171019;
  color: var(--ivory);
  font: inherit;
  font-size: 12px;
  outline: none;
}

.studio-search-field input {
  padding: 0 14px;
}

.studio-select-field select {
  padding: 0 34px 0 12px;
}

.studio-search-field input::placeholder {
  color: #847681;
}

.studio-search-field input:focus,
.studio-select-field select:focus {
  border-color: rgba(213, 154, 175, 0.7);
  box-shadow: 0 0 0 3px rgba(141, 47, 86, 0.17);
}

.studio-browse-actions {
  display: flex;
  gap: 8px;
}

.studio-overview-button,
.studio-clear-button {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(238, 215, 227, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #c7b9c2;
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.studio-overview-button {
  border-color: rgba(213, 154, 175, 0.35);
  background: rgba(141, 47, 86, 0.22);
  color: var(--ivory);
}

.studio-overview-button:hover,
.studio-overview-button:focus-visible,
.studio-clear-button:hover,
.studio-clear-button:focus-visible {
  border-color: rgba(213, 154, 175, 0.66);
  color: var(--ivory);
}

.studio-results-status {
  width: min(1380px, 100%);
  margin: 15px auto 0;
  color: #9f909a;
  font-size: 10px;
  letter-spacing: 0.03em;
  line-height: 1.55;
}

.studio-collections {
  margin-top: clamp(72px, 8vw, 112px);
  gap: clamp(94px, 10vw, 148px);
}

.studio-collection-heading {
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 0.7fr);
}

.executive-tier .studio-collection-heading h3 {
  max-width: 13ch;
}

.studio-collection-summary {
  grid-template-columns: 64px minmax(0, 1fr);
}

.studio-collection-summary > div {
  min-width: 0;
}

.studio-view-collection {
  margin-top: 18px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(213, 154, 175, 0.45);
  background: transparent;
  color: var(--accent-soft);
  font: inherit;
  min-height: 44px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.studio-fallback-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.studio-fallback-directory section {
  padding: 24px;
  border: 1px solid rgba(238, 215, 227, 0.14);
}

.studio-fallback-directory h3 {
  margin-bottom: 18px;
}

.studio-fallback-directory ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.studio-fallback-directory li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.studio-fallback-directory li strong {
  color: var(--ivory);
  font-weight: 560;
}

.studio-fallback-directory li span {
  text-align: right;
}

.studio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.studio-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  content-visibility: auto;
  contain-intrinsic-size: auto 660px;
}

.studio-card-visual {
  aspect-ratio: 16 / 11;
}

.studio-card-stage {
  position: absolute;
  left: 14px;
  bottom: 13px;
  z-index: 1;
  min-height: 29px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(9, 6, 10, 0.88);
  color: var(--ivory);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.studio-card-copy {
  min-height: 0;
  padding: 25px 25px 27px;
  flex: 1;
}

.studio-card-meta {
  margin: 0;
}

.executive-tier .studio-card h4 {
  margin: 18px 0 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.45vw, 38px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.studio-card-family {
  margin-top: 9px;
  color: var(--accent-soft);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.studio-card-note {
  margin-top: 17px;
  color: #c6b9c2;
  font-size: 13px;
  line-height: 1.68;
}

.studio-card-details {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(238, 215, 227, 0.1);
}

.studio-card-details summary {
  color: #b8a8b2;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
  cursor: pointer;
}

.studio-card-details summary:hover,
.studio-card-details summary:focus-visible {
  color: var(--ivory);
}

.studio-card-details > p {
  margin-top: 14px;
  color: #ad9fa8;
  font-size: 12px;
  line-height: 1.7;
}

.studio-card-details dl {
  margin: 17px 0 0;
  display: grid;
  gap: 9px;
}

.studio-card-details dt,
.studio-card-details dd {
  margin: 0;
  font-size: 9px;
  line-height: 1.55;
}

.studio-card-details dt {
  color: #8e7e89;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.studio-card-details dd {
  color: #bbaeb7;
}

.studio-card-release {
  margin-top: 21px;
}

.studio-card-link {
  width: max-content;
  margin-top: 17px;
  color: var(--accent-soft);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-empty {
  padding: clamp(64px, 8vw, 110px);
  border: 1px solid rgba(238, 215, 227, 0.12);
  text-align: center;
}

.studio-empty h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
}

.studio-empty p {
  margin-top: 14px;
  color: var(--text-dim);
}

@media (max-width: 1180px) {
.studio-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .studio-browse {
    grid-template-columns: minmax(250px, 1.4fr) repeat(3, minmax(130px, 0.7fr));
  }

  .studio-browse-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 900px) {
.studio-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-directory-card--overview {
    grid-column: 1 / -1;
  }

  .studio-browse {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-search-field {
    grid-column: 1 / -1;
  }

  .studio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
.studio-latest-links {
    margin-top: 24px;
  }

  .studio-directory {
    grid-template-columns: 1fr;
  }

  .studio-directory-card--overview {
    grid-column: auto;
  }

  .studio-directory-card {
    min-height: 148px;
    padding: 19px;
  }

  .studio-browse {
    grid-template-columns: 1fr;
    padding: 13px;
  }

  .studio-search-field,
.studio-browse-actions {
    grid-column: auto;
  }

  .studio-browse-actions {
    justify-content: stretch;
  }

  .studio-overview-button,
.studio-clear-button {
    flex: 1;
  }

  .studio-grid {
    grid-template-columns: 1fr;
  }

  .studio-card-copy {
    min-height: 0;
    padding: 23px 21px 25px;
  }

  .executive-tier .studio-card h4 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
.studio-directory-card,
.studio-latest-links button {
    transition: none;
  }

  .studio-directory-card:hover,
.studio-directory-card:focus-visible {
    transform: none;
  }
}

.studio-card-stage--published {
  border-color: rgba(160, 219, 188, 0.5);
  color: #c7ead8;
}

.studio-card-stage--in-testing {
  border-color: rgba(213, 154, 175, 0.55);
  color: #efc1d1;
}

.studio-card-stage--studio-infrastructure {
  border-color: rgba(188, 176, 159, 0.4);
  color: #d4c8b8;
}

.studio-noscript {
  padding: 34px;
  border: 1px solid rgba(238, 215, 227, 0.14);
  background: rgba(255,255,255,.02);
}

.studio-noscript h3 {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
}

.studio-noscript p {
  margin-top: 12px;
  line-height: 1.7;
}

@media (max-width: 620px) {
  .studio-search-field input,
  .studio-select-field select {
    font-size: 16px;
  }

  .studio-search-field label,
  .studio-select-field label,
  .studio-directory-card > span,
  .studio-latest-links button,
  .studio-overview-button,
  .studio-clear-button,
  .studio-view-collection,
  .studio-card-stage,
  .studio-card-family,
  .studio-card-details summary,
  .studio-card-release span,
  .studio-card-link {
    font-size: 11px;
  }

  .studio-fallback-directory {
    grid-template-columns: 1fr;
  }
}

/* Build Studio v41 — compact editorial portfolio */

.studio-page .site-shell {
  overflow: clip;
}

.studio-page .nav-inner,
.studio-hero,
.studio-introduction,
.studio-latest,
.studio-closing {
  width: min(1260px, calc(100% - 64px));
}

.studio-hero {
  padding: 62px 0 72px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .68fr);
  gap: clamp(46px, 5.5vw, 78px);
}

.studio-hero::after {
  right: 40.5%;
  bottom: 16%;
  height: 15%;
}

.executive-tier .studio-hero h1 {
  max-width: 8.5ch;
  font-size: clamp(62px, 6.7vw, 96px);
  line-height: .91;
}

.studio-hero .lead {
  margin-top: 27px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.studio-hero-stat {
  margin-top: 28px;
  padding-top: 20px;
}

.studio-hero-stat strong {
  font-size: clamp(40px, 4vw, 58px);
}

.studio-hero-note {
  margin-top: 16px;
  font-size: 11px;
}

.studio-founder-portrait {
  padding: 12px 12px 0;
  transform: rotate(.7deg);
}

.studio-founder-portrait::before {
  inset: -15px 15px 22px -13px;
  transform: rotate(-2deg);
}

.studio-founder-portrait img {
  height: clamp(410px, 37vw, 535px);
}

.studio-founder-portrait figcaption {
  min-height: 60px;
  padding: 14px 3px 13px;
}

.studio-introduction {
  padding: 58px 0 62px;
  grid-template-columns: minmax(0, .72fr) minmax(360px, 1fr);
  gap: clamp(44px, 6vw, 84px);
}

.executive-tier .studio-introduction h2 {
  max-width: 11ch;
  font-size: clamp(43px, 4.2vw, 59px);
  line-height: 1;
}

.studio-introduction > div:last-child {
  padding-top: 2px;
  font-size: 15px;
  line-height: 1.68;
}

.studio-introduction > div:last-child p + p {
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.65;
}

.studio-latest {
  margin-bottom: 72px;
  padding: 20px;
  grid-template-columns: minmax(300px, .82fr) minmax(440px, 1fr);
  gap: clamp(24px, 3.4vw, 48px);
}

.studio-latest-copy {
  min-width: 0;
  padding: clamp(20px, 2.4vw, 34px);
}

.executive-tier .studio-latest h2 {
  max-width: 12ch;
  margin-top: 12px;
  font-size: clamp(42px, 4.1vw, 58px);
  line-height: 1;
}

.studio-latest-copy > p:last-of-type {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.65;
}

.studio-latest-links {
  min-width: 0;
  max-width: 100%;
  margin-top: 22px;
  gap: 6px;
}

.studio-latest-links button {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 10px;
}

.studio-son-feature {
  min-width: 0;
  width: 100%;
  margin-top: 16px;
  padding: 9px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(238, 215, 227, .15);
  background: rgba(255, 255, 255, .025);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.studio-son-feature:hover,
.studio-son-feature:focus-visible {
  border-color: rgba(213, 154, 175, .56);
  background: rgba(141, 47, 86, .16);
}

.studio-son-feature-visual {
  width: 74px;
  aspect-ratio: 1;
  background-image: url('../images/studio/thumbs/greatness-of-a-son-320.webp');
  background-position: center;
  background-size: cover;
}

.studio-son-feature > span:last-child {
  min-width: 0;
}

.studio-son-feature small,
.studio-son-feature strong,
.studio-son-feature em {
  display: block;
}

.studio-son-feature small {
  color: var(--accent-soft);
  font-size: 8px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.studio-son-feature strong {
  margin-top: 4px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
}

.studio-son-feature em {
  margin-top: 5px;
  color: #a99aa4;
  font-size: 9px;
  font-style: normal;
  line-height: 1.45;
}

.studio-latest-visual img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.studio-latest-visual figcaption {
  min-height: 52px;
}

.studio-atlas {
  padding: 68px max(32px, calc((100vw - 1260px) / 2)) 78px;
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
}

.studio-atlas-heading {
  max-width: 1260px;
  margin-bottom: 38px;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .6fr);
  gap: clamp(42px, 6vw, 82px);
}

.executive-tier .studio-atlas-heading h2 {
  max-width: 13ch;
  font-size: clamp(45px, 4.7vw, 64px);
  line-height: .98;
}

.studio-atlas-intro {
  font-size: 13px;
  line-height: 1.65;
}

.studio-directory {
  width: min(1260px, 100%);
  margin-bottom: 22px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(238, 215, 227, .12);
}

.studio-directory-card,
.studio-directory-card--overview {
  grid-column: auto;
  min-height: 124px;
  padding: 17px 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  gap: 10px;
  border: 0;
}

.studio-directory-card > span {
  font-size: 9px;
  line-height: 1.35;
}

.studio-directory-card > strong {
  font-size: 31px;
}

.studio-directory-card > small {
  align-self: end;
  display: -webkit-box;
  overflow: hidden;
  font-size: 9px;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.studio-browse {
  top: 70px;
  width: min(1260px, 100%);
  padding: 12px;
  grid-template-columns: minmax(250px, 1.45fr) repeat(3, minmax(125px, .62fr)) auto;
  gap: 9px;
}

.studio-search-field label,
.studio-select-field label {
  margin-bottom: 5px;
  font-size: 9px;
}

.studio-search-field input,
.studio-select-field select,
.studio-overview-button,
.studio-clear-button {
  min-height: 40px;
}

.studio-results-status {
  width: min(1260px, 100%);
  margin-top: 12px;
}

.studio-collections {
  width: min(1260px, 100%);
  margin-top: 46px;
}

.studio-collections[data-view="overview"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.studio-collection--overview {
  padding: 25px;
  border: 1px solid rgba(238, 215, 227, .13);
  background:
    radial-gradient(circle at 92% 3%, rgba(141, 47, 86, .12), transparent 31%),
    linear-gradient(145deg, rgba(27, 17, 29, .82), rgba(12, 8, 16, .9));
}

.studio-collection--overview .studio-collection-heading {
  margin-bottom: 20px;
  padding-bottom: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(170px, .62fr);
  gap: 18px;
  align-items: start;
}

.studio-collection--overview .studio-collection-heading .eyebrow {
  margin-bottom: 9px;
}

.executive-tier .studio-collection--overview .studio-collection-heading h3 {
  max-width: 10ch;
  font-size: clamp(33px, 3.25vw, 46px);
  line-height: 1;
}

.studio-collection--overview .studio-collection-summary {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
}

.studio-collection--overview .studio-collection-summary strong {
  font-size: 35px;
}

.studio-collection--overview .studio-collection-summary p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 10px;
  line-height: 1.52;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.studio-collection--overview .studio-view-collection {
  min-height: 32px;
  margin-top: 8px;
  font-size: 9px;
}

.studio-collection--overview .studio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.studio-card--preview {
  content-visibility: visible;
  contain: none;
  box-shadow: 0 12px 30px rgba(2, 1, 5, .18);
}

.studio-card--preview:hover {
  transform: translateY(-2px);
}

.studio-card--preview .studio-card-visual {
  aspect-ratio: 4 / 3;
}

.studio-card--preview .studio-card-copy {
  min-height: 62px;
  padding: 13px 14px 14px;
}

.studio-card--preview .studio-card-meta,
.studio-card--preview .studio-card-family,
.studio-card--preview .studio-card-note,
.studio-card--preview .studio-card-details,
.studio-card--preview .studio-card-release,
.studio-card--preview .studio-card-link {
  display: none;
}

.executive-tier .studio-card--preview h4 {
  margin: 0;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.06;
}

.studio-collections[data-view="results"] {
  display: block;
}

.studio-collections[data-view="results"] .studio-collection + .studio-collection {
  margin-top: 76px;
}

.studio-collections[data-view="results"] .studio-collection-heading {
  margin-bottom: 30px;
  padding-bottom: 24px;
}

.executive-tier .studio-collections[data-view="results"] .studio-collection-heading h3 {
  font-size: clamp(42px, 4.3vw, 58px);
}

.studio-collections[data-view="results"] .studio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.studio-collections[data-view="results"] .studio-card-visual {
  aspect-ratio: 16 / 10;
}

.studio-collections[data-view="results"] .studio-card-copy {
  padding: 21px 22px 23px;
}

.executive-tier .studio-collections[data-view="results"] .studio-card h4 {
  font-size: clamp(27px, 2.25vw, 34px);
}

.studio-collections[data-view="results"] .studio-card-note {
  margin-top: 13px;
  font-size: 12px;
  line-height: 1.58;
}

.studio-collections[data-view="results"] .studio-card-details {
  margin-top: 14px;
  padding-top: 11px;
}

.studio-collections[data-view="results"] .studio-card-release {
  margin-top: 16px;
  padding-top: 15px;
}

.studio-closing {
  padding: 84px 0 94px;
}

.executive-tier .studio-closing h2 {
  font-size: clamp(54px, 6.4vw, 82px);
}

.studio-closing > p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 17px;
}

.studio-closing .btn {
  margin-top: 30px;
}

@media (max-width: 1100px) {
.studio-directory {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .studio-directory-card,
.studio-directory-card--overview {
    flex: 0 0 205px;
    scroll-snap-align: start;
  }

  .studio-browse {
    grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(120px, .7fr));
  }

  .studio-browse-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 860px) {
.studio-hero {
    grid-template-columns: minmax(0, 1fr) minmax(275px, .62fr);
    gap: 34px;
  }

  .executive-tier .studio-hero h1 {
    font-size: clamp(54px, 8.6vw, 72px);
  }

  .studio-founder-portrait img {
    height: 430px;
  }

  .studio-introduction,
.studio-latest,
.studio-atlas-heading {
    grid-template-columns: 1fr;
  }

  .studio-introduction {
    gap: 24px;
  }

  .studio-latest {
    gap: 18px;
  }

  .studio-latest-visual {
    order: -1;
  }

  .studio-browse {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-search-field {
    grid-column: 1 / -1;
  }

  .studio-browse-actions {
    grid-column: auto;
    justify-content: stretch;
  }

  .studio-overview-button,
.studio-clear-button {
    flex: 1;
  }

  .studio-collections[data-view="overview"] {
    grid-template-columns: 1fr;
  }

  .studio-collections[data-view="results"] .studio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
.studio-page .nav-inner,
.studio-hero,
.studio-introduction,
.studio-latest,
.studio-closing {
    width: calc(100% - 32px);
  }

  .studio-hero {
    padding: 36px 0 50px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .executive-tier .studio-hero h1 {
    max-width: 9ch;
    font-size: clamp(49px, 14vw, 64px);
    line-height: .93;
  }

  .studio-hero .lead {
    margin-top: 21px;
    font-size: 15px;
  }

  .studio-hero-stat {
    margin-top: 22px;
    padding-top: 16px;
  }

  .studio-hero-note {
    max-width: 48ch;
    margin-top: 13px;
  }

  .studio-founder-portrait {
    width: 100%;
    padding: 9px 9px 0;
    transform: none;
  }

  .studio-founder-portrait::before {
    inset: -9px 9px 14px -8px;
    transform: rotate(-1.2deg);
  }

  .studio-founder-portrait img {
    height: min(72vw, 380px);
    object-position: center 17%;
  }

  .studio-founder-portrait figcaption {
    min-height: 54px;
    padding: 11px 2px;
    flex-direction: row;
  }

  .studio-founder-portrait figcaption span:last-child {
    text-align: right;
  }

  .studio-introduction {
    padding: 46px 0 50px;
  }

  .executive-tier .studio-introduction h2 {
    font-size: 42px;
  }

  .studio-introduction > div:last-child {
    font-size: 14px;
  }

  .studio-latest {
    margin-bottom: 48px;
    padding: 10px;
  }

  .studio-latest-copy {
    padding: 23px 13px 17px;
  }

  .executive-tier .studio-latest h2 {
    font-size: 42px;
  }

  .studio-latest-copy > p:last-of-type {
    margin-top: 16px;
    font-size: 13px;
  }

  .studio-latest-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 7px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .studio-latest-links button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .studio-son-feature {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .studio-son-feature-visual {
    width: 66px;
  }

  .studio-latest-visual figcaption {
    min-height: 58px;
    padding: 0 9px;
    flex-direction: row;
  }

  .studio-latest-visual figcaption span:last-child {
    text-align: right;
  }

  .studio-atlas {
    padding: 50px 16px 60px;
  }

  .studio-atlas-heading {
    margin-bottom: 28px;
    gap: 20px;
  }

  .executive-tier .studio-atlas-heading h2 {
    font-size: 42px;
  }

  .studio-directory {
    margin-bottom: 16px;
  }

  .studio-directory-card,
.studio-directory-card--overview {
    flex-basis: 214px;
    min-height: 108px;
    padding: 15px;
  }

  .studio-directory-card > small {
    display: none;
  }

  .studio-browse {
    padding: 10px;
    gap: 8px;
  }

  .studio-search-field label,
.studio-select-field label,
.studio-directory-card > span,
.studio-latest-links button,
.studio-overview-button,
.studio-clear-button,
.studio-view-collection,
.studio-card-stage,
.studio-card-details summary,
.studio-card-release span,
.studio-card-link {
    font-size: 10px;
  }

  .studio-results-status {
    margin-top: 9px;
  }

  .studio-collections {
    margin-top: 32px;
  }

  .studio-collections[data-view="overview"] {
    gap: 12px;
  }

  .studio-collection--overview {
    padding: 17px;
  }

  .studio-collection--overview .studio-collection-heading {
    margin-bottom: 15px;
    padding-bottom: 15px;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .executive-tier .studio-collection--overview .studio-collection-heading h3 {
    max-width: none;
    font-size: 34px;
  }

  .studio-collection--overview .studio-collection-summary {
    grid-template-columns: 39px minmax(0, 1fr);
    gap: 10px;
  }

  .studio-collection--overview .studio-collection-summary strong {
    font-size: 31px;
  }

  .studio-collection--overview .studio-collection-summary p {
    -webkit-line-clamp: 2;
  }

  .studio-collection--overview .studio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .studio-card--preview .studio-card-stage {
    display: none;
  }

  .studio-card--preview .studio-card-visual {
    aspect-ratio: 1;
  }

  .studio-card--preview .studio-card-copy {
    min-height: 56px;
    padding: 10px 9px 11px;
  }

  .executive-tier .studio-card--preview h4 {
    font-size: 15px;
    line-height: 1.08;
  }

  .studio-collections[data-view="results"] .studio-collection-heading {
    margin-bottom: 22px;
    padding-bottom: 18px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .executive-tier .studio-collections[data-view="results"] .studio-collection-heading h3 {
    font-size: 39px;
  }

  .studio-collections[data-view="results"] .studio-collection-summary {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
  }

  .studio-collections[data-view="results"] .studio-collection-summary strong {
    font-size: 34px;
  }

  .studio-collections[data-view="results"] .studio-grid {
    grid-template-columns: 1fr;
  }

  .studio-collections[data-view="results"] .studio-card-visual {
    aspect-ratio: 16 / 9;
  }

  .studio-collections[data-view="results"] .studio-card-copy {
    padding: 20px 20px 22px;
  }

  .studio-closing {
    padding: 68px 0 76px;
  }

  .executive-tier .studio-closing h2 {
    font-size: 50px;
  }

  .studio-closing > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 15px;
  }
}

@media (max-width: 390px) {
.studio-browse-actions {
    grid-column: 1 / -1;
  }

  .studio-collection--overview .studio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-card--preview:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
.studio-directory,
.studio-latest-links {
    scroll-behavior: auto;
  }
}

/* Evidence-safe catalogue and accessibility refinements. */
.studio-directory-hint {
  width: min(1260px, 100%);
  margin: 0 auto 10px;
  color: #b9aab4;
  font-size: 12px;
  line-height: 1.55;
}

.studio-search-field input::placeholder {
  color: #b9aab4;
  opacity: 1;
}

.studio-results-status,
.studio-collection--overview .studio-collection-summary p,
.studio-directory-card > small,
.studio-view-collection,
.studio-card-stage,
.studio-card-family,
.studio-card-details summary,
.studio-card-details dt,
.studio-card-details dd,
.studio-card-link,
.studio-son-feature small,
.studio-son-feature em {
  font-size: 11px;
}

.studio-card-visual picture,
.studio-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.studio-card-visual img {
  object-fit: cover;
}

.studio-card-title-link {
  color: inherit;
  text-decoration: none;
}

.studio-card-title-link:hover,
.studio-card-title-link:focus-visible {
  color: var(--accent-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.studio-card-stage--details-not-publicly-announced {
  border-color: rgba(211, 196, 205, 0.38);
  color: #d5c8d0;
}

.studio-project-detail {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
  padding: clamp(56px, 8vw, 112px) 0 clamp(76px, 10vw, 138px);
}

.studio-project-detail__back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-project-detail__layout {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.66fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: start;
}

.studio-project-detail h1 {
  max-width: 13ch;
  margin-top: 18px;
  font-size: clamp(52px, 7.2vw, 92px);
  line-height: 0.95;
}

.studio-project-detail__summary {
  max-width: 62ch;
  margin-top: 26px;
  color: #cfc2ca;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.72;
}

.studio-project-detail__facts {
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(238, 215, 227, 0.14);
  border-left: 1px solid rgba(238, 215, 227, 0.14);
}

.studio-project-detail__facts > div {
  min-height: 116px;
  padding: 18px;
  border-right: 1px solid rgba(238, 215, 227, 0.14);
  border-bottom: 1px solid rgba(238, 215, 227, 0.14);
}

.studio-project-detail__facts dt {
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.studio-project-detail__facts dd {
  margin: 11px 0 0;
  color: var(--ivory);
  font-size: 14px;
  line-height: 1.55;
}

.studio-project-detail__visual {
  margin: 0;
  padding: 12px 12px 0;
  border: 1px solid rgba(238, 215, 227, 0.16);
  background: rgba(255, 255, 255, 0.025);
}

.studio-project-detail__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.studio-project-detail__visual figcaption {
  padding: 15px 2px;
  color: #b9aab4;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 760px) {
.studio-directory-hint {
    width: 100%;
  }

  .studio-card--preview .studio-card-stage {
    display: inline-flex;
    max-width: calc(100% - 18px);
    min-height: 25px;
    left: 9px;
    bottom: 9px;
    padding-inline: 8px;
    font-size: 9px;
  }

  .studio-project-detail {
    width: calc(100% - 32px);
  }

  .studio-project-detail__layout {
    grid-template-columns: 1fr;
  }

  .studio-project-detail__visual {
    order: -1;
  }

  .studio-project-detail__facts {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
.studio-directory-card,
.studio-card,
.studio-card-title-link {
    scroll-behavior: auto;
    transition: none;
  }
}

/* Public presentation pass — tighter editorial rhythm without changing the brand. */

html {
  scroll-padding-top: 92px;
}

.studio-page .studio-browse {
  position: relative;
  top: auto;
  z-index: 2;
}

.studio-page .studio-collection {
  scroll-margin-top: 96px;
}

.executive-tier .footer {
  padding-block: clamp(44px, 4.5vw, 58px) clamp(48px, 5vw, 64px);
}

.executive-tier .footer-inner {
  row-gap: 30px;
}

.executive-tier .footer-nav a {
  min-height: 42px;
}

@media (min-width: 821px) {
/* Studio: the directory stays visible in the document flow instead of covering work. */
  .studio-page .studio-atlas {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .studio-page .studio-atlas-heading {
    margin-bottom: 32px;
  }

  .studio-page .studio-collections {
    margin-top: 38px;
  }

  .studio-page .studio-closing {
    padding-block: 70px 80px;
  }
}

@media (max-width: 820px) {
.studio-page .studio-atlas {
    padding-top: 52px;
    padding-bottom: 60px;
  }

  .studio-page .studio-closing {
    padding-block: 62px 70px;
  }

  .executive-tier .footer {
    padding-block: 44px 52px;
  }
}

/* Brand system v45 — Fraunces, Manrope, and the sculptural NAS emblem. */
@font-face {
  font-family: "Fraunces NAS";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/fraunces-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces NAS";
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/fraunces-latin-variable-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope NAS";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
}

:root {
  --font-display: "Fraunces NAS", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Manrope NAS", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-accent: "Fraunces NAS", "Iowan Old Style", Georgia, serif;
}

body.executive-tier {
  font-family: var(--font-body);
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.executive-tier h1,
.executive-tier h2,
.executive-tier h3,
.executive-tier .footer-brand {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 430;
  letter-spacing: -0.042em;
}

.executive-tier h1 {
  text-wrap: balance;
}

.executive-tier .eyebrow,
.executive-tier .nav-links,
.executive-tier .btn {
  font-family: var(--font-body);
  font-weight: 650;
}

.executive-tier .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.executive-tier .brand::before {
  content: "";
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: url("../images/brand/nicole-nas-emblem-256.webp") center / contain no-repeat;
  filter: drop-shadow(0 7px 15px rgba(106, 34, 65, 0.24));
  transform: translateY(-1px);
}

.executive-tier .brand strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-optical-sizing: auto;
  font-weight: 470;
  letter-spacing: -0.026em;
  white-space: nowrap;
}

.executive-tier .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.executive-tier .footer-brand::before {
  content: "";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  background: url("../images/brand/nicole-nas-emblem-256.webp") center / contain no-repeat;
  filter: drop-shadow(0 7px 14px rgba(106, 34, 65, 0.2));
}

@media (max-width: 760px) {
.executive-tier .brand {
    gap: 8px;
  }

  .executive-tier .brand::before {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .executive-tier .brand strong {
    font-size: clamp(13.5px, 4.2vw, 17px);
  }
}

@media (max-width: 360px) {
.executive-tier .brand::before {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }

  .executive-tier .brand strong {
    font-size: 13px;
  }
}

/* Release-boundary keyboard focus: rings stay inside horizontal scrollers. */
.studio-directory-card:focus-visible {
  position: relative;
  z-index: 2;
  outline: 2px solid #f3d0dc;
  outline-offset: -5px;
  box-shadow: inset 0 0 0 2px #130b15, inset 0 0 0 4px #f3d0dc;
}

.studio-collection-heading h3[tabindex="-1"]:focus,
.studio-collection-heading h3[data-studio-focus-target]:focus,
.studio-empty h3[tabindex="-1"]:focus {
  outline: 2px solid var(--accent-soft);
  outline-offset: 6px;
  scroll-margin-top: 112px;
}

@media (prefers-reduced-motion: reduce) {
  .studio-directory-card:focus-visible {
    transform: none;
  }
}
