/* ==========================================================================
   Lucent Growth — Design System
   Palette + typography per site outline.
   ========================================================================== */

:root {
  --ink: #0E0E0C;
  --graphite: #1C1C1A;
  --charcoal: #2E2E2B;
  --stone: #6B6B66;
  --pebble: #9A9A94;
  --ash: #C4C4BC;
  --linen: #F0EDE8;
  --ivory: #F7F5F2;
  --white: #FFFFFF;
  --bronze: #8C7355;
  --warm-sand: #C4A882;
  --pale-sand: #EDE3D6;

  --serif: "Fraunces", "Canela Text", Georgia, serif;
  --sans: "Inter", "Suisse Int'l", system-ui, -apple-system, sans-serif;

  --track-caps: 0.11em;
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--stone);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--ink); line-height: 1.15; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; }

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--pebble);
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}
.eyebrow--bronze { color: var(--bronze); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-align: center;
}
.btn--bronze { background: var(--bronze); color: var(--ivory); }
.btn--bronze:hover { background: var(--warm-sand); color: var(--ink); }
.btn--ghost-ivory { background: transparent; color: var(--ivory); border-color: rgba(247,245,242,0.45); }
.btn--ghost-ivory:hover { border-color: var(--ivory); }
.btn--ghost-bronze { background: transparent; color: var(--bronze); border-color: var(--bronze); }
.btn--ghost-bronze:hover { background: var(--bronze); color: var(--ivory); }

.link-bronze {
  color: var(--bronze);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.link-bronze:hover { color: var(--warm-sand); }

/* ---------- Tags & badges ---------- */
.badge {
  display: inline-block;
  background: var(--pale-sand);
  color: var(--bronze);
  font-size: 10px;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 10px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  background: var(--pale-sand);
  color: var(--bronze);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 0.5px solid transparent;
  background: transparent;
}
.nav.scrolled {
  background: var(--white);
  border-bottom-color: var(--ash);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--ivory);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav.scrolled .nav__logo,
.nav.nav--light .nav__logo { color: var(--ink); }
.nav__links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav__links a {
  font-size: 13px;
  color: var(--pebble);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--bronze); }
.nav__cta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bronze);
  border: 1px solid var(--bronze);
  padding: 10px 20px;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--bronze); color: var(--ivory); }

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px; height: 32px;
  position: relative;
  z-index: 300;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ivory);
  margin: 5px auto;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.nav.scrolled .nav__burger span, .nav.nav--light .nav__burger span { background: var(--ink); }
.nav__burger.open span { background: var(--ivory) !important; }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 250;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ivory);
}
.mobile-menu a:hover { color: var(--warm-sand); }
.mobile-menu .btn { font-family: var(--sans); font-size: 13px; margin-top: 12px; }

/* ==========================================================================
   Hero (homepage)
   ========================================================================== */
.hero {
  background: var(--ink);
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 80px;
}
.hero__lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -32deg,
    transparent,
    transparent 79px,
    rgba(46,46,43,0.9) 79px,
    rgba(46,46,43,0.9) 80px
  );
  opacity: 0.55;
  pointer-events: none;
}
.hero__content { position: relative; max-width: 660px; }
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  color: var(--ivory);
  margin: 0 0 28px;
}
.hero p.sub {
  font-size: 16px;
  color: var(--pebble);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0.5px;
  background: var(--charcoal);
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ==========================================================================
   Mandate bar
   ========================================================================== */
.mandate-bar { background: var(--graphite); }
.mandate-bar__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mandate-bar__cell {
  padding: 22px 28px;
  border-left: 0.5px solid var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
}
.mandate-bar__cell:first-child { border-left: none; }
.mandate-bar__value {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ivory);
  line-height: 1.2;
}
.mandate-bar__label {
  font-size: 11px;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--pebble);
  margin-top: 4px;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 96px 0; }
.section--white { background: var(--white); }
.section--ivory { background: var(--ivory); }
.section--linen { background: var(--linen); }
.section--sand { background: var(--pale-sand); }
.section--graphite { background: var(--graphite); }
.section--ink { background: var(--ink); }
.section--tight { padding: 80px 0; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 36px); margin-bottom: 20px; }
.section-head p { font-size: 16px; max-width: 560px; }
.section--graphite h2, .section--ink h2 { color: var(--ivory); }

