/* ── AKASHA PRODUCTIONS — SHARED STYLES — build 2026-04-23T22:10:00Z ── */

/* ── SELF-HOSTED FONTS ── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --rose-gold: #B76E79;
  --teal: #008080;
  --dark: #0A0A08;
  --dark-2: #111110;
  --dark-3: #1A1A18;
  --warm-white: #F5F0E8;
  --muted: #9A9A8E;
  --text: #D8D4CC;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(10,10,8,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(201,168,76,.14);
  box-shadow: 0 1px 48px rgba(0,0,0,.45);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .7;
  transition: opacity .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }

/* PAGE HERO */
.page-hero {
  position: relative;
  padding: 180px 60px 100px;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,.1);
  scroll-margin-top: 80px;
}
/* Compact variant for project detail pages */
.page-hero--project {
  padding-top: 140px;
  padding-bottom: 24px;
}
/* First section immediately after project hero — tighten top gap */
.page-hero--project + section {
  padding-top: 40px;
}
.page-hero--project + section .project-detail-meta {
  margin-top: 0;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.07) 0%, transparent 65%),
    linear-gradient(160deg, #0A0A08 0%, #151510 60%, #1A1208 100%);
  z-index: 0;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='98'%3E%3Cpath fill='none' stroke='rgba(201%2C168%2C76%2C0.045)' stroke-width='1' d='M28 3l24 14v28L28 59 4 45V17L28 3zM28 59v28M4 45v28M52 45v28M4 17V-11M52 17V-11M28 59l-24 14M28 59l24 14'/%3E%3C/svg%3E");
  background-size: 56px 98px;
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 10;
  max-width: 1100px; margin: 0 auto;
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
}
.breadcrumb a { color: inherit; text-decoration: none; transition: opacity .2s; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { opacity: .4; }
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  line-height: .95;
  color: var(--warm-white);
  margin-bottom: 28px;
}
.page-title em { font-style: italic; color: var(--gold); }
.page-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .04em;
  max-width: 560px;
  line-height: 1.8;
}

/* PROJECT HERO IMAGE */
.project-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}
.project-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .7;
}

/* Project detail: remove gap between hero image and content below */
.project-hero-img + section {
  padding-top: 40px;
}
.project-hero-img + section .project-detail-meta {
  margin-top: 0;
}
.project-hero-img.placeholder {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.project-hero-img.placeholder .placeholder-logo {
  width: 180px; height: auto;
  opacity: .5;
  filter: brightness(0) invert(1);
}
.project-hero-img.placeholder .placeholder-text {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .4;
}

/* SECTION COMMONS */
section { padding: 100px 60px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--gold); opacity: .5;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
}
h2 em { font-style: italic; color: var(--gold); }

/* ABOUT PAGE */
.about-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,.12);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-portrait-placeholder {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .4;
  text-align: center;
  padding: 20px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
.about-sticky { position: sticky; top: 120px; }
.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: .95;
  margin-bottom: 16px;
}
.about-role {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
  margin-bottom: 48px;
}
.about-bio p { color: var(--muted); line-height: 1.9; margin-bottom: 20px; font-size: 15px; }
.credentials { margin-top: 48px; display: flex; flex-direction: column; gap: 20px; }
.credential {
  display: flex; gap: 16px; align-items: flex-start;
}
.credential-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.credential-dot.rose-gold { background: var(--rose-gold); }
.credential-dot.teal { background: var(--teal); }
.credential-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.credential-text strong { color: var(--text); font-weight: 500; }

/* PROJECTS PAGE */
.projects-grid { display: flex; flex-direction: column; gap: 0; margin-top: 60px; }
.project-item {
  display: grid;
  grid-template-columns: 80px auto 1fr 200px 180px 60px;
  gap: 32px; align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(201,168,76,.08);
  text-decoration: none;
  transition: background .3s;
  cursor: pointer;
}
.project-item:first-child { border-top: 1px solid rgba(201,168,76,.08); }
.project-item:hover { background: rgba(201,168,76,.03); }
.project-item.no-link { cursor: default; }
.proj-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300;
  color: rgba(201,168,76,.25);
  line-height: 1;
}
.proj-logo { width: 56px; height: 40px; object-fit: contain; filter: brightness(0) invert(1); opacity: .55; }
.proj-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--warm-white); font-weight: 400; }
.proj-location { font-size: 12px; color: var(--muted); letter-spacing: .06em; }
.proj-role { font-size: 12px; color: var(--muted); letter-spacing: .06em; }
.proj-arrow { font-size: 18px; color: rgba(201,168,76,.3); text-align: right; transition: color .3s, transform .3s; }
.project-item:hover .proj-arrow { color: var(--gold); transform: translateX(4px); }
.project-item.no-link .proj-arrow { visibility: hidden; }

