/* ─────────────────────────────────────────────
   Pacifica School District
   Facilities Partnership Briefing
   Prepared by United Facilities Group
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ── Palette & tokens ──────────────────────── */

:root {
  /* Pacifica-first: academic blue, Pacific aqua, sunrise gold */
  --navy:       #1e4470;
  --navy-deep:  #142f52;
  --gold:       #d4a033;
  --gold-glow:  rgba(212, 160, 51, 0.12);
  --paper:      #f9f7f1;
  --ink:        #283444;
  --muted:      #5e7085;
  --line:       #d6dbe3;
  --teal:       #2a93a8;
  --teal-deep:  #1a7a90;
  --white:      #ffffff;

  --shadow-sm:  0 1px 3px rgba(20, 47, 82, 0.04), 0 4px 12px rgba(20, 47, 82, 0.04);
  --shadow:     0 2px 6px rgba(20, 47, 82, 0.04), 0 12px 32px rgba(20, 47, 82, 0.07);
  --shadow-lg:  0 4px 8px rgba(20, 47, 82, 0.03), 0 24px 56px rgba(20, 47, 82, 0.11);

  --r:    14px;
  --r-lg: 22px;
}

/* ── Reset ─────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(30, 68, 112, 0.05), transparent 40%),
    radial-gradient(ellipse at 90% 3%, rgba(42, 147, 168, 0.04), transparent 32%),
    linear-gradient(175deg, #edeae3 0%, #e4e1d8 100%);
  color: var(--ink);
  font-family: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── Jump navigation — desktop ─────────────── */

.jump-nav-toggle {
  display: none;
}

.jump-nav-backdrop {
  display: none;
}

.jump-nav {
  position: fixed;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  z-index: 10;
  width: 210px;
  max-height: calc(100vh - 48px);
  padding: 14px;
  border: 1px solid rgba(30, 68, 112, 0.08);
  border-radius: 18px;
  background: rgba(249, 247, 241, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.jump-nav-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 4px 12px;
  border-bottom: 1px solid rgba(30, 68, 112, 0.08);
}

.jump-nav-close {
  display: none;
}

.jump-kicker {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.jump-current {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy-deep);
}

.jump-nav-list {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  padding-right: 2px;
}

.jump-nav-list a {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 9px;
  padding: 8px 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.jump-nav-list a:hover {
  transform: translateX(-2px);
  border-color: rgba(42, 147, 168, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(20, 47, 82, 0.06);
}

.jump-nav-list a.is-active {
  border-color: transparent;
  background: linear-gradient(140deg, var(--navy-deep), rgba(26, 122, 144, 0.92));
  box-shadow: 0 10px 24px rgba(20, 47, 82, 0.16);
}

.jump-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(42, 147, 168, 0.1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy-deep);
}

.jump-label {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

.jump-nav-list a.is-active .jump-number {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.jump-nav-list a.is-active .jump-label {
  color: var(--white);
}

.jump-nav-list::-webkit-scrollbar {
  width: 6px;
}

.jump-nav-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(30, 68, 112, 0.14);
}

/* ── Jump navigation — medium screens ──────── */

@media (max-width: 1280px) {
  .jump-nav {
    right: 12px;
    width: 192px;
  }
}

@media (max-width: 1120px) {
  .jump-nav {
    position: sticky;
    top: 14px;
    right: auto;
    transform: none;
    width: min(740px, calc(100% - 24px));
    max-height: none;
    margin: 0 auto 18px;
  }

  .jump-nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }
}

/* ── Jump navigation — mobile ──────────────── */

@media (max-width: 768px) {
  .jump-nav-toggle {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(140deg, var(--navy-deep), rgba(26, 122, 144, 0.94));
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 14px 30px rgba(20, 47, 82, 0.26);
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .jump-nav-toggle {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }

  .jump-toggle-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 16px;
  }

  .jump-toggle-lines span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
  }

  .jump-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 18;
    display: block;
    background: rgba(20, 47, 82, 0.44);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }

  body.nav-open .jump-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .jump-nav {
    position: fixed;
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    margin: 0;
    transform: translateY(calc(100% + 12px));
    width: auto;
    max-height: min(76vh, 620px);
    border-radius: 22px;
    z-index: 24;
    background: var(--paper);
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
  }

  .jump-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .jump-nav-head {
    position: sticky;
    top: 0;
    padding-top: 4px;
    background: rgba(249, 247, 241, 0.96);
    backdrop-filter: blur(10px);
    z-index: 2;
  }

  .jump-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border: 1px solid rgba(30, 68, 112, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--navy-deep);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
  }

  .jump-nav-list {
    grid-template-columns: 1fr;
    flex: 1 1 auto;
    min-height: 0;
    margin-top: 10px;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    padding-bottom: 18px;
  }
}

