/* ============================================================
   darrelllevi.com — Premium executive brand site
   Palette: deep navy, antique gold, ivory, charcoal
   Type: Cormorant Garamond (display serif) + Inter (body sans)
   Mobile-first.
   ============================================================ */

:root {
  /* Brand palette */
  --navy-900: #0a1f3a;
  --navy-800: #122a4a;
  --navy-700: #1a3559;
  --navy-600: #2a4670;
  --gold-500: #b8923a;     /* antique gold */
  --gold-400: #c9a553;
  --gold-300: #e0c281;
  --ivory-50:  #faf7f0;    /* page bg */
  --ivory-100: #f3ecde;    /* surface */
  --ivory-200: #e8dcc1;    /* warm border */
  --charcoal-900: #1f2330;
  --charcoal-700: #3a4051;
  --charcoal-500: #6b7184;
  --charcoal-300: #b6bac6;
  --white: #ffffff;

  /* Functional roles */
  --bg: var(--ivory-50);
  --surface: var(--ivory-100);
  --text: var(--charcoal-900);
  --text-muted: var(--charcoal-500);
  --rule: var(--ivory-200);
  --accent: var(--gold-500);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Iowan Old Style', 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Scale */
  --maxw: 1200px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0 0 .6em; line-height: 1.15; letter-spacing: -0.005em; color: var(--charcoal-900); }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--gold-300); color: var(--navy-900); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-900); color: var(--ivory-50);
  padding: .75rem 1rem; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.serif { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.01em; }
.eyebrow {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin: 0 0 1rem;
}
.eyebrow--gold { color: var(--gold-400); }

.h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: .5em;
}
.lede { font-size: 1.0625rem; color: var(--charcoal-700); }
.muted { color: var(--text-muted); font-weight: 400; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 55;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--rule);
  background: rgba(250, 247, 240, 0.95);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .85rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--navy-900);
}
.monogram {
  width: 36px; height: 36px;
  color: var(--navy-900);
  flex: 0 0 auto;
}
.monogram--lg { width: 48px; height: 48px; }
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__brand-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .01em;
  color: var(--navy-900);
}
.nav__brand-sub {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-top: 2px;
}

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 6px;
  cursor: pointer;
  padding: 9px 8px;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav__menu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  height: calc(100vh - 64px);
  background: var(--ivory-50);
  border-top: 1px solid var(--rule);
  padding: 1.5rem var(--pad-x) 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-110%);
  visibility: hidden;
  transition: transform .35s var(--ease), visibility .35s;
  z-index: 49;
  overflow-y: auto;
}
.nav__menu.is-open {
  transform: translateY(0);
  visibility: visible;
}
.nav__link {
  font-size: 1.125rem;
  color: var(--navy-900);
  font-weight: 500;
  padding: .25rem 0;
  border-bottom: 1px solid var(--rule);
}
.nav__cta {
  background: var(--navy-900);
  color: var(--ivory-50);
  border: none;
  padding: .75rem 1rem;
  border-radius: 999px;
  text-align: center;
  margin-top: .5rem;
}

@media (min-width: 800px) {
  .nav__toggle { display: none; }
  .nav__menu {
    position: static;
    transform: none;
    visibility: visible;
    background: transparent;
    border: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    height: auto;
    overflow: visible;
  }
  .nav__link {
    font-size: .9rem;
    border-bottom: none;
    padding: 0;
    letter-spacing: .02em;
    position: relative;
    color: var(--charcoal-700);
  }
  .nav__link:hover { color: var(--navy-900); }
  .nav__link::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: -6px;
    height: 1px; background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .nav__link:hover::after { transform: scaleX(1); }
  .nav__cta {
    padding: .55rem 1.1rem;
    margin-top: 0;
    font-size: .85rem;
    color: var(--ivory-50);
  }
  .nav__cta::after { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn--primary:hover { background: var(--gold-400); }
.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn--ghost:hover { background: var(--navy-900); color: var(--ivory-50); }
.btn--on-navy { color: var(--ivory-50); border-color: var(--ivory-50); }
.btn--on-navy:hover { background: var(--ivory-50); color: var(--navy-900); }
.btn--gold {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn--gold:hover { background: var(--gold-400); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 3rem 0 3rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 80% 0%, rgba(184,146,58,0.10), transparent 65%),
    radial-gradient(700px 500px at 10% 100%, rgba(10,31,58,0.06), transparent 70%),
    linear-gradient(180deg, var(--ivory-50) 0%, var(--ivory-100) 100%);
  z-index: -1;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--ivory-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--ivory-200) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .35;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}
.hero__copy { order: 1; }
.hero__portrait { order: 2; margin: 0; max-width: 280px; justify-self: center; width: 100%; }

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.25rem, 8vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 0 0 .35em;
}
.hero__tag {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--charcoal-700);
  max-width: 38ch;
  line-height: 1.55;
  margin: 0 0 1.75rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 2rem;
}
.hero__pillars {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .9rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal-500);
  font-weight: 500;
}
.hero__pillars li {
  position: relative;
  padding-left: 1rem;
}
.hero__pillars li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--gold-500);
  transform: translateY(-50%);
}