/* TESTIMONIALS PAGE */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--dark-3);
  padding: 52px 44px;
  border: 1px solid rgba(201,168,76,.06);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: rgba(201,168,76,.08);
  position: absolute;
  top: 20px; left: 36px;
  line-height: 1;
  font-style: italic;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.testimonial-author { display: flex; flex-direction: column; gap: 6px; }
.testimonial-name { font-size: 13px; color: var(--gold); letter-spacing: .08em; font-weight: 500; }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* ACCENT VARIANTS */
.btn-teal {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .35s, background .35s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}
.btn-teal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  z-index: -1;
}
.btn-teal:hover { color: var(--dark); }
.btn-teal:hover::before { transform: scaleX(1); }
.tag-teal {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(0,128,128,.4);
  padding: 3px 10px;
}
.tag-rose-gold {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-gold);
  border: 1px solid rgba(183,110,121,.4);
  padding: 3px 10px;
}

/* CONTACT PAGE */
.contact-content { max-width: 640px; }
.contact-email-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin: 40px 0;
  transition: opacity .2s;
  word-break: break-all;
}
.contact-email-large:hover { opacity: .75; }
.contact-body { color: var(--muted); line-height: 1.9; margin-bottom: 48px; }
.btn-gold {
  display: inline-block;
  padding: 16px 44px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .35s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  z-index: -1;
}
.btn-gold:hover { color: var(--dark); background: transparent; }
.btn-gold:hover::before { transform: scaleX(1); }

/* PROJECT DETAIL */
.project-detail-meta {
  display: flex; gap: 60px;
  padding: 48px 0;
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
  margin: 60px 0;
}
.meta-item { display: flex; flex-direction: column; gap: 8px; }
.meta-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); opacity: .7; }
.meta-value { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--warm-white); font-weight: 300; }
.project-body p { color: var(--muted); line-height: 1.9; margin-bottom: 20px; font-size: 15px; }
.project-client-logo {
  display: block;
  max-width: 320px;
  max-height: 70px;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .5;
  margin-top: 48px;
}
.back-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color .2s;
  margin-top: 60px;
}
.back-link:hover { color: var(--gold); }
.back-link::before { content: '←'; font-size: 14px; }

/* FOOTER */
footer {
  padding: 40px 60px;
  border-top: 1px solid rgba(201,168,76,.1);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--dark);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .6;
}
.footer-right { font-size: 11px; color: #919189; letter-spacing: .06em; display: flex; gap: 32px; align-items: center; }
.footer-right a { color: #919189; text-decoration: none; transition: color .2s; }
.footer-right a:hover { color: var(--gold); }

/* FADE IN */
@keyframes fadeUpFallback { to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; animation: fadeUpFallback 0.8s 1.8s both; }
.fade-up.visible { opacity: 1; transform: translateY(0); animation: none; }

/* ── ANIMATIONS ── */

/* Gold shimmer on italic accent text — opacity-only (compositor-safe) */
@keyframes goldShimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}
.page-title em { animation: goldShimmer 6s ease-in-out infinite; }

/* Section label line extends on scroll — scaleX avoids layout reflow */
@keyframes lineExpand { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: .5; } }
.section-label::before { transform-origin: left center; animation: lineExpand .7s .3s both; }

/* Upcoming confirmed tag pulse — opacity-only (compositor-safe) */
@keyframes pulseBorder {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
.upcoming-tag { animation: pulseBorder 3s ease-in-out infinite; }

/* Testimonial card hover lift */
.testimonial-card { transition: transform .3s ease, border-color .3s; }
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.18); }

/* Project item — name fades to gold, num highlights */
.proj-name { transition: color .3s; }
.proj-num { transition: color .3s; }
.project-item:hover .proj-name { color: var(--gold); }
.project-item:hover .proj-num { color: rgba(201,168,76,.55); }

