/* ============================================================
   Finese PR — Design System
   The communication & people consultancy
   ============================================================ */

:root {
  /* Brand palette, drawn from the Finese PR wordmark */
  --maroon-900: #4a0d14;
  --maroon-800: #6b121b;
  --maroon-700: #7f1420;
  --maroon-600: #921826;
  --maroon-050: #fbf1ef;

  --ink-900: #17181c;
  --ink-700: #3a3d45;
  --ink-500: #63666f;
  --ink-300: #9497a1;
  --ink-100: #e6e7ea;

  --paper-000: #ffffff;
  --paper-050: #fbfaf8;
  --paper-100: #f4f2ee;

  --gold-600: #a9812f;
  --gold-100: #f4ead1;

  --ir-navy: #10202e;
  --ir-navy-050: #eef2f5;

  --success: #1f7a4d;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(23, 24, 28, 0.06), 0 1px 1px rgba(23, 24, 28, 0.04);
  --shadow-md: 0 8px 24px rgba(23, 24, 28, 0.08), 0 2px 6px rgba(23, 24, 28, 0.05);
  --shadow-lg: 0 20px 48px rgba(23, 24, 28, 0.12), 0 4px 12px rgba(23, 24, 28, 0.06);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
[id] { scroll-margin-top: 112px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper-000);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; color: var(--ink-900); }
p { margin: 0 0 1em; color: var(--ink-700); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

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

section { padding: clamp(56px, 8vw, 108px) 0; }
section.tight { padding: clamp(40px, 6vw, 72px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon-700);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-600);
  display: inline-block;
}
.eyebrow.ir { color: var(--ir-navy); }
.eyebrow.ir::before { background: var(--ir-navy); }

h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-500); max-width: 640px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--maroon-800); color: #fff; }
.btn-primary:hover { background: var(--maroon-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--ir-navy); color: #fff; }
.btn-navy:hover { background: #0a141d; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--ink-900); color: var(--ink-900); }
.btn-outline:hover { background: var(--ink-900); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-arrow::after { content: "→"; transition: transform 0.18s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink-900); color: rgba(255,255,255,0.85); font-size: 0.8rem; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 10px 20px; padding: 7px var(--gutter); max-width: var(--container); margin: 0 auto;
}
.topbar-contact { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-contact a { color: rgba(255,255,255,0.9); font-weight: 600; white-space: nowrap; }
.topbar-contact a:hover { color: #fff; }
.topbar-socials { display: flex; align-items: center; gap: 16px; }
.topbar-socials a { color: rgba(255,255,255,0.75); font-weight: 500; }
.topbar-socials a:hover { color: #fff; }
@media (max-width: 640px) {
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-socials { display: none; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ink-100);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 68px; width: auto; }
.brand .tagline { display: none; }

.primary-nav { display: flex; align-items: center; gap: 2px; }
.primary-nav > ul { display: flex; align-items: center; gap: 2px; }
.primary-nav a.nav-link {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: all 0.15s ease;
}
.primary-nav a.nav-link:hover,
.primary-nav a.nav-link.active { color: var(--maroon-800); background: var(--maroon-050); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.16s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--ink-700);
}
.dropdown a:hover { background: var(--paper-100); color: var(--maroon-800); }
.dropdown a small { display: block; color: var(--ink-300); font-weight: 400; font-size: 0.78rem; margin-top: 2px; }

.nav-ctas { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }
.mobile-nav { display: none; }

@media (max-width: 980px) {
  .primary-nav { display: none; }
  .nav-ctas .btn-outline { display: none; }
  .nav-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 8px; border: 1px solid var(--ink-100);
    background: #fff;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 18px; height: 2px; background: var(--ink-900); position: relative; transition: 0.2s;
  }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
  .mobile-nav {
    display: none; flex-direction: column; gap: 2px; background: #fff;
    border-top: 1px solid var(--ink-100); padding: 12px var(--gutter) 20px;
    max-height: calc(100vh - 85px); overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 12px 4px; font-weight: 500; border-bottom: 1px solid var(--ink-100); }
  .mobile-nav .sub { padding-left: 16px; font-size: 0.9rem; color: var(--ink-500); }
  .mobile-nav .ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
  .mobile-nav .ctas .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 7vw, 88px);
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(122,18,32,0.07), transparent 60%),
    var(--paper-050);
  border-bottom: 1px solid var(--ink-100);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero .lede { margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-copy { position: relative; }
.hero-variant { display: none; }
.hero-variant.is-active { display: block; animation: heroFade 0.6s ease; }
@keyframes heroFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.hero-nav { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.hero-nav-arrow {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--ink-100);
  background: var(--paper-000); color: var(--ink-700); font-size: 1.1rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.hero-nav-arrow:hover { border-color: var(--maroon-700); color: var(--maroon-700); }
.hero-nav-dots { display: flex; align-items: center; gap: 9px; }
.hero-nav-dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0;
  background: var(--ink-100); cursor: pointer; transition: background 0.2s ease, transform 0.2s ease;
}
.hero-nav-dot:hover { background: var(--ink-300); }
.hero-nav-dot.is-active { background: var(--maroon-700); transform: scale(1.15); }
.hero-visual {
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--maroon-800), var(--ir-navy) 120%);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-visual .stat-card {
  position: absolute;
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-md);
  width: 168px;
}
.hero-visual .stat-card .n { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--maroon-800); line-height: 1; }
.hero-visual .stat-card .l { font-size: 0.76rem; color: var(--ink-500); margin-top: 6px; line-height: 1.3; }
.hero-visual .sc-1 { top: 12%; left: 8%; }
.hero-visual .sc-2 { top: 42%; right: 8%; }
.hero-visual .sc-3 { bottom: 10%; left: 14%; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/10; }
}

