/* ══════════════════════════════════════════════════
   ELOHO B. OBUKOHWO | Award-Grade Editorial Theme v2
   Palette: Deep Forest Emerald / Satin Parchment / Antique Roman Gold
   ══════════════════════════════════════════════════ */

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

:root {
  /* ─── Palette ─── */
  --emerald:        #022B1D;
  --emerald-deep:   #011A12;
  --emerald-mid:    #053828;
  --emerald-soft:   #0A4632;
  --parchment:      #FCF9F2;
  --parchment-warm: #F5EFE0;
  --gold:           #C5A059;
  --gold-bright:    #D4B374;
  --gold-soft:      rgba(197, 160, 89, 0.12);
  --gold-line:      rgba(197, 160, 89, 0.22);
  --onyx:           #0B0C0B;
  --bronze:         #8C6A3B;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-grotesk: 'Cabinet Grotesk', 'General Sans', -apple-system, sans-serif;
  --font-sans:    'General Sans', -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;
  --space-4xl: 13rem;

  /* Container */
  --container-max: 1480px;
  --container-pad: clamp(1.5rem, 5vw, 5rem);

  /* Motion */
  --ease-premium: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
  --ease-snap:    cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-med:  450ms var(--ease-premium);
  --transition-slow: 800ms var(--ease-out);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--parchment);
  color: var(--onyx);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

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

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--onyx);
  font-family: var(--font-sans);
  font-weight: 600;
  z-index: 1000;
  border-radius: 4px;
}
.skip-link:focus { top: 1rem; }

/* ═══════════════════════════════
   CUSTOM CURSOR (desktop)
   ═══════════════════════════════ */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  body.cursor-on { cursor: none; }
  body.cursor-on a, body.cursor-on button { cursor: none; }
  .cursor {
    display: block;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    top: 0;
    left: 0;
    will-change: transform;
    mix-blend-mode: difference;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  body.cursor-on.cursor-active .cursor { opacity: 1; }
  .cursor__dot {
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.2s;
  }
  .cursor__ring {
    position: absolute;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1px solid rgba(197, 160, 89, 0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
  }
  body.cursor-hover .cursor__dot { width: 0; height: 0; }
  body.cursor-hover .cursor__ring { width: 56px; height: 56px; border-color: var(--gold); }
}

/* ═══════════════════════════════
   NAVIGATION
   ═══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--transition-med), padding var(--transition-med), border-color var(--transition-med);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(252, 249, 242, 0.85);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  padding: 0.85rem 0;
  border-bottom-color: var(--gold-line);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--onyx);
  transition: color var(--transition-med);
}
.nav__logo:hover { color: var(--gold); }
.nav__logo-mark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid currentColor;
  padding: 0.25rem 0.45rem;
  line-height: 1;
}
.nav__logo-divider {
  width: 1px;
  height: 18px;
  background: currentColor;
  opacity: 0.4;
}
.nav__logo-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(11, 12, 11, 0.65);
  transition: color var(--transition-fast);
  position: relative;
}
.nav__link-num {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-med);
}
.nav__link:hover,
.nav__link--active { color: var(--onyx); }
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--onyx);
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  transition: border-color var(--transition-med), background var(--transition-med);
}
.nav__cta:hover { border-color: var(--gold); background: var(--gold-soft); }
.nav__cta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2d8f5f;
  box-shadow: 0 0 0 4px rgba(45, 143, 95, 0.18);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(45, 143, 95, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(45, 143, 95, 0.04); }
}

/* Burger */
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 110;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--onyx);
  position: absolute;
  left: 0;
  transition: transform 0.35s var(--ease-snap), opacity 0.3s var(--ease-out), background 0.3s;
}
.nav__burger span:first-child { top: 4px; }
.nav__burger span:last-child { bottom: 4px; }
.nav__burger.active span { background: var(--parchment); }
.nav__burger.active span:first-child { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav__burger.active span:last-child { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--emerald);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--container-pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(197, 160, 89, 0.08), transparent 70%);
  pointer-events: none;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  position: relative;
}
.mobile-menu__link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 500;
  color: var(--parchment);
  transition: color 0.3s var(--ease-out), transform 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
  transition: color 0.3s var(--ease-out), opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { transition-delay: 0.34s; }