/* About portrait hover zoom */
.about-portrait { overflow: hidden; }
.about-portrait img { transition: transform .7s ease; }
.about-portrait:hover img { transform: scale(1.04); }

/* Back link arrow slide */
.back-link::before { display: inline-block; transition: transform .2s; }
.back-link:hover::before { transform: translateX(-4px); }

/* Mobile responsive nav.scrolled */
@media (max-width: 900px) {
  nav.scrolled { padding: 14px 28px; }
}

/* Active tap states for mobile */
@media (hover: none) {
  .btn-gold:active { color: var(--dark); background: var(--gold); }
  .project-item:active { background: rgba(201,168,76,.04); }
  .nav-links a:active { color: var(--gold); opacity: 1; }
}

/* ── HAMBURGER MENU ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: transform .3s, opacity .3s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 24px 28px; }
  nav.scrolled { padding: 16px 28px; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,8,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 150;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; letter-spacing: .2em; opacity: .8; }
  section { padding: 64px 28px; }
  .page-hero { padding: 140px 28px 72px; }
  .page-hero--project { padding-top: 120px; padding-bottom: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-sticky { position: static; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 36px 28px; }
  .project-item { grid-template-columns: 60px 1fr; }
  .proj-location, .proj-role, .proj-logo { display: none; }
  /* project-hero-img uses aspect-ratio: 16/9 — no fixed height needed */
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 40px 28px; }
  .footer-right { flex-wrap: wrap; justify-content: center; }
  .project-detail-meta { flex-wrap: wrap; gap: 32px; padding: 32px 0; }
}

/* ── LIGHTNING IN A BOTTLE — TEMPORARILY HIDDEN ── */
/* To reactivate: delete the line below. All LIB content is preserved in HTML. */
.lib-hidden { display: none !important; }

/* ── LOGO IMAGE ── */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  opacity: .92;
  transition: opacity .2s;
}
.nav-logo-img:hover { opacity: 1; }
nav.scrolled .nav-logo-img { height: 28px; }
.footer-logo-img {
  height: 28px;
  width: auto;
  opacity: .75;
}
@media (max-width: 900px) {
  .nav-logo-img { height: 30px; }
  nav.scrolled .nav-logo-img { height: 24px; }
  .footer-logo-img { height: 24px; }
}

/* Speaking intro grid — 2 col to 1 col at 860px */
@media (max-width: 860px) {
  .speaking-intro-grid { grid-template-columns: 1fr !important; }
  .speaking-intro-photo { display: block; }
}

/* About page work grid — desktop default (inline style removed; class controls columns) */
.about-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Scroll offset for fixed nav (~80px) — prevents nav overlapping anchor targets */
.hero-scroll-target,
section[id],
.page-hero[id] {
  scroll-margin-top: 88px;
}

/* ── EXTRA MOBILE FIXES ── */
@media (max-width: 900px) {
  /* About page work grid — 3 col to 1 col */
  .about-work-grid { grid-template-columns: 1fr !important; }

  /* Project detail pages — 2 col to 1 col */
  .project-body-grid { grid-template-columns: 1fr !important; }

  /* Any inline 2-col grids used in sub-pages */
  [style*="grid-template-columns: 1.6fr 1fr"],
  [style*="grid-template-columns: 1fr 1.6fr"],
  [style*="grid-template-columns: 1.2fr 1fr"],
  [style*="grid-template-columns: 1fr 1.2fr"],
  [style*="grid-template-columns: 1.3fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* fp-section other-projects 3-col grid (both with and without space after comma) */
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Medicine / ancient-futures / LiB detail side panels */
  .project-detail-meta { gap: 20px; }

  /* Press items on mobile */
  .press-item { gap: 12px; }
}

@media (max-width: 600px) {
  /* Tap targets — make sure buttons are at least 44px */
  .btn-gold { padding: 18px 32px; font-size: 11px; }
  .nav-links a { padding: 12px 0; min-height: 44px; display: flex; align-items: center; }
  h2 { font-size: clamp(32px, 8vw, 52px); }
  .page-title { font-size: clamp(44px, 11vw, 80px) !important; }
}

/* ══════════════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ══════════════════════════════════════════════════════════════════ */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--rose-gold) 0%, var(--gold) 45%, var(--gold-light) 60%, var(--teal) 100%);
  background-size: 200% 100%;
  z-index: 9000;
  pointer-events: none;
  animation: progressShimmer 3s linear infinite;
}
@keyframes progressShimmer {
  from { background-position: 200% 0; }
  to   { background-position: 0%   0; }
}

