/* =========================================================
   SORVANE — Website v3 Design System
   Locked to MD Decision Sheet (2026-04-29)
   Navy #1B3D6F · Medium #2E5E9C · Deep #0F2548 · Cyan #4ECDE6
   Headers: Georgia · Body: Carlito (Calibri-equivalent free web font)
   ========================================================= */

:root {
  --navy:       #1B3D6F;   /* primary — 60-70% visual weight */
  --navy-mid:   #2E5E9C;   /* supporting blue */
  --navy-deep:  #0F2548;   /* covers, closers, dark sections */
  --cyan:       #4ECDE6;   /* sharp accent — 5-10% only */
  --ink:        #1A1A2E;   /* body copy */
  --paper:      #F7F8FA;   /* off-white background */
  --white:      #FFFFFF;
  --line:       #DCE0E6;
  --line-soft:  #ECEFF3;
  --muted:      #6E7888;

  --radius-pill: 999px;
  --radius:      4px;
  --maxw:        1240px;

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--navy-mid); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--navy); }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--navy-deep);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.18;
  margin: 0 0 .55em;
}
h1 { font-size: clamp(38px, 5.4vw, 64px); letter-spacing: 1.5px; }
h2 { font-size: clamp(28px, 3.4vw, 44px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
h4 {
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--navy-mid);
}
h5 {
  font-size: 12px;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--cyan);
}

p { margin: 0 0 1em; }
.lede { font-size: 18px; color: var(--ink); max-width: 70ch; line-height: 1.65; }
.muted { color: var(--muted); }

/* ---------- CHEVRON WEDGE MOTIF (LOCKED brand element) ---------- */
.chevron-tr {
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  pointer-events: none;
  z-index: 2;
}
.chevron-tr::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 120px 120px 0;
  border-color: transparent var(--cyan) transparent transparent;
  opacity: 0.95;
}
.chevron-tr.large {
  width: 220px; height: 220px;
}
.chevron-tr.large::before {
  border-width: 0 220px 220px 0;
}
.chevron-tr.subtle::before { opacity: 0.4; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 9px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.topbar .label { color: rgba(255,255,255,0.7); }
.topbar .contacts { display: flex; gap: 26px; }
.topbar .contacts a { color: #fff; }
.topbar .contacts a:hover { color: var(--cyan); }
.topbar .contacts span { color: rgba(255,255,255,0.55); margin-right: 6px; }
@media (max-width: 720px) { .topbar .contacts { display: none; } }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
}
/* iOS containing-block guard: any backdrop-filter / filter / transform on .nav
   would trap position:fixed .nav-links drawer inside the header. Don't add. */
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 86px;
}
.logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.logo img { height: 50px; width: auto; max-width: 240px; object-fit: contain; }
@media (max-width: 720px) {
  .logo img { height: 42px; max-width: 180px; }
}
@media (max-width: 380px) {
  .logo img { height: 38px; max-width: 150px; }
}

.nav-links {
  display: flex; gap: 36px; align-items: center;
  font-family: var(--sans);
  list-style: none; padding: 0; margin: 0;
}
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > span {
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  letter-spacing: 1.6px; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  padding: 10px 0; cursor: pointer;
}
.nav-links > li > a:hover, .nav-links > li.has-dropdown:hover > span { color: var(--navy-mid); }
.nav-links > li > a.active { color: var(--navy-mid); position: relative; }
.nav-links .caret { font-size: 9px; opacity: 0.6; }

