/* ============================================================
   tcwrx.com — shared stylesheet
   ============================================================ */
:root {
  --ink: #0f0f0f;
  --cream: #f6f1e7;
  --paper: #fbf8f1;
  --gold: #c9a961;
  --gold-bright: #e5c27a;
  --coral: #ff5a3c;
  --teal: #1f9b94;
  --muted: #6b6b6b;
  --line: rgba(0,0,0,0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============ NAV ============ */
nav.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #fff;
  transition: all 0.3s;
}
nav.site-nav.light,
nav.site-nav.scrolled {
  background: rgba(246, 241, 231, 0.95);
  color: var(--ink);
  border-bottom-color: rgba(0,0,0,0.08);
}
.logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.logo .wrx {
  background: var(--gold);
  color: var(--ink);
  padding: 0.05rem 0.35rem;
  transform: rotate(-2deg);
  display: inline-block;
}
nav.site-nav.light .logo .wrx,
nav.site-nav.scrolled .logo .wrx { background: var(--coral); color: #fff; }
.nav-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a { transition: color 0.25s; position: relative; padding: 0.2rem 0; }
.nav-links a:hover,
.nav-links a.current { color: var(--gold-bright); }
nav.site-nav.light .nav-links a:hover,
nav.site-nav.light .nav-links a.current,
nav.site-nav.scrolled .nav-links a:hover,
nav.site-nav.scrolled .nav-links a.current { color: var(--coral); }
.nav-links a.current::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
}
.nav-cta {
  padding: 0.55rem 1.1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  font-weight: 500;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
nav.site-nav.light .nav-cta:hover,
nav.site-nav.scrolled .nav-cta:hover { background: var(--coral); color: #fff; border-color: var(--coral); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,0.25); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #2a2a2a; transform: translateY(-2px); }

/* ============ HERO (home) ============ */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,169,97,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.85;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.hero-title .line2 {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.45em;
  letter-spacing: -0.01em;
  color: var(--gold-bright);
  margin-top: 0.3em;
  line-height: 1;
}
.hero-title .line3 {
  display: block;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.75em;
  letter-spacing: -0.02em;
}
.hero-lead {
  font-size: 1.1rem;
  color: #c5c5c5;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; aspect-ratio: 3/4; max-width: 480px; justify-self: end; width: 100%; }
.portrait {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201,169,97,0.3), transparent 50%),
    linear-gradient(135deg, #2a2620, #14110e);
  border: 1px solid rgba(201,169,97,0.25);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  background: var(--gold);
  z-index: 1;
}
.sticker {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.75rem;
  text-align: center;
  letter-spacing: 0.05em;
  transform: rotate(-10deg);
  z-index: 3;
  line-height: 1.2;
  border: 3px solid var(--ink);
}
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
}

/* ============ PAGE HEADER (non-home pages) ============ */
.page-header {
  padding: 9rem 3rem 5rem;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,169,97,0.15) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
}
.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-header .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page-header .eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  max-width: 900px;
}
.page-header h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  font-size: 0.75em;
}
.page-header .sub {
  margin-top: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  max-width: 580px;
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1.3rem 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.marquee-track span { display: flex; align-items: center; gap: 2.5rem; }
.marquee-track .dot { color: var(--coral); font-size: 1.2rem; }
.marquee-track em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 7rem 3rem;
}
.section.paper { background: var(--paper); }
.section.cream { background: var(--cream); }
.section.ink { background: var(--ink); color: #fff; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.01em;
  line-height: 0.95;
}
.section-head h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 0.75em;
}
.section.ink .section-head h2 em { color: var(--gold-bright); }
.section-head .tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--muted);
  max-width: 340px;
  text-align: right;
  font-size: 1rem;
}
.section.ink .section-head .tagline { color: rgba(255,255,255,0.65); }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

