/* ==========================================================================
   CHAZ ORNELAS — Personal Portfolio Design System
   Editorial, director-forward. Mineral-teal accent: welcoming and human,
   with a clinical edge. Textured layers (dot matrix, hairline grid, torn
   paper) follow the Johns Hopkins-style editorial treatment. Mobile-first.
   ========================================================================== */
:root {
  --color-bg-deep: #07090a;          /* Raw luxury dark layout */
  --color-surface: #0e1214;          /* Elevated panel surface */
  --color-surface-2: #141a1d;        /* Raised surface */
  --color-text-primary: #ffffff;
  --color-text-secondary: #9aa7b1;
  --color-text-faint: #64707a;

  --color-accent: #4ab8a8;           /* Mineral teal */
  --color-accent-hi: #7fd8c9;        /* Seafoam highlight */
  --color-accent-deep: #0e7c6e;      /* Ink-teal for light backgrounds */
  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --color-border-hair: rgba(255, 255, 255, 0.09);

  /* Paper system (light editorial sections with torn edges) */
  --color-paper: #efece5;
  --color-paper-deep: #e6e2d8;
  --color-paper-ink: #132320;
  --color-paper-muted: #4a5a58;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1160px;
  --max-narrow: 780px;

  --fs-display: clamp(2.6rem, 6vw + 1rem, 5rem);
  --fs-h1: clamp(2.2rem, 5vw + 0.5rem, 3.8rem);
  --fs-h2: clamp(1.8rem, 3.5vw + 0.5rem, 2.6rem);

  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-deep);
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg-deep);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--color-text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p { max-width: 68ch; }
a { color: inherit; text-decoration: none; transition: var(--transition-smooth); }
img, video { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--color-accent-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 300;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 6px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

.content-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 700px) { .content-container { padding: 0 40px; } }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
}

.text-serif { font-family: var(--font-display); font-weight: 500; }

/* ==========================================================================
   NAVIGATION (responsive with mobile toggle)
   ========================================================================== */
.portfolio-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 9, 10, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: var(--header-h);
}

@media (min-width: 700px) { .nav-container { padding: 18px 40px; } }

.nav-brand {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--color-text-primary);
}
.nav-brand:hover { color: var(--color-accent-hi); }

/* Signature wordmark (900x272 source with generous whitespace) */
.nav-brand img {
  display: block;
  height: 46px;
  width: auto;
  transition: var(--transition-smooth);
}
.nav-brand:hover img { opacity: 0.85; }
@media (min-width: 700px) { .nav-brand img { height: 52px; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 30px;
}

@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--color-text-primary); }

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 20px;
  border-radius: 4px;
}
.nav-cta:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-hi) !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--color-border-hair);
  border-radius: 6px;
  cursor: pointer;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; margin: 0 auto; transition: var(--transition-smooth); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-bg-deep);
  padding: calc(var(--header-h) + 24px) 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
@media (min-width: 900px) { .mobile-menu { display: none; } }
.mobile-menu a {
  padding: 16px 4px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid var(--color-border-subtle);
}
.mobile-menu a[aria-current="page"] { color: var(--color-accent-hi); }
body.menu-open { overflow: hidden; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-primary {
  background: var(--color-accent);
  color: #0a0a0a;
  border: 1px solid var(--color-accent);
}
.btn-primary:hover { background: var(--color-accent-hi); border-color: var(--color-accent-hi); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent-hi); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent-hi);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.link-arrow:hover { border-bottom-color: var(--color-accent-hi); }

/* ==========================================================================
   HERO
   ========================================================================== */
.profile-hero {
  padding: calc(var(--header-h) + 80px) 0 100px;
  border-bottom: 1px solid var(--color-border-subtle);
  /* TEXTURE SWAP #1: dot-matrix layer. Replace the first radial-gradient
     with url('/images/textures/dot-matrix.png') to use a custom tile. */
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 1.5px),
    radial-gradient(circle at 12% 15%, rgba(74,184,168,0.12), transparent 50%),
    radial-gradient(circle at 88% 85%, rgba(38,99,128,0.10), transparent 55%);
  background-size: 24px 24px, auto, auto;
}

@media (min-width: 700px) { .profile-hero { padding: calc(var(--header-h) + 120px) 0 120px; } }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.profile-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-display);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-bottom: 30px;
  color: #fff;
}

.hero-bio {
  font-size: clamp(1.1rem, 1.4vw + 0.7rem, 1.35rem);
  font-weight: 300;
  line-height: 1.7;
  max-width: 60ch;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border-subtle);
  max-width: 720px;
}
@media (min-width: 700px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #fff;
}
.hero-stats span {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-faint);
  margin-top: 6px;
}