/* ---------- Service cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white);
  border: 0.5px solid var(--ash);
  border-top: 4px solid var(--bronze);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.card h3 { font-size: 20px; margin-bottom: 14px; }
.card p { font-size: 14px; line-height: 1.7; flex-grow: 1; }
.card .link-bronze { margin-top: 24px; }

/* ---------- Sector cards ---------- */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sector-card {
  background: var(--white);
  border: 0.5px solid var(--ash);
  padding: 40px;
}
.sector-card h3 { font-size: 22px; margin: 18px 0 16px; line-height: 1.35; }
.sector-card p { font-size: 14.5px; }

/* ---------- Proof points ---------- */
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 56px; }
.proof {
  border-left: 2px solid var(--bronze);
  padding-left: 26px;
}
.proof h3 { font-size: 19px; margin-bottom: 12px; }
.proof p { font-size: 14.5px; }

/* ---------- Deal tiles ---------- */
.deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.deal-tile {
  background: var(--white);
  border: 0.5px solid var(--ash);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deal-tile__type { font-size: 13px; color: var(--pebble); margin-top: 10px; }
.deal-tile__size { font-family: var(--serif); font-size: 24px; color: var(--ink); }
.deal-tile__stage { font-size: 13px; color: var(--stone); }
.deal-tile__desc { font-size: 14px; color: var(--stone); flex-grow: 1; margin-top: 4px; }
.deal-tile__status {
  align-self: flex-end;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 12px;
}
.deal-tile__status--confidential { color: var(--pebble); text-transform: none; letter-spacing: 0.02em; }
.view-all-row { text-align: right; margin-top: 32px; }

/* ---------- Process strip ---------- */
.process-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; margin-top: 24px; }
.process-strip::before {
  content: "";
  position: absolute;
  top: 7px; left: 4%; right: 4%;
  height: 1px;
  background: var(--bronze);
  opacity: 0.5;
}
.process-step { position: relative; padding-top: 32px; }
.process-step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 15px; height: 15px;
  background: var(--bronze);
  border-radius: 50%;
}
.process-step__num {
  font-size: 11px;
  letter-spacing: var(--track-caps);
  color: var(--pebble);
  display: block;
  margin-bottom: 8px;
}
.process-step h3 { font-size: 16px; margin-bottom: 10px; }
.process-step p { font-size: 13px; line-height: 1.7; }

/* ---------- Closing CTA ---------- */
.closing-cta { text-align: center; }
.closing-cta h2 { font-size: clamp(30px, 4vw, 40px); color: var(--ivory); max-width: 720px; margin: 0 auto 20px; }
.closing-cta p { font-size: 16px; color: var(--pebble); max-width: 560px; margin: 0 auto 36px; }
.closing-cta .fine { font-size: 12px; color: var(--pebble); margin: 20px auto 0; }

/* ==========================================================================
   Interior page header
   ========================================================================== */
.page-header {
  background: var(--ink);
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-header h1 { font-size: clamp(36px, 4.6vw, 48px); color: var(--ivory); margin-bottom: 18px; }
.page-header p { font-size: 16px; color: var(--pebble); max-width: 620px; }

/* ==========================================================================
   Advisory page — two column service blocks
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 72px; align-items: start; }
.svc-main h2 { font-size: 28px; margin-bottom: 22px; }
.svc-main > p { font-size: 15px; margin-bottom: 32px; }
.svc-label {
  font-size: 12px;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
  margin: 32px 0 14px;
}
.dash-list { list-style: none; }
.dash-list li {
  font-size: 14px;
  color: var(--stone);
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}
.dash-list li::before { content: "—"; position: absolute; left: 0; color: var(--bronze); }

.sidebar-block {
  background: var(--pale-sand);
  border-left: 3px solid var(--bronze);
  padding: 28px;
  margin-bottom: 28px;
}
.sidebar-block .stat-label {
  font-size: 12px;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 10px;
}
.sidebar-block p { font-size: 14px; color: var(--stone); }
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  padding: 8px 0 0;
}

/* ---------- Full process detail ---------- */
.process-detail { border-top: 0.5px solid var(--ash); }
.process-detail__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 0.5px solid var(--ash);
}
.process-detail__num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--pebble);
  line-height: 1;
}
.process-detail__row h3 { font-size: 20px; margin-bottom: 14px; }
.process-detail__row p { font-size: 14.5px; }

/* ==========================================================================
   Sectors page
   ========================================================================== */
.subvertical-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.subvertical {
  background: var(--white);
  border: 0.5px solid var(--ash);
  padding: 28px 24px;
}
.subvertical h3 { font-size: 18px; margin-bottom: 12px; }
.subvertical p { font-size: 13.5px; line-height: 1.7; }
.subvertical .txn-types {
  margin-top: 16px;
  font-size: 12px;
  color: var(--pebble);
  letter-spacing: 0.02em;
}
.subvertical .txn-types strong { color: var(--bronze); font-weight: 500; }