.nav-links .dropdown {
  position: absolute; top: calc(100% + 4px); left: -14px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: 0 20px 50px -20px rgba(15,37,72,0.25);
  min-width: 320px;
  padding: 8px 0;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown,
.nav-links .has-dropdown.open .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-links .dropdown-toggle { cursor: pointer; user-select: none; }
.nav-links .dropdown a {
  display: block;
  padding: 12px 22px;
  font-size: 14px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0.2px;
  font-weight: 500;
  border-left: 2px solid transparent;
  transition: background .15s, border-color .15s, color .15s;
}
.nav-links .dropdown a:hover {
  background: var(--paper);
  border-left-color: var(--cyan);
  color: var(--navy-deep);
}

.nav-cta { display: flex; gap: 10px; align-items: center; }
.burger {
  display: none;
  width: 44px; height: 44px;
  padding: 0; margin: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 0;
  line-height: 0;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy-deep);
  border-radius: 2px;
  margin: 0;
  padding: 0;
  transform-origin: center;
  transition: transform .25s ease, opacity .2s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links {
    display: none;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(85vw, 360px);
    background: var(--white);
    flex-direction: column; align-items: stretch;
    gap: 0; padding: 100px 0 24px;
    box-shadow: -20px 0 40px -20px rgba(15,37,72,0.25);
    overflow-y: auto;
    z-index: 90;
  }
  .nav-links.open { display: flex; }
  .nav-links > li {
    width: 100%; border-bottom: 1px solid var(--line-soft);
  }
  .nav-links > li > a, .nav-links > li > span {
    padding: 18px 28px;
    font-size: 14px;
  }
  .nav-links .dropdown {
    position: static;
    box-shadow: none; border: none;
    background: var(--paper);
    opacity: 1; visibility: visible; transform: none;
    min-width: 0; padding: 0;
  }
  .nav-links .dropdown a { padding: 14px 36px; font-size: 14px; }
  .burger { display: inline-flex; position: relative; z-index: 100; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-primary { padding: 10px 16px; font-size: 11.5px; letter-spacing: 0.6px; }
  .nav .container { height: 72px; gap: 8px; }
  .topbar { padding: 8px 0; font-size: 11.5px; }
  body.menu-open::after {
    content: ""; position: fixed; inset: 0; background: rgba(15,37,72,0.4);
    z-index: 50;  /* below .nav (60) so the drawer (inside .nav stacking context) renders above this dim layer */
  }
  body.menu-open { overflow: hidden; }
  .nav-links { z-index: 100; }  /* belt-and-braces: also raise the drawer itself */
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--cyan);
  color: var(--navy-deep);
}
.btn-primary:hover {
  background: var(--white);
  color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(78,205,230,0.45);
}
.btn-navy {
  background: var(--navy-deep); color: var(--white);
}
.btn-navy:hover { background: var(--navy); color: #fff; }
.btn-ghost {
  background: transparent; border-color: var(--navy-deep); color: var(--navy-deep);
}
.btn-ghost:hover { background: var(--navy-deep); color: var(--white); }
.btn-ghost-light {
  background: transparent; border-color: rgba(255,255,255,0.6); color: #fff;
}
.btn-ghost-light:hover { background: #fff; color: var(--navy-deep); border-color: #fff; }

/* ---------- HOME hero ---------- */
.hero-home {
  position: relative;
  min-height: 620px;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 90px 0 110px;
}
.hero-home .hero-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-home .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,37,72,0.92) 0%, rgba(15,37,72,0.7) 50%, rgba(15,37,72,0.5) 100%);
  z-index: 2;
}
.hero-home .container { position: relative; z-index: 5; }
.hero-home h1 {
  color: #fff;
  font-size: clamp(44px, 7vw, 84px);
  letter-spacing: 1px;
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 16ch;
}
.hero-home .subline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--cyan);
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-home .lede {
  color: rgba(255,255,255,0.9);
  max-width: 60ch;
  margin-bottom: 38px;
  font-size: 17.5px;
}
.hero-home .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding: 90px 0 70px;
  overflow: hidden;
}
.page-hero.with-image { padding: 130px 0 110px; min-height: 480px; display: flex; align-items: center; }
.page-hero.with-image .hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 1;
}
.page-hero.with-image .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(15,37,72,0.85) 0%, rgba(15,37,72,0.55) 60%, rgba(15,37,72,0.3) 100%);
  z-index: 2;
}
.page-hero .container { position: relative; z-index: 5; width: 100%; }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero .lede { color: rgba(255,255,255,0.9); max-width: 65ch; font-size: 17px; }
.page-hero .crumbs {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); font-weight: 600; margin-bottom: 20px;
}
.page-hero .crumbs a { color: rgba(255,255,255,0.8); }
.page-hero .crumbs a:hover { color: var(--cyan); }
.page-hero .crumbs .sep { margin: 0 10px; opacity: 0.5; }
.page-hero .crumbs .current { color: var(--cyan); }
.page-hero .eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 20px;
}