/* ---------- Proof bar ---------- */
.proof-bar { background: var(--ink-900); padding: 30px 0; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.proof-grid .stat .n { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); color: #fff; font-weight: 700; }
.proof-grid .stat .l { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.02em; }
@media (max-width: 700px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }

.note-inline {
  font-size: 0.82rem;
  color: var(--ink-300);
  margin-top: 8px;
}

/* ---------- Two-lane split ---------- */
.lane-split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.lane {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.lane:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.lane-ir { background: linear-gradient(165deg, var(--ir-navy), #172d3f); color: #fff; }
.lane-ir h3, .lane-ir p { color: #fff; }
.lane-ir p { color: rgba(255,255,255,0.78); }
.lane-pr { background: linear-gradient(165deg, var(--maroon-700), var(--maroon-900)); color: #fff; }
.lane-pr h3, .lane-pr p { color: #fff; }
.lane-pr p { color: rgba(255,255,255,0.82); }
.lane .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,255,255,0.14); padding: 5px 11px; border-radius: 999px; margin-bottom: 18px;
}
.lane h3 { font-size: 1.55rem; margin-bottom: 12px; }
.lane ul.check { margin: 18px 0 26px; }
.lane ul.check li { padding-left: 24px; position: relative; margin-bottom: 9px; font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.lane ul.check li::before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: 700; }
@media (max-width: 860px) { .lane-split { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 940px) { .card-grid, .card-grid.two { grid-template-columns: 1fr; } }

.case-card {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex; flex-direction: column;
}
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.case-card .cc-top {
  padding: 26px 24px 20px;
  color: #fff;
}
.case-card .cc-top h3 { color: #fff; }
.case-card.tag-ir .cc-top { background: linear-gradient(140deg, var(--ir-navy), #1c3549); }
.case-card.tag-pr .cc-top { background: linear-gradient(140deg, var(--maroon-700), var(--maroon-900)); }
.case-card .pill {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(255,255,255,0.18); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
}
.case-card .cc-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.case-card .metric { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--maroon-800); }
.case-card .metric-label { font-size: 0.8rem; color: var(--ink-500); margin-bottom: 14px; }
.case-card .sector { font-size: 0.78rem; color: var(--ink-300); margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--ink-100); }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.chip {
  appearance: none; -webkit-appearance: none;
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--ink-100); background: #fff;
  font-size: 0.85rem; font-weight: 600; color: var(--ink-700); transition: all 0.15s ease;
}
.chip:hover { border-color: var(--maroon-700); }
.chip.active { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

/* ---------- Sectors ---------- */
.sector-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 980px) { .sector-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .sector-strip { grid-template-columns: repeat(2, 1fr); } }
.sector-chip {
  border: 1px solid var(--ink-100); border-radius: var(--radius-md); padding: 22px 14px; text-align: center;
  background: var(--paper-050); transition: all 0.15s ease;
}
.sector-chip:hover { border-color: var(--maroon-700); background: var(--maroon-050); }
.sector-chip .icon { font-size: 1.7rem; margin-bottom: 10px; }
.sector-chip .label { font-size: 0.85rem; font-weight: 600; color: var(--ink-900); }

.sector-detail {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px;
  padding: 30px 0; border-bottom: 1px solid var(--ink-100);
}
.sector-detail:last-child { border-bottom: none; }
.sector-detail .icon { font-size: 1.8rem; }
.sector-detail h3 { margin-bottom: 8px; }
.client-logos { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.logo-tile {
  display: flex; align-items: center; justify-content: center; text-align: center;
  width: 132px; height: 72px; padding: 8px 12px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--ink-100); border-radius: 8px;
  transition: border-color 0.15s;
}
.logo-tile:hover { border-color: var(--ink-300); }
.logo-tile span {
  font-family: var(--font-display); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.01em; color: var(--ink-500); line-height: 1.2;
}
.logo-tile img { max-height: 48px; max-width: 100%; width: auto; height: auto; object-fit: contain; }
.logo-tile.is-square { padding: 4px 8px; }
.logo-tile.is-square img { max-height: 62px; max-width: 62px; }
.logo-tile.is-wide { padding: 10px 4px; }
.logo-tile.is-wide img { max-width: 124px; }
.logo-tile.signature span {
  font-family: 'Brush Script MT', 'Segoe Script', cursive; font-weight: 400; font-style: italic;
  font-size: 1.3rem; letter-spacing: 0.01em; color: var(--ink-700, var(--ink-500));
}
@media (max-width: 560px) { .logo-tile { width: 108px; height: 60px; padding: 6px 10px; } .logo-tile img { max-height: 38px; } .logo-tile.is-square img { max-height: 50px; max-width: 50px; } .logo-tile.is-wide img { max-width: 96px; } .logo-tile.signature span { font-size: 1.05rem; } }

/* ---------- Insights ---------- */
.insight-card {
  display: block; border: 1px solid var(--ink-100); border-radius: var(--radius-md); padding: 24px; background: #fff;
  transition: all 0.15s ease;
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.insight-card .meta { font-size: 0.76rem; color: var(--ink-300); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; margin-bottom: 10px; }
.insight-card .meta.pr { color: var(--maroon-700); }
.insight-card .meta.ir { color: var(--ir-navy); }
.insight-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.insight-card .date { font-size: 0.8rem; color: var(--ink-300); margin-top: 14px; }

.press-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--ink-100);
}
.press-row:last-child { border-bottom: none; }
.press-row .outlet { font-weight: 700; min-width: 160px; }
.press-row .headline { color: var(--ink-500); flex: 1; }
.press-row .date { font-size: 0.8rem; color: var(--ink-300); white-space: nowrap; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: left; }
.team-photo {
  aspect-ratio: 1/1; border-radius: var(--radius-md); margin-bottom: 16px;
  background: linear-gradient(150deg, var(--maroon-050), var(--gold-100));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--maroon-700);
  border: 1px solid var(--ink-100);
  overflow: hidden;
}
.team-photo.has-image { background: var(--ink-100); }
.team-photo.has-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.team-card h3 { margin-bottom: 2px; font-size: 1.1rem; }
.team-card .role { font-size: 0.85rem; color: var(--maroon-700); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 0.9rem; }
.team-card .li-link { font-size: 0.82rem; font-weight: 600; color: var(--ink-500); display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius-md);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.testimonial-card .quote-mark { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-600); line-height: 1; margin-bottom: 8px; }
.testimonial-card p.quote { font-size: 0.95rem; color: var(--ink-700); flex-grow: 1; }
.testimonial-card .attribution { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--ink-100); }
.testimonial-card .attribution strong { display: block; font-size: 0.92rem; color: var(--ink-900); }
.testimonial-card .attribution span { font-size: 0.82rem; color: var(--ink-500); }

/* ---------- Approach steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .num {
  counter-increment: step; font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--maroon-050); -webkit-text-stroke: 1.5px var(--maroon-700); margin-bottom: 8px;
}
.step .num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.05rem; }

/* ---------- Stats block ---------- */
.stat-block { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 700px) { .stat-block { grid-template-columns: repeat(2, 1fr); } }
.stat-block .n { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 700; color: var(--maroon-800); }
.stat-block .l { font-size: 0.85rem; color: var(--ink-500); margin-top: 4px; }

/* ---------- Recognition ---------- */
.recognition-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 760px) { .recognition-list { grid-template-columns: 1fr; } }
.recognition-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--ink-100);
  border-radius: var(--radius-md); background: var(--paper-050);
}
.recognition-item .badge {
  width: 44px; height: 44px; border-radius: 10px; background: var(--maroon-800); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); flex-shrink: 0;
}
.recognition-item h4 { margin: 0 0 4px; font-size: 0.98rem; font-family: var(--font-body); font-weight: 700; }
.recognition-item p { font-size: 0.88rem; margin: 0; }
.recognition-item a.src { font-size: 0.8rem; font-weight: 600; color: var(--maroon-700); }