/* ── Deck & page shell ─────────────────────── */

.deck {
  padding: 36px 0 64px;
}

.page {
  position: relative;
  width: 8.5in;
  min-height: 11in;
  margin: 0 auto 36px;
  padding: 0.58in 0.7in 0.72in;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 14%);
  pointer-events: none;
}

.page > * {
  position: relative;
  z-index: 1;
}

/* ── Packet header ─────────────────────────── */

.packet-header {
  margin-bottom: 26px;
}

.packet-rail {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy) 0% 46%, var(--teal) 46% 74%, var(--gold) 74% 100%);
  margin-bottom: 14px;
}

.brand-shell {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(0, 1.35fr) minmax(140px, 0.8fr);
  align-items: center;
  gap: 20px;
  padding: 12px 16px;
  border: 1px solid rgba(30, 68, 112, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

/* Visual reorder: Pacifica logo leads left, UFG trails right */
.brand-logo.right {
  order: -1;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.brand-shell > .brand-logo:first-child {
  order: 1;
}

.brand-logo {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-shell > .brand-logo:first-child img {
  width: min(100%, 152px);
  height: auto;
  object-fit: contain;
}

.brand-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo.right img {
  max-height: 86px;
  width: min(100%, 158px);
}

.brand-center {
  text-align: center;
  padding: 2px 4px;
}

.brand-kicker {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 122, 144, 0.6);
  margin-bottom: 6px;
}

.brand-title {
  margin: 0 auto;
  font: 700 24px/1.05 Georgia, 'Times New Roman', serif;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}

.brand-subtitle {
  margin: 5px auto 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--teal-deep);
}

/* ── Page numbers ──────────────────────────── */

.page-number {
  position: absolute;
  right: 0.7in;
  bottom: 0.34in;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(30, 68, 112, 0.36);
}

/* ── Typography ────────────────────────────── */

h1, h2, h3, h4 {
  margin: 0 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  line-height: 1.05;
}

h1 {
  font-size: 46px;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h2 {
  font-size: 30px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h3 {
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

h4 {
  font-size: 13px;
  font-family: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}

.lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 88%;
}

.muted {
  color: var(--muted);
}

.accent {
  color: var(--teal-deep);
}

/* ── Layout utilities ──────────────────────── */

.two-col {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
}

.equal-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Eyebrow ───────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 160, 51, 0.2));
  border-radius: 2px;
}

/* ── Cover ─────────────────────────────────── */

.cover .packet-header {
  margin-bottom: 14px;
}

.cover .packet-rail {
  height: 6px;
}

.cover .brand-shell {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.7);
}

.cover .brand-logo.right img {
  max-height: 94px;
  width: min(100%, 170px);
}

.cover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0.55in;
}

.cover-hero {
  position: relative;
  min-height: 5in;
  margin-top: 10px;
  padding: 38px 40px 34px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse at 68% 16%, rgba(212, 160, 51, 0.14), transparent 30%),
    radial-gradient(ellipse at 82% 80%, rgba(42, 147, 168, 0.12), transparent 28%),
    linear-gradient(155deg, rgba(42, 147, 168, 0.08), transparent 35%),
    linear-gradient(148deg, rgba(20, 47, 82, 0.97), rgba(26, 100, 120, 0.94) 50%, rgba(42, 147, 168, 0.88)),
    url('assets/pacifica-grounds-hero.jpg') center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.cover-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, rgba(255, 255, 255, 0.06) 25%, rgba(212, 160, 51, 0.12) 65%, transparent 92%);
  pointer-events: none;
}

.cover-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -30px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 51, 0.1), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

/* ── Cover dedication ─────────────────────── */

.cover-dedication {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 26px;
  padding-left: 18px;
  border-left: 2px solid rgba(212, 160, 51, 0.45);
}

.dedication-for {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
}

.dedication-name {
  font: 700 21px/1.15 Georgia, 'Times New Roman', serif;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
}