/* Chevron placeholder for missing sector imagery */
.page-hero.placeholder {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 70%);
}
.page-hero.placeholder::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 360px 360px 0;
  border-color: transparent var(--cyan) transparent transparent;
  opacity: 0.85;
  z-index: 3;
}
.page-hero.placeholder::after {
  content: ""; position: absolute; top: 60px; right: 60px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 220px 220px 0;
  border-color: transparent rgba(255,255,255,0.06) transparent transparent;
  z-index: 3;
}

/* ---------- Sections ---------- */
section { padding: 100px 0; position: relative; }
.bg-paper { background: var(--paper); }
.bg-navy { background: var(--navy-deep); color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy .lede, .bg-navy p { color: rgba(255,255,255,0.88); }
.bg-navy h4 { color: var(--cyan); }

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head h4 { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { font-size: 17px; color: var(--muted); max-width: 60ch; margin: 0 auto; }
.section-head.left { text-align: left; margin: 0 0 56px; max-width: none; }
.section-head.left p { margin: 0; max-width: 70ch; }

/* ---------- Sector card grid (home + sectors landing) ---------- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sectors-grid { grid-template-columns: 1fr; } }

.sector-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -22px rgba(15,37,72,0.2);
  border-color: var(--cyan);
}
.sector-card .card-photo {
  width: 100%; aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  background-color: var(--navy-deep);
  position: relative;
}
.sector-card .card-photo.placeholder {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.sector-card .card-photo.placeholder::after {
  content: ""; position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 100px 100px 0;
  border-color: transparent var(--cyan) transparent transparent;
}
.sector-card .card-photo .chevron-corner {
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 60px 60px 0;
  border-color: transparent var(--cyan) transparent transparent;
}
.sector-card .card-body {
  padding: 28px 26px 30px;
  flex: 1; display: flex; flex-direction: column;
}
.sector-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--navy-deep); }
.sector-card p {
  color: var(--ink); font-size: 14.5px;
  flex: 1; margin-bottom: 18px; line-height: 1.55;
}
.sector-card .more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--navy-mid);
}
.sector-card .more::after { content: "→"; transition: transform .2s; }
.sector-card:hover .more::after { transform: translateX(5px); }

/* ---------- Pillar grid ---------- */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line-soft); border-left: 1px solid var(--line-soft); }
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative;
  display: flex; gap: 24px;
  padding: 36px 32px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--white);
  text-decoration: none; color: inherit;
  transition: background .2s;
}
.pillar:hover { background: var(--paper); }
.pillar:hover h3 { color: var(--navy-mid); }
.pillar .pnum {
  font-family: var(--serif); font-style: italic; color: var(--cyan);
  font-size: 30px; line-height: 1; min-width: 50px;
}
.pillar h3 { font-size: 21px; margin: 0 0 10px; color: var(--navy-deep); transition: color .2s; }
.pillar p { color: var(--ink); font-size: 14.5px; line-height: 1.6; margin: 0; }
.pillar .pcontent { flex: 1; }

/* ---------- IAADS ladder ---------- */
.iaads-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.iaads-step {
  padding: 36px 24px; position: relative;
  background: var(--white);
  border-right: 1px solid var(--line-soft);
}
.iaads-step:last-child { border-right: none; }
.iaads-step .iletter {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  color: var(--cyan);
  margin-bottom: 8px;
}
.iaads-step h3 { font-size: 19px; margin-bottom: 10px; }
.iaads-step p { font-size: 13.5px; color: var(--muted); margin: 0; }
@media (max-width: 980px) { .iaads-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .iaads-grid { grid-template-columns: 1fr; } }

