/* ─── PALETTE ───────────────────────────────────────────
   Inspired by: worn magnetic tape, carbon black vinyl,
   Houston Third Ward brick, vintage reel-to-reel
   Brand gold (sampled from logo) / true charcoal backgrounds (Option A)
──────────────────────────────────────────────────────── */
:root {
  /* Backgrounds — true charcoal, no color cast */
  --ink:        #0F0F0F;
  --ink-soft:   #1A1A1A;
  --ink-mid:    #222222;
  --ink-warm:   #2C2C2C;

  /* Gold — brand gold #F3B603 */
  --copper:     #F3B603;
  --copper-lt:  #FFD103;
  --copper-pale:#FAE5A6;
  --copper-dk:  #856401;

  /* Text / paper tones */
  --paper:      #F0E6D3;
  --paper-lt:   #F8F2E8;
  --paper-mid:  #C8B8A0;
  --paper-dim:  #8C7B65;

  --steel:      #3A6B7E;
  --steel-lt:   #5B8FA4;

  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* ── Worn line system ──────────────────────────────────────
     2px borders + soft ink-bleed shadow.
     Use --worn-border + --worn-shadow on any structural edge.
  ─────────────────────────────────────────────────────────── */
  --line-w:        2px;
  --line-c:        rgba(243, 182, 3, 0.30);
  --line-c-strong: rgba(243, 182, 3, 0.48);
  --line-c-dim:    rgba(243, 182, 3, 0.13);
  --worn-border:   var(--line-w) solid var(--line-c);
  --worn-shadow:   0 0 4px 0px rgba(243,182,3,0.14), 0 1px 0 0 rgba(243,182,3,0.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* Global link reset — kill browser default blue */
a {
  color: inherit;
  text-decoration: none;
}
a:hover { color: var(--copper-lt); }

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

/* ── PAGE SYSTEM (single-file SPA only) ── */
.page { display: none; }
.page.active { display: block; }

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 68px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: var(--worn-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.35), var(--worn-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
nav a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-dim);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav a:hover, nav a.active {
  color: var(--copper-lt);
  border-bottom-color: var(--copper);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  border: var(--worn-border);
  box-shadow: var(--worn-shadow);
  color: var(--copper-lt);
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.nav-cta:hover { background: var(--copper); color: var(--ink); }

main { padding-top: 68px; }

/* ════════════════════════════════
   SHARED COMPONENTS
════════════════════════════════ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--copper);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--paper-lt);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.section-heading em { font-style: italic; color: var(--copper-lt); }

.section-body {
  font-size: 0.98rem;
  color: var(--paper-mid);
  line-height: 1.9;
  max-width: 56ch;
}

/* Worn section divider with star ornament */
.rule-ornament {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 0.85rem;
  margin: 3rem 0;
  text-shadow: 0 0 6px rgba(243,182,3,0.45);
}
.rule-ornament::before,
.rule-ornament::after {
  content: '';
  flex: 1;
  height: var(--line-w);
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line-c-dim) 3%,
    var(--line-c) 15%,
    var(--line-c-strong) 50%,
    var(--line-c) 85%,
    var(--line-c-dim) 97%,
    transparent 100%
  );
  box-shadow: var(--worn-shadow);
}

.btn-solid {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--copper);
  color: var(--ink);
  border: none;
  padding: 0.9rem 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-solid:hover { background: var(--copper-lt); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--paper-mid);
  border: var(--worn-border);
  box-shadow: var(--worn-shadow);
  padding: 0.9rem 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--copper); color: var(--copper-lt); }

.photo-frame {
  position: relative;
  overflow: hidden;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(30%) contrast(1.05) brightness(0.92);
  transition: filter 0.4s, transform 0.6s;
}
.photo-frame:hover img {
  filter: sepia(15%) contrast(1.08) brightness(0.96);
  transform: scale(1.02);
}
.photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15,15,15,0.7));
  z-index: 1;
  pointer-events: none;
}
.photo-credit {
  position: absolute;
  bottom: 0.6rem;
  right: 0.75rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  color: rgba(240,230,211,0.4);
  text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.65s ease both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.22s; }
.d3 { animation-delay: 0.35s; }
.d4 { animation-delay: 0.48s; }