.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu__num {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.mobile-menu__footer {
  position: absolute;
  bottom: var(--space-xl);
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(252, 249, 242, 0.4);
}

/* ═══════════════════════════════
   BUTTONS (shared)
   ═══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05rem 1.9rem;
  position: relative;
  overflow: hidden;
  transition: color var(--transition-med), border-color var(--transition-med), background var(--transition-med);
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--transition-med); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--onyx);
  color: var(--parchment);
  border: 1px solid var(--onyx);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-snap);
  z-index: 0;
}
.btn--primary > * { position: relative; z-index: 1; }
.btn--primary:hover { color: var(--onyx); border-color: var(--gold); }
.btn--primary:hover::before { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--onyx);
  border: 1px solid rgba(11, 12, 11, 0.25);
}
.btn--ghost:hover {
  border-color: var(--onyx);
  background: var(--onyx);
  color: var(--parchment);
}

/* On dark sections */
.publications .btn--ghost,
.writing .btn--ghost {
  color: var(--parchment);
  border-color: rgba(252, 249, 242, 0.25);
}
.publications .btn--ghost:hover,
.writing .btn--ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--onyx);
}

/* ═══════════════════════════════
   SECTION COMMON
   ═══════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: var(--space-md);
}
.section-label__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0;
  position: relative;
  padding-right: 0.7rem;
}
.section-label__num::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: var(--gold);
  opacity: 0.5;
  transform: translateY(-50%);
}
.section-label--light { color: var(--gold-bright); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.section-title em.gold-italic,
.gold-italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  padding-top: 7rem;
  overflow: hidden;
}

/* Vertical wordmark rail (left edge) */
.hero__rail {
  position: absolute;
  left: 1.4rem;
  top: 0;
  bottom: 0;
  width: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  z-index: 4;
}
.hero__rail-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(11, 12, 11, 0.4);
  white-space: nowrap;
  padding: 0.5rem 0;
}
.hero__rail-text:first-child { color: var(--gold); }

/* Top meta strip */
.hero__meta {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11, 12, 11, 0.55);
  margin-bottom: var(--space-xl);
}
.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.hero__meta-item em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0;
  font-size: 0.78rem;
  font-weight: 500;
}
.hero__meta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2d8f5f;
  box-shadow: 0 0 0 4px rgba(45, 143, 95, 0.16);
}

.hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__image-col {
  position: relative;
}
.hero__image-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--emerald-mid);
}
.hero__image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-line);
  pointer-events: none;
  z-index: 2;
  margin: 0.7rem;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.94) contrast(1.05) saturate(0.92);
  transition: transform 1.2s var(--ease-out);
  transform: scale(1.04);
}
.hero:hover .hero__photo { transform: scale(1.08); }

.hero__image-caption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(2, 43, 29, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem 0.95rem;
  z-index: 3;
  border: 1px solid var(--gold-line);
}
.hero__image-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
}
.hero__image-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--parchment);
}

.hero__content-col {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: var(--space-lg);
}
.hero__kicker em {
  color: var(--gold);
  font-style: normal;
  margin: 0 0.1em;
}
.hero__kicker-bullet {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9vw, 9.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--onyx);
  margin-bottom: var(--space-lg);
}
.hero__name-line {
  display: block;
  overflow: hidden;
}
.hero__word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-snap);
}
.hero.in-view .hero__word { transform: translateY(0); }
.hero.in-view .hero__word--accent { transition-delay: 0.12s; }
.hero__word--accent {
  font-style: italic;
  color: var(--gold);
}

.hero__meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-md);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(11, 12, 11, 0.65);
}
.hero__role { color: var(--onyx); }
.hero__divider {
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.hero__year {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

.hero__manifesto {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  line-height: 1.7;
  color: rgba(11, 12, 11, 0.78);
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  right: var(--container-pad);
  bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 4;
}
.hero__scroll-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(11, 12, 11, 0.4);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 24px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scroll-cue 2.6s ease-in-out infinite;
}
@keyframes scroll-cue {
  0%   { transform: translate(-50%, -100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translate(-50%, 100%); opacity: 0; }
}

/* ═══════════════════════════════
   STATS STRIP
   ═══════════════════════════════ */
.stats {
  background: var(--onyx);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 0% 50%, rgba(197, 160, 89, 0.05), transparent 60%),
    radial-gradient(ellipse 50% 100% at 100% 50%, rgba(197, 160, 89, 0.05), transparent 60%);
  pointer-events: none;
}
.stats__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.5rem 0;
  border-left: 1px solid rgba(252, 249, 242, 0.08);
  padding-left: 1.5rem;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: var(--parchment);
  letter-spacing: -0.02em;
}
.stat__num em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.85em;
}
.stat__label {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(252, 249, 242, 0.55);
  line-height: 1.4;
}

/* ═══════════════════════════════
   ABOUT
   ═══════════════════════════════ */
