/* ============================================================
   Jacqueline Isaac — Diplomatic Editorial
   ============================================================ */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
}
button, input, textarea { font: inherit; }
em, i { font-style: italic; }

/* ---------- Tokens ---------- */
:root {
  --ink:           #0A0E1A;
  --ink-soft:      #1A2235;
  --ink-line:      rgba(10, 14, 26, 0.12);
  --parchment:     #F2EBE0;
  --parchment-deep:#E8DEC8;
  --parchment-line:rgba(242, 235, 224, 0.18);
  --brass:         #8B6818;
  --brass-light:   #C9A04A;
  --oxblood:       #5A1E1E;
  --text-muted:    #6B6357;
  --text-on-ink:   rgba(242, 235, 224, 0.86);
  --text-on-ink-muted: rgba(242, 235, 224, 0.55);

  --serif-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --serif-body:    'Newsreader', Georgia, serif;
  --sans-ui:       'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Layout primitives ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }
.container-narrow { max-width: 860px; }

.section { padding: 5.5rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }

.section-light { background: var(--parchment); color: var(--ink); }
.section-dark { background: var(--ink); color: var(--text-on-ink); }

/* ---------- Eyebrows & titles ---------- */
.section-eyebrow {
  font-family: var(--sans-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.section-eyebrow-light { color: var(--brass-light); }
.eyebrow-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brass);
  opacity: 0.7;
  padding-right: 0.85rem;
  border-right: 1px solid currentColor;
  line-height: 1;
}
.section-eyebrow-light .eyebrow-num { color: var(--brass-light); }

.section-title {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 3rem;
  max-width: 22ch;
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}
.section-title-text { display: inline-block; }
.section-num {
  font-style: italic;
  font-weight: 300;
  font-size: 0.42em;
  color: var(--brass);
  opacity: 0.75;
  flex-shrink: 0;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  top: -0.55em;
}
@media (min-width: 1180px) {
  .section-title { position: relative; }
  .section-num {
    position: absolute;
    left: -3.2rem;
    top: 0.45em;
    font-size: 1.05rem;
    opacity: 0.85;
  }
}
.section-title-light { color: var(--parchment); }

/* ---------- Section dividers ---------- */
.rule-divider {
  position: relative;
  height: 1px;
  background: var(--ink-line);
  margin: 0;
}
.rule-divider-dark { background: var(--parchment-line); }
.rule-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--brass);
  border-radius: 1px;
}
.rule-divider-dark .rule-mark { background: var(--brass-light); }

/* ---------- Top nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  color: var(--parchment);
  border-bottom: 1px solid rgba(242, 235, 224, 0.08);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .nav-inner { padding: 1.2rem 2rem; } }
.nav-name {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.005em;
}
.nav-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--brass-light);
  border-radius: 50%;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--brass-light);
  letter-spacing: 0;
  line-height: 1;
  padding-top: 1px;
}
.nav-name-full { font-style: italic; font-weight: 400; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--sans-ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-ink);
}
.nav-links a {
  position: relative;
  padding: 0.45rem 0;
  transition: color 240ms var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass-light);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms var(--ease);
}
.nav-links a:hover { color: var(--brass-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-sep { color: var(--brass-light); opacity: 0.7; }
@media (max-width: 600px) {
  .nav-name-full { display: none; }
  .nav-links { gap: 0.6rem; font-size: 0.7rem; }
  .nav-sep { display: none; }
}

/* ============================================================
   HERO — asymmetric split
   ============================================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--ink);
  color: var(--parchment);
  min-height: 100vh;
  overflow: hidden;
}
@media (min-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    min-height: 92vh;
  }
}

.hero-text {
  position: relative;
  padding: 4.5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  order: 2;
}
@media (min-width: 960px) {
  .hero-text {
    padding: 6rem 4rem 6rem 5vw;
    order: 1;
    border-right: 1px solid rgba(242, 235, 224, 0.07);
  }
}
@media (min-width: 1280px) {
  .hero-text { padding-left: 7vw; padding-right: 5rem; }
}

.hero-image {
  position: relative;
  order: 1;
  min-height: 56vh;
  overflow: hidden;
}
@media (min-width: 960px) {
  .hero-image { order: 2; min-height: 100%; }
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(0.92) contrast(1.02);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 26, 0.18) 0%, rgba(10, 14, 26, 0) 30%, rgba(10, 14, 26, 0) 70%, rgba(10, 14, 26, 0.25) 100%),
    linear-gradient(90deg, rgba(10, 14, 26, 0.55) 0%, rgba(10, 14, 26, 0) 35%);
}
@media (max-width: 959px) {
  .hero-image::after {
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.2) 0%, rgba(10, 14, 26, 0) 30%, rgba(10, 14, 26, 0.55) 100%);
  }
}

/* Hero typography */
.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--sans-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin: 0 0 2rem;
  opacity: 0;
  animation: fadeUp 900ms var(--ease) 200ms forwards;
}
.hero-eyebrow .dot { opacity: 0.5; letter-spacing: 0; }

