:root {
  --navy: #011d41;
  --navy-700: #011733;
  --navy-800: #011126;
  --navy-200: #94b0d2;
  --navy-50: #eaf0f7;
  --bg: #f7f7f7;
  --surface: #ffffff;
  --surface-alt: #efefef;
  --border: #e3e3e3;
  --border-strong: #cccccc;
  --text: #011d41;
  --muted: #525252;
  --subtle: #737373;
  --inverse: #f7f7f7;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(1, 29, 65, 0.08);
  --shadow-md: 0 12px 32px rgba(1, 29, 65, 0.10);
  --maxw: 1180px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Custom scrollbar — subtle, brand-tinted, transparent track */
html { scrollbar-width: thin; scrollbar-color: rgba(1, 29, 65, 0.28) transparent; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(1, 29, 65, 0.22);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
  transition: background-color 0.25s ease;
}
::-webkit-scrollbar-thumb:hover { background: rgba(1, 29, 65, 0.42); background-clip: padding-box; }
::-webkit-scrollbar-thumb:active { background: rgba(1, 29, 65, 0.55); background-clip: padding-box; }
::-webkit-scrollbar-corner { background: transparent; }

/* Light-on-dark scrollbar inside the navy menu overlay */
.menu-overlay { scrollbar-color: rgba(247, 247, 247, 0.32) transparent; }
.menu-overlay::-webkit-scrollbar-thumb { background: rgba(247, 247, 247, 0.26); background-clip: padding-box; }
.menu-overlay::-webkit-scrollbar-thumb:hover { background: rgba(247, 247, 247, 0.48); background-clip: padding-box; }

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

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

h1, h2, h3, h4 { margin: 0; font-weight: 400; }

h1, h2 { font-family: var(--serif); letter-spacing: -0.015em; line-height: 1.12; }

h3, h4 { font-family: var(--sans); font-weight: 600; letter-spacing: -0.005em; }

p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 1.6rem + 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
}

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

.eyebrow-none { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.12s ease, border-color 0.2s ease;
}

.btn svg { width: 17px; height: 17px; }

.btn-primary { background: var(--navy); color: var(--inverse); }
.btn-primary:hover { background: var(--navy-700); }
.btn-primary:active { transform: translateY(1px); }

.btn-outline { border-color: var(--border-strong); color: var(--text); background: transparent; }
.btn-outline:hover { background: var(--surface-alt); }

.btn-inverse { background: var(--inverse); color: var(--navy); }
.btn-inverse:hover { background: #dbe5f2; }
.btn-inverse:active { transform: translateY(1px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--navy);
}
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow:hover { text-decoration: underline; }

/* Floating dark-glass navbar — a translucent layer over the hero */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: transparent;
  pointer-events: none;
}

.header-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 12px 12px 12px 20px;
  border-radius: 999px;
  background: rgba(1, 17, 38, 0.26);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 34px rgba(1, 17, 38, 0.16);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, margin-top 0.4s ease;
}
.site-header.scrolled .header-inner {
  background: rgba(1, 17, 38, 0.52);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 40px rgba(1, 17, 38, 0.30);
}

.brand { display: inline-flex; align-items: center; gap: 13px; }

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 19px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.04); }

/* Uploaded crown badge (navbar) */
.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.brand:hover .brand-badge { transform: rotate(-8deg) scale(1.04); }

/* Full wordmark logo (footer) */
.footer-logo { height: 132px; width: auto; }

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; color: #fff; }
.brand-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-top: 4px;
}

/* Header actions cluster */
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-cta {
  display: none;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
}
.header-cta:hover { background: #fff; }

/* Menu trigger */
.menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 10px 0 22px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  font-family: var(--sans);
  transition: border-color 0.2s ease, background 0.2s ease;
  z-index: 90;
}
.menu-toggle:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.08); }

