/* Jeremy Deeble — personal site
   Palette: obsidian + ivory + antique gold
   Type: Cormorant Garamond display + Inter body */

:root {
  --bg: #0A0908;
  --bg-elev: #14110F;
  --bg-card: #1A1612;
  --line: #2A231D;
  --ink: #F5F1EA;
  --ink-dim: #BFB3A1;
  --ink-mute: #7A6E5F;
  --gold: #C9A961;
  --gold-soft: #D9BD7B;
  --warm: #D4A574;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'kern', 'liga';
  overflow-x: hidden;
}

.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; }

/* ── Nav ──────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 5vw;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(180deg, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0) 100%);
  backdrop-filter: blur(8px);
}
.nav__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__brand span { color: var(--gold); }
.nav__links { display: flex; gap: 36px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.nav__links a { color: var(--ink-dim); }
.nav__links a.active { color: var(--gold); }
.nav__links a:hover { color: var(--ink); }

@media (max-width: 720px) {
  .nav { padding: 16px 5vw; }
  .nav__brand { font-size: 16px; }
  .nav__links { gap: 18px; font-size: 11px; }
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  align-items: stretch;
  position: relative;
}
.hero__copy {
  padding: 18vh 6vw 8vh 6vw;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero__eyebrow {
  font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.hero__eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero__title {
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--ink-dim);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.55;
}
.hero__meta {
  display: flex; gap: 32px; font-size: 13px; color: var(--ink-mute);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.hero__meta span + span::before {
  content: ''; display: inline-block; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%; margin-right: 32px;
  vertical-align: middle;
}
.hero__img {
  position: relative;
  background:
    radial-gradient(ellipse 75% 85% at 55% 50%, rgba(201,169,97,0.10) 0%, transparent 60%),
    var(--bg-elev);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero__img::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(0,0,0,0.45) 0%, transparent 70%);
  pointer-events: none; z-index: 2;
}
.hero__img img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  filter: contrast(1.04) brightness(1.04) saturate(0.95);
  z-index: 1;
  transition: transform 1.2s ease, filter 1.2s ease;
}
.hero:hover .hero__img img {
  transform: scale(1.02);
  filter: contrast(1.06) brightness(1.08) saturate(1.0);
}
.hero__scroll {
  position: absolute; bottom: 36px; left: 6vw;
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__img { height: 70vh; order: -1; }
  .hero__copy { padding: 6vh 6vw 8vh 6vw; }
  .hero__scroll { display: none; }
}

/* ── Sections ─────────────────────────────────── */
.section { padding: 12vh 6vw; }
.section--narrow { max-width: 1100px; margin: 0 auto; }
.section--wide { max-width: 1400px; margin: 0 auto; }

.eyebrow {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}

.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05; letter-spacing: -0.015em;
  margin-bottom: 32px; max-width: 900px;
}
.h2 em { font-style: italic; color: var(--gold); }

.lede {
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ink-dim);
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 56px;
}

p { color: var(--ink-dim); margin-bottom: 22px; max-width: 700px; }
p strong { color: var(--ink); font-weight: 600; }

/* ── Stats grid (Home) ────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  background: var(--bg);
  padding: 56px 36px;
}
.stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 500; letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.stat__label {
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-dim);
}
@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 36px 24px; }
}

/* ── Feature/two-col ──────────────────────────── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.two-col img { border: 1px solid var(--line); }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Pull-quote ───────────────────────────────── */
.quote {
  border-left: 1px solid var(--gold);
  padding: 24px 0 24px 36px;
  margin: 56px 0;
}
.quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.35;
  max-width: 800px;
  margin-bottom: 16px;
}
.quote cite {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute); font-style: normal;
}

/* ── Timeline (Story page) ────────────────────── */
.timeline { border-left: 1px solid var(--line); padding-left: 48px; margin-top: 40px; }
.timeline__entry { padding: 28px 0; position: relative; }
.timeline__entry::before {
  content: ''; position: absolute; left: -53px; top: 38px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px var(--bg);
}
.timeline__year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--gold); margin-bottom: 8px;
  font-weight: 500;
}
.timeline__title {
  font-size: 18px; color: var(--ink); margin-bottom: 10px;
  font-weight: 600;
}
.timeline__body { color: var(--ink-dim); max-width: 700px; }