/* ════════════════════════════════
   PAGE BANNER (inner pages)
════════════════════════════════ */
.page-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(35%) contrast(1.08) brightness(0.65);
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,15,15,0.9) 40%, rgba(15,15,15,0.4)),
              linear-gradient(to top, rgba(15,15,15,0.8) 0%, transparent 50%);
  z-index: 1;
}
.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 5rem 4.5rem;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--paper-lt);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.page-banner h1 em { font-style: italic; color: var(--copper-lt); }
.page-banner p {
  font-style: italic;
  color: var(--paper-dim);
  max-width: 50ch;
  font-size: 1rem;
  margin-top: 0.8rem;
}

/* ════════════════════════════════
   HOME
════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 4rem 7rem 4.5rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(to right, var(--ink) 85%, transparent);
}
.hero-right { position: relative; }
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(40%) contrast(1.1) brightness(0.75);
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 30%),
              linear-gradient(to top, rgba(15,15,15,0.6) 0%, transparent 50%);
  z-index: 1;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--copper);
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.95;
  color: var(--paper-lt);
  margin-bottom: 0.2em;
}
.hero-h1 em { font-style: italic; color: var(--copper-lt); }
.hero-sub {
  font-size: 1rem;
  color: var(--paper-dim);
  max-width: 46ch;
  line-height: 1.85;
  margin: 1.6rem 0 2.5rem;
  font-style: italic;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; }
.hero-year {
  position: absolute;
  bottom: 4rem;
  right: 3rem;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11rem;
  line-height: 1;
  color: rgba(243,182,3,0.07);
  pointer-events: none;
  letter-spacing: -0.05em;
}

.names-strip {
  background: var(--ink-soft);
  border-top: var(--worn-border);
  border-bottom: var(--worn-border);
  box-shadow: var(--worn-shadow);
  overflow: hidden;
  position: relative;
  height: 52px;
  display: flex;
  align-items: center;
}
.names-strip::before,
.names-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
.names-strip::before { left: 0; background: linear-gradient(to right, var(--ink-soft), transparent); }
.names-strip::after  { right: 0; background: linear-gradient(to left, var(--ink-soft), transparent); }
.names-track {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
}
.names-track:hover { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.name-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--paper-dim);
  padding: 0 2.2rem;
  white-space: nowrap;
  transition: color 0.2s;
}
.name-item:hover { color: var(--copper-lt); }
.name-sep {
  display: flex;
  align-self: center;
  color: #F3B603;
  font-size: 0.55rem;
  line-height: 1;
  flex-shrink: 0;
  margin: 0 0.5rem;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: var(--worn-border);
  box-shadow: var(--worn-shadow);
}
.stat-cell {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: var(--worn-border);
}
.stat-cell:last-child { border-right: none; }
.stat-val {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--copper-lt);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}
.stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-photo { position: relative; min-height: 480px; }
.split-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(25%) contrast(1.1) brightness(0.85);
}
.split-content {
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink-soft);
}

.gear-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.gear-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--paper-mid);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(243,182,3,0.1);
}
.gear-item::before { content: '—'; color: var(--copper-dk); flex-shrink: 0; }

.pull-quote {
  background: var(--ink-warm);
  border-left: 3px solid var(--copper);
  box-shadow: -2px 0 8px rgba(243,182,3,0.18);
  padding: 3.5rem 4rem;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--paper-lt);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.pull-quote cite {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-style: normal;
}

.home-cta {
  background: var(--ink-mid);
  padding: 7rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: var(--worn-border);
  box-shadow: inset 0 1px 0 rgba(243,182,3,0.05);
}
.home-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(243,182,3,0.06) 0%, transparent 70%);
}
.home-cta h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: var(--paper-lt);
  margin-bottom: 0.8rem;
  position: relative;
}
.home-cta p {
  color: var(--paper-dim);
  font-style: italic;
  margin-bottom: 2.5rem;
  position: relative;
}
.home-cta .btn-solid,
.home-cta .btn-outline {
  position: relative;
}

/* ════════════════════════════════
   HISTORY
════════════════════════════════ */
.history-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  padding: 5rem 4.5rem;
  align-items: start;
  border-bottom: var(--worn-border);
}
.history-intro p {
  font-size: 1.05rem;
  color: var(--paper-mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.history-intro p:first-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--paper-lt);
}
.sidebar-facts {
  background: var(--ink-mid);
  border: var(--worn-border);
  box-shadow: var(--worn-shadow);
  padding: 2rem 1.5rem;
}
.fact-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(243,182,3,0.1);
}
.fact-item:last-child { border-bottom: none; }
.fact-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.3rem;
  display: block;
}
.fact-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--paper-lt);
}

