:root {
  --navy: #141412;
  --navy-mid: #1D1C1A;
  --navy-deep: #0D0C0B;
  --gold: rgba(235,228,215,0.90);
  --gold-light: rgba(235,228,215,0.08);
  --gold-border: rgba(235,228,215,0.18);
  --white: #ffffff;
  --text-primary: rgba(235,228,215,0.92);
  --text-secondary: rgba(205,198,187,0.80);
  --text-muted: rgba(190,183,172,0.62);
  --border: rgba(255,255,255,0.07);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--navy);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(22,21,20,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { cursor: pointer; }
.nav-logo-name {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.16em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 8.5px;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-item { position: relative; }

.nav-link {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
  user-select: none;
  padding: 8px 0;
  display: block;
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--gold); }

.nav-dropdown {
  position: absolute;
  top: 100%; padding-top: 8px;
  left: -16px;
  background: var(--navy-mid);
  border: 1px solid var(--gold-border);
  min-width: 220px;
  display: none;
  flex-direction: column;
  z-index: 100;
}
.nav-item:hover .nav-dropdown { display: flex; }

.nav-dropdown-item {
  font-size: 11.5px;
  color: var(--text-secondary);
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 1px solid var(--border);
}
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item:hover { color: var(--gold); background: rgba(201,169,110,0.04); }

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 10px 22px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #d4b47a; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}

/* ── PAGES ── */
.page { display: none; padding-top: 72px; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 580px;
  max-height: 820px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(22,21,20,0.97) 0%,
    rgba(22,21,20,0.88) 38%,
    rgba(22,21,20,0.55) 65%,
    rgba(22,21,20,0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-inner { max-width: 560px; }

.gold-rule {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.07;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 440px;
}

.btn-group { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  letter-spacing: 0.13em;
  padding: 14px 34px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  border: none;
  font-family: var(--sans);
}
.btn-gold:hover { background: #d4b47a; }

.btn-ghost-text {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  cursor: pointer;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(22,21,20,0.95) 45%, rgba(22,21,20,0.6) 75%, rgba(22,21,20,0.2) 100%);
}

.page-hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding: 80px 80px 0;
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero-inner { max-width: 600px; }

.page-eyebrow {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 18px;
}
.page-h1 em { color: var(--gold); font-style: italic; }

.page-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 500px;
}

/* ── CREDIBILITY BAR ── */
.cred-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding: 20px 80px;
}

.cred-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.cred-label {
  font-size: 8.5px;
  letter-spacing: 0.24em;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.cred-networks {
  display: flex;
  gap: 40px;
  align-items: center;
}

.cred-network {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
}

.cred-divider {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.cred-detail {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── SECTIONS ── */
.section {
  padding: 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-full {
  padding: 80px 80px;
}

.section-full .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-h2-center { text-align: center; }

.body-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

/* ── SERVICE GRID ── */
.service-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin: 40px 0;
}

.service-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin: 40px 0;
}

.service-card {
  background: var(--navy);
  padding: 40px 32px;
  transition: background 0.2s;
}
.service-card:hover { background: rgba(28,26,24,0.8); }

.service-card-bar {
  width: 28px; height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

.service-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.service-card-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.service-card-link {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  cursor: pointer;
}

/* ── ADVOCATE BOX ── */
.advocate-box {
  background: var(--navy-mid);
  border: 1px solid var(--gold-border);
  padding: 40px 44px;
  margin: 40px 0;
}

.advocate-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 18px;
}

.advocate-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
}

/* ── DARK SECTION ── */
.dark-section {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
}

/* ── INTRO SPLIT ── */
.intro-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}

.intro-photo {
  overflow: hidden;
  align-self: stretch;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}

.about-photo {
  height: 420px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pull-quote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 28px 0;
}

.pull-quote-text {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* ── EVENTS TAGS ── */
.events-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 36px;
  justify-content: center;
}

.event-tag {
  font-size: 10.5px;
  color: var(--text-muted);
  border: 0.5px solid rgba(255,255,255,0.1);
  padding: 7px 14px;
  letter-spacing: 0.02em;
}

/* ── GALLERY ── */
.gallery-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0;
}

.gallery-item {
  height: 220px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* ── SPEAKING CARDS ── */
.speaking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 20px 0;
}

.speaking-card {
  background: var(--navy-mid);
  border: 0.5px solid var(--gold-border);
  padding: 28px 24px;
}