.menu-toggle-text {
  position: relative;
  display: inline-grid;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu-toggle-text > span {
  grid-area: 1 / 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.menu-toggle-text .mt-close { opacity: 0; transform: translateY(60%); }
.menu-toggle[aria-expanded="true"] .mt-open { opacity: 0; transform: translateY(-60%); }
.menu-toggle[aria-expanded="true"] .mt-close { opacity: 1; transform: translateY(0); }

.menu-toggle-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}
.menu-toggle-icon span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1.6px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.menu-toggle-icon span:nth-child(1) { transform: translate(-50%, -4px); }
.menu-toggle-icon span:nth-child(2) { transform: translate(-50%, 4px); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) { transform: translate(-50%, 0) rotate(-45deg); }

/* Full-screen overlay menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  overflow-y: auto;
  background: var(--navy);
  color: var(--inverse);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.4s ease, visibility 0s linear 0.5s, clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
  transition: opacity 0.35s ease, clip-path 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-overlay .menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(132px, 22vh, 220px) 22px 56px;
}
@media (min-width: 760px) {
  .menu-overlay .menu-inner { padding-left: 40px; padding-right: 40px; }
}

.menu-nav { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item + .menu-item { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.menu-item a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: clamp(16px, 2.6vw, 30px) 0;
  color: rgba(247, 247, 247, 0.62);
  transition: color 0.25s ease, padding-left 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.menu-item a:hover { color: var(--inverse); padding-left: 12px; }
.menu-item a[aria-current="page"] { color: var(--inverse); }
.menu-link-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 1.2rem + 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Staggered entrance for menu items + aside */
.menu-item, .menu-aside {
  opacity: 0;
  transform: translateY(26px);
}
.menu-overlay.open .menu-item,
.menu-overlay.open .menu-aside {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-overlay.open .menu-item:nth-child(1) { transition-delay: 0.12s; }
.menu-overlay.open .menu-item:nth-child(2) { transition-delay: 0.18s; }
.menu-overlay.open .menu-item:nth-child(3) { transition-delay: 0.24s; }
.menu-overlay.open .menu-item:nth-child(4) { transition-delay: 0.30s; }
.menu-overlay.open .menu-aside { transition-delay: 0.36s; }

.menu-aside {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.menu-contact { display: grid; gap: 4px; color: rgba(247, 247, 247, 0.8); font-size: 0.98rem; }
.menu-contact a:hover { color: var(--inverse); text-decoration: underline; }
.menu-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-200);
  margin-bottom: 6px;
}
.menu-cta { flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  .menu-overlay, .menu-overlay.open,
  .menu-item, .menu-aside,
  .menu-overlay.open .menu-item,
  .menu-overlay.open .menu-aside { transition-duration: 0.001s; transition-delay: 0s; }
}

section { padding: 64px 0; }

.section-surface { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.hero { padding: 128px 0 60px; background: var(--navy-800); }
.hero h1 { max-width: 15ch; color: #fff; }
.hero .lead { margin-top: 26px; max-width: 60ch; color: rgba(247, 247, 247, 0.84); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.measure { max-width: 62ch; }
.measure-narrow { max-width: 52ch; }
.measure-center { margin-inline: auto; text-align: center; }
/* headline + lead width clamps (were one-off inline max-widths) */
.measure-title { max-width: 16ch; }
.measure-lead { max-width: 54ch; }
.measure-wide { max-width: 60ch; }

.stack > * + * { margin-top: 20px; }

/* Section heading sizes — reused across pages */
.h-xl { font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.7rem); }
.h-lg { font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.3rem); }
.h-md { font-size: clamp(1.6rem, 1.2rem + 1.3vw, 2.1rem); }

/* split column alignment */
.split--center  { align-items: center; }
.split--stretch { align-items: stretch; }

/* vertical rhythm */
.mt-5  { margin-top: 1.25rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-9  { margin-top: 2.25rem; }
.mt-11 { margin-top: 2.75rem; }

.statement {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2rem);
  line-height: 1.4;
  max-width: 30ch;
}

.qa { display: grid; gap: 36px; align-items: center; }
.qa-q {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--text);
}
.qa-q + .qa-q { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--border); }
.qa-answer { background: var(--navy); color: var(--inverse); border-radius: 16px; padding: 38px; }
.qa-answer-lead { font-family: var(--serif); font-size: 1.45rem; line-height: 1.3; }
.qa-answer-body { margin-top: 14px; color: var(--navy-200); font-size: 1.05rem; line-height: 1.6; }
@media (min-width: 760px) {
  .qa { grid-template-columns: 1.3fr 0.7fr; gap: 56px; }
}

.section-head { max-width: 22ch; }
.section-head + .section-body { margin-top: 34px; }

.split { display: grid; gap: 34px; }

.cards { display: grid; gap: 20px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}
.card.shadow { border-color: transparent; box-shadow: var(--shadow-sm); }
.card .num { font-size: 0.8rem; font-weight: 600; color: var(--subtle); }
.card-icon { display: block; color: var(--navy); margin-bottom: 14px; }
.card-icon svg { width: 30px; height: 30px; }
.cards-5 .card h3 { font-size: 1.06rem; line-height: 1.35; min-height: 2.7em; }
.card.shadow { display: flex; flex-direction: column; }
.card.shadow h3 { min-height: 3rem; }
.card .card-cta { margin-top: auto; padding-top: 18px; }
.card h3 { margin-top: 6px; font-size: 1.18rem; }
.card p { margin-top: 8px; font-size: 0.95rem; color: var(--muted); }
.card-media {
  display: block;
  width: calc(100% + 52px);
  max-width: none;
  height: 172px;
  margin: -26px -26px 20px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  filter: saturate(0.92);
}