.timeline-wrap {
  padding: 5rem 4.5rem;
  max-width: 1100px;
}
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0.6rem; bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--copper) 0%, rgba(243,182,3,0.15) 100%);
}
.tl-item {
  position: relative;
  padding: 0 0 3.5rem 2.5rem;
}
.tl-item::before {
  content: '★';
  position: absolute;
  left: -0.6rem;
  top: 0.25rem;
  font-size: 0.65rem;
  color: var(--copper);
  text-shadow: 0 0 6px rgba(243,182,3,0.5);
  line-height: 1;
}
.tl-era {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.4rem;
}
.tl-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--paper-lt);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.tl-body {
  font-size: 0.92rem;
  color: var(--paper-mid);
  line-height: 1.85;
  max-width: 68ch;
}
.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}
.tl-tag {
  font-family: var(--font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  color: var(--copper);
  border: var(--worn-border);
  padding: 0.18rem 0.55rem;
}

.history-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
}
.history-photo-grid .photo-frame:first-child { grid-column: span 2; }

.artists-section {
  padding: 5rem 4.5rem;
  background: var(--ink-soft);
  border-top: var(--worn-border);
  box-shadow: var(--worn-shadow);
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1px;
  background: rgba(243,182,3,0.1);
  margin-top: 3rem;
}
.artist-card {
  background: var(--ink-soft);
  padding: 1.5rem 1.3rem;
  transition: background 0.2s;
}
.artist-card:hover { background: var(--ink-warm); }
.ac-era {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-dk);
  margin-bottom: 0.35rem;
}
.ac-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--paper-lt);
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
.ac-genre {
  font-size: 0.75rem;
  color: var(--paper-dim);
  font-style: italic;
}

/* ════════════════════════════════
   STUDIOS
════════════════════════════════ */
.studios-intro { padding: 5rem 4.5rem 3rem; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(243,182,3,0.1);
  margin: 0 4.5rem;
}
.room-card {
  background: var(--ink-soft);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.2s;
}
.room-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--copper-dk);
  transition: background 0.25s;
}
.room-card:hover { background: var(--ink-warm); }
.room-card:hover::after { background: var(--copper-lt); }
.room-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  color: rgba(243,182,3,0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.room-label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.6rem;
}
.room-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--paper-lt);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.room-desc {
  font-size: 0.88rem;
  color: var(--paper-dim);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.room-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.room-specs li {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--paper-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.room-specs li::before { content: '›'; color: var(--copper); flex-shrink: 0; }

.studio-photo-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  height: 420px;
  margin: 3rem 4.5rem;
  gap: 3px;
}

.services-section {
  padding: 5rem 4.5rem;
  background: var(--ink-mid);
  border-top: var(--worn-border);
  box-shadow: var(--worn-shadow);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.svc-card {
  border: var(--worn-border);
  box-shadow: var(--worn-shadow);
  padding: 2rem 1.7rem;
  transition: border-color 0.2s;
}
.svc-card:hover { border-color: rgba(243,182,3,0.5); }
.svc-n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.5rem;
  color: rgba(243,182,3,0.08);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.svc-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--paper-lt);
  margin-bottom: 0.5rem;
}
.svc-desc {
  font-size: 0.85rem;
  color: var(--paper-dim);
  line-height: 1.75;
}

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: calc(100vh - 68px - 380px);
}
.contact-info-col {
  padding: 5rem 4rem 5rem 4.5rem;
  background: var(--ink-soft);
  border-right: var(--worn-border);
}
.contact-section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--paper-lt);
  margin-bottom: 0.5rem;
  margin-top: 2.5rem;
}
.contact-section-title:first-of-type { margin-top: 0; }
.contact-val {
  font-size: 0.9rem;
  color: var(--paper-dim);
  line-height: 1.7;
}
.contact-val a { color: var(--paper-mid); text-decoration: none; transition: color 0.2s; }
.contact-val a:hover { color: var(--copper-lt); }
.c-divider { height: 1px; background: rgba(243,182,3,0.12); margin: 1.8rem 0; }
.hours-table {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  line-height: 2;
}
.hours-row {
  display: flex;
  gap: 1.5rem;
}
.hours-day  { color: var(--paper-dim); min-width: 120px; }
.hours-time { color: var(--copper-lt); }

