picture { display: block; }
picture img { display: block; }

#main-content { min-height: calc(100vh - var(--nav-h)); }

/* ── Design Tokens ──────────────────────────────────── */
:root {
  --navy:        #1B2774;
  --navy-dark:   #131c5a;
  --navy-light:  #2535a0;
  --white:       #ffffff;
  --off-white:   #f6f6f4;
  --gray-light:  #e2e2de;
  --gray-mid:    #c8c8c4;
  --text:        #1a1a1a;
  --text-light:  #5a5a5a;

  --font-sans:   'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-serif:  Georgia, 'Times New Roman', serif;

  --max-w:       1280px;
  --nav-h:       72px;

  font-family: var(--font-sans);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; }

/* ── Header / Nav ───────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#header.scrolled {
  border-bottom-color: var(--gray-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  opacity: 0.85;
}

.logo img {
  height: 4.25rem;               /* 68px — fills the 72px bar with a small margin */
  width: auto;
  flex-shrink: 0;                /* prevents image from shrinking */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--navy); }

.nav-actions {
  flex: 1;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-action-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  object-fit: cover;
  transition: color 0.15s, background 0.15s;
}

.nav-action-link:hover {
  color: var(--navy);
  background: var(--off-white);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  object-fit: cover;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}

.nav-cta:hover { background: var(--navy-dark); }

/* Tools dropdown */
.nav-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  transition: color 0.15s;
}

.nav-dropdown-trigger:hover { color: var(--navy); }

.nav-dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s;
  display: inline-block;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  min-width: 200px;
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown-menu a:hover {
  color: var(--navy);
  background: var(--off-white);
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--gray-light);
  margin: 0.3rem 0;
}

/* Bookings menu button */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-modal[hidden] { display: none; }

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.booking-modal-frame {
  position: relative;
  z-index: 1;
  width: min(500px, 95vw);
  height: min(600px, 90vh);
  background: white;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.booking-modal-frame iframe {
  flex: 1;
  width: 100%;
  border: none;
}

.booking-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile drawer */
@media (max-width: 900px) {
  .mobile-menu-btn { display: flex; }

  .nav-links,
  .nav-actions { display: none; }

  .nav-links.open,
  .nav-actions.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-container {
    flex-wrap: wrap;
    height: auto;
    padding: 1rem 1.5rem;
    padding-bottom: 0;
  }

  .nav-links.open {
    width: 100%;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid var(--gray-light);
    margin-top: 0.75rem;
  }

  .nav-links.open a {
    padding: 0.65rem 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.95rem;
  }

  .nav-actions.open {
    width: 100%;
    padding: 0.75rem 0 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .nav-cta { margin-left: auto; }

  .nav-dropdown {
    width: 100%;
    align-self: auto;
    display: block;
  }

  .nav-dropdown-trigger {
    padding: 0.65rem 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.95rem;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 0.55rem 1rem;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.9rem;
  }
}

/* ── Hero ───────────────────────────────────────────── */
#hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: clamp(704px, 93vh, 1012px);
}

.hero-left {
  background: var(--navy);
  padding: calc(var(--nav-h) + 4rem) 2.5rem 5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(37, 53, 160, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(19, 28, 90, 0.5) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  width: 25%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.carousel-dot.active {
  background: var(--white);
  transform: scale(1.25);
}

/* Tablet: 2-column with carousel. Switch from fixed height to min-height so
   content is never clipped on short-viewport devices (iPad landscape etc). */
@media (min-width: 768px) and (max-width: 1350px),
       (min-width: 768px) and (max-height: 880px) {
  #hero { height: auto; min-height: clamp(600px, 100vh, 1012px); }
  .hero-left { padding: calc(var(--nav-h) + 1rem) 2rem 1.5rem; }
  .hero-content h1 { margin-bottom: 0.75rem; }
  .hero-subtitle { margin-bottom: 1.25rem; }
  .hero-stats { margin-bottom: 1.5rem; padding-bottom: 1.25rem; }
}

/* Mobile: single column, carousel hidden */
@media (max-width: 767px) {
  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: calc(var(--nav-h) + 2rem) 1.5rem 2.5rem; }
  .hero-carousel { display: none; }
}


/* ── Split hero (blue left + static image right) ────── */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: clamp(704px, 93vh, 1012px);
}

.split-hero-left {
  background: var(--navy);
  padding: calc(var(--nav-h) + 2rem) 2.5rem 2rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.split-hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(37, 53, 160, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(19, 28, 90, 0.5) 0%, transparent 55%);
}

.split-hero-content {
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.split-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.split-hero-image {
  position: relative;
  overflow: hidden;
}

.split-hero-image picture {
  width: 100%;
  height: 100%;
}

.split-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .split-hero { grid-template-columns: 1fr; }
  .split-hero-left { padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem; }
  .split-hero-image { min-height: 55vw; }
}

.hero-eyebrow {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-subtitle {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.hero-stat { display: flex; flex-direction: column; gap: 0.3rem; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Audience tabs */
.audience-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.audience-tab {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.audience-tab:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}

.audience-tab.active {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
  font-weight: 600;
}

/* ── Audience panels ────────────────────────────────── */
.audience-panel { display: none; }
.audience-panel.active { display: block; }

/* ── Content rows ───────────────────────────────────── */
.content-row { width: 100%; }
.bg-off-white { background: var(--off-white); }
.bg-white     { background: var(--white); }

.content-row-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.content-row-inner.reverse {
  direction: rtl;
}

.content-row-inner.reverse > * {
  direction: ltr;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  font-weight: 400;
  color: var(--text);
}

.section-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.content-list li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.content-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-size: 0.8rem;
}

.text-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}

.text-link:hover { opacity: 0.7; }

.placeholder-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c8cfe8 0%, #8898d4 50%, #6070b8 100%);
  border-radius: 4px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-row-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 1.5rem;
  }
  .content-row-inner.reverse { direction: ltr; }
}