.hero-title {
  font-family: var(--serif-display);
  font-weight: 300;
  font-size: clamp(4rem, 14vw, 11rem);
  line-height: 0.86;
  letter-spacing: -0.035em;
  margin: 0 0 1.8rem;
  color: var(--parchment);
  display: flex;
  flex-direction: column;
}
.hero-title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 1100ms var(--ease) forwards;
}
.hero-title-line:nth-child(1) { animation-delay: 350ms; }
.hero-title-line:nth-child(2) {
  animation-delay: 500ms;
  font-size: 0.62em;
  padding-left: 1.4em;
  margin-top: -0.08em;
  letter-spacing: -0.01em;
}
.hero-title-italic { font-style: italic; font-weight: 300; color: var(--brass-light); }

.hero-rule {
  width: 64px;
  height: 1px;
  background: var(--brass);
  margin: 0 0 2rem;
  opacity: 0;
  animation: widenIn 900ms var(--ease) 700ms forwards;
}

.hero-tagline {
  font-family: var(--serif-body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.55;
  color: rgba(242, 235, 224, 0.88);
  max-width: 34ch;
  margin: 0 0 2.5rem;
  opacity: 0;
  animation: fadeUp 1000ms var(--ease) 800ms forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 1000ms var(--ease) 1000ms forwards;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 200px;
  padding: 1.05rem 1.6rem 1.05rem 1.75rem;
  font-family: var(--sans-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition: color 320ms var(--ease), border-color 320ms var(--ease), transform 220ms var(--ease-soft);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn .btn-label { position: relative; z-index: 2; transition: transform 380ms var(--ease); }
.btn .btn-arrow {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 380ms var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(6px); }
.btn:active { transform: translateY(1px); }

/* Sweep fill effect */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: translateX(-101%);
  transition: transform 520ms var(--ease);
  will-change: transform;
}
.btn:hover::before { transform: translateX(0); }

/* Primary — burnished brass */
.btn-primary {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 12px 30px -16px rgba(163, 123, 45, 0.6);
}
.btn-primary::before { background: var(--ink); }
.btn-primary:hover {
  color: var(--brass-light);
  border-color: var(--ink);
  box-shadow:
    inset 0 0 0 1px rgba(201, 160, 74, 0.4),
    0 20px 40px -18px rgba(10, 14, 26, 0.6);
}

/* Ghost — parchment line */
.btn-ghost {
  background: transparent;
  color: var(--parchment);
  border-color: rgba(242, 235, 224, 0.4);
}
.btn-ghost::before { background: var(--parchment); }
.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--parchment);
}

/* Focus — visible brass ring for keyboard a11y */
.btn:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 4px;
}

/* Disabled (future-proof) */
.btn[aria-disabled="true"],
.btn:disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.hero-signature {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(0.35rem, 0.9vw, 0.6rem);
  font-family: var(--sans-ui);
  font-size: clamp(0.48rem, 0.85vw, 0.66rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-ink-muted);
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(242, 235, 224, 0.08);
  opacity: 0;
  animation: fadeUp 1000ms var(--ease) 1200ms forwards;
}
.hero-signature > span { white-space: nowrap; flex-shrink: 0; }
.hero-signature .dot { color: var(--brass-light); }