/* ---------- Service list ---------- */
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px) { .service-list { grid-template-columns: 1fr; } }
.service-item {
  padding: 22px; border: 1px solid var(--ink-100); border-radius: var(--radius-md); background: #fff;
}
.service-item h4 { font-size: 1rem; margin-bottom: 6px; }
.service-item p { font-size: 0.9rem; margin: 0; }

/* ---------- Sub-practice blocks ---------- */
.subpractice {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
  padding: 44px 0; border-bottom: 1px solid var(--ink-100);
}
.subpractice:last-child { border-bottom: none; }
@media (max-width: 860px) { .subpractice { grid-template-columns: 1fr; gap: 20px; } }
.subpractice .outcome {
  background: var(--ir-navy-050); border-radius: var(--radius-md); padding: 22px;
}
.subpractice .outcome .n { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--ir-navy); }
.subpractice .outcome .l { font-size: 0.85rem; color: var(--ink-500); margin-top: 6px; }

/* ---------- Reg fluency band ---------- */
.reg-band {
  background: var(--ir-navy); color: #fff; border-radius: var(--radius-lg); padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px;
}
@media (max-width: 860px) { .reg-band { grid-template-columns: 1fr; } }
.reg-band h4 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.reg-band p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--maroon-800), var(--ir-navy));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 60px);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .form-grid { grid-template-columns: 1fr; } }
.contact-form { display: grid; gap: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-700); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--ink-100); border-radius: 8px; background: #fff;
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--maroon-700); }
.field textarea { resize: vertical; min-height: 110px; }
.form-panel { border: 1px solid var(--ink-100); border-radius: var(--radius-lg); padding: 32px; background: var(--paper-050); }
.form-panel.ir { background: var(--ir-navy-050); }
.form-panel .panel-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; background: var(--maroon-800); color: #fff;
}
.form-panel.ir .panel-tag { background: var(--ir-navy); }