.about {
  padding: var(--space-4xl) 0;
  background: var(--parchment);
  position: relative;
}
.about__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.about__header { margin-bottom: var(--space-2xl); }
.about .section-title { color: var(--onyx); max-width: 14ch; }

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.about__image-wrap {
  position: relative;
  position: sticky;
  top: 7rem;
}
.about__image {
  position: relative;
  overflow: hidden;
}
.about__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.94) contrast(1.04) saturate(0.92);
  transition: transform 1.2s var(--ease-out);
}
.about__image:hover img { transform: scale(1.04); }
.about__image::after {
  content: '';
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  pointer-events: none;
}
.about__image-tag {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(252, 249, 242, 0.94);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--onyx);
  border: 1px solid var(--gold-line);
  z-index: 2;
}
.about__image-tag-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0;
}

.about__text {
  padding-top: 0.5rem;
}
.about__lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.4;
  color: var(--onyx);
  margin-bottom: var(--space-lg);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.about__text p:not(.about__lead) {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(11, 12, 11, 0.72);
  margin-bottom: var(--space-md);
  max-width: 60ch;
}

/* Signature block */
.about__signature {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.about__signature-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--onyx);
  font-weight: 500;
}
.about__signature-line {
  flex: 1;
  height: 1px;
  background: var(--gold-line);
  min-width: 30px;
}
.about__signature-role {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ═══════════════════════════════
   MARQUEE DIVIDER
   ═══════════════════════════════ */
.marquee {
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--emerald);
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 12vw;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--emerald), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left, var(--emerald), transparent); }
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  animation: marquee-scroll 38s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.marquee__star {
  font-family: var(--font-display);
  color: rgba(197, 160, 89, 0.55);
  font-size: 0.85rem;
  font-style: normal !important;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════
   PUBLICATIONS | Dark Emerald
   ═══════════════════════════════ */
.publications {
  padding: var(--space-4xl) 0;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}
.publications::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(197, 160, 89, 0.06), transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 100%, rgba(197, 160, 89, 0.04), transparent 60%);
  pointer-events: none;
}
.publications__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
}
.publications__header {
  margin-bottom: var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: var(--space-xl);
  align-items: end;
}
.publications .section-title { color: var(--parchment); max-width: 12ch; }
.publications__intro {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(252, 249, 242, 0.78);
  font-style: italic;
  max-width: 38ch;
  padding-left: 2rem;
  border-left: 1px solid var(--gold-line);
}

.pub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.pub-card {
  background: rgba(252, 249, 242, 0.025);
  border: 1px solid rgba(197, 160, 89, 0.15);
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition-med), transform 0.5s var(--ease-premium), background var(--transition-med);
}
.pub-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.6s var(--ease-out);
  z-index: 3;
}
.pub-card:hover {
  border-color: rgba(197, 160, 89, 0.5);
  transform: translateY(-5px);
  background: rgba(252, 249, 242, 0.04);
}
.pub-card:hover::after { width: 100%; }

.pub-card--featured .pub-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--emerald-mid);
  position: relative;
}
.pub-card--featured .pub-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
  filter: brightness(0.88) saturate(0.9);
}
.pub-card--featured:hover .pub-card__image img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1);
}
.pub-card__index {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  background: rgba(2, 43, 29, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--gold-line);
  z-index: 2;
}
.pub-card__index--inline {
  position: static;
  background: none;
  border: none;
  padding: 0;
  margin-top: var(--space-md);
  display: inline-block;
}

.pub-card__body { padding: var(--space-lg); }
.pub-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: var(--space-md);
}
.pub-card__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.32rem 0.8rem;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 999px;
}
.pub-card__year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(252, 249, 242, 0.55);
}
.pub-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--parchment);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}
.pub-card__desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(252, 249, 242, 0.78);
}

.pub-card--text {
  display: flex;
  align-items: center;
}
.pub-card--text .pub-card__body {
  padding: var(--space-xl) var(--space-lg);
  width: 100%;
}

/* ═══════════════════════════════
   PULL QUOTE
   ═══════════════════════════════ */
.pullquote {
  padding: var(--space-3xl) 0;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}
.pullquote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(197, 160, 89, 0.08), transparent 70%);
  pointer-events: none;
}
.pullquote__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
  position: relative;
}
.pullquote__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: var(--space-lg);
  position: relative;
  padding: 0 1.5rem;
}
.pullquote__label::before, .pullquote__label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}
.pullquote__label::before { right: 100%; }
.pullquote__label::after  { left: 100%; }