/* ---------- Differentiators ---------- */
.diffs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
@media (max-width: 800px) { .diffs { grid-template-columns: 1fr; } }
.diff {
  padding: 40px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.diff .dnum {
  font-family: var(--serif); color: var(--cyan); font-size: 32px; margin-bottom: 14px; line-height: 1;
}
.diff h3 { color: #fff; font-size: 21px; margin-bottom: 12px; line-height: 1.25; }
.diff p { color: rgba(255,255,255,0.78); font-size: 14.5px; margin: 0; line-height: 1.65; }

/* ---------- Split block ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split-image {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  background-size: cover; background-position: center;
  overflow: hidden;
}
.split-image .chevron-tr::before {
  border-color: transparent rgba(78,205,230,0.85) transparent transparent;
}

/* ---------- Service detail page ---------- */
.detail-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: flex-start;
}
@media (max-width: 980px) { .detail-layout { grid-template-columns: 1fr; gap: 32px; } }
.side-nav {
  position: sticky; top: 110px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 14px 0;
}
@media (max-width: 980px) {
  .side-nav { position: static; margin-bottom: 8px; }
}
.side-nav h5 { padding: 4px 22px 12px; border-bottom: 1px solid var(--line-soft); margin-bottom: 8px; color: var(--navy-mid); font-size: 11px; }
.side-nav ul { list-style: none; padding: 0; margin: 0; }
.side-nav a {
  display: block; padding: 11px 22px;
  font-size: 14px; color: var(--ink);
  border-left: 2px solid transparent;
  transition: all .15s;
}
.side-nav a:hover { background: var(--paper); color: var(--navy-deep); }
.side-nav a.active { background: var(--paper); border-left-color: var(--cyan); color: var(--navy-deep); font-weight: 700; }
.detail-content h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 16px; }
.detail-content .lede { font-size: 17px; line-height: 1.7; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--line-soft); }
.detail-content h3 { margin-top: 40px; margin-bottom: 14px; font-size: 22px; }
.detail-content ul { padding: 0; margin: 0 0 24px; list-style: none; }
.detail-content ul li {
  padding: 12px 0 12px 30px;
  border-top: 1px solid var(--line-soft);
  position: relative;
  font-size: 15px;
}
.detail-content ul li::before { content: "▸"; position: absolute; left: 0; top: 12px; color: var(--cyan); font-weight: 700; }
.detail-content ul li:first-child { border-top: none; }
.detail-content .meta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--navy-mid);
}

/* ---------- CTA closing band (Develop. Execute. Operate. — Under one firm.) ---------- */
.cta-close {
  position: relative;
  padding: 100px 0;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}
.cta-close::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 320px 320px 0;
  border-color: transparent var(--cyan) transparent transparent;
  opacity: 0.85;
  z-index: 1;
}
.cta-close .container { position: relative; z-index: 5; max-width: 900px; text-align: center; }
.cta-close h2 {
  color: #fff;
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.cta-close p { color: rgba(255,255,255,0.88); font-size: 17px; max-width: 60ch; margin: 0 auto 16px; line-height: 1.7; }
.cta-close .tagline { font-family: var(--serif); font-style: italic; color: var(--cyan); font-size: 19px; margin: 24px 0 36px; }

/* ---------- About leadership (MD only) ---------- */
.md-block {
  display: grid; grid-template-columns: 100px 1fr; gap: 28px; align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 600px) { .md-block { grid-template-columns: 1fr; gap: 16px; } }
.md-avatar {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  position: relative;
  display: grid; place-items: center;
  font-family: var(--serif); color: #fff;
  font-size: 38px;
}
.md-avatar::after {
  content: ""; position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 22px 22px 0;
  border-color: transparent var(--cyan) transparent transparent;
}
.md-meta { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.md-meta .name { font-family: var(--serif); font-size: 22px; color: var(--navy-deep); }
.md-meta .role { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--navy-mid); }
.md-bio { color: var(--ink); font-size: 15px; line-height: 1.7; margin: 0; }

/* ---------- Forms ---------- */
form.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
form.contact .full { grid-column: 1 / -1; }
form.contact label { display: block; font-size: 11px; font-weight: 700; color: var(--navy-deep); margin-bottom: 6px; letter-spacing: 1.5px; text-transform: uppercase; }
form.contact input, form.contact select, form.contact textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line);
  background: #fff; font-family: inherit; font-size: 14.5px; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