.nap { display: grid; gap: 18px; margin-top: 28px; }
.nap-item { display: flex; gap: 14px; align-items: flex-start; }
.nap-item .icon { font-size: 1.2rem; width: 30px; }
.nap-item h4 { margin: 0 0 3px; font-size: 0.92rem; font-family: var(--font-body); font-weight: 700; }
.nap-item p { margin: 0; font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,0.7); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 32px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { background: #fff; display: inline-flex; align-items: center; padding: 10px 16px; border-radius: 10px; margin-bottom: 14px; }
.site-footer .brand img { height: 42px; margin-bottom: 0; }
.site-footer p.tag { font-size: 0.85rem; color: rgba(255,255,255,0.5); max-width: 240px; }
.site-footer h5 { color: #fff; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-body); }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { font-size: 0.9rem; color: rgba(255,255,255,0.68); transition: color 0.15s ease; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a { color: rgba(255,255,255,0.55); }

/* ---------- Page header (interior pages) ---------- */
.page-header {
  padding: 52px 0 44px; background: var(--paper-050); border-bottom: 1px solid var(--ink-100);
}
.page-header.ir-theme { background: var(--ir-navy-050); }
.breadcrumb { font-size: 0.82rem; color: var(--ink-300); margin-bottom: 16px; }
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--maroon-700); }

/* ---------- Utility ---------- */
.placeholder-note {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 600;
  color: var(--gold-600); background: var(--gold-100); padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.divider { height: 1px; background: var(--ink-100); border: none; margin: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.mb-lg { margin-bottom: 40px; }
.bg-alt { background: var(--paper-050); }
.bg-ink { background: var(--ink-900); color: #fff; }
.bg-ink h2 { color: #fff; }
.bg-ink p { color: rgba(255,255,255,0.7); }

.job-row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 24px; border: 1px solid var(--ink-100); border-radius: var(--radius-md); margin-bottom: 14px;
  flex-wrap: wrap;
}
.job-row h4 { margin: 0 0 4px; font-size: 1rem; }
.job-row .meta { font-size: 0.82rem; color: var(--ink-300); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; } }
@media (min-width: 861px) and (max-width: 1080px) { .value-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
.value-card { padding: 26px; border-radius: var(--radius-md); background: var(--paper-050); border: 1px solid var(--ink-100); }
.value-card .icon { font-size: 1.6rem; margin-bottom: 12px; }