/* ============ ABOUT ============ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.about-title em { color: var(--gold); font-style: italic; font-weight: 400; }
.about-body p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.about-body p strong { color: var(--ink); font-weight: 500; }
.about-meta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.meta-item { font-size: 0.9rem; }
.meta-item .k {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.meta-item .v { font-weight: 500; }

/* ============ STATS ============ */
.stats-wrap { padding: 0 3rem 5rem; background: var(--paper); }
.stats {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,97,0.2), transparent 60%);
  pointer-events: none;
}
.stat { position: relative; z-index: 2; }
.stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat .num sup { font-size: 0.5em; color: var(--gold); }
.stat .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.6);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* ============ GALLERY ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.gallery.g3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.shot {
  aspect-ratio: 3/4;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: #2a2a2a;
}
.shot:nth-child(5n+1) { background: linear-gradient(135deg, #3a3128, #1a1410); }
.shot:nth-child(5n+2) { background: linear-gradient(135deg, #d9cbb1, #a08c6a); }
.shot:nth-child(5n+3) { background: linear-gradient(135deg, #5a3d2b, #2b1d14); }
.shot:nth-child(5n+4) { background: linear-gradient(135deg, #e8d9bf, #c9a961); }
.shot:nth-child(5n+5) { background: linear-gradient(135deg, #2a2320, #0f0c0a); }
.shot:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.shot .tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--cream);
  color: var(--ink);
  padding: 0.3rem 0.8rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
}
.shot-caption {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ============ REEL ============ */
.reel-frame {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.reel-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.reel-caption {
  margin-top: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  text-align: center;
}

/* ============ CREDITS ============ */
.credits-group {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  border: 1px solid var(--line);
  margin-bottom: 2.5rem;
}
.credits-group-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.8rem;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.credits-group-head .badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  background: var(--gold);
  color: var(--ink);
  border-radius: 4px;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.credit {
  display: grid;
  grid-template-columns: 120px 2fr 2fr 150px;
  gap: 1.5rem;
  padding: 1.5rem 1.8rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.credit:last-child { border-bottom: none; }
.credit:hover { background: rgba(201,169,97,0.05); }
.credit .year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.credit .title { font-weight: 600; font-size: 1.02rem; line-height: 1.4; }
.credit .title small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1.4;
}
.credit .role {
  color: var(--muted);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.4;
}
.credit .cat-pill {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--cream);
  border: 1px solid rgba(201,169,97,0.4);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

/* ============ SKILLS / STATS LISTS ============ */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.skill-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1.8rem;
  transition: all 0.3s;
}
.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-color: var(--gold);
}
.skill-card .ico {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.skill-card h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.skill-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============ WORK CARDS ============ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.work-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 2px solid var(--ink);
  background: #fff;
  transition: all 0.3s;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.work-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 8px;
  background: var(--gold);
}
.work-card:nth-child(2)::before { background: var(--coral); }
.work-card:nth-child(3)::before { background: var(--teal); }
.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 var(--ink);
}
.work-card .tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 600;
}
.work-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1rem;
}
.work-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.work-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.work-card .arrow::after {
  content: '→';
  transition: transform 0.3s;
}
.work-card:hover .arrow::after { transform: translateX(6px); }

/* ============ CONTACT ============ */
.contact {
  background: var(--ink);
  color: #fff;
  padding: 7rem 3rem;
  text-align: center;
}
.contact h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  margin-bottom: 1.5rem;
}
.contact h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
}
.contact p {
  max-width: 540px;
  margin: 0 auto 2.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}
.contact-details {
  margin-top: 3rem;
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.contact-details a { color: var(--gold-bright); transition: color 0.2s; }
.contact-details a:hover { color: #fff; }

/* Contact page form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.contact-card .row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-card .row:last-of-type { border-bottom: none; }
.contact-card .row .k {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-card .row .v { font-size: 1.02rem; font-weight: 500; }
.contact-card .row .v a:hover { color: var(--coral); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
  margin-bottom: 1.2rem;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ============ FOOTER ============ */
footer.site-footer {
  background: #050505;
  color: rgba(255,255,255,0.6);
  padding: 4rem 3rem 2rem;
  font-size: 0.9rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
footer.site-footer h4 {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
footer.site-footer .brand-block .logo { color: #fff; margin-bottom: 1rem; }
footer.site-footer .blurb {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  max-width: 340px;
  line-height: 1.6;
}
footer.site-footer ul { list-style: none; }
footer.site-footer li { margin-bottom: 0.6rem; }
footer.site-footer a { transition: color 0.25s; }
footer.site-footer a:hover { color: var(--gold-bright); }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 340px; justify-self: start; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .gallery,
  .gallery.g3 { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .skill-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 700px) {
  nav.site-nav { padding: 1rem 1.3rem; }
  .nav-links, .nav-cta { display: none; }
  .hero, .section, .stats-wrap, .contact, footer.site-footer, .page-header {
    padding-left: 1.3rem; padding-right: 1.3rem;
  }
  .page-header { padding-top: 7rem; padding-bottom: 3rem; }
  .credit { grid-template-columns: 60px 1fr; gap: 0.5rem; padding: 1.2rem; }
  .credit .role, .credit .cat-pill { grid-column: 2; justify-self: start; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head .tagline { text-align: left; }
  .contact-details { flex-direction: column; gap: 1rem; }
}