/* ══════════════════════════════════════════════════════════════════
   PAGE-WIDE SPOTLIGHT (desktop / pointer devices only)
   ══════════════════════════════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  #page-spotlight {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9990;
    opacity: 0;
    transition: opacity .6s ease;
    will-change: background-image;
  }
}

/* ══════════════════════════════════════════════════════════════════
   NAV LINK ANIMATED UNDERLINE
   ══════════════════════════════════════════════════════════════════ */
.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ══════════════════════════════════════════════════════════════════
   PAGE ENTRANCE ANIMATION
   ══════════════════════════════════════════════════════════════════ */
@keyframes pageReveal {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
main { animation: pageReveal .55s .08s ease both; }

/* ══════════════════════════════════════════════════════════════════
   KEN BURNS ON PROJECT HERO IMAGES
   ══════════════════════════════════════════════════════════════════ */
.project-hero-img img {
  animation: kenBurns 16s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1);    transform-origin: center; }
  to   { transform: scale(1.07); transform-origin: 55% 45%; }
}

/* ══════════════════════════════════════════════════════════════════
   CLIP-PATH WIPE REVEAL (applied dynamically by animations.js)
   ══════════════════════════════════════════════════════════════════ */
.clip-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(.4,0,.2,1);
}
.clip-reveal.wipe-visible { clip-path: inset(0 0% 0 0); }

/* ══════════════════════════════════════════════════════════════════
   TESTIMONIAL QUOTE MARK DRIFT
   ══════════════════════════════════════════════════════════════════ */
@keyframes quoteDrift {
  0%, 100% { transform: translateY(0);   opacity: 1; }
  50%       { transform: translateY(-8px); opacity: .55; }
}
.testimonials-grid .testimonial-card::before {
  animation: quoteDrift 7s ease-in-out infinite;
}
.testimonials-grid .testimonial-card:nth-child(1)::before { animation-delay: 0s; }
.testimonials-grid .testimonial-card:nth-child(2)::before { animation-delay: 1.4s; }
.testimonials-grid .testimonial-card:nth-child(3)::before { animation-delay: 2.8s; }
.testimonials-grid .testimonial-card:nth-child(4)::before { animation-delay: 4.2s; }
.testimonials-grid .testimonial-card:nth-child(5)::before { animation-delay: 5.6s; }
.testimonials-grid .testimonial-card:nth-child(6)::before { animation-delay: 7s; }

/* ══════════════════════════════════════════════════════════════════
   CREDENTIAL DOTS PULSE
   ══════════════════════════════════════════════════════════════════ */
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,.5); }
  50%       { box-shadow: 0 0 0 5px rgba(201,168,76,0); }
}
.credential-dot { animation: dotPulse 3s ease-in-out infinite; }
.credentials .credential:nth-child(2) .credential-dot { animation-delay: .6s; }
.credentials .credential:nth-child(3) .credential-dot { animation-delay: 1.2s; }
.credentials .credential:nth-child(4) .credential-dot { animation-delay: 1.8s; }

/* ══════════════════════════════════════════════════════════════════
   FOOTER LINK UNDERLINE
   ══════════════════════════════════════════════════════════════════ */
.footer-right a { position: relative; }
.footer-right a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.footer-right a:hover::after { width: 100%; }

/* ══════════════════════════════════════════════════════════════════
   PRESS ITEMS — left-border reveal on hover
   ══════════════════════════════════════════════════════════════════ */