.dash-list { list-style: none; margin: 0; padding: 0; }
.dash-list li {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--border);
  font-size: 1.02rem;
}
.dash-list li::before { content: "\2014"; color: var(--navy); font-family: var(--serif); }

.considered { display: grid; gap: 40px; }
.considered-intro { max-width: 42ch; }
.principles h3 { font-size: 1.05rem; }
.principle-list { list-style: none; margin: 20px 0 0; padding: 0; }
.principle-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.principle-list li:last-child { border-bottom: 1px solid var(--border); }
.principle-num {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
  color: var(--navy-200);
  font-feature-settings: "tnum" 1;
}
.principle-text { font-size: 1.1rem; line-height: 1.4; }
@media (min-width: 860px) {
  .considered { grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
}

.note-grid { display: grid; gap: 40px; }
.note { border-top: 2px solid var(--navy); padding-top: 22px; }
.note-title { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; letter-spacing: -0.01em; line-height: 1.15; }
.note p { margin-top: 16px; }
.note p + p { margin-top: 14px; }
@media (min-width: 760px) {
  .note-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.ledger { border-top: 1px solid var(--border); }
.ledger-row { display: grid; gap: 14px; padding: 32px 0; border-bottom: 1px solid var(--border); }
.ledger-title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 1.2rem + 1vw, 1.9rem); letter-spacing: -0.01em; line-height: 1.12; }
.ledger-body p + p { margin-top: 14px; }
@media (min-width: 760px) {
  .ledger-row { grid-template-columns: 0.85fr 1.15fr; gap: 56px; padding: 40px 0; align-items: start; }
}

.quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 1.1rem + 1.9vw, 2.3rem);
  line-height: 1.3;
  max-width: 22ch;
  margin: 48px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.band {
  background: var(--navy);
  color: var(--inverse);
  text-align: center;
}
.band h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  line-height: 1.1;
}
.band p { margin: 20px auto 0; max-width: 52ch; color: var(--navy-200); font-size: 1.1rem; }
.band .btn { margin-top: 30px; }

.service { padding: 44px 0; border-top: 1px solid var(--border); }
.service:first-of-type { border-top: none; }
.service h2 { font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.1rem); }
.service .intro { margin-top: 18px; }
.service .areas-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-top: 30px;
}
.areas {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.areas li { border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; background: var(--surface); }
.areas h4 { font-size: 1.02rem; }
.areas p { margin-top: 6px; font-size: 0.92rem; color: var(--muted); }

.partners { display: grid; gap: 20px; margin-top: 30px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.92rem; font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
  width: 100%;
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.4);
}
.form { display: flex; flex-direction: column; gap: 20px; max-width: 560px; }
.form-row { display: grid; gap: 20px; }

.contact-grid { display: grid; gap: 48px; }
.reach { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.reach .k { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--subtle); }
.reach .v { margin-top: 3px; font-size: 1rem; }
.reach .v a { color: var(--navy); text-decoration: none; }
.reach .v a:hover { text-decoration: underline; text-underline-offset: 2px; }

.reach-cards { list-style: none; margin: 48px 0 0; padding: 0; display: grid; gap: 18px; }
.reach-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.reach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.reach-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--navy-50);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reach-icon svg { width: 22px; height: 22px; }
.reach-body { display: flex; flex-direction: column; gap: 7px; }
.reach-card .k { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--subtle); }
.reach-card .v { font-size: 1.05rem; line-height: 1.5; color: var(--text); }
.reach-card .v a { color: var(--navy); text-decoration: none; }
.reach-card .v a:hover { text-decoration: underline; text-underline-offset: 2px; }
@media (min-width: 700px) { .reach-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.confirm { border: 1px solid var(--border); border-radius: 16px; padding: 30px; max-width: 560px; }
.confirm h2 { font-family: var(--serif); font-size: 1.6rem; }
.confirm p { margin-top: 10px; color: var(--muted); }

.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 56px 0 30px; }
.footer-grid { display: grid; gap: 32px; }
.footer-grid p { margin-top: 18px; max-width: 34ch; font-size: 0.93rem; color: var(--muted); }
.footer-col h4 { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--subtle); }
.footer-col ul { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 0.93rem; color: var(--muted); }
.footer-col a:hover { color: var(--navy); }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--subtle); }