.pullquote__text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.8rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.15;
  color: var(--parchment);
  letter-spacing: -0.015em;
}
.pullquote__text em {
  color: var(--gold);
  font-weight: 500;
}
.pullquote__mark {
  font-family: var(--font-display);
  font-size: 1.5em;
  color: rgba(197, 160, 89, 0.5);
  line-height: 0;
  vertical-align: -0.18em;
  margin-right: 0.04em;
}
.pullquote__attrib {
  display: block;
  margin-top: var(--space-xl);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252, 249, 242, 0.5);
}

/* ═══════════════════════════════
   VENTURES
   ═══════════════════════════════ */
.ventures {
  padding: var(--space-4xl) 0;
  background: var(--parchment);
}
.ventures__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.ventures__header {
  margin-bottom: var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: var(--space-xl);
  align-items: end;
}
.ventures .section-title { color: var(--onyx); }
.ventures__intro {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.65;
  font-style: italic;
  color: rgba(11, 12, 11, 0.7);
  max-width: 38ch;
  padding-left: 2rem;
  border-left: 1px solid var(--gold-line);
}

.ventures__grid {
  display: flex;
  flex-direction: column;
}

.venture-item {
  display: grid;
  grid-template-columns: 60px auto 1fr auto;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(11, 12, 11, 0.12);
  position: relative;
  cursor: pointer;
  transition: border-color var(--transition-med);
  overflow: hidden;
}
.venture-item:last-child { border-bottom: 1px solid rgba(11, 12, 11, 0.12); }
.venture-item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.6s var(--ease-out);
  z-index: 1;
}
.venture-item:hover::before { width: 100%; }

/* Number */
.venture-item__number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  align-self: start;
  padding-top: 0.4rem;
}

/* Logo */
.venture-item__logo {
  width: 76px;
  height: 76px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(11, 12, 11, 0.12);
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-med), transform var(--transition-med);
  align-self: start;
}
.venture-item:hover .venture-item__logo {
  border-color: var(--gold);
  transform: rotate(-2deg);
}
.venture-item__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Content */
.venture-item__content { min-width: 0; }
.venture-item__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.45rem;
}
.venture-item__name {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  font-weight: 500;
  color: var(--onyx);
  letter-spacing: -0.015em;
  line-height: 1.1;
  transition: color var(--transition-med);
}
.venture-item:hover .venture-item__name { color: var(--gold); }
.venture-item__location {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
}
.venture-item__tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--bronze);
  margin-bottom: var(--space-sm);
}
.venture-item__desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(11, 12, 11, 0.7);
  max-width: 600px;
}

/* CTA chip */
.venture-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--onyx);
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(11, 12, 11, 0.2);
  border-radius: 999px;
  transition: background var(--transition-med), color var(--transition-med), border-color var(--transition-med);
  align-self: center;
}
.venture-item__cta svg { width: 14px; height: 14px; transition: transform var(--transition-med); }
.venture-item:hover .venture-item__cta {
  background: var(--onyx);
  color: var(--parchment);
  border-color: var(--onyx);
}
.venture-item:hover .venture-item__cta svg { transform: translate(3px, -3px); }

/* Book variant */
.venture-item--book { grid-template-columns: 60px 1fr auto auto; }
.venture-item__book-cover {
  width: 110px;
  aspect-ratio: 2/3;
  overflow: hidden;
  border: 1px solid rgba(11, 12, 11, 0.12);
  flex-shrink: 0;
  transition: border-color var(--transition-med), transform var(--transition-med);
  align-self: center;
}
.venture-item:hover .venture-item__book-cover {
  border-color: var(--gold);
  transform: rotate(2deg);
}
.venture-item__book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

/* ═══════════════════════════════
   WRITING | Dark Emerald
   ═══════════════════════════════ */
.writing {
  padding: var(--space-4xl) 0;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}
.writing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 100% 50%, rgba(197, 160, 89, 0.05), transparent 60%);
  pointer-events: none;
}
.writing__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
}
.writing__header {
  margin-bottom: var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: var(--space-xl);
  align-items: end;
}
.writing .section-title { color: var(--parchment); }
.writing__intro {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.65;
  font-style: italic;
  color: rgba(252, 249, 242, 0.75);
  max-width: 38ch;
  padding-left: 2rem;
  border-left: 1px solid var(--gold-line);
}

.writing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
}

.essay-card {
  padding: var(--space-xl);
  border: 1px solid rgba(197, 160, 89, 0.18);
  background: rgba(5, 56, 40, 0.5);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-med), transform 0.5s var(--ease-premium), background var(--transition-med);
}
.essay-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.6s var(--ease-out);
}
.essay-card:hover {
  border-color: rgba(197, 160, 89, 0.5);
  transform: translateY(-5px);
  background: rgba(5, 56, 40, 0.75);
}
.essay-card:hover::after { width: 100%; }