.dedication-role {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  font-family: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
}

.cover .cover-hero h1,
.cover .cover-hero p,
.cover .cover-hero h3 {
  color: var(--white);
  max-width: 84%;
}

.cover .cover-hero h1 {
  font-size: 46px;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 16px;
}

.cover .cover-hero .lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
  max-width: 82%;
}

.cover-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-top: 24px;
}

.cover-note {
  padding: 16px 18px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.cover-note h4 {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  font-size: 11px;
}

.cover-note p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ── Trust ribbon ──────────────────────────── */

.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  padding: 14px 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.trust-item {
  text-align: center;
  padding: 8px 8px;
  border-left: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: none;
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}

.trust-item span {
  font-size: 11px;
  line-height: 1.3;
  color: var(--muted);
}

/* ── Metric grid ───────────────────────────── */

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
  padding: 14px 12px;
  border: 1px solid rgba(30, 68, 112, 0.07);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.metric-card:hover {
  box-shadow: 0 6px 20px rgba(20, 47, 82, 0.08);
}

.metric-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-height: 38px;
  margin-bottom: 6px;
  font: 700 36px/1 Georgia, 'Times New Roman', serif;
  color: var(--navy);
  text-align: center;
}

.metric-label {
  text-align: center;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Panels ────────────────────────────────── */

.panel {
  padding: 18px 20px;
  border: 1px solid rgba(30, 68, 112, 0.07);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
}

.panel.dark {
  background: linear-gradient(150deg, var(--navy-deep) 0%, rgba(26, 122, 144, 0.92) 100%);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.panel.dark h3,
.panel.dark h4,
.panel.dark p,
.panel.dark li {
  color: rgba(255, 255, 255, 0.92);
}

.panel.gold {
  border: none;
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, rgba(212, 160, 51, 0.08), rgba(212, 160, 51, 0.03));
  box-shadow: none;
}

/* ── Quote panel ───────────────────────────── */

.panel.dark.quote-panel {
  position: relative;
  padding: 34px 38px 30px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.panel.dark.quote-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 55%);
  pointer-events: none;
}

.panel.dark.quote-panel h3 {
  margin: 0;
  padding: 4px 16px 4px 0;
  font-size: 22px;
  font-style: italic;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
}

/* ── Clean lists ───────────────────────────── */

ul.clean {
  margin: 0;
  padding-left: 18px;
}

ul.clean li {
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

/* ── Signature line ────────────────────────── */

.signature-line {
  display: inline-block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(30, 68, 112, 0.12);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

/* ── Callouts ──────────────────────────────── */

.callout-stack {
  display: grid;
  gap: 12px;
}

.callout {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(245, 250, 252, 0.85));
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  line-height: 1.5;
}

.callout strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.callout p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

/* ── Trust stack ───────────────────────────── */

.trust-stack {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.trust-block {
  padding: 13px 16px;
  border-left: 3px solid var(--teal);
  border-radius: var(--r);
  background: rgba(42, 147, 168, 0.05);
}

.trust-block h4 {
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.trust-block p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
}

/* ── Data table ────────────────────────────── */

.table-scroll {
  overflow-x: auto;
  margin-top: 14px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  font-size: 12px;
}

.data-table th,
.data-table td {
  padding: 10px 9px;
  border-bottom: 1px solid rgba(30, 68, 112, 0.07);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.data-table tbody tr {
  transition: background-color 0.15s ease;
}

.data-table tbody tr:hover {
  background: rgba(42, 147, 168, 0.03);
}

.pill {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(30, 68, 112, 0.06);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.pill.stable {
  background: rgba(42, 147, 168, 0.1);
  color: var(--teal-deep);
}

.pill.attention {
  background: rgba(212, 160, 51, 0.14);
  color: #7d5c12;
}

/* ── Service grid ──────────────────────────── */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.service-card {
  min-height: 134px;
  padding: 18px 16px;
  border: 1px solid rgba(30, 68, 112, 0.06);
  border-top: 2px solid rgba(42, 147, 168, 0.2);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* ── Ops strip ─────────────────────────────── */

.ops-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.ops-card {
  padding: 20px 18px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 68, 112, 0.07);
  box-shadow: var(--shadow-sm);
}

.ops-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--navy-deep), var(--teal-deep));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(20, 47, 82, 0.15);
}

/* ── Workflow ───────────────────────────────── */

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.workflow-step {
  position: relative;
  padding: 16px 13px 18px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 68, 112, 0.07);
  box-shadow: var(--shadow-sm);
}