/* ── Cards (Empire page) ──────────────────────── */
.cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 32px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 40px;
  transition: border-color .3s, transform .3s;
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); }
.card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; color: var(--gold); line-height: 1;
  margin-bottom: 12px;
}
.card__title {
  font-size: 20px; font-weight: 600; color: var(--ink);
  margin-bottom: 12px;
}
.card__body { color: var(--ink-dim); font-size: 15px; }
@media (max-width: 720px) { .cards { grid-template-columns: 1fr; } }

/* ── Press marquee ────────────────────────────── */
.press {
  display: flex; flex-wrap: wrap; gap: 48px; align-items: center; justify-content: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 80px 0;
}
.press__item {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ink-mute); font-style: italic;
  letter-spacing: 0.02em;
}
.press__item strong { color: var(--gold-soft); font-style: normal; font-weight: 500; }

/* ── Socials ──────────────────────────────────── */
.socials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0;
  border-top: 1px solid var(--line);
}
.social {
  padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
  transition: background .25s;
}
.social:hover { background: var(--bg-elev); }
.social__plat {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}
.social__handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; color: var(--ink); font-weight: 500;
}
.social__meta { font-size: 13px; color: var(--ink-mute); }

/* ── CTA / Contact ────────────────────────────── */
.cta {
  text-align: center;
  padding: 16vh 6vw;
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse at center, rgba(201,169,97,0.08) 0%, transparent 60%);
}
.cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1; margin-bottom: 24px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.cta__title em { color: var(--gold); font-style: italic; }
.cta__sub { color: var(--ink-dim); margin: 0 auto 40px; max-width: 600px; }
.btn {
  display: inline-block;
  padding: 18px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500;
  transition: background .25s, color .25s;
}
.btn:hover { background: var(--gold); color: var(--bg); }
.btn + .btn { margin-left: 14px; }
.btn--solid { background: var(--gold); color: var(--bg); }
.btn--solid:hover { background: var(--gold-soft); color: var(--bg); }

/* ── Footer ───────────────────────────────────── */
.foot {
  border-top: 1px solid var(--line);
  padding: 56px 6vw 36px;
  text-align: center;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mute);
}
.foot__sig {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 16px;
  color: var(--gold); text-transform: none; letter-spacing: 0;
  margin-bottom: 16px;
}

/* ── Logo strip (as featured in) ───────────────── */
.logo-strip {
  display: flex; flex-wrap: wrap; gap: 56px; align-items: center; justify-content: center;
  padding: 64px 6vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 50%, var(--bg) 100%);
}
.logo-strip__label {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  width: 100%; text-align: center; margin-bottom: 4px;
}
.logo-strip__item {
  height: 44px;
  opacity: 0.95;
  transition: opacity .4s, transform .4s;
  display: flex; align-items: center;
}
.logo-strip__item:hover { opacity: 1; transform: scale(1.06); }
.logo-strip__item img { height: 100%; width: auto; display: block; }

/* Dark-on-transparent SVG/PNG → invert to ivory white so they pop on obsidian */
.logo-strip__item--invert img {
  filter: brightness(0) invert(0.95);
}

/* JPEG/PNG with white background → screen-blend so white drops away, content stays bright */
.logo-strip__item--screen img {
  mix-blend-mode: screen;
  filter: contrast(1.1) brightness(1.1);
}

/* Text-style "logo" items (when no real logo asset available) */
.logo-strip__item--text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 24px; font-weight: 500;
  color: var(--ink); letter-spacing: 0.02em;
  height: auto;
}
.logo-strip__item--text:hover { color: var(--gold-soft); }

@media (max-width: 720px) {
  .logo-strip { gap: 28px; padding: 44px 6vw; }
  .logo-strip__item { height: 32px; }
  .logo-strip__item--text { font-size: 18px; }
}