form.contact input:focus, form.contact select:focus, form.contact textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(78,205,230,0.18);
}
form.contact textarea { min-height: 140px; resize: vertical; }
form.contact .check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
form.contact .check input { width: 18px; height: 18px; margin-top: 2px; }
@media (max-width: 680px) { form.contact { grid-template-columns: 1fr; } }

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 70px; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-info dt {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--navy-mid); margin-bottom: 6px;
}
.contact-info dd { margin: 0 0 24px; font-size: 16px; color: var(--ink); line-height: 1.7; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
footer.site-footer::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 180px 180px 0;
  border-color: transparent var(--cyan) transparent transparent;
  opacity: 0.45;
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
  margin-bottom: 56px; position: relative; z-index: 2;
}
@media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
footer .logo img { height: 48px; margin-bottom: 18px; }
footer .blurb { color: rgba(255,255,255,0.6); max-width: 36ch; margin-bottom: 22px; line-height: 1.6; }
footer address { font-style: normal; color: rgba(255,255,255,0.6); line-height: 1.8; }
footer h5 {
  color: var(--cyan); font-size: 11px;
  font-family: var(--sans); font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin: 0 0 18px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { padding: 5px 0; }
footer li a { color: rgba(255,255,255,0.65); }
footer li a:hover { color: var(--cyan); }
.foot-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.5); font-size: 12.5px; position: relative; z-index: 2;
}
.foot-bottom .legal a { color: rgba(255,255,255,0.5); margin-left: 18px; }
.foot-bottom .legal a:hover { color: var(--cyan); }

/* ---------- Mobile section padding ---------- */
@media (max-width: 720px) {
  section { padding: 70px 0; }
  .hero-home { padding: 70px 0 90px; min-height: 540px; }
  .page-hero { padding: 70px 0 50px; }
  .page-hero.with-image { padding: 90px 0 70px; min-height: 380px; }
  .container { padding: 0 22px; }
}
@media (max-width: 480px) {
  .nav-cta .btn-primary { display: none; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Page hero (smaller than home hero) ---------- */
.hero-page {
  position: relative;
  padding: 96px 0 64px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-deep);
}
.hero-page .hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -2;
  opacity: 0.55;
}
.hero-page .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,31,60,0.65) 0%, rgba(13,31,60,0.85) 100%);
  z-index: -1;
}
.hero-page h4 {
  color: var(--cyan);
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 700; margin-bottom: 12px;
}
.hero-page h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 20px;
  color: #fff;
}
.hero-page h2, .hero-page h3 { color: #fff; }
.hero-page .lede {
  max-width: 760px;
  font-size: 16px; line-height: 1.65;
  color: rgba(255,255,255,0.9);
}

/* ---------- 3-card sector grid (used on home + sectors page) ---------- */
.sectors-grid.sectors-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .sectors-grid.sectors-grid-3 { grid-template-columns: 1fr; }
}

/* ---------- Mission & Vision cards ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 760px) {
  .mv-grid { grid-template-columns: 1fr; }
}
.mv-card {
  padding: 48px 40px;
  border-radius: 8px;
  border-left: 6px solid var(--cyan);
  position: relative;
}
.mv-card h4 {
  font-size: 11.5px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--cyan);
}
.mv-card p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  font-style: italic;
  margin: 0;
}
.mv-light { background: var(--paper); }
.mv-light p { color: var(--navy-deep); }
.mv-dark { background: var(--navy-deep); }
.mv-dark p { color: #fff; }
.mv-dark h4 { color: var(--cyan); }

/* ---------- Prose blocks ---------- */
.prose {
  max-width: 820px;
  margin: 0 auto;
}
.prose p {
  font-size: 16px; line-height: 1.75;
  color: var(--ink);
  margin: 0 0 18px;
}
.prose p + p { margin-top: 0; }

