/* ═══════════════════════════════════════════════
   NATHAN'S OFFICE — SHARED STYLESHEET
   Extracted from homepage_v6_final.html prototype
   ═══════════════════════════════════════════════ */

:root {
  --black: #0B0B0B;
  --charcoal: #141414;
  --charcoal-mid: #1A1A1A;
  --charcoal-light: #222222;
  --white: #ffffff;
  --off-white: #F0F0EC;
  --warm-white: #E8E4DF;
  --gold: #C9A84C;
  --gold-warm: #C4A24E;
  --gold-bright: #D4A937;
  --grey-dark: #1a1a1a;
  --grey-mid: #555555;
  --grey-text: #3d3d3d;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --accent: #D4A937;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--grey-text);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── GRAIN OVERLAY ─── */
.grain {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5vw;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
  height: 64px;
  background: rgba(11, 11, 11, 0.95);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo img {
  height: 55px;
  width: auto;
  filter: invert(1);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled .nav-logo img {
  height: 26px;
}
.nav-links { display: none; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: rgba(255,255,255,0.9); }

/* ─── MOBILE NAV ─── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1200;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.nav-hamburger.open span {
  background: var(--accent);
  height: 2.5px;
}

.mobile-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0B0B0B;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 5vw;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
  z-index: 9999;
}
.mobile-overlay-close:hover {
  border-color: var(--accent);
}
.mobile-overlay-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  pointer-events: none;
}
.mobile-overlay a {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-overlay a:hover,
.mobile-overlay a.active { color: var(--accent); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80vw; height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.02) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 1000px; }
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.15em;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
.hero-headline-accent-text {
  font-style: italic;
  color: var(--accent);
}
.hero-headline-accent {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 2em;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}
.hero-line {
  width: 100px; height: 1px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 1s ease 1.2s forwards;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 10vw;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.8s forwards;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
  margin-top: 0.8rem;
  animation: scrollPulse 2s ease infinite;
}

/* ─── INNER PAGE HERO (shorter) ─── */
.hero-inner {
  min-height: 70vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
  position: relative;
  overflow: hidden;
}
.hero-inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80vw; height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.02) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner .hero-content {
  padding-top: 80px;
}

/* ─── FULL VIEWPORT QUOTE ─── */
.full-quote {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 4rem 10vw;
  position: relative;
}
.full-quote-text {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  line-height: 1.3;
  text-align: center;
  max-width: 900px;
}
.full-quote-border {
  position: absolute;
  top: 50%; left: 5vw;
  width: 2px; height: 0;
  background: var(--accent);
  opacity: 0.2;
  transform: translateY(-50%);
  transition: height 1s ease;
}
.full-quote.visible .full-quote-border { height: 120px; }

/* ─── SECTIONS ─── */
.section-black {
  background: var(--black);
  color: var(--white);
  padding: 8rem 10vw;
  position: relative;
}
.section-charcoal {
  background: var(--charcoal);
  color: var(--white);
  padding: 8rem 10vw;
  position: relative;
}
.section-dark {
  background: var(--charcoal-mid);
  color: var(--white);
  padding: 8rem 10vw;
  position: relative;
}
.section-light {
  background: var(--off-white);
  color: var(--grey-text);
  padding: 8rem 10vw;
  position: relative;
}

/* ─── DIAGONAL TRANSITIONS ─── */
.diagonal-transition {
  height: 80px;
  background: var(--off-white);
  position: relative;
}
.diagonal-transition::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}
.diagonal-reverse {
  height: 80px;
  background: var(--black);
  position: relative;
}
.diagonal-reverse::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: var(--off-white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 30%);
}

/* ─── TYPOGRAPHY ─── */
.section-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: block;
}
.accent-line {
  width: 60px; height: 1px;
  background: var(--accent);
  margin-bottom: 3rem;
  opacity: 0.5;
}
.body-large {
  font-family: var(--sans);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 300;
  line-height: 1.8;
  max-width: 750px;
  margin-bottom: 1.8em;
  color: rgba(255,255,255,0.8);
}
.body-large.on-light {
  color: #444444;
}
.body-large strong {
  font-weight: 500;
  color: var(--white);
}
.section-light .body-large strong {
  color: var(--grey-dark);
}
.opener {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--accent);
  margin-bottom: 2.5em;
  max-width: 700px;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1em;
}
.section-heading.on-light {
  color: #2A2A2A;
}