.editorial-block { text-align: center; }
.editorial-block__inner { max-width: 720px; margin: 0 auto; }
.editorial-block h2 { font-size: clamp(26px, 3.2vw, 32px); margin-bottom: 28px; }
.editorial-block p { font-size: 16px; line-height: 1.8; margin-bottom: 20px; text-align: left; }

/* ==========================================================================
   Transactions page
   ========================================================================== */
.filter-bar {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: var(--white);
  border-bottom: 0.5px solid var(--ash);
}
.filter-bar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 28px;
  overflow-x: auto;
}
.filter-tab {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--stone);
  padding: 18px 2px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.filter-tab:hover { color: var(--ink); }
.filter-tab.active { color: var(--ink); border-bottom-color: var(--bronze); }

.case-study { padding: 88px 0; }
.case-study h2 { font-size: clamp(24px, 3vw, 28px); margin: 14px 0 40px; max-width: 760px; }
.case-study__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 56px; }
.case-study__section h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
  margin-bottom: 12px;
}
.case-study__section p { font-size: 14px; }

/* ==========================================================================
   Insights page
   ========================================================================== */
.featured-article {
  background: var(--linen);
  padding: 56px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
}
.featured-article h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 16px 0 20px; }
.featured-article p.excerpt { font-size: 15px; }
.featured-article .meta { font-size: 13px; color: var(--pebble); margin: 20px 0 24px; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card {
  background: var(--white);
  border: 0.5px solid var(--ash);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease;
}
.article-card:hover { border-color: var(--bronze); }
.article-card h3 { font-size: 18px; margin: 14px 0 10px; line-height: 1.35; }
.article-card p { font-size: 13px; flex-grow: 1; }
.article-card .meta { font-size: 12px; color: var(--pebble); margin-top: 18px; }

.newsletter { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter h2 { font-size: 28px; margin-bottom: 16px; }
.newsletter p { margin-bottom: 28px; }
.newsletter__form { display: flex; gap: 12px; }
.newsletter__form input {
  flex: 1;
  border: 0.5px solid var(--ash);
  background: var(--white);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
.newsletter__form input:focus { outline: 2px solid var(--bronze); outline-offset: 1px; }
.newsletter .fine { font-size: 12px; color: var(--pebble); margin-top: 16px; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 20px; margin-bottom: 18px; }
.contact-info p { font-size: 14px; line-height: 1.8; margin-bottom: 18px; }
.contact-mini {
  border-left: 2px solid var(--bronze);
  padding-left: 20px;
  margin-top: 28px;
}
.contact-mini h4 { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.contact-mini p { font-size: 13.5px; margin: 0; }

.intake-form {
  background: var(--white);
  border: 0.5px solid var(--ash);
  border-radius: 8px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0.5px solid var(--ash);
  background: var(--ivory);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--bronze);
  outline-offset: 1px;
}
.form-field textarea { resize: vertical; }
.form-field .hint { font-size: 12px; color: var(--pebble); margin-top: 6px; }
.intake-form .btn { width: 100%; margin-top: 8px; }
.intake-form .fine { font-size: 12px; color: var(--pebble); text-align: center; margin-top: 16px; }

.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.office-col .label {
  font-size: 11px;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--pebble);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.office-col p { font-size: 14px; }
.office-col .secondary { font-size: 13px; color: var(--pebble); margin-top: 6px; }
.office-col a { color: var(--bronze); }
.office-col a:hover { color: var(--warm-sand); }
.office-col .compliance { font-size: 12px; line-height: 1.7; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--graphite); padding: 48px 0 40px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer__wordmark { font-family: var(--serif); font-size: 22px; color: var(--ivory); }
.footer__tagline { font-size: 13px; color: var(--pebble); margin-top: 10px; max-width: 300px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13px; color: var(--pebble); transition: color 0.2s ease; }
.footer__links a:hover { color: var(--warm-sand); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer__contact a { font-size: 13px; color: var(--pebble); transition: color 0.2s ease; }
.footer__contact a:hover { color: var(--warm-sand); }
.footer__bottom {
  border-top: 0.5px solid var(--charcoal);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__bottom p, .footer__bottom a { font-size: 12px; color: var(--pebble); }
.footer__bottom a:hover { color: var(--warm-sand); }
.footer__legal { display: flex; gap: 20px; }
.footer__disclaimer {
  font-size: 11.5px;
  color: var(--stone);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 900px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .cards-3, .deal-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .process-strip { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .process-strip::before { display: none; }
  .svc-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-article { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .mandate-bar__grid { grid-template-columns: 1fr 1fr; }
  .mandate-bar__cell { border-top: 0.5px solid var(--charcoal); }
  .mandate-bar__cell:nth-child(-n+2) { border-top: none; }
  .mandate-bar__cell:nth-child(odd) { border-left: none; }
  .cards-2, .proof-grid, .subvertical-grid, .case-study__grid, .contact-grid { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .process-detail__row { grid-template-columns: 1fr; gap: 12px; }
  .section { padding: 72px 0; }
}

@media (max-width: 600px) {
  .container { padding: 0 22px; }
  .nav__inner { padding: 0 22px; }
  .cards-3, .deal-grid, .article-grid, .process-strip { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero { min-height: 78vh; padding-top: 130px; }
  .intake-form { padding: 28px 22px; }
  .newsletter__form { flex-direction: column; }
  .filter-bar { top: 64px; }
  .nav__inner { height: 64px; }
}

/* ---------- Logo mark ---------- */
.nav__logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { height: 30px; width: auto; }
.logo-mark--light { display: none; }
.nav.scrolled .logo-mark--dark { display: none; }
.nav.scrolled .logo-mark--light { display: block; }
.footer__wordmark { display: flex; align-items: center; gap: 12px; }
.footer__logo { height: 34px; width: auto; }
.mobile-menu .logo-mark { height: 40px; }

/* ==========================================================================
   Mobile & tablet refinement pass
   ========================================================================== */

/* Larger tap targets for text links (Apple/Google guideline ~44px) */
.link-bronze { display: inline-block; padding: 12px 0; margin: -4px 0; }
.footer__contact a, .footer__links a, .office-col a { display: inline-block; padding: 6px 0; }
.footer__legal { align-items: center; }

/* Filter bar: clean horizontal swipe on touch, no visible scrollbar */
.filter-bar__inner {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-bar__inner::-webkit-scrollbar { display: none; }
.filter-tab { padding-top: 20px; padding-bottom: 20px; }

/* Calendly: control height responsively */
.calendly-inline-widget { height: 760px; }

/* ---------- Tablet (601–1024) ---------- */
@media (max-width: 1024px) and (min-width: 601px) {
  /* Avoid orphan cards in 2-col grids: last odd card spans full width */
  .cards-3 > .card:last-child:nth-child(odd),
  .article-grid > .article-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .deal-grid > .deal-tile:last-child:nth-child(odd) { grid-column: 1 / -1; }

  .section-head { max-width: 560px; }
  .page-header { min-height: 340px; padding-top: 140px; }
  .featured-article { gap: 0; }
}

/* ---------- Phone (≤600) ---------- */
@media (max-width: 600px) {
  body { font-size: 14.5px; }
  .section { padding: 60px 0; }
  .section--tight { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }

  .page-header { min-height: 0; padding: 118px 0 48px; }
  .page-header h1 { font-size: 34px; }

  .hero { min-height: 0; padding: 128px 0 64px; }
  .hero h1 { font-size: 36px; }
  .hero p.sub { font-size: 15px; margin-bottom: 32px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .closing-cta .btn { width: 100%; max-width: 360px; }

  .mandate-bar__cell { padding: 18px 20px; min-height: 0; }
  .mandate-bar__value { font-size: 17px; }
  .mandate-bar__label { font-size: 10px; }

  .card, .sector-card, .subvertical { padding: 26px 22px; }
  .proof { padding-left: 20px; }
  .proof-grid { gap: 36px; }

  .process-detail__row { padding: 36px 0; }
  .process-detail__num { font-size: 30px; }

  .case-study { padding: 60px 0; }
  .case-study__grid { gap: 32px; }
  .featured-article { padding: 28px 22px; }

  .svc-main h2, .section-head h2 { font-size: 26px; }
  .pull-quote { font-size: 17px; }
  .sidebar-block { padding: 22px; }

  .contact-grid { gap: 48px; }
  .office-grid { gap: 28px; }
  .calendly-inline-widget { height: 920px; }

  .footer { padding: 40px 0 32px; }
  .footer__top { gap: 28px; padding-bottom: 32px; }
  .footer__links { flex-direction: row; flex-wrap: wrap; gap: 4px 20px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

/* ---------- Very small phones (≤380) ---------- */
@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .container { padding: 0 18px; }
  .nav__inner { padding: 0 18px; }
}