/* ==========================================================================
   BACKGROUND PLATES & VIDEO HERO (placeholder slots — swap files in /images/bg/)
   The image sits on a ::before layer at low opacity beneath the existing
   gradients, so a missing file degrades silently to the plain dark hero.
   ========================================================================== */
.bg-plate { position: relative; }
.bg-plate::before {
  content: '';
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
.bg-plate > .content-container { position: relative; z-index: 2; }

.bg-home::before   { background-image: url('images/bg/bg-hero-home.webp'); }
.bg-health::before { background-image: url('images/bg/bg-hero-health.webp'); }
.bg-music::before  { background-image: url('images/bg/bg-hero-music.webp'); }
.bg-about::before  { background-image: url('images/bg/bg-hero-about.webp'); opacity: 0.10; }

/* Video hero (health-wellness). Ambient full-bleed video on desktop;
   on mobile the ambient layer hides and a dedicated framed reel player
   (.hero-reel) appears below the intro text instead, so the footage is
   front-and-center without crowding the copy. */
.video-hero { overflow: hidden; }
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
}
@media (min-width: 900px) {
  .hero-video-wrap { display: block; }
  .hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
  }
}
.video-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--color-bg-deep) 0%, rgba(7, 9, 10, 0.20) 55%, rgba(7, 9, 10, 0.04) 100%);
}

/* Highlight-reel section, mobile and tablet only. The lightweight mobile cut
   runs edge to edge with no controls, autoplaying muted on a loop like a
   moving poster. Hidden at >=900px, where the full reel plays behind the hero. */
.reel-section {
  padding: 0 0 8px;
  border-bottom: 1px solid var(--color-border-subtle);
}
.reel-video {
  width: 100%;
  display: block;
  background: #000;
}
.hero-reel-caption {
  display: block;
  margin: 14px 0 28px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}
@media (min-width: 900px) { .reel-section { display: none; } }

/* ==========================================================================
   SECTION SCAFFOLDING
   ========================================================================== */
section { padding: clamp(72px, 12vw, 130px) 0; }
.section-border { border-bottom: 1px solid var(--color-border-subtle); }

.section-header {
  max-width: 640px;
  margin-bottom: 60px;
}
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h2);
  margin-bottom: 18px;
  color: #fff;
}
.section-header p { font-size: 1.1rem; }
.section-header.center p { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   WORK GRID / ARCHIVE
   ========================================================================== */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 760px) { .work-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 40px; } }

.work-card { display: flex; flex-direction: column; }

.card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 6px;
  margin-bottom: 26px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.card-visual img { width: 100%; height: 100%; object-fit: cover; }

.card-visual.is-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 14% 20%;
  background:
    radial-gradient(circle at 30% 20%, rgba(74,184,168,0.10), transparent 60%),
    var(--color-surface-2);
}
.card-visual.is-logo img { object-fit: contain; filter: brightness(1.05); max-height: 100%; }

.card-visual.is-plate {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 28% 22%, rgba(74,184,168,0.14), transparent 60%),
    radial-gradient(circle at 82% 88%, rgba(255,255,255,0.03), transparent 55%),
    var(--color-surface-2);
}
.plate-monogram {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  text-align: center;
  line-height: 1.05;
}

.project-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(7, 9, 10, 0.82);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 7px 13px;
  border-radius: 3px;
}

.card-meta .client-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.card-meta h3 { font-size: 1.5rem; margin-bottom: 12px; transition: var(--transition-smooth); }
.card-meta p { font-size: 1rem; margin-bottom: 18px; }

.card-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin: 4px 0 18px;
}
.card-metrics .metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.card-metrics .metric span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-faint);
  margin-top: 6px;
  max-width: 22ch;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.tag-row span {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border-hair);
  border-radius: 20px;
  padding: 5px 13px;
}

.work-card:hover .card-visual { border-color: rgba(74,184,168,0.4); transform: translateY(-4px); }
.work-card:hover h3 { color: var(--color-accent-hi); }

.role-flag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-hi);
  background: rgba(74,184,168,0.12);
  border: 1px solid rgba(74,184,168,0.25);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}

/* ==========================================================================
   CAPABILITIES / DISCIPLINES
   ========================================================================== */
.discipline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .discipline-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .discipline-grid { grid-template-columns: repeat(4, 1fr); } }