/* ============================================================
   BIO with drop cap — 2-column on desktop (bio + accolades sidebar)
   ============================================================ */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .bio-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 5rem;
  }
}
@media (min-width: 1180px) {
  .bio-grid { gap: 6rem; }
}
.bio {
  max-width: 64ch;
  min-width: 0;
}
.bio p {
  font-family: var(--serif-body);
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.78;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
@media (min-width: 768px) { .bio p { font-size: 1.15rem; } }

/* Editorial drop cap */
.bio-lede::first-letter {
  font-family: var(--serif-display);
  font-weight: 300;
  font-size: 5.5em;
  line-height: 0.85;
  float: left;
  padding: 0.06em 0.14em 0 0;
  margin: 0.02em 0.06em 0 -0.04em;
  color: var(--brass);
  font-feature-settings: "lnum";
}

/* Accolades — stacks below bio on mobile, sidebar column on desktop */
.accolades {
  margin-top: 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--ink-line);
  max-width: 64ch;
  min-width: 0;
}
@media (min-width: 960px) {
  .accolades {
    padding-top: 0.5rem;
    border-top: none;
    position: relative;
  }
  /* Subtle alignment mark: short brass hairline above the eyebrow */
  .accolades::before {
    content: "";
    display: block;
    width: 36px;
    height: 1px;
    background: var(--brass);
    margin-bottom: 1.4rem;
  }
}
.accolades-eyebrow {
  font-family: var(--sans-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.75rem;
}
.accolades-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
  counter-reset: accolade;
}
.accolades-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  font-family: var(--serif-body);
  font-size: 1.02rem;
  line-height: 1.55;
  transition: transform 320ms var(--ease);
}
.accolades-list li:hover { transform: translateX(4px); }
.accolades-list li:hover .accolades-num { color: var(--ink); }
.accolades-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
  text-align: right;
  padding-right: 0.5rem;
  border-right: 1px solid var(--ink-line);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: color 320ms var(--ease);
}

/* ============================================================
   LOGO GRID — editorial "as seen in"
   Light parchment-deep background, grayscale logos, color on hover
   ============================================================ */
.section-logos {
  background: var(--parchment-deep);
  color: var(--ink);
  position: relative;
}
.section-logos::before,
.section-logos::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
}
.section-logos::before {
  top: 0;
  background: linear-gradient(180deg, var(--parchment) 0%, transparent 100%);
  opacity: 0.5;
}
.section-logos::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--parchment) 0%, transparent 100%);
  opacity: 0.5;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink-line);
  border-left: 1px solid var(--ink-line);
  margin-top: 1.5rem;
  background: rgba(250, 247, 242, 0.4);
}
@media (min-width: 600px) {
  .logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .logo-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .logo-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.logo-cell {
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: background 320ms var(--ease);
  position: relative;
  background: transparent;
}
.logo-cell:hover { background: rgba(253, 250, 245, 0.6); }
.logo-cell::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--brass);
  border-left: 1px solid var(--brass);
  opacity: 0;
  transition: opacity 320ms var(--ease);
}
.logo-cell:hover::before { opacity: 0.8; }
.logo {
  max-height: 38px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(0.95);
  opacity: 0.68;
  transition: filter 380ms var(--ease), opacity 380ms var(--ease), transform 380ms var(--ease);
  mix-blend-mode: multiply;
}
.logo:hover {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1.04);
}
.logo-lg { max-height: 62px; }

/* ============================================================
   VIDEO
   ============================================================ */
.section-video { background: var(--parchment-deep); }
.section-video .section-title { margin-bottom: 2.25rem; }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--ink-line);
  box-shadow:
    0 30px 80px -30px rgba(10, 14, 26, 0.35),
    inset 0 0 0 1px rgba(163, 123, 45, 0.18);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   MANIFESTO — wideshot photo with pull quote (was divider)
   ============================================================ */
.divider-image {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0.72;
  filter: saturate(0.88) contrast(1.06);
}
.divider-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, rgba(10, 14, 26, 0.05) 0%, rgba(10, 14, 26, 0.55) 80%),
    linear-gradient(180deg, rgba(10, 14, 26, 0.2) 0%, transparent 30%, transparent 70%, rgba(10, 14, 26, 0.3) 100%);
}
@media (min-width: 768px) {
  .divider-overlay { padding: 6rem 3rem; }
}
.divider-quote {
  position: relative;
  margin: 0;
  max-width: 18ch;
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--parchment);
  text-align: center;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
  padding-top: 3.5rem;
}
.divider-quote-mark {
  position: absolute;
  top: -0.18em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif-display);
  font-style: normal;
  font-weight: 300;
  font-size: 5.5em;
  line-height: 0.55;
  color: var(--brass-light);
  opacity: 0.7;
}

/* ============================================================
   QUOTES — numbered, oversized mark
   ============================================================ */