/* ── Magazine-cover feature ────────────────────── */
.cover-feature {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: center;
  padding: 8vh 6vw;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cover-feature__img {
  position: relative;
  display: flex; justify-content: center;
}
.cover-feature__img img {
  max-width: 100%; height: auto;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.7),
    0 8px 20px -8px rgba(201,169,97,0.25);
  border: 1px solid var(--line);
  transform: rotate(-2.5deg);
  transition: transform .6s ease;
}
.cover-feature__img:hover img { transform: rotate(0deg) scale(1.02); }
.cover-feature__img::before {
  content: 'COVER · APRIL 2018';
  position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.4em; color: var(--gold);
}
.cover-feature__copy .h2 { margin-bottom: 24px; }
@media (max-width: 900px) {
  .cover-feature { grid-template-columns: 1fr; gap: 32px; padding: 8vh 7vw; }
  .cover-feature__img img { max-width: 280px; transform: rotate(-1.5deg); }
}

/* ── Authority portrait grid ───────────────────── */
.authority {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
}
.authority__item {
  background: var(--bg);
  padding: 36px 24px 32px;
  text-align: center;
  position: relative;
  transition: background .35s;
}
.authority__item:hover { background: var(--bg-elev); }
.authority__img {
  width: 96px; height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold);
  position: relative;
}
.authority__img::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}
.authority__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.85);
  object-position: 50% 18%;  /* push focus up to face, crop out chest/edges */
}
/* Per-person object-position overrides: dial in face crop for each portrait */
.authority__img--maxwell img { object-position: 50% 22%; }
.authority__img--burchard img { object-position: 50% 28%; }  /* clean teal-bg portrait, focus on face */
.authority__img--cardone img { object-position: 42% 35%; }   /* wide aspect: face is upper-center; pull crop to face */
.authority__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--ink);
  margin-bottom: 4px;
}
.authority__role {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.authority__context {
  font-size: 13px; color: var(--ink-dim); line-height: 1.55;
  max-width: 220px; margin: 0 auto;
}
@media (max-width: 720px) {
  .authority { grid-template-columns: 1fr; }
  .authority__item { padding: 28px 20px; }
}

/* ── Stage event grid (Vimeo thumbs) ───────────── */
.events {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 36px;
}
.events__item {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  cursor: default;
}
.events__item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.85) brightness(0.95);
  transition: transform .8s ease, filter .5s ease;
}
.events__item:hover img { transform: scale(1.05); filter: contrast(1.1) saturate(1.0) brightness(1.05); }
.events__item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1; pointer-events: none;
}
.events__caption {
  position: absolute; bottom: 14px; left: 16px; right: 16px;
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink); z-index: 2;
}
.events__caption strong { color: var(--gold); display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 4px; }
@media (max-width: 720px) {
  .events { grid-template-columns: 1fr; gap: 10px; }
}

/* ── Podcast strip ─────────────────────────────── */
.podcast-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 200px));
  gap: 22px; justify-content: center;
  margin: 36px 0;
}
.podcast-strip__item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .5s ease, border-color .5s ease;
}
.podcast-strip__item:hover { transform: translateY(-4px); border-color: var(--gold); }
.podcast-strip__item img { width: 100%; height: 100%; object-fit: cover; }
.podcast-strip__caption {
  font-size: 11px; letter-spacing: 0.12em; color: var(--ink-mute);
  text-align: center; margin-top: 10px;
  text-transform: uppercase;
}

/* ── Book feature (Power of 5) ─────────────────── */
.book-feature {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px;
  align-items: center;
  padding: 8vh 6vw;
}
.book-feature__cover {
  position: relative;
  display: flex; justify-content: center;
}
.book-feature__cover img {
  max-width: 320px; width: 100%;
  box-shadow:
    0 24px 60px -16px rgba(0,0,0,0.7),
    -12px 0 0 -4px rgba(201,169,97,0.15),
    -6px 0 0 -1px rgba(0,0,0,0.4);
  transition: transform .6s ease;
}
.book-feature__cover:hover img { transform: translateY(-4px) rotate(-1deg); }
.book-feature__cover::before {
  content: 'CONTRIBUTING AUTHOR';
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.4em; color: var(--gold);
}
@media (max-width: 900px) {
  .book-feature { grid-template-columns: 1fr; gap: 40px; padding: 8vh 7vw; }
  .book-feature__cover img { max-width: 220px; }
}