.discipline {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 8px;
  padding: 30px 28px;
  transition: var(--transition-smooth);
}
.discipline:hover { border-color: rgba(74,184,168,0.3); transform: translateY(-2px); }
.discipline .num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-accent);
  font-weight: 600;
}
.discipline h3 { font-size: 1.15rem; margin: 14px 0 10px; }
.discipline p { font-size: 0.92rem; color: var(--color-text-secondary); }

/* ==========================================================================
   CLIENT LOGO STRIP
   ========================================================================== */
.logo-strip-section {
  padding: clamp(56px, 9vw, 96px) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
  gap: 32px 20px;
  margin-top: 44px;
}

@media (min-width: 600px) {
  .logo-strip { grid-template-columns: repeat(3, 1fr); gap: 36px 24px; }
}

@media (min-width: 960px) {
  .logo-strip { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 44px 32px; }
}

.logo-strip img {
  width: 100%;
  height: 44px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.6) opacity(0.45);
  transition: var(--transition-smooth);
}

.logo-strip img:hover {
  filter: grayscale(0) brightness(1) opacity(1);
  transform: scale(1.04);
}

/* Compact variant for sub-pages */
.logo-strip.compact { margin-top: 32px; }
.logo-strip.compact img { height: 38px; max-width: 120px; }

/* ==========================================================================
   VENTURES
   ========================================================================== */
.ventures-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 760px) { .ventures-grid { grid-template-columns: repeat(2, 1fr); } }

.venture-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 8px;
  padding: 40px;
  transition: var(--transition-smooth);
}
@media (min-width: 700px) { .venture-card { padding: 52px; } }
.venture-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.venture-card .venture-logo { height: 20px; width: auto; max-width: 100%; margin-bottom: 8px; }
.venture-role {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: 22px;
}
.venture-card p { font-size: 1.02rem; margin-bottom: 30px; }
.venture-card:hover { border-color: rgba(74,184,168,0.28); box-shadow: 0 24px 50px rgba(0,0,0,0.45); }
.venture-card:hover .link-arrow { border-bottom-color: var(--color-accent-hi); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testimonial-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 8px;
  padding: 32px;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 0.7;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.testimonial blockquote { color: #fff; font-size: 1rem; line-height: 1.6; margin-bottom: 22px; flex-grow: 1; }
.testimonial figcaption { border-top: 1px solid var(--color-border-subtle); padding-top: 16px; }
.testimonial .t-name { display: block; font-weight: 700; color: #fff; font-size: 0.92rem; }
.testimonial .t-role { display: block; font-size: 0.8rem; color: var(--color-text-faint); margin-top: 2px; }

/* ==========================================================================
   FOCUS TEASER (home → health-science)
   ========================================================================== */
.focus-teaser {
  background:
    radial-gradient(circle at 85% 20%, rgba(74,184,168,0.10), transparent 55%),
    var(--color-surface);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}
.focus-layout { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .focus-layout { grid-template-columns: 1.1fr 0.9fr; gap: 64px; } }
.focus-copy h2 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h2); margin: 16px 0 20px; color: #fff; }
.focus-copy p { font-size: 1.08rem; margin-bottom: 28px; }
.focus-logos { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.focus-logos .chip {
  border: 1px solid var(--color-border-hair);
  border-radius: 6px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}
.focus-logos .chip small { display:block; color: var(--color-text-faint); font-weight: 500; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 3px; }

/* ==========================================================================
   HEALTH-SCIENCE PAGE
   ========================================================================== */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 70px;
  border-bottom: 1px solid var(--color-border-subtle);
  /* TEXTURE SWAP #2: hairline grid layer. Replace the two linear-gradients
     with url('/images/textures/grid.png') to use a custom tile. */
  background:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px),
    radial-gradient(circle at 88% 12%, rgba(74,184,168,0.10), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(38,99,128,0.08), transparent 55%);
  background-size: 56px 56px, 56px 56px, auto, auto;
}
@media (min-width: 700px) { .page-hero { padding: calc(var(--header-h) + 90px) 0 90px; } }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h1);
  line-height: 1.06;
  margin: 22px 0 24px;
  max-width: 20ch;
  color: #fff;
}
.page-hero .lead { font-size: clamp(1.1rem, 1.4vw + 0.7rem, 1.3rem); font-weight: 300; color: var(--color-text-secondary); max-width: 60ch; margin-bottom: 34px; }

.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 0.82rem; color: var(--color-text-faint);
  margin-bottom: 8px;
}
.breadcrumbs a { color: var(--color-text-secondary); }
.breadcrumbs a:hover { color: var(--color-accent-hi); }