.quotes {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .quotes { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .quote-wide { grid-column: 1 / -1; }
}

.quote {
  position: relative;
  margin: 0;
  padding: 4rem 2.5rem 2.5rem;
  background: #FDFAF5;
  border: 1px solid var(--ink-line);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease), border-color 360ms var(--ease);
  isolation: isolate;
}
@media (min-width: 768px) {
  .quote { padding: 5rem 3.25rem 2.75rem; }
}
.quote:hover {
  border-color: rgba(139, 104, 24, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 28px 70px -28px rgba(10, 14, 26, 0.28);
}
.quote:hover .quote-mark { opacity: 0.32; transition: opacity 360ms var(--ease); }
.quote:hover .quote-num { color: var(--ink); transition: color 360ms var(--ease); }

/* Roman numeral as chapter mark — top-left, large, italic */
.quote-num {
  position: absolute;
  top: 1.4rem;
  left: 2.5rem;
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  letter-spacing: -0.01em;
  color: var(--brass);
  line-height: 0.9;
  z-index: 2;
}
@media (min-width: 768px) {
  .quote-num {
    top: 1.6rem;
    left: 3.25rem;
    font-size: 3rem;
  }
}

/* Opening quote mark — large, behind the numeral, decorative */
.quote-mark {
  position: absolute;
  top: -0.2rem;
  right: 1.4rem;
  font-family: var(--serif-display);
  font-weight: 300;
  font-size: 9rem;
  line-height: 0.78;
  color: var(--brass);
  opacity: 0.13;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 768px) {
  .quote-mark {
    font-size: 11rem;
    right: 2rem;
  }
}

.quote blockquote {
  margin: 0;
  font-family: var(--serif-body);
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--ink);
  font-style: italic;
}
@media (min-width: 768px) { .quote blockquote { font-size: 1.08rem; } }

.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink-line);
}
.quote figcaption strong {
  font-family: var(--serif-display);
  font-weight: 500;
  font-style: normal;
  font-size: 1.12rem;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.quote figcaption span {
  font-family: var(--sans-ui);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  line-height: 1.55;
}

.quote-wide blockquote { font-size: 1.08rem; }
@media (min-width: 768px) { .quote-wide blockquote { font-size: 1.16rem; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 4rem 0 3rem;
  position: relative;
  border-top: 1px solid var(--parchment-line);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--brass);
  border-radius: 1px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr auto 1fr; }
}
.footer-block-center { text-align: center; }
.footer-block-right { text-align: left; }
@media (min-width: 768px) { .footer-block-right { text-align: right; } }

.footer-name {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 1.65rem;
  margin: 0 0 0.25rem;
  color: var(--parchment);
  letter-spacing: 0.005em;
}
.footer-tagline {
  font-family: var(--sans-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin: 0;
}
.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--brass-light);
}
.footer-copy {
  font-family: var(--sans-ui);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-on-ink);
  margin: 0 0 0.15rem;
}
.footer-copy-muted { color: var(--text-on-ink-muted); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes widenIn {
  from { opacity: 0; transform: scaleX(0); transform-origin: left center; }
  to   { opacity: 1; transform: scaleX(1); }
}

@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;
  }
}

/* ============================================================
   Selection + global focus + cursor
   ============================================================ */
::selection { background: var(--brass); color: var(--parchment); }

a, button, [role="button"] { cursor: pointer; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 4px;
  border-radius: 1px;
}
.nav-links a:focus-visible,
.nav-name:focus-visible {
  outline-offset: 6px;
}

/* ============================================================
   Custom scrollbar
   ============================================================ */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--brass) transparent;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(163, 123, 45, 0.55);
  border: 2px solid var(--parchment);
  border-radius: 6px;
  transition: background 200ms var(--ease);
}
::-webkit-scrollbar-thumb:hover { background: var(--brass); }
.section-dark ::-webkit-scrollbar-thumb { border-color: var(--ink); }

/* ============================================================
   Vimeo wrap — hover refinement
   ============================================================ */
.video-wrap {
  transition: box-shadow 420ms var(--ease), transform 420ms var(--ease);
}
.video-wrap:hover {
  box-shadow:
    0 38px 96px -32px rgba(10, 14, 26, 0.42),
    inset 0 0 0 1px rgba(163, 123, 45, 0.4);
}

/* ============================================================
   Logo cells — refined hover glow (on light parchment-deep bg)
   ============================================================ */
.logo-cell {
  isolation: isolate;
  overflow: hidden;
}
.logo-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(163, 123, 45, 0.10) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 320ms var(--ease);
  pointer-events: none;
}
.logo-cell:hover::after { opacity: 1; }

/* ============================================================
   Hero image — subtle ken-burns on load
   ============================================================ */
@keyframes kenBurns {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
.hero-image img {
  animation: kenBurns 2400ms var(--ease) forwards;
}

/* ============================================================
   CTA arrow — sweep + stagger inside primary
   ============================================================ */
.btn-primary:hover .btn-label { transform: translateX(-2px); }
.btn-ghost:hover .btn-label { transform: translateX(-2px); }

@media (max-width: 480px) {
  .btn { min-width: 0; width: 100%; }
  .hero-cta { width: 100%; }
}