.press-item {
  transition: border-left-color .3s, padding-left .3s, background .3s;
  border-left: 3px solid transparent;
}
.press-item:hover {
  border-left-color: rgba(201,168,76,.4);
  padding-left: 12px;
  background: rgba(201,168,76,.02);
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT PORTRAIT — animate the gold border glow on hover
   ══════════════════════════════════════════════════════════════════ */
.about-portrait {
  transition: border-color .4s, box-shadow .4s;
}
.about-portrait:hover {
  border-color: rgba(201,168,76,.3);
  box-shadow: 0 0 32px rgba(201,168,76,.08);
}

/* ══════════════════════════════════════════════════════════════════
   HERO OVERLINE LINE — grows on load
   ══════════════════════════════════════════════════════════════════ */
@keyframes overlineGrow {
  from { width: 0; opacity: 0; }
  to   { width: 40px; opacity: .6; }
}
.hero-overline::before { animation: overlineGrow .8s .3s both; }

/* ══════════════════════════════════════════════════════════════════
   PHILOSOPHY QUOTE — word highlight sweep
   ══════════════════════════════════════════════════════════════════ */
.philosophy-quote span {
  display: inline;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,.12) 50%, transparent 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  animation: quoteSweep 4s 2s ease-in-out infinite;
}
@keyframes quoteSweep {
  0%   { background-position: 200% 0; }
  50%  { background-position: 0%   0; }
  100% { background-position: 200% 0; }
}

/* ══════════════════════════════════════════════════════════════════
   SKIP TO CONTENT (accessibility)
   ══════════════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--dark);
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 4px;
  transition: top .2s;
  white-space: nowrap;
}
.skip-link:focus { top: 0; outline: 2px solid var(--dark); outline-offset: 2px; }

/* ══════════════════════════════════════════════════════════════════
   FOOTER NAV LINKS
   ══════════════════════════════════════════════════════════════════ */
footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.footer-nav a {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #919189;
  text-decoration: none;
  opacity: .7;
  transition: color .2s, opacity .2s;
  position: relative;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.footer-nav a:hover { color: var(--gold); opacity: 1; }
.footer-nav a:hover::after { width: 100%; }

@media (max-width: 900px) {
  footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 40px 28px;
  }
  .footer-nav { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .footer-right { flex-wrap: wrap; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════════
   PHOTO GALLERY (responsive 3 → 2 → 1 col)
   ══════════════════════════════════════════════════════════════════ */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.photo-gallery-item {
  overflow: hidden;
  aspect-ratio: 3/2;
}
.photo-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.photo-gallery-item img:hover { transform: scale(1.05); }

@media (max-width: 860px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .photo-gallery { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   GENERAL FIXES
   ══════════════════════════════════════════════════════════════════ */
/* Breadcrumb wraps on long project names */
.breadcrumb { flex-wrap: wrap; }

/* Project hero images — brighter */
.project-hero-img img { opacity: .88; }

/* Better font smoothing */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Project detail page: tighten inner padding on medium screens */
@media (max-width: 860px) and (min-width: 600px) {
  section { padding: 80px 40px; }
  .page-hero { padding: 160px 40px 80px; }
}

/* Speaking page: show intro photo below on mobile instead of hiding */
@media (max-width: 860px) {
  .speaking-intro-photo { order: -1; display: block !important; margin-bottom: 32px; }
  .speaking-intro-photo img { max-height: 320px !important; }
}

/* Theme card 05 — full-width inner grid collapses to 1 col on mobile */
@media (max-width: 900px) {
  .theme-card[style*="grid-column: 1 / -1"] {
    grid-column: 1 / -1 !important;
    display: block !important;
  }
  .theme-card[style*="grid-column: 1 / -1"] .theme-body {
    padding-top: 0 !important;
    margin-top: 14px;
  }
}

/* ══════════════════════════════════════════════════════════════════
   ACCENT COLOR UTILITIES — rose gold + teal system
   ══════════════════════════════════════════════════════════════════ */

/* em tag color overrides — add class to the <em> element */
em.rose { color: var(--rose-gold); animation: none; }
em.teal { color: var(--teal); animation: none; }

/* Section label color variants */
.section-label.accent-rose { color: var(--rose-gold); }
.section-label.accent-rose::before { background: var(--rose-gold); }
.section-label.accent-teal { color: var(--teal); }
.section-label.accent-teal::before { background: var(--teal); }

/* Hero stat number colors */
.hero-stat-num.rose { color: var(--rose-gold); }
.hero-stat-num.teal { color: var(--teal); }

/* About role in rose gold */
.about-title.rose,
.about-role.rose { color: var(--rose-gold); }

/* Speaking intro photo — rose gold left accent */
.speaking-photo-rose {
  border: 1px solid rgba(183,110,121,.12) !important;
  border-left: 3px solid rgba(183,110,121,.45) !important;
}

/* Booking strip — teal theme */
.booking-strip-teal {
  background: rgba(0,128,128,.04) !important;
  border-color: rgba(0,128,128,.16) !important;
}
.booking-strip-teal h2 em { color: var(--teal); animation: none; }

/* Podcast block — rose gold border */
.podcast-block-rose {
  border-color: rgba(183,110,121,.2) !important;
}
.podcast-block-rose .podcast-label { color: var(--rose-gold); }
.podcast-cta.rose {
  color: var(--rose-gold);
  border-color: rgba(183,110,121,.35);
}
.podcast-cta.rose:hover {
  background: var(--rose-gold);
  color: var(--dark);
}

/* Philosophy quote span override — rose gold for warmth */
.philosophy-quote-rose { color: var(--rose-gold) !important; }

/* Service card accent numbers */
.service-card.accent-rose .service-num { color: rgba(183,110,121,.18); }
.service-card.accent-teal .service-num { color: rgba(0,128,128,.18); }

/* Talk marker colors */
.talk-marker.rose { background: var(--rose-gold); opacity: .55; }
.talk-marker.teal { background: var(--teal); opacity: .55; }

/* Theme card number tints */
.theme-number.rose { color: rgba(183,110,121,.22); }
.theme-number.teal { color: rgba(0,128,128,.22); }
.theme-card:hover .theme-number.rose { color: rgba(183,110,121,.4); }
.theme-card:hover .theme-number.teal { color: rgba(0,128,128,.4); }

/* Contact title — teal em for action */
.contact-title-teal em { color: var(--teal); animation: none; }

/* Section divider accent lines */
.section-divider.rose { border-top-color: rgba(183,110,121,.15) !important; }
.section-divider.teal { border-top-color: rgba(0,128,128,.15) !important; }

/* ══════════════════════════════════════════════════════════════════
   SPEAKING PAGE
   ══════════════════════════════════════════════════════════════════ */
.themes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.theme-card { background: var(--dark-3); padding: 40px; border: 1px solid rgba(201,168,76,.06); transition: border-color .3s, transform .3s, background .3s; cursor: default; }
.theme-card:hover { border-color: rgba(201,168,76,.22); transform: translateY(-5px); background: #1d1d1a; }
.theme-card:nth-child(2) { border-top: 2px solid var(--rose-gold); }
.theme-card:nth-child(4) { border-top: 2px solid var(--teal); }
.theme-card:hover .theme-number { color: rgba(201,168,76,.35); transition: color .3s; }
.theme-number { font-family: 'Cormorant Garamond', serif; font-size: 36px; color: rgba(201,168,76,.15); font-weight: 300; line-height: 1; margin-bottom: 16px; transition: color .3s; }
.theme-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--warm-white); line-height: 1.3; margin-bottom: 14px; font-weight: 400; }
.theme-body { font-size: 13px; color: var(--muted); line-height: 1.8; }

.talks-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.talk-item { display: grid; grid-template-columns: auto 1fr; gap: 32px; padding: 28px 0; border-bottom: 1px solid rgba(201,168,76,.07); align-items: start; }
.talk-marker { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: .45; margin-top: 7px; flex-shrink: 0; }
.talk-event { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--warm-white); font-weight: 400; margin-bottom: 4px; line-height: 1.3; }
.talk-location-date { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); opacity: .6; margin-bottom: 8px; }
.talk-title { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: var(--muted); line-height: 1.5; }
.talk-detail { font-size: 12px; color: var(--muted); line-height: 1.7; margin-top: 8px; opacity: .8; }
.talk-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); text-decoration: none; opacity: .65; transition: opacity .2s; }
.talk-link:hover { opacity: 1; }

.upcoming-tag { display: inline-block; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); border: 1px solid rgba(0,128,128,.35); padding: 3px 10px; margin-top: 6px; }

.podcast-block { background: var(--dark-3); border: 1px solid rgba(201,168,76,.1); padding: 44px 48px; margin-top: 48px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.podcast-label { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); opacity: .7; margin-bottom: 14px; }
.podcast-show { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--warm-white); font-weight: 400; line-height: 1.2; margin-bottom: 6px; }
.podcast-episode { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; color: var(--muted); margin-bottom: 12px; }
.podcast-topics { font-size: 12px; color: var(--muted); line-height: 1.8; opacity: .85; }
.podcast-cta { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid rgba(201,168,76,.3); padding: 14px 22px; white-space: nowrap; transition: background .3s, color .3s; }
.podcast-cta:hover { background: var(--gold); color: var(--dark); }