.pillars {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 700px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 8px;
  padding: 34px 30px;
}
.pillar h3 { color: var(--color-accent-hi); font-size: 1.2rem; margin-bottom: 12px; }
.pillar p { font-size: 0.96rem; }

.showcase-list { display: flex; flex-direction: column; gap: 24px; }
.showcase-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 10px;
  padding: 24px;
  transition: var(--transition-smooth);
}
@media (min-width: 800px) { .showcase-item { grid-template-columns: 0.5fr 1fr; padding: 28px; gap: 40px; } }
.showcase-item:hover { border-color: rgba(74,184,168,0.28); }
.showcase-visual {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(74,184,168,0.12), transparent 60%),
    var(--color-surface-2);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border-subtle);
}
.showcase-visual img { width: 100%; height: 100%; object-fit: cover; }
.showcase-visual.is-logo { padding: 16% 20%; }
.showcase-visual.is-logo img { object-fit: contain; }
/* Video stills / campaign frames — show the whole frame, letterboxed on dark */
.showcase-visual.is-still { background: #0a0c0e; }
.showcase-visual.is-still img { object-fit: contain; }
.showcase-visual .plate-monogram { font-size: clamp(1.8rem, 5vw, 2.6rem); }
.showcase-body .client-name { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-accent); margin-bottom: 8px; }
.showcase-body h3 { font-size: 1.4rem; margin-bottom: 12px; }
.showcase-body p { font-size: 1rem; margin-bottom: 16px; }

.pitch-band {
  background:
    radial-gradient(circle at 15% 30%, rgba(74,184,168,0.12), transparent 55%),
    var(--color-surface);
  border-top: 1px solid var(--color-border-subtle);
}
.pitch-flex { display: flex; flex-direction: column; gap: 28px; }
@media (min-width: 900px) { .pitch-flex { flex-direction: row; justify-content: space-between; align-items: center; gap: 64px; } }
.pitch-flex h2 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h2); color: #fff; }
.pitch-flex .pitch-right { max-width: 520px; }
.pitch-flex .pitch-right p { font-size: 1.05rem; margin-bottom: 26px; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero-section { padding: calc(var(--header-h) + 60px) 0 100px; }
@media (min-width: 700px) { .about-hero-section { padding: calc(var(--header-h) + 90px) 0 120px; } }

.layout-split { display: grid; gap: 48px; align-items: start; }
@media (min-width: 900px) { .layout-split { grid-template-columns: 0.85fr 1.15fr; gap: 64px; } }

.about-visual-sticky { display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 900px) { .about-visual-sticky { position: sticky; top: calc(var(--header-h) + 24px); } }

.director-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 30% 20%, rgba(74,184,168,0.16), transparent 60%),
    linear-gradient(160deg, var(--color-surface-2), var(--color-bg-deep));
  display: flex; align-items: center; justify-content: center;
}
.director-img { width: 100%; height: 100%; object-fit: cover; }
.director-frame .frame-monogram {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 4.5rem);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.frame-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -80px 100px rgba(7,9,10,0.6);
}