.portrait-frame {
  position: relative;
  padding: 10px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500) 60%, var(--navy-700));
  border-radius: 4px;
  box-shadow:
    0 30px 60px -20px rgba(10,31,58,0.4),
    0 10px 25px -10px rgba(10,31,58,0.25);
}
.portrait-frame::before {
  content: "";
  position: absolute; inset: 4px;
  border: 1px solid rgba(250,247,240,0.3);
  pointer-events: none;
  border-radius: 2px;
}
.portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  filter: contrast(1.02) saturate(1.05);
}
.portrait-caption {
  margin-top: 1rem;
  text-align: center;
}
.portrait-caption__name {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy-900);
  font-size: 1.05rem;
}
.portrait-caption__role {
  display: block;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: 4px;
  font-weight: 600;
}

.scroll-cue {
  display: none;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-cue span {
  display: block;
  width: 1px; height: 32px;
  background: linear-gradient(180deg, transparent, var(--gold-500));
  animation: scrollCue 2.4s var(--ease) infinite;
}
@keyframes scrollCue { 0%{opacity:0; transform:translateY(-10px);} 50%{opacity:1;} 100%{opacity:0; transform:translateY(10px);} }

@media (min-width: 900px) {
  .hero { padding: 6rem 0 5rem; }
  .hero__inner {
    grid-template-columns: 1.15fr .85fr;
    gap: 4rem;
  }
  .hero__copy { order: 1; }
  .hero__portrait { order: 2; max-width: 420px; }
  .scroll-cue { display: block; }
}

/* ---------- Band (navy quote band) ---------- */
.band {
  padding: 3rem 0;
}
.band--navy {
  background: var(--navy-900);
  color: var(--ivory-50);
  position: relative;
}
.band--navy::before,
.band--navy::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.band--navy::before { top: 0; }
.band--navy::after { bottom: 0; }
.band__inner { text-align: center; max-width: 880px; margin: 0 auto; }
.band__lede {
  font-size: clamp(1.4rem, 3.3vw, 2.1rem);
  line-height: 1.3;
  color: var(--ivory-50);
  margin: 0 0 1rem;
  font-weight: 500;
  font-style: italic;
}
.band__sub {
  color: var(--ivory-100);
  opacity: .82;
  margin: 0;
  font-size: .98rem;
}
@media (min-width: 800px) { .band { padding: 5rem 0; } }

/* ---------- Sections ---------- */
.section { padding: 4rem 0; }
@media (min-width: 800px) { .section { padding: 6rem 0; } }
.section--surface { background: var(--surface); }
.section--navy {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--ivory-50);
}
.section--navy h2, .section--navy h3 { color: var(--ivory-50); }
.section--navy .section__sub { color: var(--ivory-100); opacity: .82; }
.section--navy .section__sub--light { color: var(--ivory-100); }

.section__head {
  max-width: 720px;
  margin: 0 0 2.5rem;
}
.section__head--center { margin: 0 auto 3rem; text-align: center; }
.section__sub {
  font-size: 1.0625rem;
  color: var(--charcoal-700);
  margin: 0;
  line-height: 1.55;
}

/* two column layout */
.two-col { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.two-col__head { max-width: 32ch; }
@media (min-width: 900px) {
  .two-col { grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: start; }
  .two-col__head { position: sticky; top: 6rem; }
}

.quote-card {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--gold-500);
  background: var(--ivory-100);
  border-radius: 2px;
}
.quote-card p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--navy-900);
  font-style: italic;
}