/* ---------- Sector pillar list ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pillar-card {
  background: var(--paper);
  border-left: 4px solid var(--cyan);
  padding: 32px 28px;
  border-radius: 4px;
  transition: transform .2s, box-shadow .2s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -16px rgba(15,37,72,0.25);
}
.pillar-card .pnum {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy-deep);
  margin: 0 0 12px;
  line-height: 1.3;
}
.pillar-card p {
  font-size: 14px; line-height: 1.65; color: var(--ink);
  margin: 0;
}

/* ---------- Sector accent override (per-sector page) ---------- */
.sec-st .pillar-card,
.sec-st .mv-card { border-left-color: #5BC0DE; }
.sec-st .hero-page h4,
.sec-st .pillar-card .pnum,
.sec-st .mv-card h4 { color: #5BC0DE; }
.sec-hc .pillar-card,
.sec-hc .mv-card { border-left-color: #1E5F8E; }
.sec-hc .hero-page h4,
.sec-hc .pillar-card .pnum,
.sec-hc .mv-card h4 { color: #1E5F8E; }
.sec-ag .pillar-card,
.sec-ag .mv-card { border-left-color: #2D5A27; }
.sec-ag .hero-page h4,
.sec-ag .pillar-card .pnum,
.sec-ag .mv-card h4 { color: #2D5A27; }

/* ---------- Compliance chips ---------- */
.chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin: 24px 0;
}
.chip {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--navy-deep);
  font-weight: 600;
}

/* ---------- Contact reach blocks ---------- */
.reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 760px) {
  .reach-grid { grid-template-columns: 1fr; gap: 32px; }
}
.reach-block h4 {
  font-size: 11.5px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px; font-weight: 700;
}
.reach-block address {
  font-style: normal; font-size: 16px; line-height: 1.7;
  color: var(--ink);
}
.reach-prompt {
  display: block;
  background: var(--paper);
  border-left: 4px solid var(--cyan);
  padding: 20px 24px;
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--navy-deep);
  transition: background .15s, border-color .15s;
}
.reach-prompt:hover {
  background: var(--navy-deep);
  color: #fff;
  border-left-color: var(--cyan);
}
.reach-prompt strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  margin-bottom: 4px;
}
.reach-prompt span {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.85;
}
.reach-prompt:hover strong,
.reach-prompt:hover span { color: rgba(255,255,255,0.9); }

/* ---------- Legal page styles ---------- */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0 32px;
}
.legal-page h2 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 32px 0 12px;
  color: var(--navy-deep);
}
.legal-page p, .legal-page li {
  font-size: 15px; line-height: 1.7;
  color: var(--ink);
}
.legal-page ul { margin: 0 0 18px; padding-left: 22px; }

/* ---------- IAADS step detail block ---------- */
.iaads-step-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 880px;
  margin: 0 auto;
}
.iaads-step-detail .iletter.big {
  width: 80px; height: 80px;
  font-size: 40px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700;
}
.iaads-step-detail h2 {
  font-family: var(--serif);
  font-size: 28px;
  margin: 0 0 8px;
  color: var(--navy-deep);
}
.iaads-step-detail .lede {
  font-style: italic;
  color: var(--cyan);
  font-size: 16px;
  margin: 0 0 16px;
  font-family: var(--serif);
}
.iaads-step-detail p {
  font-size: 15px; line-height: 1.75; color: var(--ink);
}
@media (max-width: 720px) {
  .iaads-step-detail { grid-template-columns: 1fr; gap: 16px; }
  .iaads-step-detail .iletter.big { width: 60px; height: 60px; font-size: 28px; }
}

/* ---------- Sector page: sidebar + content layout ---------- */
.sector-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) {
  .sector-layout { grid-template-columns: 1fr; gap: 0; }
}

.sector-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--paper);
  border-left: 4px solid var(--cyan);
  padding: 24px 0;
}
@media (max-width: 960px) {
  .sector-sidebar {
    position: static;
    margin-bottom: 32px;
    border-left: none;
    border-top: 4px solid var(--cyan);
    padding: 16px 0;
  }
}
.sector-sidebar h5 {
  font-size: 11.5px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 700;
  margin: 0 24px 16px;
  color: var(--navy-deep);
}
.sector-sidebar ul {
  list-style: none; margin: 0; padding: 0;
}
.sector-sidebar li a {
  display: block;
  padding: 14px 24px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  border-left: 3px solid transparent;
  transition: background .15s, border-color .15s, color .15s;
}
.sector-sidebar li a:hover,
.sector-sidebar li a.active {
  background: #fff;
  color: var(--navy-deep);
  border-left-color: var(--cyan);
}

/* Sector content */
.sector-content { min-width: 0; }
.sector-content .intro {
  margin-bottom: 56px;
}
.sector-content .intro p {
  font-size: 16px; line-height: 1.75;
  color: var(--ink);
  margin: 0 0 16px;
}

.pillar-block {
  margin-bottom: 64px;
  scroll-margin-top: 100px;
}
.pillar-block h2 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy-deep);
  margin: 0 0 8px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--line-soft);
}
.pillar-block .pillar-eyebrow {
  font-size: 11.5px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--cyan); font-weight: 700;
  margin-bottom: 6px;
}
.pillar-block .pillar-lede {
  font-size: 16px; line-height: 1.7;
  color: var(--ink);
  margin: 16px 0 24px;
}
.pillar-block h3 {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--navy-deep);
  margin: 24px 0 8px;
}
.pillar-block ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.pillar-block li {
  font-size: 14px; line-height: 1.65;
  color: var(--ink);
  margin-bottom: 6px;
}