.quick-facts-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 10px;
  padding: 28px;
}
.quick-facts-box h4 {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.quick-facts-box ul { display: flex; flex-direction: column; gap: 12px; }
.quick-facts-box li { font-size: 0.92rem; color: var(--color-text-secondary); }
.quick-facts-box li strong { color: #fff; font-weight: 600; }

.narrative-content .hero-eyebrow { margin-bottom: 18px; }
.narrative-content h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h1);
  line-height: 1.08;
  margin-bottom: 28px;
  color: #fff;
}
.narrative-content h3 { font-size: 1.4rem; margin: 40px 0 14px; color: #fff; }
.narrative-content p { margin-bottom: 20px; font-size: 1.05rem; }
.accent-paragraph {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #fff;
  border-left: 2px solid var(--color-accent);
  padding-left: 22px;
  margin-bottom: 28px !important;
}
.about-action-row { margin-top: 40px; }
.view-work-link { font-weight: 600; color: var(--color-accent-hi); }
.view-work-link:hover { color: #fff; }

/* ==========================================================================
   MUSIC PAGE
   ========================================================================== */
.track-list { display: flex; flex-direction: column; gap: 0; margin-top: 8px; counter-reset: track; }
.track-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border-subtle);
}
.track-row:first-child { border-top: 1px solid var(--color-border-subtle); }
.track-row .track-num { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-accent); font-weight: 600; }
.track-row h3 { font-size: 1.15rem; margin-bottom: 4px; }
.track-row p { font-size: 0.9rem; color: var(--color-text-faint); margin: 0; }
.track-row .track-kind { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-secondary); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(74,184,168,0.10), transparent 55%),
    var(--color-surface);
  border-top: 1px solid var(--color-border-subtle);
}
.cta-flex { display: flex; flex-direction: column; gap: 26px; }
@media (min-width: 900px) { .cta-flex { flex-direction: row; justify-content: space-between; align-items: center; gap: 64px; } }
.cta-flex h2 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h2); color: #fff; }
.cta-right { max-width: 500px; }
.cta-right p { font-size: 1.05rem; margin-bottom: 26px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.portfolio-footer {
  border-top: 1px solid var(--color-border-subtle);
  padding: 56px 0 40px;
  background: #050708;
}
.footer-top { display: grid; gap: 32px; margin-bottom: 44px; }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr 0.8fr 0.8fr; } }
.footer-brand { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: #fff; letter-spacing: 0.02em; }
.footer-brand img { display: block; height: 56px; width: auto; }
.footer-tag { color: var(--color-text-secondary); font-size: 0.92rem; margin-top: 12px; max-width: 40ch; }
.footer-col h4 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-accent); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer-col a { color: var(--color-text-secondary); }
.footer-col a:hover { color: #fff; }

.footer-flex {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border-subtle);
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) { .footer-flex { flex-direction: row; justify-content: space-between; text-align: left; } }
.copyright { font-size: 0.8rem; color: var(--color-text-faint); margin: 0; }
.footer-meta-links { display: flex; gap: 22px; }
.footer-meta-links a { font-size: 0.8rem; color: var(--color-text-secondary); }
.footer-meta-links a:hover { color: #fff; }

/* ==========================================================================
   PAPER SECTIONS & TEXTURE SYSTEM (JHU-style editorial layering)
   Light "torn paper" bands inside the dark layout. The torn edges are inline
   SVG placeholders; see images/textures/README.txt to swap in custom art.
   ========================================================================== */
.paper-section {
  position: relative;
  border: none;
  /* TEXTURE SWAP #3: paper surface. Replace the dot layer + gradient with
     url('/images/textures/paper-texture.jpg') center/cover for real paper. */
  background:
    radial-gradient(circle at 1.2px 1.2px, rgba(19,35,32,0.07) 1.2px, transparent 1.7px),
    linear-gradient(180deg, var(--color-paper), var(--color-paper-deep));
  background-size: 20px 20px, auto;
  padding-top: clamp(80px, 12vw, 130px);
  padding-bottom: clamp(80px, 12vw, 130px);
}

/* TEXTURE SWAP #4: torn edges. Replace these data-URI SVGs with
   url('/images/textures/torn-edge.svg') (top) and keep scaleY(-1) (bottom). */
.paper-section::before,
.paper-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 26px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 26' preserveAspectRatio='none'%3E%3Cpath d='M0 26 L0 14 L26 17 L52 9 L83 15 L117 7 L149 14 L180 10 L214 18 L247 8 L278 13 L312 6 L344 15 L376 11 L410 17 L441 8 L474 14 L508 10 L539 16 L572 7 L604 13 L637 9 L669 15 L703 8 L735 14 L767 11 L801 16 L833 7 L866 12 L900 10 L900 26 Z' fill='%23efece5'/%3E%3C/svg%3E") repeat-x;
  background-size: 900px 26px;
  pointer-events: none;
  z-index: 2;
}
.paper-section::before { top: -25px; }
.paper-section::after { bottom: -25px; transform: scaleY(-1); }

/* Text & component overrides on paper */
.paper-section h1, .paper-section h2, .paper-section h3 { color: var(--color-paper-ink); }
.paper-section p { color: var(--color-paper-muted); }
.paper-section .eyebrow { color: var(--color-accent-deep); }
.paper-section .btn-primary {
  background: var(--color-accent-deep);
  border-color: var(--color-accent-deep);
  color: #f4f1ea;
}
.paper-section .btn-primary:hover { background: #0a5f55; border-color: #0a5f55; }
.paper-section .chip {
  background: rgba(19, 35, 32, 0.05);
  border-color: rgba(19, 35, 32, 0.18);
  color: var(--color-paper-ink);
}
.paper-section .chip small { color: #5d6d6a; }

/* ==========================================================================
   SPLIT-TONE (duotone) IMAGE TREATMENT
   Teal shadows, cool-blue depth over every project visual, so mixed
   photography reads as one considered system.
   ========================================================================== */
.card-visual, .showcase-visual { position: relative; }
.card-visual::after, .showcase-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(74, 184, 168, 0.18), rgba(16, 45, 72, 0.26));
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.project-tag { z-index: 2; }