.booking-strip { background: rgba(201,168,76,.04); border: 1px solid rgba(201,168,76,.12); padding: 56px 60px; text-align: center; margin-top: 80px; }
.booking-strip h2 { margin-bottom: 20px; }
.booking-strip p { max-width: 520px; margin: 0 auto 36px; font-size: 14px; color: var(--muted); line-height: 1.8; }

.section-divider { margin: 80px 0 0; padding-top: 64px; border-top: 1px solid rgba(201,168,76,.08); }

@media (max-width: 900px) {
  .themes-grid { grid-template-columns: 1fr; }
  .podcast-block { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
  .talk-item { grid-template-columns: 1fr; gap: 8px; }
  .talk-marker { display: none; }
  .booking-strip { padding: 40px 28px; }
}
@media (max-width: 700px) {
  .theme-card { padding: 28px 24px; }
  .section-divider { margin: 56px 0 0; padding-top: 48px; }
}

/* ══════════════════════════════════════════════════════════════════
   PRESS PAGE
   ══════════════════════════════════════════════════════════════════ */
.press-intro { max-width: 560px; margin-bottom: 72px; }
.press-intro p { font-size: 15px; color: var(--muted); line-height: 1.8; }

.press-category { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.press-category-label { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); opacity: .7; white-space: nowrap; }
.press-category-line { flex: 1; height: 1px; background: rgba(201,168,76,.1); }

.press-item { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(201,168,76,.07); text-decoration: none; transition: background .2s; cursor: pointer; }
.press-item:hover .press-publication { color: var(--gold); }
.press-item:hover .press-arrow { transform: translateX(5px); opacity: 1; }

.press-publication { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--warm-white); margin-bottom: 6px; transition: color .2s; line-height: 1.2; }
.press-title { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: var(--muted); line-height: 1.5; margin-bottom: 8px; }
.press-meta { display: flex; align-items: center; gap: 14px; }
.press-date { font-size: 11px; letter-spacing: .1em; color: var(--muted); opacity: .6; }
.press-type { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); opacity: .5; padding: 3px 8px; border: 1px solid rgba(201,168,76,.2); }
.press-arrow { font-size: 16px; color: var(--gold); opacity: .4; transition: transform .25s, opacity .25s; padding-top: 4px; flex-shrink: 0; }
.press-item-static { padding: 28px 0; border-bottom: 1px solid rgba(201,168,76,.07); }
.press-group { margin-bottom: 64px; }

@media (max-width: 700px) {
  .press-item { grid-template-columns: 1fr; }
  .press-arrow { display: none; }
  .press-publication { font-size: 18px; }
}

/* ══════════════════════════════════════════════════════════════════
   PROJECTS PAGE
   ══════════════════════════════════════════════════════════════════ */
.fp-section { padding: 100px 0; border-top: 1px solid rgba(201,168,76,.07); }
.fp-section:first-of-type { border-top: none; }

.fp-ghost-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 300;
  color: rgba(201,168,76,.04); line-height: 1;
  letter-spacing: -.02em; margin-bottom: -32px; user-select: none;
}
.fp-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(56px, 7vw, 100px); font-weight: 300; color: var(--warm-white); line-height: .95; margin-bottom: 20px; }
.fp-title em { font-style: italic; color: var(--gold); }

.fp-meta-row { display: flex; align-items: center; gap: 0; margin-bottom: 48px; flex-wrap: wrap; }
.fp-meta-item { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; padding: 0 20px; color: var(--muted); }
.fp-meta-item:first-child { padding-left: 0; color: var(--gold); opacity: .75; }
.fp-meta-sep { width: 1px; height: 14px; background: rgba(201,168,76,.2); flex-shrink: 0; }

.fp-hero-img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.fp-hero-img-tall { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; }

/* Stacked project layout (one hero image per project) */
.fp-project-img {
  width: 100%; display: block;
  aspect-ratio: 16 / 9; object-fit: cover; object-position: center;
  margin: 44px 0 48px;
}
.fp-project-desc {
  max-width: 760px;
  font-size: 15px; color: var(--muted); line-height: 1.9;
}
.fp-project-desc p + p { margin-top: 18px; }