.contact-form-col { padding: 5rem 4.5rem; background: var(--ink-mid); }
.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--paper-lt);
  margin-bottom: 0.4rem;
}
.form-sub { font-style: italic; font-size: 0.9rem; color: var(--paper-dim); margin-bottom: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--ink-warm);
  border: var(--worn-border);
  box-shadow: var(--worn-shadow);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--copper); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--paper-dim); font-style: italic; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--ink-warm); }

/* ════════════════════════════════
   HAMBURGER BUTTON (mobile only)
════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 600;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper-mid);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}
.hamburger:hover span { background: var(--copper-lt); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0; bottom: 0;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: var(--worn-border);
  /* Use dvh so it doesn't jump when browser chrome appears/disappears */
  height: calc(100dvh - 68px);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  color: var(--paper-dim);
  text-decoration: none;
  padding: 1rem 2rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--copper-lt); }
.mobile-nav .mobile-cta {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  border: var(--worn-border);
  box-shadow: var(--worn-shadow);
  padding: 0.9rem 2.5rem;
  margin-top: 1.5rem;
  min-height: 48px;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--ink-soft);
  border-top: var(--worn-border);
  box-shadow: var(--worn-shadow);
  padding: 4.5rem 4.5rem 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand .logo-name {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
  font-family: var(--font-display);
  color: var(--copper-lt);
  letter-spacing: 0.04em;
  line-height: 1;
}
.footer-brand .logo-meta {
  display: block;
  margin-bottom: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--paper-dim);
  font-style: italic;
  line-height: 1.75;
  max-width: 240px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--paper-dim);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--copper-lt); }