/* Sector-accent override for sidebar + pillar borders */
.sec-st .sector-sidebar { border-left-color: #5BC0DE; }
.sec-st .sector-sidebar li a:hover,
.sec-st .sector-sidebar li a.active { border-left-color: #5BC0DE; }
.sec-st .pillar-block .pillar-eyebrow { color: #5BC0DE; }
.sec-hc .sector-sidebar { border-left-color: #1E5F8E; }
.sec-hc .sector-sidebar li a:hover,
.sec-hc .sector-sidebar li a.active { border-left-color: #1E5F8E; }
.sec-hc .pillar-block .pillar-eyebrow { color: #1E5F8E; }
.sec-ag .sector-sidebar { border-left-color: #2D5A27; }
.sec-ag .sector-sidebar li a:hover,
.sec-ag .sector-sidebar li a.active { border-left-color: #2D5A27; }
.sec-ag .pillar-block .pillar-eyebrow { color: #2D5A27; }
@media (max-width: 960px) {
  .sec-st .sector-sidebar { border-top-color: #5BC0DE; }
  .sec-hc .sector-sidebar { border-top-color: #1E5F8E; }
  .sec-ag .sector-sidebar { border-top-color: #2D5A27; }
}

/* ---------- v2 components: pillar list, CTA band, etc. ---------- */
.bg-light { background: var(--bg-light, var(--paper)); }

/* Sector page — pillar list (cards linking to pillar pages) */
.pillar-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pillar-item {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--cyan);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.pillar-item:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 32px -16px rgba(15,37,72,0.18);
  border-left-color: var(--navy-mid);
}
.pillar-item .pnum {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--cyan);
  font-weight: 400;
  font-style: italic;
}
.pillar-item .pcontent h3 {
  font-family: var(--serif);
  font-size: 19px;
  margin: 0 0 6px;
  color: var(--navy-deep);
}
.pillar-item .pcontent p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.pillar-item .parrow {
  font-size: 24px;
  color: var(--cyan);
  text-align: right;
  transition: transform .18s, color .18s;
}
.pillar-item:hover .parrow { transform: translateX(4px); color: var(--navy-mid); }
@media (max-width: 720px) {
  .pillar-item { grid-template-columns: 50px 1fr 24px; padding: 20px 22px; gap: 14px; }
  .pillar-item .pnum { font-size: 28px; }
  .pillar-item .pcontent h3 { font-size: 16px; }
  .pillar-item .pcontent p { font-size: 13px; }
}

/* Sector accent overrides for pillar list */
.sec-st .pillar-item { border-left-color: #5BC0DE; }
.sec-st .pillar-item .pnum,
.sec-st .pillar-item .parrow { color: #5BC0DE; }
.sec-st .pillar-item:hover { border-left-color: #3a99b8; }
.sec-hc .pillar-item { border-left-color: #1E5F8E; }
.sec-hc .pillar-item .pnum,
.sec-hc .pillar-item .parrow { color: #1E5F8E; }
.sec-hc .pillar-item:hover { border-left-color: #154760; }
.sec-ag .pillar-item { border-left-color: #2D5A27; }
.sec-ag .pillar-item .pnum,
.sec-ag .pillar-item .parrow { color: #2D5A27; }
.sec-ag .pillar-item:hover { border-left-color: #1f3f1c; }

/* CTA band */
.cta-band {
  background: var(--navy-deep);
  color: #fff;
  padding: 64px 0;
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
@media (max-width: 760px) {
  .cta-band .container { grid-template-columns: 1fr; gap: 24px; text-align: center; }
}
.cta-band h2 {
  color: #fff;
  font-size: 28px;
  margin: 0 0 8px;
}
.cta-band p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.6;
}

/* Crumbs — breadcrumb trail */
.crumbs {
  display: flex; flex-wrap: wrap; gap: 6px 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  align-items: center;
}
.hero-page .crumbs a { color: rgba(255,255,255,0.85); text-decoration: none; }
.hero-page .crumbs a:hover { color: var(--cyan); }
.hero-page .crumbs .sep { opacity: 0.55; }
.hero-page .crumbs .current { color: #fff; font-weight: 600; }

/* Detail layout — for pillar pages and sub-service pages */
.detail-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) {
  .detail-layout { grid-template-columns: 1fr; gap: 24px; }
}
.detail-layout .side-nav {
  position: sticky;
  top: 100px;
  background: var(--paper);
  border-left: 4px solid var(--cyan);
  padding: 24px 0;
}
@media (max-width: 960px) {
  .detail-layout .side-nav {
    position: static; border-left: none; border-top: 4px solid var(--cyan);
    padding: 16px 0;
  }
}
.detail-layout .side-nav h5 {
  font-size: 11.5px; letter-spacing: 4px; text-transform: uppercase;
  margin: 0 24px 14px;
  color: var(--navy-deep);
}
.detail-layout .side-nav ul { list-style: none; margin: 0; padding: 0; }
.detail-layout .side-nav li a {
  display: block;
  padding: 12px 24px;
  color: var(--ink);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  border-left: 3px solid transparent;
  transition: background .15s, border-color .15s;
}
.detail-layout .side-nav li a:hover,
.detail-layout .side-nav li a.active {
  background: #fff;
  color: var(--navy-deep);
  border-left-color: var(--cyan);
}

.detail-layout .detail-content { min-width: 0; }
.detail-layout .detail-content .meta {
  font-size: 12px; color: var(--muted);
  display: flex; gap: 8px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.detail-layout .detail-content h2 {
  font-size: 30px;
  margin: 0 0 16px;
  color: var(--navy-deep);
}
.detail-layout .detail-content h3 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy-deep);
  margin: 28px 0 12px;
}
.detail-layout .detail-content .lede {
  font-size: 17px; line-height: 1.65; color: var(--ink);
  margin: 0 0 24px;
}
.detail-layout .detail-content p {
  font-size: 15px; line-height: 1.7; color: var(--ink);
  margin: 0 0 14px;
}
.detail-layout .detail-content ul {
  margin: 0 0 18px; padding-left: 22px;
}
.detail-layout .detail-content li {
  font-size: 14.5px; line-height: 1.65; color: var(--ink);
  margin-bottom: 6px;
}

/* Sector accent overrides for detail-layout side-nav */
.sec-st .detail-layout .side-nav { border-left-color: #5BC0DE; }
.sec-st .detail-layout .side-nav li a:hover,
.sec-st .detail-layout .side-nav li a.active { border-left-color: #5BC0DE; }
.sec-hc .detail-layout .side-nav { border-left-color: #1E5F8E; }
.sec-hc .detail-layout .side-nav li a:hover,
.sec-hc .detail-layout .side-nav li a.active { border-left-color: #1E5F8E; }
.sec-ag .detail-layout .side-nav { border-left-color: #2D5A27; }
.sec-ag .detail-layout .side-nav li a:hover,
.sec-ag .detail-layout .side-nav li a.active { border-left-color: #2D5A27; }
@media (max-width: 960px) {
  .sec-st .detail-layout .side-nav { border-top-color: #5BC0DE; }
  .sec-hc .detail-layout .side-nav { border-top-color: #1E5F8E; }
  .sec-ag .detail-layout .side-nav { border-top-color: #2D5A27; }
}

/* Section head left-aligned variant */
.section-head.left { text-align: left; max-width: 720px; margin-left: 0; }

.section-head h4 + h2,
.section-head h2 { margin-top: 8px; }

/* Page hero with breadcrumb (sub-page version is shorter) */
.hero-page .crumbs + h1 { margin-top: 0; }

/* Inline CTA box (sub-service page) */
.inline-cta {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--paper);
  border-left: 4px solid var(--cyan);
  border-radius: 4px;
}
.inline-cta p { margin: 0 0 14px; color: var(--navy-deep); font-size: 15px; }
.inline-cta strong { font-weight: 700; }
.sec-st .inline-cta { border-left-color: #5BC0DE; }
.sec-hc .inline-cta { border-left-color: #1E5F8E; }
.sec-ag .inline-cta { border-left-color: #2D5A27; }

/* Hero-page chrome — for sector/pillar/sub-service pages */
.hero-page.compact { padding: 80px 0 56px; }