.fp-body { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
.fp-body-wide { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.fp-desc { font-size: 15px; color: var(--muted); line-height: 1.9; }
.fp-desc p + p { margin-top: 18px; }
.fp-link {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 36px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,.25); padding-bottom: 10px;
  transition: opacity .2s;
}
.fp-link:hover { opacity: .65; }

.fp-photo-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.fp-photo-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.fp-photo-grid-2-tall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.fp-photo-grid-3 img, .fp-photo-grid-2 img, .fp-photo-grid-2-tall img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.fp-photo-grid-2-tall img { aspect-ratio: 4 / 3; }
.fp-gallery-stack { display: flex; flex-direction: column; gap: 8px; }

/* Stacked layout: description above, photo strip spanning full width below */
.fp-stacked { display: flex; flex-direction: column; gap: 48px; margin-top: 48px; }
.fp-stacked .fp-desc { max-width: 780px; }
.fp-photo-strip { display: grid; gap: 8px; }
.fp-photo-strip img { width: 100%; height: 260px; object-fit: cover; display: block; }

/* Right-column compact photo grid (text left, photos right) */
.fp-photo-grid-right { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.fp-photo-grid-right img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; display: block; }

.further-work { background: var(--dark-2); border-top: 1px solid rgba(201,168,76,.1); }
.fw-list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.fw-item {
  display: grid; grid-template-columns: 40px 1fr auto auto;
  gap: 32px; align-items: center; padding: 22px 0;
  border-bottom: 1px solid rgba(201,168,76,.06);
  text-decoration: none; transition: background .2s;
}
a.fw-item:hover .fw-name { color: var(--gold); }
.fw-num { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: rgba(201,168,76,.2); }
.fw-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--warm-white); transition: color .2s; }
.fw-location { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-align: right; }
.fw-role { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); opacity: .55; text-align: right; min-width: 140px; }

@media (max-width: 900px) {
  .fp-section { padding: 64px 28px; }
  .fp-ghost-num { font-size: 80px; margin-bottom: -16px; }
  .fp-title { font-size: 52px; }
  .fp-body, .fp-body-wide { grid-template-columns: 1fr; gap: 40px; }
  .fp-photo-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .fp-photo-strip { grid-template-columns: repeat(2, 1fr) !important; }
  .fp-photo-strip img { height: 200px; }
  .fw-item { grid-template-columns: 32px 1fr; gap: 16px; }
  .fw-location, .fw-role { display: none; }
}
@media (max-width: 600px) {
  .fp-section { padding: 48px 20px; }
  .fp-meta-row { gap: 8px; }
  .fp-meta-item { padding: 0 12px; font-size: 9px; }
  .fp-photo-grid-2, .fp-photo-grid-2-tall { grid-template-columns: 1fr; }
  .fp-photo-grid-2 img, .fp-photo-grid-2-tall img { aspect-ratio: 3/2; }
  .fp-photo-strip { grid-template-columns: 1fr 1fr !important; }
  .fp-photo-strip img { height: 180px; }
  .fp-photo-grid-right { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT PAGE — work card hover + press link
   ══════════════════════════════════════════════════════════════════ */
.work-card-gold:hover { border-color: rgba(201,168,76,.25) !important; }
.work-card-rose:hover { border-color: rgba(183,110,121,.4) !important; }
.work-card-teal:hover { border-color: rgba(0,128,128,.4) !important; }

.about-press-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 20px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  opacity: .7; transition: opacity .2s;
}
.about-press-link:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════════════
   PRESS PAGE — cursor fixes
   ══════════════════════════════════════════════════════════════════ */
.press-item { cursor: pointer; }
.press-item-static { cursor: default; opacity: .75; pointer-events: none; }

/* ══════════════════════════════════════════════════════════════════
   CONTACT PAGE — responsive layout
   ══════════════════════════════════════════════════════════════════ */
.contact-body-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; align-items: start; }
@media (max-width: 900px) {
  .contact-body-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
}

/* ══════════════════════════════════════════════════════════════════
   PREFERS REDUCED MOTION — kill all animations
   ══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  main { animation: none !important; }
  .fade-up { opacity: 1 !important; transform: none !important; animation: none !important; }
  .clip-reveal { clip-path: none !important; }
  .project-hero-img img { animation: none !important; }
}