/* ─── STATS — CINEMATIC TITLE CARDS ─── */
.stats-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,169,55,0.15), transparent);
}
.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,169,55,0.15), transparent);
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 10vw;
  position: relative;
}
.stat-card + .stat-card {
  border-top: 1px solid rgba(255,255,255,0.03);
}
.stat-card-number {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4em;
  position: relative;
}
.stat-card-number::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.3;
  margin: 1.2rem auto 0;
}
.stat-card-text {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 480px;
}

/* ─── QUOTE BLOCK ─── */
.quote-block {
  border-left: 2px solid var(--accent);
  padding: 1.5rem 0 1.5rem 2.5rem;
  margin: 3rem 0;
  max-width: 700px;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--accent);
}
.section-light .quote-text { color: var(--grey-dark); }

/* ─── TWO COLUMN ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.two-col-sticky {
  position: sticky;
  top: 140px;
}
.two-col-label {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: #2a2a2a;
  line-height: 1.3;
}
.two-col-label .highlight {
  color: var(--accent);
}
.section-black .two-col-label,
.section-charcoal .two-col-label {
  color: var(--white);
}
.section-black .credential-line,
.section-charcoal .credential-line {
  color: var(--accent);
}

/* ─── PROOF — GHOST NUMBER OVERLAY ─── */
.proof-section {
  padding: 8rem 10vw;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.proof-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,169,55,0.15), transparent);
}
.proof-intro-line {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-style: italic;
  color: var(--accent);
  margin-bottom: 5rem;
  opacity: 0.7;
}
.proof-item {
  padding: 5rem 0 5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.proof-item:last-child { border-bottom: none; }
.proof-item-header {
  position: relative;
  margin-bottom: 2rem;
}
.proof-ghost {
  font-family: var(--serif);
  font-size: clamp(6rem, 10vw, 9rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.04);
  line-height: 0.8;
  position: absolute;
  top: -0.15em;
  left: -0.05em;
  pointer-events: none;
  z-index: 0;
}
.proof-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  position: relative;
  z-index: 1;
  padding-top: 0.8rem;
}
.proof-subtitle {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  margin-top: 0.6rem;
  position: relative;
  z-index: 1;
  opacity: 0.8;
}
.proof-body {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  max-width: 750px;
  margin-top: 1.5rem;
}
.proof-outcome {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.8;
  max-width: 750px;
  margin-top: 1.5rem;
}

/* ─── CLIENT STRIP ─── */
.client-strip {
  padding: 3rem 10vw;
  background: var(--charcoal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.client-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.client-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
}

/* ─── CTA ─── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 1.5rem 0;
  position: relative;
  transition: all 0.4s ease;
  margin-top: 2rem;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
.cta:hover::after { opacity: 0.6; }
.cta .arrow {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}
.cta:hover .arrow { transform: translateX(8px); }

/* ─── BRAND STAMP ─── */
.brand-stamp {
  background: var(--black);
  padding: 6rem 10vw;
  text-align: center;
}
.brand-stamp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.brand-stamp-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.3;
}
.brand-stamp-text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.brand-stamp-sub {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  padding: 3rem 10vw;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: block;
}
.footer-brand img {
  height: 28px;
  width: auto;
  filter: invert(1);
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
}
.footer-center {
  text-align: center;
}
.footer-cta {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(212,169,55,0.3);
  transition: all 0.4s ease;
}
.footer-cta:hover {
  background: rgba(212,169,55,0.08);
  border-color: var(--accent);
}
.footer-cta span {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 0.5rem;
}
.footer-cta:hover span { transform: translateX(4px); }
.footer-right { text-align: right; }
.footer-location {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.footer-links a {
  font-family: var(--sans);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-family: var(--sans);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

/* ─── CONTACT FORM ─── */
.contact-form {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.form-group input,
.form-group textarea {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 300;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.8rem 0;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.8;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: none;
  padding: 1.5rem 0;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
  margin-top: 1rem;
}
.form-submit::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
.form-submit:hover::after { opacity: 0.6; }
.form-submit .arrow {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}
.form-submit:hover .arrow { transform: translateX(8px); }

/* ─── DISCIPLINE BLOCKS (For Professionals) ─── */
.discipline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.discipline-block {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.discipline-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.discipline-body {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
}

/* ─── GAVIN NATHAN PAGE ─── */
.bio-hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 0 10vw;
  position: relative;
  overflow: hidden;
}
.bio-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  width: 100%;
  padding-top: 80px;
}
.bio-quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  line-height: 1.4;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}
.bio-photo {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%),
                      linear-gradient(to top, black 85%, transparent 100%),
                      linear-gradient(to right, black 60%, transparent 100%),
                      linear-gradient(to left, black 60%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%),
              linear-gradient(to top, black 85%, transparent 100%),
              linear-gradient(to right, black 60%, transparent 100%),
              linear-gradient(to left, black 60%, transparent 100%);
  mask-composite: intersect;
}
.bio-photo::after {
  display: none;
}
.bio-photo-placeholder {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}
.credential-line {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  line-height: 1.6;
  margin-bottom: 2.5em;
  max-width: 750px;
}
.emphasis-line {
  font-family: var(--sans);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1.6;
  margin: 2em 0;
}
/* ─── MEDIA & AWARDS BAND ─── */
.media-band {
  background: #ffffff;
  padding: 2.5rem 10vw 3rem;
  text-align: center;
}
.media-tier-label {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444444;
  text-align: center;
  margin: 0 auto 1.5rem;
}
.media-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  margin: 0 auto;
}
.media-logo {
  height: 26px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.media-logo:hover {
  opacity: 1;
}
.media-logo-divider {
  width: 2px;
  height: 40px;
  background: #444444;
}
.award-logo {
  height: 100px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}
.award-logo:hover {
  opacity: 1;
}

/* ─── ATMOSPHERIC BACKGROUND IMAGES ─── */
/* Inline div approach — works inside heroes that already use ::before */
.bg-atmosphere {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
  filter: grayscale(1);
  pointer-events: none;
  z-index: 0;
}
.bg-atmosphere::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,11,0.4) 0%, rgba(11,11,11,0.1) 40%, rgba(11,11,11,0.4) 100%);
}