.workflow-step::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -9px;
  width: 12px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.workflow-step:last-child::after {
  display: none;
}

.step-index {
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.workflow-step h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.workflow-step p {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}

/* ── Check grid ────────────────────────────── */

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.check-list {
  padding: 18px 18px 10px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 68, 112, 0.07);
  box-shadow: var(--shadow-sm);
}

.check-list h3 {
  margin-bottom: 12px;
}

.check-list ul {
  margin: 0;
  padding-left: 18px;
}

.check-list li {
  margin-bottom: 8px;
  font-size: 12.5px;
  line-height: 1.5;
}

/* ── Roadmap ───────────────────────────────── */

.roadmap {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.roadmap-row {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 68, 112, 0.07);
  box-shadow: var(--shadow-sm);
}

.roadmap-phase {
  padding: 11px 12px;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--navy-deep), var(--teal-deep));
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 4px 12px rgba(20, 47, 82, 0.12);
}

.roadmap-row h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.roadmap-row p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* ── Governance grid ───────────────────────── */

.governance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.governance-card {
  padding: 18px 16px;
  border-radius: var(--r);
  border: 1px solid rgba(30, 68, 112, 0.07);
  border-top: 2px solid rgba(42, 147, 168, 0.16);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.governance-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.governance-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* ── Fit grid ──────────────────────────────── */

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.fit-card {
  padding: 20px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 68, 112, 0.07);
  box-shadow: var(--shadow-sm);
}

.fit-card h3 {
  margin-bottom: 12px;
}

/* ── Closing panel & contact ───────────────── */

.closing-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 18px;
}

.contact-card {
  position: relative;
  padding: 24px;
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--navy-deep) 0%, rgba(26, 122, 144, 0.92) 100%);
  color: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 65%);
}

.contact-card h2,
.contact-card p,
.contact-card h4 {
  color: rgba(255, 255, 255, 0.94);
}

.contact-card h4 {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  margin-bottom: 4px;
}

.contact-card h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.contact-line {
  margin-bottom: 8px;
  font-size: 14.5px;
  line-height: 1.45;
}

/* ── Responsive — tablets & small screens ──── */

@media (max-width: 900px) {
  .page {
    width: calc(100vw - 24px);
    min-height: auto;
    padding: 28px 20px 56px;
  }

  .brand-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    box-shadow: none;
  }

  .brand-center {
    padding: 0;
  }

  .brand-logo,
  .brand-logo.right {
    justify-content: center;
    min-height: 0;
  }

  .brand-logo.right img {
    width: min(100%, 180px);
    max-height: 92px;
  }

  .brand-shell > .brand-logo:first-child img {
    width: min(100%, 170px);
  }

  .cover-band,
  .two-col,
  .equal-col,
  .ops-strip,
  .service-grid,
  .workflow,
  .check-grid,
  .governance-grid,
  .fit-grid,
  .closing-panel {
    grid-template-columns: 1fr;
  }

  .workflow-step::after {
    display: none;
  }

  .roadmap-row {
    grid-template-columns: 1fr;
  }

  .roadmap-phase {
    width: fit-content;
    min-width: 120px;
  }

  .trust-ribbon,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item {
    border-left: none;
    border-bottom: 1px solid var(--line);
    padding: 10px 8px;
  }

  .trust-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .cover .cover-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 560px) {
  .metric-grid,
  .trust-ribbon {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-left: none;
  }

  .trust-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .page {
    padding: 24px 16px 52px;
  }

  .brand-title {
    font-size: 20px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .page-number {
    right: 16px;
    bottom: 14px;
  }

  .cover .cover-hero h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }
}

/* ── Print ─────────────────────────────────── */

@media print {
  @page {
    size: Letter;
    margin: 0;
  }

  body {
    background: #ffffff;
  }

  .jump-nav {
    display: none;
  }

  .jump-nav-toggle,
  .jump-nav-backdrop {
    display: none !important;
  }

  .deck {
    padding: 0;
  }

  .page {
    margin: 0;
    width: 8.5in;
    height: 11in;
    min-height: 11in;
    box-shadow: none;
    page-break-after: always;
  }

  .page:last-child {
    page-break-after: auto;
  }
}