.speaking-tag {
  font-family: 'Jost', var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.speaking-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.speaking-body {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
}

/* ── FOOTNOTE ── */
.footnote {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  line-height: 1.7;
}

.footnote a {
  color: var(--gold);
  text-decoration: none;
  cursor: pointer;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 80px;
  text-align: center;
}

.cta-rule {
  width: 36px; height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.cta-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

/* ── CONTACT ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.07);
}

.contact-left {
  background: var(--navy-mid);
  padding: 72px 64px;
}

.contact-right {
  background: var(--navy);
  padding: 72px 64px;
}

.contact-h {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-body {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-email-block {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.contact-email-label {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-email-address {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
}

.form-field { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 0;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-textarea { height: 110px; resize: none; }

.form-select option { background: var(--navy); }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  letter-spacing: 0.13em;
  padding: 15px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  transition: background 0.2s;
  margin-top: 4px;
}
.btn-submit:hover { background: #d4b47a; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-deep);
  padding: 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-text {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  /* ── NAV ── */
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-link {
    padding: 16px 24px;
    display: block;
    width: 100%;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
  }
  .nav-dropdown {
    position: static !important;
    display: none !important;
    flex-direction: column !important;
    border: none !important;
    padding: 0 !important;
    background: rgba(22,21,20,0.5) !important;
    min-width: unset !important;
    width: 100% !important;
  }
  .nav-dropdown.mob-open {
    display: flex !important;
  }
  .mob-arrow {
    display: inline-block;
    transition: transform 0.2s;
    margin-left: 4px;
    font-size: 9px;
  }
  .mob-arrow.open { transform: rotate(180deg); }
  .nav-dropdown-item {
    padding: 14px 36px !important;
    border-bottom: 1px solid rgba(255,255,255,0.04) !important;
    font-size: 12px !important;
    color: rgba(255,255,255,0.6) !important;
  }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  /* ── HERO ── */
  .hero {
    height: 100svh;
    min-height: 500px;
    max-height: 700px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: right center;
  }
  .hero-overlay {
    background: linear-gradient(
      160deg,
      rgba(22,21,20,0.97) 0%,
      rgba(22,21,20,0.92) 45%,
      rgba(22,21,20,0.65) 75%,
      rgba(22,21,20,0.2) 100%
    ) !important;
  }
  .hero-content { padding: 0 24px; align-items: flex-end; padding-bottom: 48px; }
  .hero-inner { max-width: 100%; }
  .hero-h1 { font-size: 32px; }
  .hero-sub { font-size: 13px; max-width: 100%; }

  /* ── PAGE HEROES ── */
  .page-hero { height: 280px; }
  .page-hero-bg {
    background-position: right center !important;
    background-size: cover !important;
  }
  .page-hero-overlay {
    background: linear-gradient(
      to right,
      rgba(22,21,20,0.97) 0%,
      rgba(22,21,20,0.92) 40%,
      rgba(22,21,20,0.6) 70%,
      rgba(22,21,20,0.15) 100%
    ) !important;
  }
  .page-hero-content { padding: 44px 24px 0; }
  .page-h1 { font-size: 24px; }
  .page-sub { font-size: 12px; }
  .about-hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: right top;
  }

  /* ── CRED BAR ── */
  .cred-bar { padding: 14px 20px; }
  .cred-inner { flex-wrap: wrap; gap: 12px; }
  .cred-detail { display: none; }
  .cred-divider { display: none; }

  /* ── SECTIONS ── */
  .section { padding: 40px 20px; }
  .section-full { padding: 40px 20px; }
  .cta-section { padding: 48px 20px; }

  /* ── GRIDS ── */
  .service-grid-3 { grid-template-columns: 1fr; }
  .service-grid-2 { grid-template-columns: 1fr; }
  .speaking-grid { grid-template-columns: 1fr; }

  /* ── HOMEPAGE INTRO SPLIT ── */
  .intro-split { grid-template-columns: 1fr; gap: 24px; }
  .intro-photo { height: auto; max-height: 320px; overflow: hidden; }
  .intro-photo img { object-position: center 20%; }

  /* ── ABOUT SPLIT ── */
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .about-photo {
    height: 320px;
    position: static;
    order: -1;
    overflow: hidden;
  }
  .about-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  /* ── CONTACT ── */
  .contact-split { grid-template-columns: 1fr; }
  .contact-left { padding: 40px 20px; }
  .contact-right { padding: 40px 20px; }

  /* ── CAROUSEL ── */
  .multi-carousel-slide {
    width: calc(100% - 0px) !important;
    aspect-ratio: 4/3;
  }

  /* ── MISC ── */
  .site-footer { padding: 20px 20px; flex-direction: column; gap: 8px; text-align: left; }
  .advocate-box { padding: 24px 20px; }
  .section-h2 { font-size: 24px; }
  .hero-h1 { font-size: 30px; }
  .hero-attorney-line { display: flex; flex-direction: column; gap: 3px; }
  .hero-attorney-line .sep { display: none; }
  .multi-carousel { margin: 16px 0; }
  .multi-carousel-slide {
    width: 100% !important;
  }

  /* Crisis card: left-align on mobile */
  .service-card-centered { text-align: left !important; }
  .service-card-centered .service-card-bar { margin-left: 0 !important; margin-right: auto !important; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 26px; }
  .page-h1 { font-size: 22px; }
  .cta-h2 { font-size: 24px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page.active .hero-inner > * {
  animation: fadeUp 0.7s ease both;
}
.page.active .hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.page.active .hero-inner > *:nth-child(2) { animation-delay: 0.15s; }
.page.active .hero-inner > *:nth-child(3) { animation-delay: 0.25s; }
.page.active .hero-inner > *:nth-child(4) { animation-delay: 0.35s; }
.page.active .hero-inner > *:nth-child(5) { animation-delay: 0.45s; }

/* ── MULTI-PHOTO CAROUSEL ── */
.multi-carousel {
  position: relative;
  overflow: hidden;
  margin: 28px 0;
}
.multi-carousel-track-wrap {
  overflow: hidden;
}
.multi-carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s ease;
  align-items: center;
}
.multi-carousel-slide {
  width: calc(25% - 9px);
  aspect-ratio: 4/3;
  flex-shrink: 0;
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.07);
}
.multi-carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.multi-carousel-slide:hover img { transform: scale(1.03); }
.mc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(22,21,20,0.75);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 22px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
  line-height: 1;
}
.mc-btn:hover { background: rgba(201,169,110,0.15); }
.mc-prev { left: 0; }
.mc-next { right: 0; }
.mc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.mc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background 0.2s;
}
.mc-dot.active { background: var(--gold); }
.hema-in-action {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .multi-carousel-slide { height: 200px; }
}