/* Pseudo-element approach — for sections without ::before conflicts */
.has-bg-image {
  position: relative;
  overflow: hidden;
}
.has-bg-image > .bg-image-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
  filter: grayscale(1);
  pointer-events: none;
  z-index: 0;
}
.has-bg-image > .bg-image-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,11,0.4) 0%, rgba(11,11,11,0.1) 40%, rgba(11,11,11,0.4) 100%);
}
.has-bg-image > *:not(.bg-image-layer) {
  position: relative;
  z-index: 1;
}

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: rgba(212,169,55,0.15);
  border: 1px solid rgba(212,169,55,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: rgba(212,169,55,0.25);
  border-color: var(--accent);
}
.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lineGrow {
  to { opacity: 1; transform: scaleX(1); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* Fade only — no vertical movement (quotes, brand stamp) */
.reveal-fade {
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-fade.visible { opacity: 1; }

/* Scale in — for stat numbers */
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Slide in from left — for accent lines */
.reveal-line {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-line.visible { opacity: 1; transform: scaleX(1); }

/* Slide in from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── FOCUS STYLES ─── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.cta:focus-visible,
.footer-cta:focus-visible {
  outline-offset: 5px;
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-fade, .reveal-scale, .reveal-line, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero, .hero-inner { padding: 0 7vw; }
  .section-black, .section-charcoal, .section-dark, .section-light { padding: 5rem 7vw; }
  .stat-card { padding: 4rem 7vw; }
  .stat-card-number { font-size: clamp(4rem, 15vw, 6rem); }
  .proof-section { padding: 5rem 7vw; }
  .proof-item { padding: 3rem 0; }
  .proof-ghost { font-size: 5rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col-sticky { position: static; }
  .footer { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .footer-right { text-align: left; }
  .footer-center { align-self: stretch; }
  .footer-cta { display: block; text-align: center; }
  .client-strip { flex-direction: column; gap: 1rem; }
  .client-dot { display: none; }
  .full-quote { min-height: 60vh; padding: 4rem 7vw; }
  .diagonal-transition, .diagonal-reverse { height: 50px; }
  .bio-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .bio-hero { min-height: auto; padding: 8rem 7vw 4rem; }
  .discipline-grid { grid-template-columns: 1fr; gap: 2rem; }
  .brand-stamp { padding: 4rem 7vw; }
  .contact-form { gap: 1.5rem; }
  .form-group input, .form-group textarea { font-size: 1rem; }
  .media-logos-row { gap: 2rem; }
  .media-logo { height: 22px; }
  .award-logos-row { gap: 2rem; }
  .award-logo { height: 70px; }
  .nav-logo img { height: 42px; }
}