/* ── Philosophy / About ─────────────────────────────── */
#philosophy {
  background: var(--navy);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

#philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(37, 53, 160, 0.5) 0%, transparent 65%);
}

.philosophy-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.section-label.light {
  color: rgba(255,255,255,0.5);
}

.philosophy-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  max-width: 680px;
}

.philosophy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.philosophy-columns p {
  color: rgba(255,255,255,0.68);
  font-size: 1.02rem;
  line-height: 1.82;
}

.btn-outline-light {
  display: inline-block;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  object-fit: cover;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: border-color 0.15s, background 0.15s;
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

@media (max-width: 640px) {
  .philosophy-columns { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── Approach / Pillars ─────────────────────────────── */
#approach {
  padding: 7rem 2rem;
  background: var(--white);
}

.section-header.centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-header.centered h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-intro {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-light);
  max-width: var(--max-w);
  margin: 0 auto;
  border: 1px solid var(--gray-light);
}

.pillar {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  transition: background 0.15s;
}

.pillar:hover { background: var(--off-white); }

.pillar-icon {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.pillar p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ── Insights / Stories ─────────────────────────────── */
#insights {
  padding: 7rem 2rem;
  background: var(--off-white);
}

#insights .section-header.centered { margin-bottom: 3.5rem; }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.story-card {
  background: var(--white);
  border-radius: 4px;
  object-fit: cover;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.story-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.story-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #c8cfe8 0%, #8898d4 50%, #6070b8 100%);
  object-fit: cover 
}

.story-content {
  padding: 1.75rem;
}

.story-content h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.story-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .stories-grid { grid-template-columns: 1fr; }
}

/* ── CTA ────────────────────────────────────────────── */
#cta {
  background: var(--navy);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(37, 53, 160, 0.6) 0%, transparent 65%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.btn-primary-light {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2.25rem;
  border-radius: 4px;
  object-fit: cover;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}