@media (min-width: 760px) {
  .container { padding: 0 40px; }
  .header-cta { display: inline-flex; }
  .header-inner { gap: 24px; margin-top: 18px; padding: 14px 16px 14px 26px; }
  .header-actions { gap: 18px; }
  .menu-toggle { padding: 0 10px 0 24px; }

  section { padding: 92px 0; }
  .hero { padding: 168px 0 88px; }

  .split-rationale { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
  .split-2 { grid-template-columns: 1fr 1fr; }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-2 { grid-template-columns: repeat(2, 1fr); }
  .areas { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr; }
  .service-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: stretch; }
}

@media (min-width: 1080px) {
  .cards-5 { grid-template-columns: repeat(5, 1fr); }
}

.hero-media {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-800);
  padding: 0;
}
.hero-media .hero-bg,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 17, 38, 0.32) 0%, rgba(1, 17, 38, 0.44) 52%, rgba(1, 17, 38, 0.82) 100%);
}
.hero-media .container {
  position: relative;
  z-index: 1;
  padding-top: 132px;
  padding-bottom: 72px;
}
.hero-media h1 { color: #fff; }
.hero-media .lead { color: rgba(247, 247, 247, 0.84); }

@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero > .container > h1.display,
  .hero-media > .container > h1.display {
    animation: heroTitleIn 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    will-change: opacity, transform;
  }
}

.btn-line { background: transparent; border: 1px solid rgba(255, 255, 255, 0.45); color: #fff; }
.btn-line:hover { background: rgba(255, 255, 255, 0.12); }

.feature-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  filter: saturate(0.92);
}
.feature-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  filter: saturate(0.9);
  display: block;
  background: var(--navy-800);
}

/* fixed media heights, matched to each layout column (were inline styles) */
.feature-img--rationale { height: 308px; }
.feature-img--portrait  { height: 480px; }
.feature-img--column    { height: 552px; margin-bottom: 28px; }
.feature-video--led     { height: 400px; }

.band { position: relative; overflow: hidden; }
.band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  z-index: 0;
}
.band--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(1, 17, 38, 0.84), rgba(1, 17, 38, 0.9));
  z-index: 1;
}
.band .container { position: relative; z-index: 2; }

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 16px;
  padding: 38px 30px;
  min-height: 124px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.logo-card img {
  max-height: 40px;
  width: auto;
  max-width: 82%;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.logo-card--light { background: var(--surface); border: 1px solid var(--border); }
.logo-card--light img { max-height: 52px; max-width: 78%; filter: none; opacity: 1; }

.intro-preview { margin: 0; }
.service-media { display: flex; }
.service-media .feature-img { height: 268px; min-height: 260px; margin: 0; }
.service-body { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.service-body .intro-preview { margin: 0; }
.service-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 11px 22px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.service-toggle:hover { background: var(--surface); border-color: var(--navy); }
.service-toggle svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.service.open .service-toggle svg { transform: rotate(180deg); }
.service-more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-more-inner { overflow: hidden; opacity: 0; transition: opacity 0.3s ease 0.05s; padding-top: 22px; }
.service.open .service-more { grid-template-rows: 1fr; }
.service.open .service-more-inner { opacity: 1; }
.service-more .areas-label { margin-top: 22px; }

.prose { max-width: 72ch; }
.prose h2 { font-family: var(--serif); font-size: 1.5rem; margin-top: 44px; }
.prose h3 { font-size: 1.08rem; margin-top: 30px; }
.prose p { margin-top: 14px; color: var(--muted); }
.prose ul { margin: 16px 0 0; padding-left: 22px; color: var(--muted); display: flex; flex-direction: column; gap: 9px; }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }

@media (min-width: 760px) {
  .hero-media { min-height: 82vh; }
  .hero-media .container { padding-top: 160px; padding-bottom: 104px; }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1400;
  display: flex;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
}
.cookie-banner[hidden] { display: none; }

.cookie-inner {
  pointer-events: auto;
  position: relative;
  width: 100%;
  max-width: 880px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 44px rgba(1, 29, 65, 0.18);
  padding: 14px 18px;
}

@media (prefers-reduced-motion: no-preference) {
  .cookie-banner:not([hidden]) .cookie-inner {
    animation: cookie-rise 0.32s cubic-bezier(0.2, 0, 0, 1) both;
  }
}
@keyframes cookie-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-text {
  flex: 1;
  min-width: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-actions .btn { padding: 9px 18px; font-size: 0.85rem; }

.cookie-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--subtle);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.cookie-close:hover { background: var(--surface-alt); color: var(--text); }
.cookie-close svg { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .cookie-banner { padding: 12px; }
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 22px 20px;
  }
  .cookie-text { padding-right: 36px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
  .cookie-close { position: absolute; top: 12px; right: 12px; }
}