/* ── Photo galleries (Mindy page) ─────────────── */
.couple-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.couple-hero__img {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--bg-elev);
}
.couple-hero__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.02) brightness(1.0) saturate(0.95);
  transition: transform .8s ease, filter .8s ease;
}
.couple-hero__img:hover img { transform: scale(1.02); filter: contrast(1.05) brightness(1.04) saturate(1.0); }
.couple-hero__copy {
  padding: 8vh 5vw;
  display: flex; flex-direction: column; justify-content: center;
}
.couple-hero__copy .h2 { margin-bottom: 24px; }
@media (max-width: 900px) {
  .couple-hero {
    display: flex;
    flex-direction: column;
  }
  .couple-hero__copy { display: contents; }
  .couple-hero__copy .eyebrow,
  .couple-hero__copy .h2,
  .couple-hero__copy p {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .couple-hero__copy .eyebrow { order: 1; padding-top: 6vh; }
  .couple-hero__copy .h2 { order: 2; margin-bottom: 8px; }
  .couple-hero__img { order: 3; margin: 8px 0 24px; }
  .couple-hero__copy p { order: 4; }
  .couple-hero__copy p:last-of-type { padding-bottom: 6vh; }
}

.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  margin: 40px 0;
}
.gallery__item {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--bg-elev);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.02) saturate(0.92);
  transition: transform 1s ease, filter .6s ease;
}
.gallery__item:hover img { transform: scale(1.04); filter: contrast(1.05) saturate(1.05); }
.gallery__item--wide { aspect-ratio: 4/3; grid-column: span 2; }
.gallery__item--tall { aspect-ratio: 3/5; grid-row: span 2; }
@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr 1fr; gap: 1px; margin: 28px 0; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: auto; }
}

.feature-img {
  width: 100%;
  margin: 36px 0;
  border: 1px solid var(--line);
  filter: contrast(1.02) saturate(0.95);
  display: block;
}
.feature-img + .caption,
.caption {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  text-align: center;
  margin-top: -20px;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.caption::before {
  content: '— ';
  color: var(--gold);
  margin-right: 4px;
}

/* Split feature: text + image side-by-side, used in Arc */
.split-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
  margin: 56px 0;
}
.split-feature--reverse > :first-child { order: 2; }
.split-feature__img {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}
.split-feature__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
  transition: transform 1s ease;
}
.split-feature__img:hover img { transform: scale(1.04); }
.split-feature__img--wide { aspect-ratio: 5/4; }
.split-feature__copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--ink); margin-bottom: 14px; font-weight: 500;
}
.split-feature__copy .eyebrow { margin-bottom: 14px; }
@media (max-width: 900px) {
  .split-feature { grid-template-columns: 1fr; gap: 28px; margin: 36px 0; }
  .split-feature--reverse > :first-child { order: 0; }
}

/* Inline thumbnail row (small images between paragraphs) */
.thumb-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
  margin: 32px 0;
}
.thumb-row__item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  position: relative;
}
.thumb-row__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.thumb-row__item:hover img { transform: scale(1.06); }
.thumb-row__item--logo {
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.thumb-row__item--logo img { height: 50%; width: auto; object-fit: contain; opacity: 0.9; }

/* ── Speak hero (book-to-speak page) ──────────── */
.speak-hero {
  display: grid; grid-template-columns: 1.1fr 1fr;
  align-items: center;
  min-height: 92vh;
  padding: 18vh 6vw 8vh;
  gap: 80px;
  border-bottom: 1px solid var(--line);
}
.speak-hero__copy { max-width: 640px; }
.speak-hero__copy .h2 {
  font-size: clamp(48px, 6.4vw, 92px);
  margin-bottom: 28px;
}
.speak-hero__img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  box-shadow: 0 30px 80px -24px rgba(0,0,0,0.7);
}
.speak-hero__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.06) saturate(1.05);
}
.speak-hero__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .speak-hero { grid-template-columns: 1fr; padding: 14vh 6vw 6vh; gap: 36px; min-height: auto; }
  .speak-hero__img { aspect-ratio: 4/3; max-height: 60vh; }
}

/* ── Origin photo (portrait, leather chair + wood wall) ─ */
.origin-photo {
  width: 100%; height: auto;
  max-height: 720px;
  aspect-ratio: 683/1024;
  object-fit: cover;
  object-position: center 20%;  /* keep face centered, cap the bottom hand-clasp space */
  border: 1px solid var(--line);
  filter: contrast(1.04) saturate(0.96);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.7);
}