.btn-primary-light:hover {
  background: var(--off-white);
}

/* ── Footer ─────────────────────────────────────────── */
#footer {
  background: #0f1540;
  color: rgba(255,255,255,0.55);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
}

.footer-logo {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}

.footer-contact-item:hover { color: var(--white); }

.footer-contact-item svg { flex-shrink: 0; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 700;
  transition: border-color 0.15s, color 0.15s;
}

.footer-social a:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.6rem;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* ── Tool newsletter section ────────────────────────── */
.tool-newsletter {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 2rem;
}

.tool-newsletter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tool-newsletter-text h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.tool-newsletter-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.tool-newsletter-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.tool-newsletter-fields input[type="email"] {
  grid-column: 1 / -1;
}

.tool-newsletter-fields input {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  box-sizing: border-box;
}

.tool-newsletter-fields input::placeholder { color: rgba(255,255,255,0.4); }
.tool-newsletter-fields input:focus { border-color: rgba(255,255,255,0.55); }

.tool-newsletter-btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.tool-newsletter-btn:hover { background: var(--off-white); }
.tool-newsletter-btn:disabled { opacity: 0.65; cursor: not-allowed; }

.tool-newsletter-msg {
  margin-top: 0.65rem;
  font-size: 0.83rem;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.tool-newsletter-success { background: rgba(26,122,74,0.25); color: #86efac; }
.tool-newsletter-error   { background: rgba(185,28,28,0.25); color: #fca5a5; }

@media (max-width: 768px) {
  .tool-newsletter-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .tool-newsletter-fields { grid-template-columns: 1fr; }
  .tool-newsletter-fields input[type="email"] { grid-column: auto; }
}

/* ── Footer newsletter column ────────────────────────── */
.footer-newsletter-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0 0 0.85rem;
}

.footer-newsletter-row {
  display: flex;
  gap: 0.4rem;
}

.footer-newsletter-row input {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.15s;
}

.footer-newsletter-row input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-row input:focus { border-color: rgba(255,255,255,0.45); }

.footer-newsletter-row button {
  padding: 0.5rem 0.8rem;
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}

.footer-newsletter-row button:hover { background: var(--off-white); }
.footer-newsletter-row button:disabled { opacity: 0.6; cursor: not-allowed; }

.footer-newsletter-msg {
  font-size: 0.78rem;
  margin-top: 0.5rem;
}

.footer-nl-success { color: #86efac; }
.footer-nl-error   { color: #fca5a5; }

/* ── About page ─────────────────────────────────────── */
.about-hero {
  background: var(--navy);
  height: clamp(704px, 93vh, 1012px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(37, 53, 160, 0.6) 0%, transparent 60%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}









.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  max-width: 560px;
}

/* Mission */
.about-mission {
  background: var(--off-white);
  padding: 7rem 2rem;
}

.about-mission-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-pull-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--navy);
  line-height: 1.5;
  font-weight: 400;
  border-left: 3px solid var(--navy);
  padding-left: 1.75rem;
  margin: 0;
}

.about-story .section-label { margin-bottom: 1rem; }

.about-story h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.about-story p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .about-mission-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Values */
.about-values {
  background: var(--white);
  padding: 7rem 2rem;
}

.about-values-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.value-card {
  background: var(--off-white);
  border-radius: 4px;
  object-fit: cover;
  padding: 2.25rem 2rem;
  border-top: 3px solid var(--navy);
}

.value-icon {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1.1rem;
  opacity: 0.7;
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Team */
.about-team {
  background: var(--off-white);
  padding: 7rem 2rem;
}

.about-team-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.team-card {
  background: var(--white);
  border-radius: 4px;
  object-fit: cover;
  overflow: hidden;
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 260px;
}

.team-avatar-1 {
  background: linear-gradient(135deg, #8898d4 0%, #1B2774 100%);
}

.team-avatar-2 {
  background: linear-gradient(135deg, #6070b8 0%, #2535a0 100%);
}

.team-avatar-3 {
  background: linear-gradient(135deg, #a0aad8 0%, #131c5a 100%);
}

.team-info {
  padding: 1.75rem;
}

.team-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.team-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.85rem !important;
}

.team-bio {
  font-size: 0.88rem !important;
  color: var(--text-light) !important;
  line-height: 1.7 !important;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ── About: Why we built / Values in practice ────── */
.about-founding {
  background: var(--white);
  padding: 7rem 2rem;
}

.about-founding-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.founding-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: stretch;
}

.founding-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.founding-text p {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 1rem;
}

.founding-image {
  border-radius: 4px;
  overflow: hidden;
  min-height: 400px;
}

.founding-image picture {
  width: 100%;
  height: 100%;
}

.founding-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .founding-body { grid-template-columns: 1fr; }
  .founding-image { min-height: 55vw; }
}

.about-values-practice {
  background: var(--off-white);
  padding: 7rem 2rem;
}

.about-values-practice-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.practice-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem 2.25rem;
}

.practice-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.practice-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .practice-grid { grid-template-columns: 1fr; }
}

/* ── Service / secondary page shared ───────────────── */
.section-padded {
  padding: 7rem 2rem;
}

.section-padded .section-header.centered {
  margin-bottom: 3.5rem;
}

/* ── Posts grid (Insights / Articles) ──────────────── */
.posts-section {
  padding: 5rem 2rem 7rem;
}

.posts-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.posts-filter {
  margin-bottom: 2.5rem;
}

.posts-filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 0.25rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.post-card {
  background: var(--white);
  border-radius: 4px;
  object-fit: cover;
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.post-card--linked {
  cursor: pointer;
}

.post-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #c8cfe8 0%, #8898d4 50%, #6070b8 100%);
}

.post-image-2 { background: linear-gradient(135deg, #b8c4e0 0%, #7080c8 50%, #5060a8 100%); }
.post-image-3 { background: linear-gradient(135deg, #d0d8ee 0%, #9aabdc 50%, #7090c4 100%); }
.post-image-4 { background: linear-gradient(135deg, #a8b8d8 0%, #6878b8 50%, #4858a0 100%); }
.post-image-5 { background: linear-gradient(135deg, #c0cce8 0%, #8090cc 50%, #5868b4 100%); }
.post-image-6 { background: linear-gradient(135deg, #b0bedd 0%, #7484c4 50%, #4a5aac 100%); }

.post-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.post-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.post-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
}

.post-excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.post-date {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

img.post-image {
  object-fit: cover;
  display: block;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.25rem;
}

@media (max-width: 900px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Article page ────────────────────────────────────── */
.article-body {
  background: var(--off-white);
  padding: 5rem 2rem 7rem;
}

.article-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-container h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-top: 1rem;
}

.article-container p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.85;
}

.article-callout {
  background: rgba(27, 39, 116, 0.06);
  border-left: 3px solid var(--navy);
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  color: var(--text) !important;
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
}

.article-lead {
  font-size: 1.15rem !important;
  color: var(--text) !important;
  line-height: 1.7 !important;
  font-weight: 500;
  border-left: 3px solid var(--navy);
  padding-left: 1.25rem;
}

.article-exhibit {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-exhibit img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.article-exhibit figcaption {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.article-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.profile-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.profile-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.profile-card svg {
  width: 32px;
  height: 32px;
}

.profile-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  margin: 0;
}

.profile-card p {
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 680px) {
  .profile-cards {
    grid-template-columns: 1fr;
  }
}

.article-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.article-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 0;
}

.article-list li {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.85;
  padding-left: 1.25rem;
  position: relative;
}

.article-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--navy);
}

@media (max-width: 580px) {
  .posts-grid { grid-template-columns: 1fr; }
}

/* ── Newsroom ────────────────────────────────────────── */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
}

.news-item {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.news-item:first-child {
  border-top: 1px solid var(--gray-light);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.75rem;
}

.news-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.news-body {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── Form ADV ────────────────────────────────────────── */
.legal-section {
  padding: 5rem 2rem 7rem;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-intro {
  margin-bottom: 3.5rem;
}

.legal-intro h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}

.legal-intro p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.adv-parts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.adv-part {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.adv-part:first-child { border-top: 1px solid var(--gray-light); }

.adv-part-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.adv-part-icon {
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.7;
  flex: 1;
  margin-top: 0.2rem;
}

.adv-part h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.adv-part-subtitle {
  font-size: 0.82rem;
  color: var(--text-light);
}

.adv-part p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.legal-note {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 4px;
  object-fit: cover;
  border-left: 3px solid var(--navy);
}

.legal-note p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Privacy Policy ──────────────────────────────────── */
.legal-updated {
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-bottom: 3rem;
}

.legal-block {
  margin-bottom: 2.5rem;
}

.legal-block h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.legal-block p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.legal-list {
  list-style: none;
  margin: 0.75rem 0 0.85rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legal-list li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}

.legal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--navy);
  opacity: 0.5;
}

/* ── Contact ─────────────────────────────────────────── */
.contact-section {
  padding: 5rem 2rem 7rem;
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 6rem;
  align-items: start;
}

.contact-form-col h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.contact-intro {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.form-optional {
  font-weight: 400;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  object-fit: cover;
  padding: 0.65rem 0.85rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 39, 116, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  align-self: flex-start;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  object-fit: cover;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}

.form-submit:hover { background: var(--navy-dark); }

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: -0.25rem;
}

.contact-feedback {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-feedback--success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.contact-feedback--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 4.5rem;
}

.contact-info-block h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-info-block p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-info-col { padding-top: 0; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Tool Pages ──────────────────────────────────────── */
.tool-page {
  min-height: 100vh;
  padding-bottom: 4rem;
}

.tool-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
  color: var(--white);
}

.tool-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.tool-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}

.tool-hero p {
  font-size: 1rem;
  opacity: 0.82;
  max-width: 580px;
  line-height: 1.65;
}

.tool-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.tool-inputs {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1.75rem;
}

.tool-inputs h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-light);
}

.tool-field {
  margin-bottom: 1.25rem;
}

.tool-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.tool-label-hint {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.78rem;
}

.tool-field input,
.tool-field select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  box-sizing: border-box;
  font-family: inherit;
}

.tool-field input:focus,
.tool-field select:focus {
  outline: none;
  border-color: var(--navy);
}

.tool-calculate-btn {
  display: block;
  width: 100%;
  padding: 0.7rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.5rem;
  font-family: inherit;
}

.tool-calculate-btn:hover { background: var(--navy-dark); }

.tool-results {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1.75rem;
}

.tool-results h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-light);
}

.tool-results-placeholder {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

.tool-error-msg {
  font-size: 0.88rem;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  line-height: 1.55;
}

.tool-metric {
  margin-bottom: 1.25rem;
}

.tool-metric-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.tool-metric-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.tool-metric-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  line-height: 1.5;
}

.tool-metric-positive { color: #1a7a4a; }
.tool-metric-warning  { color: #b45309; }
.tool-metric-negative { color: #b91c1c; }

.tool-divider {
  border: none;
  border-top: 1px solid var(--gray-light);
  margin: 1.25rem 0;
}

.tool-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  margin-top: 0.5rem;
}

.tool-table th {
  text-align: left;
  padding: 0.45rem 0.65rem;
  background: var(--gray-light);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: var(--text);
}

.tool-table td {
  padding: 0.45rem 0.65rem;
  border-bottom: 1px solid var(--gray-light);
  color: var(--text);
}

.tool-table tr:last-child td { border-bottom: none; }

.tool-disclaimer {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
}

.tool-progress-bar {
  height: 6px;
  background: var(--gray-light);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.tool-progress-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.tool-bar-row { margin-bottom: 1rem; }

.tool-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.tool-bar {
  height: 8px;
  background: var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
}

.tool-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
}

.tool-bar-fill.navy  { background: var(--navy); }
.tool-bar-fill.green { background: #1a7a4a; }
.tool-bar-fill.amber { background: #b45309; }
.tool-bar-fill.red   { background: #b91c1c; }

/* Quiz layout */
.tool-quiz-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.quiz-question {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-light);
}

.quiz-question-number {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.quiz-question-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
}

.quiz-option:hover {
  border-color: var(--navy);
  background: var(--off-white);
}

.quiz-option input[type="radio"] {
  accent-color: var(--navy);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.quiz-result-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
}

.quiz-result-score {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.quiz-result-label {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.quiz-result-desc {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .tool-grid { grid-template-columns: 1fr; }
}

/* ── FAQ Page ───────────────────────────────────────── */
.faq-nav-section {
  padding: 2.5rem 2rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
}

.faq-nav-inner {
  max-width: 980px;
  margin: 0 auto;
}

.faq-nav-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.faq-nav a {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.faq-nav a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.faq-section {
  padding: 4.5rem 2rem;
  background: var(--white);
  scroll-margin-top: 2rem;
}

.faq-section:nth-of-type(even) {
  background: var(--off-white);
}

.faq-section-inner {
  max-width: 980px;
  margin: 0 auto;
}

.faq-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  color: var(--navy);
  font-weight: 400;
  margin: 0 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--navy);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq-section:nth-of-type(even) .faq-item {
  background: var(--white);
}

.faq-item:hover {
  border-color: var(--navy-light);
}

.faq-item[open] {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(27, 39, 116, 0.07);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--text);
  font-weight: 400;
  list-style: none;
  user-select: none;
  transition: background 0.12s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-question:hover {
  background: rgba(27, 39, 116, 0.025);
}

.faq-question-text {
  flex: 1;
}

.faq-question-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.25s ease;
}

.faq-question-icon::before,
.faq-question-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--navy);
  border-radius: 1px;
}

.faq-question-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-question-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.faq-item[open] .faq-question-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-light);
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 1.25rem 0 0;
}

@media (max-width: 768px) {
  .faq-nav-section {
    padding: 1.75rem 1rem;
  }

  .faq-nav a {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }

  .faq-section {
    padding: 3rem 1rem;
  }

  .faq-section-title {
    margin-bottom: 1.5rem;
  }

  .faq-question {
    padding: 1rem 1.15rem;
    font-size: 1rem;
    gap: 0.85rem;
  }

  .faq-answer {
    padding: 0 1.15rem 1.15rem;
  }

  .faq-answer p {
    font-size: 0.92rem;
  }
}

/* ── Mobile floating "Schedule a Meeting" button ──── */
.mobile-book-fab {
  display: none;
}

@media (max-width: 768px) {
  .mobile-book-fab {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    padding: 0.85rem 1.15rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
  }

  .mobile-book-fab:hover,
  .mobile-book-fab:focus-visible {
    background: var(--navy-dark);
    outline: none;
  }

  .mobile-book-fab:active {
    transform: scale(0.97);
  }

  .mobile-book-fab-icon {
    flex-shrink: 0;
  }
}

/* ── "Get in Contact" pill in the main nav ─────────── */
/* .nav-links a rules otherwise override the pill's white text */
.nav-links a.nav-cta {
  color: var(--white) !important;
}

.nav-links a.nav-cta:hover {
  color: var(--white) !important;
  background: var(--navy-dark);
}

@media (max-width: 900px) {
  /* keep the pill shape inside the stacked mobile menu */
  .nav-links.open a.nav-cta {
    width: auto;
    border-bottom: none;
    margin: 0.75rem 0 0.25rem;
    padding: 0.5rem 1.25rem;
  }
}