.essay-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: var(--space-md);
}
.essay-card__category {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.essay-card__time {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(252, 249, 242, 0.6);
}
.essay-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--parchment);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}
.essay-card__excerpt {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(252, 249, 242, 0.78);
  flex-grow: 1;
  margin-bottom: var(--space-lg);
}
.essay-card__read {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition-fast);
}
.essay-card__read svg { width: 16px; height: 16px; transition: transform var(--transition-fast); }
.essay-card:hover .essay-card__read { gap: 0.85rem; }
.essay-card:hover .essay-card__read svg { transform: translateX(3px); }

/* ═══════════════════════════════
   CONTACT
   ═══════════════════════════════ */
.contact {
  padding: var(--space-4xl) 0 var(--space-3xl);
  background: var(--parchment);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(197, 160, 89, 0.06), transparent 60%);
  pointer-events: none;
}
.contact__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
}
.contact .section-label {
  display: inline-flex;
  margin-bottom: var(--space-lg);
}

.contact__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 6rem);
  font-weight: 500;
  line-height: 1.02;
  color: var(--onyx);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25em;
}
.contact__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-snap);
}
.contact.in-view .contact__word { opacity: 1; transform: translateY(0); }
.contact.in-view .contact__word:nth-child(1) { transition-delay: 0.05s; }
.contact.in-view .contact__word:nth-child(2) { transition-delay: 0.15s; }
.contact.in-view .contact__word:nth-child(3) { transition-delay: 0.25s; }
.contact.in-view .contact__word:nth-child(4) { transition-delay: 0.35s; }

.contact__subtext {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(11, 12, 11, 0.72);
  margin-bottom: var(--space-xl);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

/* Contact card */
.contact__card {
  margin: 0 auto var(--space-xl);
  max-width: 620px;
  background: rgba(2, 43, 29, 0.04);
  border: 1px solid var(--gold-line);
  text-align: left;
}
.contact__card-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--gold-line);
}
.contact__card-row:last-child { border-bottom: none; }
.contact__card-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.contact__card-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--onyx);
  letter-spacing: -0.005em;
  transition: color var(--transition-fast);
}
a.contact__card-value:hover { color: var(--gold); }
.contact__card-value--status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--bronze);
}
.contact__status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2d8f5f;
  box-shadow: 0 0 0 4px rgba(45, 143, 95, 0.18);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ═══════════════════════════════
   FOOTER | Onyx
   ═══════════════════════════════ */
.footer {
  background: var(--onyx);
  padding: var(--space-2xl) 0 var(--space-md);
  border-top: 1px solid var(--gold-line);
}
.footer__top {
  max-width: var(--container-max);
  margin: 0 auto var(--space-xl);
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(252, 249, 242, 0.08);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__brand-mark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.35rem 0.55rem;
  display: inline-block;
  width: fit-content;
  margin-bottom: 0.5rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--parchment);
  letter-spacing: -0.01em;
}
.footer__brand-role {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(252, 249, 242, 0.5);
}
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.footer__col a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(252, 249, 242, 0.78);
  transition: color var(--transition-fast);
}
.footer__col a:hover { color: var(--gold); }

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(252, 249, 242, 0.45);
}
.footer__set {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(252, 249, 242, 0.45);
}
.footer__top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  transition: color var(--transition-fast), gap var(--transition-fast);
}
.footer__top-link svg { width: 14px; height: 14px; transition: transform var(--transition-fast); }
.footer__top-link:hover { color: var(--gold); gap: 0.7rem; }
.footer__top-link:hover svg { transform: translateY(-3px); }

/* ═══════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-snap);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════
   RESPONSIVE | Tablet
   ═══════════════════════════════ */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero__image-col { max-height: 60vh; }
  .hero__image-frame { aspect-ratio: 16/10; }
  .hero__rail { display: none; }
  .hero__scroll { display: none; }

  .about__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about__image-wrap { position: static; max-width: 540px; }

  .publications__header,
  .ventures__header,
  .writing__header { grid-template-columns: 1fr; }
  .publications__intro,
  .ventures__intro,
  .writing__intro { padding-left: 0; border-left: none; padding-top: 1rem; border-top: 1px solid var(--gold-line); max-width: 60ch; }

  .pub-grid { grid-template-columns: 1fr; }

  .writing__grid { grid-template-columns: 1fr 1fr; }

  .venture-item { grid-template-columns: auto auto 1fr auto; gap: 1.5rem; }
  .venture-item__number { font-size: 1.1rem; }
  .venture-item--book { grid-template-columns: auto 1fr auto; }
  .venture-item__book-cover { display: none; }

  .stats__inner { grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
}