/* Smaller feature image — for things that read better at modest scale */
.feature-img--small {
  max-width: 460px;
  margin: 36px auto;
  display: block;
}
.feature-img--small + .caption { margin-top: -28px; }

/* ── Act marker (typographic chapter heading) ─── */
.act-block { position: relative; }
.act-marker {
  display: flex; align-items: baseline; gap: 28px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.act-marker__num {
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.85;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.04em;
  text-shadow: 0 0 50px rgba(201,169,97,0.25);
}
.act-marker__label {
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.act-marker__divider {
  flex: 1; height: 1px; background: var(--gold);
  opacity: 0.35;
  align-self: center;
}
.act-marker__hint {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold-soft);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .act-marker { flex-wrap: wrap; gap: 12px; }
  .act-marker__num { font-size: 72px; }
  .act-marker__label { font-size: 11px; letter-spacing: 0.24em; }
  .act-marker__divider { display: none; }
  .act-marker__hint { font-size: 15px; width: 100%; }
}

/* ── Float-in animation ───────────────────────── */
.fade { opacity: 0; transform: translateY(20px); transition: opacity 1.2s ease, transform 1.2s ease; }
.fade.in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   POLISH PASS · v6 · cinematic refinements
   ═══════════════════════════════════════════════════════════════ */

/* Subtle film-grain texture site-wide (cinematic feel, very light) */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 0 0.85  0 0 0 0.04 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: overlay;
}

/* Type: tighter kerning for headlines */
.h2, .hero__title, .cta__title { font-feature-settings: 'kern', 'liga', 'dlig', 'calt'; }
.serif { font-feature-settings: 'kern', 'liga', 'dlig'; }

/* Subtle text-shadow on the gold accents to make them glow */
.h2 em, .hero__title em, .cta__title em, .stat__num, .timeline__year, .card__num {
  text-shadow: 0 0 32px rgba(201,169,97,0.18);
}

/* ── Nav: animated underline + active dot ─────── */
.nav__links a {
  position: relative;
  padding: 6px 2px;
  transition: color .3s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s ease;
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.active::after {
  transform: scaleX(1); transform-origin: left; opacity: 0.65;
}

/* Brand hover effect */
.nav__brand { transition: opacity .3s; }
.nav__brand:hover { opacity: 0.78; }

/* ── Hero: drop cap on hero__sub, internal vignette ── */
.hero__copy::before {
  content: ''; position: absolute; top: 18vh; left: 6vw;
  width: 1px; height: 60px; background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  opacity: 0.5;
}
.hero__img {
  /* Add subtle internal vignette so face stands out from glow */
  box-shadow: inset 0 0 120px rgba(0,0,0,0.4);
}
.hero__img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 65% at 50% 65%, transparent 0%, transparent 50%, rgba(0,0,0,0.35) 100%);
  pointer-events: none; z-index: 1;
}

/* Hero scroll cue: animated bounce */
.hero__scroll {
  animation: scrollBounce 2.4s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ── Stats: hover lift + gold underline reveal ─── */
.stat {
  position: relative;
  transition: background .35s ease;
  cursor: default;
}
.stat::after {
  content: ''; position: absolute; left: 36px; right: 36px; bottom: 24px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s ease;
}
.stat:hover { background: var(--bg-elev); }
.stat:hover::after { transform: scaleX(0.4); }
@media (max-width: 720px) {
  .stat::after { left: 18px; right: 18px; bottom: 16px; }
}

/* ── Section ornament: gold dot divider ───────── */
.section + .section:not([style*="background"])::before,
section.cta::before {
  content: '◆';
  display: block;
  text-align: center;
  font-size: 8px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 6vh;
  letter-spacing: 8px;
  font-family: serif;
}
section.cta::before { content: '◆ ◆ ◆'; margin-bottom: 4vh; opacity: 0.4; letter-spacing: 14px; }

/* ── Quote: dramatic opening mark ──────────────── */
.quote { position: relative; }
.quote::before {
  content: '"';
  position: absolute; top: -28px; left: -8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 140px; line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  font-style: italic;
  pointer-events: none;
  font-weight: 400;
}
.quote p { position: relative; z-index: 1; }
.quote cite { display: inline-block; padding-top: 4px; }
.quote cite::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--gold);
  margin-right: 12px; vertical-align: middle;
  opacity: 0.7;
}
@media (max-width: 720px) {
  .quote::before { font-size: 90px; top: -20px; left: -2px; }
}