.footer-col p { font-size: 0.85rem; color: var(--paper-dim); line-height: 1.7; }
.footer-bottom {
  border-top: var(--worn-border);
  box-shadow: var(--worn-shadow);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  color: var(--paper-dim);
}
.footer-stamp {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(243,182,3,0.28);
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (max 1024px)
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  header { padding: 0 2rem; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: 85vh; }
  .hero-left {
    padding: 6rem 2.5rem 6rem;
    background: linear-gradient(to bottom, var(--ink) 70%, rgba(15,15,15,0.85));
    justify-content: flex-end;
    min-height: 85vh;
  }
  .hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-left { z-index: 2; }
  .hero-year { font-size: 7rem; right: 2rem; bottom: 2rem; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }

  /* Splits */
  .split-section { grid-template-columns: 1fr; min-height: auto; }
  .split-section.reverse { direction: ltr; }
  .split-photo { min-height: 340px; }
  .split-content { padding: 3.5rem 2.5rem; }

  /* History */
  .history-intro { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 2.5rem; }
  .timeline-wrap { padding: 3.5rem 2.5rem; }

  /* Studios */
  .studios-intro { padding: 3.5rem 2.5rem 2rem; }
  .rooms-grid { grid-template-columns: 1fr; margin: 0 2.5rem; }
  .studio-photo-row { margin: 2rem 2.5rem; height: 320px; }
  .services-section { padding: 3.5rem 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* Artists */
  .artists-section { padding: 3.5rem 2.5rem; }
  .artists-grid { grid-template-columns: repeat(3, 1fr); }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info-col {
    padding: 3.5rem 2.5rem;
    border-right: none;
    border-bottom: var(--worn-border);
  }
  .contact-form-col { padding: 3.5rem 2.5rem; }

  /* Footer */
  footer { padding: 3.5rem 2.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Pull quote */
  .pull-quote { padding: 2.5rem 2.5rem; }

  /* Home CTA */
  .home-cta { padding: 5rem 2.5rem; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (max 768px)
════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Header ── */
  header { padding: 0 1.25rem; }
  /* Hide desktop nav, show hamburger */
  header nav { display: none; }
  .hamburger { display: flex; }
  .logo-img { height: 36px; }

  /* ── Hero ── */
  .hero { min-height: 100dvh; }
  .hero-left {
    padding: 5rem 1.5rem 5rem;
    min-height: 100dvh;
  }
  .hero-h1 { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .hero-sub { font-size: 0.95rem; max-width: 100%; margin: 1.2rem 0 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-actions .btn-solid,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-year { display: none; }

  /* ── Names strip ── */
  .name-item { font-size: 0.88rem; padding: 0 1.2rem; }

  /* ── Stats bar ── */
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 1.5rem 1rem; }
  .stat-val { font-size: 1.8rem; }
  .stat-lbl { font-size: 0.48rem; }
  /* Remove right border on even cells to avoid double border */
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(4) { border-right: none; }

  /* ── Split sections ── */
  .split-section { grid-template-columns: 1fr; }
  .split-photo { min-height: 260px; }
  .split-content { padding: 2.5rem 1.5rem; }
  .section-heading { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .section-body { font-size: 0.92rem; max-width: 100%; }

  /* ── Pull quote ── */
  .pull-quote { padding: 2rem 1.5rem; }
  .pull-quote blockquote { font-size: clamp(1rem, 4.5vw, 1.4rem); }

  /* ── Home CTA ── */
  .home-cta { padding: 4rem 1.5rem; }
  .home-cta h2 { font-size: clamp(1.8rem, 8vw, 3rem); }
  .home-cta .btn-solid {
    width: 100%;
    text-align: center;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Page banners ── */
  .page-banner { min-height: 280px; }
  .page-banner-content { padding: 3rem 1.5rem; }
  .page-banner h1 { font-size: clamp(2rem, 9vw, 3.2rem); }

  /* ── History ── */
  .history-intro { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.5rem; }
  .timeline-wrap { padding: 2.5rem 1.5rem; max-width: 100%; }
  .timeline { padding-left: 1.75rem; }
  .tl-item { padding: 0 0 2.5rem 1.75rem; }
  .tl-name { font-size: 1.2rem; }
  .tl-body { font-size: 0.88rem; max-width: 100%; }
  .tl-tags { gap: 0.35rem; }
  .tl-tag { font-size: 0.52rem; }

  /* ── Artists grid ── */
  .artists-section { padding: 2.5rem 1.5rem; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .ac-name { font-size: 0.9rem; }

  /* ── Studios ── */
  .studios-intro { padding: 2.5rem 1.5rem 1.5rem; }
  .rooms-grid { grid-template-columns: 1fr; margin: 0 1.5rem; }
  .room-card { padding: 2rem 1.5rem; }
  .studio-photo-row {
    grid-template-columns: 1fr;
    height: auto;
    margin: 1.5rem 1.5rem;
    gap: 3px;
  }
  .studio-photo-row .photo-frame { height: 240px; }
  .services-section { padding: 2.5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .svc-card { padding: 1.5rem 1.25rem; }

  /* ── Contact ── */
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info-col {
    padding: 2.5rem 1.5rem;
    border-right: none;
    border-bottom: var(--worn-border);
  }
  .contact-form-col { padding: 2.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  /* Bigger tap targets on form elements */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem; /* prevents iOS zoom on focus */
    padding: 0.9rem 1rem;
    min-height: 48px;
  }
  .form-group textarea { min-height: 120px; }
  .contact-form-col .btn-solid {
    min-height: 48px;
    font-size: 0.65rem;
    padding: 1rem;
  }

  /* ── Footer ── */
  footer { padding: 2.5rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* ── Buttons — ensure 48px tap targets everywhere ── */
  .btn-solid,
  .btn-outline {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  /* Footer nav links — bigger tap area */
  .footer-col ul li a {
    display: inline-block;
    padding: 0.4rem 0;
    min-height: 44px;
    line-height: 44px;
  }

  /* ── Rule ornament — tighten margin ── */
  .rule-ornament { margin: 2rem 0; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (max 400px)
════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero-h1 { font-size: clamp(2.4rem, 12vw, 3.2rem); }
  .artists-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .tl-name { font-size: 1.1rem; }
  .page-banner h1 { font-size: clamp(1.8rem, 10vw, 2.6rem); }
  .logo-img { height: 28px; }
}