/* ── PAGE HERO PHOTO FIX ── */
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(22,21,20,0.97) 0%,
    rgba(22,21,20,0.88) 35%,
    rgba(22,21,20,0.55) 62%,
    rgba(22,21,20,0.08) 100%
  );
}

/* About hero uses baked ombre image */


.service-card-centered {
  grid-column: 1 / -1;
  text-align: center;
}
.service-card-centered .service-card-bar { margin: 0 auto 16px; }

/* ── FOLLOW SECTION ── */
.follow-section {
  background: var(--navy-mid);
  padding: 72px 80px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.follow-eyebrow {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  font-family: var(--sans);
  margin-bottom: 14px;
}
.follow-heading {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.2;
}
.follow-heading em { font-style: italic; color: var(--gold); }
.social-links {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
}
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  font-family: var(--sans);
}
.social-link:hover { color: var(--gold); }
.social-icon {
  width: 30px;
  height: 30px;
  opacity: 0.45;
  transition: opacity 0.2s;
  fill: currentColor;
}
.social-link:hover .social-icon { opacity: 1; }
/* Footer */
.footer-disclaimer {
  width: 100%;
  font-size: 10px;
  color: rgba(255,255,255,0.22);
  line-height: 1.7;
  text-align: left;
  letter-spacing: 0.02em;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .follow-section { padding: 48px 24px; }
  .follow-heading { font-size: 26px; }
  .social-links { gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
</style>
/* Body paragraph text → Newsreader */
.body-text, .hero-sub, .service-card-body, .page-intro, .page-lead { font-family: 'Newsreader', Georgia, serif !important; font-style: normal; }

/* Fraunces optical sizing */
.hero-h1, .section-h2, .page-h1, .cta-h2, .follow-heading { font-optical-sizing: auto; font-variation-settings: 'opsz' 72, 'wght' 400, 'SOFT' 0; }

/* Nav links are now <a> tags — remove underlines */
.nav-link, .nav-dropdown-item, .nav-cta, .nav-logo { text-decoration: none; }

/* ── EMCEE HERO — mobile object-position fix ── */
@media (max-width: 768px) {
  #emcee-hero-bg {
    object-position: 58% center !important;
  }
}

/* ── HOMEPAGE HERO — lighter overlay on mobile ── */
@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(22,21,20,0.10) 0%,
      rgba(22,21,20,0.25) 60%,
      rgba(22,21,20,0.55) 100%
    ) !important;
  }
}