/* ── Cards: gold corner accents on hover ──────── */
.card {
  position: relative;
  overflow: hidden;
}
.card::before, .card::after {
  content: ''; position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
  opacity: 0; transition: opacity .4s ease, transform .4s ease;
}
.card::before {
  top: 8px; left: 8px;
  border-right: none; border-bottom: none;
  transform: translate(4px, 4px);
}
.card::after {
  bottom: 8px; right: 8px;
  border-left: none; border-top: none;
  transform: translate(-4px, -4px);
}
.card:hover::before { opacity: 0.7; transform: none; }
.card:hover::after { opacity: 0.7; transform: none; }
.card:hover .card__num { color: var(--gold-soft); }

/* ── Press marquee: kinetic auto-scroll ───────── */
.press {
  overflow: hidden;
  flex-wrap: nowrap;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: 56px 0;
}
.press__track {
  display: flex; gap: 64px; flex-shrink: 0;
  animation: marquee 32s linear infinite;
}
.press:hover .press__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.press__item { flex-shrink: 0; white-space: nowrap; }

/* ── Timeline: alternating sides on desktop ───── */
@media (min-width: 900px) {
  .timeline {
    border-left: none;
    padding-left: 0;
    max-width: 900px; margin: 40px auto 0;
    position: relative;
  }
  .timeline::before {
    content: ''; position: absolute; top: 0; bottom: 0;
    left: 50%; width: 1px; background: var(--line);
    transform: translateX(-50%);
  }
  .timeline__entry {
    width: 44%;
    padding: 28px 0;
    position: relative;
  }
  .timeline__entry:nth-child(odd) {
    margin-left: 0; padding-right: 40px; text-align: right;
  }
  .timeline__entry:nth-child(odd)::before {
    left: auto; right: -49px;
  }
  .timeline__entry:nth-child(even) {
    margin-left: 56%; padding-left: 40px;
  }
  .timeline__entry:nth-child(even)::before {
    left: -49px;
  }
  .timeline__year { font-size: 32px; }
  .timeline__entry:nth-child(odd) .timeline__body { margin-left: auto; }
}

/* ── Buttons: shimmer on hover ─────────────────── */
.btn {
  position: relative; overflow: hidden;
  z-index: 0;
  transition: background .3s, color .3s, border-color .3s, letter-spacing .3s;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(245,241,234,0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .6s ease;
  z-index: -1;
}
.btn:hover { letter-spacing: 0.24em; }
.btn:hover::before { transform: translateX(100%); }
.btn--solid::before {
  background: linear-gradient(90deg, transparent 0%, rgba(10,9,8,0.18) 50%, transparent 100%);
}

/* ── Selection color ───────────────────────────── */
::selection { background: var(--gold); color: var(--bg); }
::-moz-selection { background: var(--gold); color: var(--bg); }

/* ── Scrollbar (webkit) ────────────────────────── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Couple-hero polish ────────────────────────── */
.couple-hero__img {
  position: relative;
}
.couple-hero__img::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.5);
  pointer-events: none;
}

/* Gallery: subtle gold border on hover */
.gallery__item {
  position: relative;
  isolation: isolate;
}
.gallery__item::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color .4s ease, inset .4s ease;
  pointer-events: none; z-index: 2;
}
.gallery__item:hover::after { border-color: rgba(201,169,97,0.5); inset: 6px; }

/* Feature image: soft gold underline */
.feature-img {
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.6);
}