/* ═══════════════════════════════
   RESPONSIVE | Mobile
   ═══════════════════════════════ */
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__logo-text { display: none; }
  .nav__logo-divider { display: none; }

  .hero { padding-top: 6rem; }
  .hero__meta { flex-wrap: wrap; gap: 0.5rem; font-size: 0.6rem; margin-bottom: var(--space-lg); }
  .hero__name { font-size: clamp(3rem, 14vw, 4.8rem); }
  .hero__manifesto { font-size: 1.05rem; }
  .hero__actions .btn { padding: 0.95rem 1.4rem; font-size: 0.66rem; }

  .stats__inner { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; padding: 0.5rem var(--container-pad); }
  .stat { padding-left: 1rem; border-left-color: rgba(252, 249, 242, 0.08); }
  .stat:first-child, .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .stat__num { font-size: 1.9rem; }

  .about { padding: var(--space-2xl) 0; }
  .about__header { margin-bottom: var(--space-xl); }
  .about__lead { font-size: 1.2rem; }

  .publications { padding: var(--space-2xl) 0; }
  .publications__header { margin-bottom: var(--space-xl); }

  .pullquote { padding: var(--space-2xl) 0; }

  .ventures { padding: var(--space-2xl) 0; }
  .venture-item {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding: var(--space-lg) 0;
  }
  .venture-item--with-logo {
    grid-template-columns: 56px 1fr;
    gap: var(--space-md);
    align-items: start;
  }
  .venture-item--with-logo .venture-item__content { grid-column: 1 / -1; }
  .venture-item__logo { width: 56px; height: 56px; border-radius: 12px; }
  .venture-item__number {
    grid-column: 1 / -1;
    font-size: 0.95rem;
    padding: 0;
    margin-bottom: 0.4rem;
  }
  .venture-item__cta {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 0.6rem;
  }

  .writing { padding: var(--space-2xl) 0; }
  .writing__grid { grid-template-columns: 1fr; }
  .essay-card { padding: var(--space-lg); }

  .contact { padding: var(--space-2xl) 0; }
  .contact__heading { gap: 0.2em; }
  .contact__card-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1rem 1.2rem; }
  .contact__links .btn { width: 100%; justify-content: center; font-size: 0.66rem; }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__inner {
    flex-direction: column;
    gap: 0.7rem;
    text-align: center;
  }

  .marquee__track span { font-size: 1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .hero__word { transform: none !important; }
  .contact__word { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   CHATBOT - floating bubble + chat panel
   ═══════════════════════════════════════════════════════════════════ */

.chatbot-bubble {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 12px;
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 999px;
  background: var(--ink, #022B1D);
  color: var(--cream, #FCF9F2);
  box-shadow: 0 18px 44px rgba(2, 43, 29, 0.32), 0 4px 14px rgba(0,0,0,0.18);
  cursor: pointer;
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s ease, background 0.4s ease;
}
.chatbot-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(2, 43, 29, 0.42), 0 6px 18px rgba(0,0,0,0.22);
}
.chatbot-bubble__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold, #C5A059), #8C6A3B);
  color: var(--ink, #022B1D);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.chatbot-bubble__pulse {
  position: absolute;
  inset: 4px auto auto 4px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.4);
  animation: chatbot-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes chatbot-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.chatbot-bubble__label { white-space: nowrap; }
.chatbot-bubble.is-hidden { transform: scale(0.8) translateY(8px); opacity: 0; pointer-events: none; }

@media (max-width: 540px) {
  .chatbot-bubble__label { display: none; }
  .chatbot-bubble { padding: 8px; }
}

/* Panel */
.chatbot {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 9100;
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 80px));
  background: var(--cream, #FCF9F2);
  border: 1px solid rgba(11, 12, 11, 0.08);
  border-radius: 22px;
  box-shadow: 0 32px 80px rgba(2, 43, 29, 0.24), 0 8px 24px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.85) translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.3s ease;
}
.chatbot.is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chatbot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: var(--ink, #022B1D);
  color: var(--cream, #FCF9F2);
  border-bottom: 1px solid rgba(197, 160, 89, 0.22);
}
.chatbot__header-id { display: flex; align-items: center; gap: 12px; }
.chatbot__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold, #C5A059), #8C6A3B);
  color: var(--ink, #022B1D);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 14px;
}
.chatbot__id-text { display: flex; flex-direction: column; line-height: 1.2; }
.chatbot__id-name {
  font-family: 'General Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.chatbot__id-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'General Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 2px;
}
.chatbot__id-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: chatbot-dot 2s infinite;
}
@keyframes chatbot-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}
.chatbot__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(252, 249, 242, 0.2);
  background: transparent;
  border-radius: 50%;
  color: var(--cream, #FCF9F2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.chatbot__close:hover { background: rgba(252, 249, 242, 0.12); transform: rotate(90deg); }

.chatbot__body {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #fcf9f2 0%, #f7f1e2 100%);
  scroll-behavior: smooth;
}
.chatbot__msg {
  max-width: 85%;
  padding: 11px 15px;
  border-radius: 18px;
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  animation: chatbot-msg-in 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes chatbot-msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chatbot__msg--bot {
  align-self: flex-start;
  background: #fff;
  color: var(--onyx, #0B0C0B);
  border: 1px solid rgba(11, 12, 11, 0.06);
  border-bottom-left-radius: 6px;
}
.chatbot__msg--user {
  align-self: flex-end;
  background: var(--ink, #022B1D);
  color: var(--cream, #FCF9F2);
  border-bottom-right-radius: 6px;
}
.chatbot__msg button.chatbot__inline-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--gold, #C5A059);
  color: var(--ink, #022B1D);
  border: none;
  cursor: pointer;
  font-family: 'General Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, transform 0.3s ease;
}
.chatbot__msg button.chatbot__inline-cta:hover { background: #d3b06a; transform: translateY(-1px); }

.chatbot__typing {
  display: inline-flex;
  gap: 4px;
  padding: 12px 16px;
}
.chatbot__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(11, 12, 11, 0.4);
  animation: chatbot-typing 1.2s infinite ease-in-out;
}
.chatbot__typing span:nth-child(2) { animation-delay: 0.15s; }
.chatbot__typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatbot-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-3px); }
}

.chatbot__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px;
  border-top: 1px solid rgba(11, 12, 11, 0.06);
  background: rgba(255, 255, 255, 0.6);
}
.chatbot__chip {
  border: 1px solid rgba(2, 43, 29, 0.18);
  background: #fff;
  color: var(--ink, #022B1D);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: 'General Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.chatbot__chip:hover {
  background: var(--ink, #022B1D);
  color: var(--cream, #FCF9F2);
  border-color: var(--ink, #022B1D);
}

.chatbot__form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(11, 12, 11, 0.08);
  background: #fff;
}
.chatbot__input {
  flex: 1;
  border: 1px solid rgba(11, 12, 11, 0.12);
  border-radius: 999px;
  padding: 11px 16px;
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  color: var(--onyx, #0B0C0B);
  background: var(--cream, #FCF9F2);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.chatbot__input:focus { border-color: var(--gold, #C5A059); background: #fff; }
.chatbot__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink, #022B1D);
  color: var(--cream, #FCF9F2);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.chatbot__send:hover { background: #033d29; transform: translateX(2px); }

/* ═══════════════════════════════════════════════════════════════════
   BOOKING MODAL
   ═══════════════════════════════════════════════════════════════════ */

.booking {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(20px, 4vw, 60px) 20px;
  overflow-y: auto;
}
.booking.is-open { display: flex; animation: booking-fade 0.3s ease both; }
@keyframes booking-fade { from { opacity: 0; } to { opacity: 1; } }

.booking__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 43, 29, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.booking__panel {
  position: relative;
  width: min(720px, 100%);
  background: var(--cream, #FCF9F2);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 40px 100px rgba(2, 43, 29, 0.35);
  animation: booking-slide 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  margin: auto 0;
}
@keyframes booking-slide {
  from { transform: translateY(28px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.booking__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(11, 12, 11, 0.12);
  border-radius: 50%;
  background: transparent;
  color: var(--onyx, #0B0C0B);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}
.booking__close:hover { background: rgba(11, 12, 11, 0.06); transform: rotate(90deg); }

.booking__head { margin-bottom: 28px; }
.booking__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'General Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold, #C5A059);
  font-weight: 600;
  margin-bottom: 14px;
}
.booking__eyebrow-line { width: 32px; height: 1px; background: var(--gold, #C5A059); }
.booking__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink, #022B1D);
  margin: 0 0 12px;
}
.booking__lead {
  font-family: 'General Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(11, 12, 11, 0.7);
  max-width: 560px;
  margin: 0;
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  margin-bottom: 22px;
}
@media (max-width: 600px) { .booking__grid { grid-template-columns: 1fr; } }
.booking__field { display: flex; flex-direction: column; gap: 7px; }
.booking__field--full { grid-column: 1 / -1; }
.booking__label {
  font-family: 'General Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink, #022B1D);
}
.booking__label em { color: var(--gold, #C5A059); font-style: normal; margin-left: 2px; }

.booking__field input,
.booking__field select,
.booking__field textarea {
  font-family: 'General Sans', sans-serif;
  font-size: 15px;
  color: var(--onyx, #0B0C0B);
  background: #fff;
  border: 1px solid rgba(11, 12, 11, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}
.booking__field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.booking__field input:focus,
.booking__field select:focus,
.booking__field textarea:focus {
  border-color: var(--gold, #C5A059);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.18);
}

.booking__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  color: rgba(11, 12, 11, 0.7);
  line-height: 1.5;
  margin-bottom: 24px;
  cursor: pointer;
}
.booking__consent input { margin-top: 3px; accent-color: var(--gold, #C5A059); }

.booking__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--ink, #022B1D);
  color: var(--cream, #FCF9F2);
  border: none;
  border-radius: 999px;
  font-family: 'General Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.booking__submit:hover {
  background: #033d29;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(2, 43, 29, 0.28);
}
.booking__submit:disabled { opacity: 0.6; cursor: wait; transform: none; }

/* Success view */
.booking__view--success { text-align: center; padding: 24px 12px; }
.booking__success-mark {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold, #C5A059), #8C6A3B);
  color: var(--ink, #022B1D);
  animation: booking-mark-in 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes booking-mark-in {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.booking__success-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--ink, #022B1D);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.booking__success-msg {
  font-family: 'General Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(11, 12, 11, 0.78);
  max-width: 480px;
  margin: 0 auto 22px;
}
.booking__success-sign {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink, #022B1D);
  margin: 0 0 28px;
  line-height: 1.5;
}
.booking__success-sign em { font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px; }
.booking__success-close {
  padding: 12px 32px;
  background: transparent;
  color: var(--ink, #022B1D);
  border: 1px solid var(--ink, #022B1D);
  border-radius: 999px;
  font-family: 'General Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.booking__success-close:hover { background: var(--ink, #022B1D); color: var(--cream, #FCF9F2); }

/* lock body when modal is open */
body.no-scroll { overflow: hidden; }

/* ─── Mobile chatbot: full-screen-ish ─────────────────────────────── */
@media (max-width: 540px) {
  .chatbot {
    right: 8px;
    left: 8px;
    bottom: 8px;
    width: auto;
    height: 78vh;
    max-height: calc(100vh - 90px);
    border-radius: 18px;
  }
  .chatbot__header { padding: 14px 16px; }
  .chatbot__avatar { width: 34px; height: 34px; font-size: 13px; }
  .chatbot__id-name { font-size: 13px; }
  .chatbot__body { padding: 14px; gap: 10px; }
  .chatbot__msg { font-size: 13.5px; max-width: 92%; }
  .chatbot__suggestions { padding: 8px 12px; }
  .chatbot__chip { font-size: 11px; padding: 5px 10px; }
  .chatbot__input { font-size: 14px; padding: 10px 14px; }
  .chatbot-bubble { bottom: 14px; right: 14px; }
}

/* ─── Mobile booking modal ────────────────────────────────────────── */
@media (max-width: 640px) {
  .booking { padding: 12px; align-items: flex-start; }
  .booking__panel {
    padding: 26px 20px 28px;
    border-radius: 16px;
    margin: 8px 0;
  }
  .booking__close { top: 12px; right: 12px; width: 34px; height: 34px; }
  .booking__head { margin-bottom: 22px; }
  .booking__title { font-size: 26px; }
  .booking__lead { font-size: 14px; }
  .booking__grid { gap: 16px; }
  .booking__field input,
  .booking__field select,
  .booking__field textarea { font-size: 14px; padding: 10px 12px; }
  .booking__label { font-size: 11px; }
  .booking__submit { width: 100%; justify-content: center; padding: 14px 24px; }
}

/* Prevent custom cursor from blocking interactions on chatbot/booking */
.chatbot, .chatbot *, .booking, .booking * { cursor: auto; }
.chatbot button, .chatbot__chip, .chatbot__send, .booking button, .booking [data-booking-close], .booking__submit { cursor: pointer; }
.chatbot input, .chatbot__input, .booking input, .booking textarea, .booking select { cursor: text; }
.booking select { cursor: pointer; }

/* Hide the green "available for work" pulse from showing through booking modal */
body.no-scroll .availability { z-index: 1; }

/* Hide custom cursor when modal/chatbot is open */
body.no-scroll .cursor,
body:has(.chatbot.is-open) .cursor { opacity: 0 !important; }