/* ---------- Card grid (firm services) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.card {
  background: var(--ivory-50);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 1.5rem;
  transition: transform .35s var(--ease), border-color .25s var(--ease), box-shadow .35s var(--ease);
}
.card:hover {
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -18px rgba(10,31,58,0.35);
}
.card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: .5rem;
}
.card p { margin: 0; color: var(--charcoal-700); font-size: .95rem; }

/* ---------- Feature list (platform) ---------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.25rem;
}
.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 1rem;
  align-items: start;
}
.feature-list__icon {
  color: var(--gold-500);
  font-size: 1rem;
  line-height: 1.4;
}
.feature-list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy-900);
  font-weight: 600;
  margin-bottom: 2px;
}
.feature-list p { margin: 0; color: var(--charcoal-700); font-size: .95rem; }

.footnote {
  font-size: .8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}

/* ---------- Pillars (experience) ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pillar-grid { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  position: relative;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(224, 194, 129, 0.18);
  border-radius: 4px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.pillar:hover {
  border-color: var(--gold-400);
  background: rgba(255,255,255,0.06);
}
.pillar__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-400);
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: .75rem;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--ivory-50);
}
.pillar p { color: var(--ivory-100); opacity: .8; font-size: .9rem; margin: 0; }

/* ---------- Offers ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 700px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .offer-grid { grid-template-columns: repeat(3, 1fr); } }
.offer {
  background: var(--ivory-50);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.offer__tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 1rem;
}
.offer__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: .5rem;
}
.offer p { color: var(--charcoal-700); font-size: .95rem; margin-bottom: 1.25rem; }
.offer__deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
  display: grid;
  gap: .5rem;
}
.offer__deliverables li {
  font-size: .88rem;
  color: var(--charcoal-700);
  position: relative;
  padding-left: 1.1rem;
}
.offer__deliverables li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--gold-500);
}

/* ---------- Roles ---------- */
.roles__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 700px) { .roles__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .roles__list { grid-template-columns: repeat(4, 1fr); } }
.roles__list li {
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem .25rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy-900);
  position: relative;
  transition: padding .25s var(--ease), color .25s var(--ease);
}
.roles__list li::before {
  content: "→";
  color: var(--gold-500);
  margin-right: .6rem;
  transition: transform .25s var(--ease);
  display: inline-block;
}
.roles__list li:hover { padding-left: .75rem; color: var(--navy-700); }
.roles__list li:hover::before { transform: translateX(3px); }
@media (min-width: 700px) {
  .roles__list li { border-right: 1px solid var(--rule); }
  .roles__list li:nth-child(2n) { border-right: none; }
}
@media (min-width: 1000px) {
  .roles__list li:nth-child(2n) { border-right: 1px solid var(--rule); }
  .roles__list li:nth-child(4n) { border-right: none; }
}

/* ---------- Video ---------- */
.video-wrap {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(224, 194, 129, 0.25);
  background: #000;
}
.video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
}
.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin-top: 1rem;
}
@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.25rem 1.25rem;
  background: var(--ivory-50);
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--navy-900);
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
  word-break: break-word;
}
.contact-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-1px);
  background: var(--white);
}
.contact-card__label {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}
.contact-card__value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy-900);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border-left: 3px solid var(--gold-500);
  border-radius: 2px;
  font-size: .92rem;
  color: var(--charcoal-700);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: var(--ivory-100);
  padding: 2.5rem 0 6rem;
  border-top: 1px solid var(--gold-500);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 700px) {
  .footer__inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer { padding-bottom: 2.5rem; }
}
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__brand .monogram { color: var(--gold-400); }
.footer__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ivory-50);
}
.footer__sub {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 2px;
  font-weight: 500;
}
.footer__meta { font-size: .85rem; opacity: .8; }
.footer__meta p { margin: 0 0 .25rem; }
.footer__fine { font-size: .75rem; opacity: .7; }

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta {
  position: fixed;
  bottom: 1rem; right: 1rem;
  z-index: 60;
  background: var(--navy-900);
  color: var(--ivory-50);
  padding: .9rem 1.15rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 14px 30px -10px rgba(10,31,58,0.5);
  letter-spacing: .04em;
  border: 1px solid var(--gold-500);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.sticky-cta:hover { transform: translateY(-2px); background: var(--navy-800); }
@media (min-width: 800px) {
  .sticky-cta { display: none; }
}

/* ---------- Reveal animations ----------
   Note: opacity-0 only applies via JS class addition,
   so non-JS users still see full content. */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal-ready .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  .js-reveal-ready .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