/* Foot signature: subtle shimmer */
.foot__sig {
  background: linear-gradient(90deg, var(--gold-soft) 0%, var(--gold) 50%, var(--gold-soft) 100%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sigShimmer 6s ease-in-out infinite;
}
@keyframes sigShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Mobile-specific polish overrides ──────────── */
@media (max-width: 720px) {
  .hero__copy::before { display: none; }
  body::before { opacity: 0.4; }  /* less grain on small screens */
  .quote::before { font-size: 80px; }
  .timeline { border-left: 1px solid var(--line); padding-left: 28px; }
}

/* Reduce-motion: respect OS preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .press__track { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE PASS — phones first, tablets next
   ═══════════════════════════════════════════════════════════════ */

/* Tablet + smaller phone (most modern phones) */
@media (max-width: 720px) {
  /* Nav */
  .nav { padding: 14px 5vw; }
  .nav__brand { font-size: 14px; letter-spacing: 0.06em; }
  .nav__links { gap: 14px; font-size: 10px; letter-spacing: 0.08em; }

  /* Hero */
  .hero { min-height: auto; }
  .hero__img { height: 60vh; min-height: 360px; }
  .hero__img img { height: 95%; }
  .hero__copy { padding: 8vh 7vw 6vh 7vw; }
  .hero__eyebrow { margin-bottom: 18px; font-size: 10px; letter-spacing: 0.32em; }
  .hero__eyebrow::before { width: 24px; }
  .hero__title { font-size: clamp(44px, 14vw, 72px); margin-bottom: 22px; }
  .hero__sub { font-size: 16px; line-height: 1.55; margin-bottom: 30px; }
  .hero__meta { gap: 16px; font-size: 11px; flex-wrap: wrap; }
  .hero__meta span + span::before { margin-right: 16px; }

  /* Sections — cut vertical breathing room */
  .section { padding: 8vh 7vw; }

  /* Stats — tighter grid */
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 18px; text-align: center; }
  .stat__num { font-size: 38px; margin-bottom: 8px; }
  .stat__label { font-size: 11px; letter-spacing: 0.1em; }

  /* Headings */
  .h2 { font-size: clamp(30px, 8vw, 44px); margin-bottom: 22px; }
  .lede { font-size: 16px; margin-bottom: 36px; }
  p { font-size: 15px; line-height: 1.65; }
  .eyebrow { font-size: 10px; letter-spacing: 0.32em; gap: 10px; margin-bottom: 14px; }
  .eyebrow::before { width: 22px; }

  /* Quote */
  .quote { padding: 18px 0 18px 22px; margin: 36px 0; }
  .quote p { font-size: 21px; line-height: 1.4; }

  /* Cards */
  .card { padding: 28px 22px; }
  .card__num { font-size: 44px; }
  .card__title { font-size: 17px; margin-bottom: 8px; }
  .card__body { font-size: 14px; }

  /* Press marquee */
  .press { gap: 22px; padding: 36px 0; margin: 48px 0; }
  .press__item { font-size: 17px; }

  /* Timeline */
  .timeline { padding-left: 28px; }
  .timeline__entry::before { left: -33px; top: 32px; width: 8px; height: 8px; }
  .timeline__year { font-size: 22px; }
  .timeline__title { font-size: 16px; }
  .timeline__body { font-size: 14px; }

  /* Socials */
  .social { padding: 22px 20px; }
  .social__handle { font-size: 22px; }
  .social__plat { font-size: 10px; letter-spacing: 0.22em; }

  /* CTA — stack buttons vertically on mobile */
  .cta { padding: 12vh 6vw; }
  .cta__title { font-size: clamp(28px, 7vw, 42px); margin-bottom: 18px; }
  .cta__sub { font-size: 15px; margin-bottom: 28px; }
  .btn { display: block; width: 100%; max-width: 340px; margin: 8px auto !important; padding: 16px 24px; font-size: 12px; box-sizing: border-box; }
  .btn + .btn { margin-left: auto; }

  /* Footer */
  .foot { padding: 40px 6vw 28px; font-size: 11px; }
  .foot__sig { font-size: 15px; margin-bottom: 12px; }

  /* Two-col (Story origin) */
  .two-col { gap: 32px; }
}

/* Very small phones (< 380px wide) */
@media (max-width: 380px) {
  .nav__links { gap: 10px; font-size: 9px; }
  .hero__title { font-size: 40px; }
  .stat__num { font-size: 32px; }
  .h2 { font-size: 26px; }
  .quote p { font-size: 19px; }
}

/* Touch-optimized tap targets */
@media (hover: none) and (pointer: coarse) {
  .nav__links a, .btn, .social, .stat { -webkit-tap-highlight-color: rgba(201,169,97,0.2); }
  .btn { padding-top: 18px; padding-bottom: 18px; }  /* easier to tap */
}
