:root {
  --ink: #0b1822;
  --navy: #102d40;
  --navy-soft: #183e54;
  --night: #07141d;
  --orange: #f2a064;
  --orange-dark: #a94f1d;
  --teal: #2f786b;
  --sand: #f3f0e9;
  --paper: #ffffff;
  --mist: #f7f9f8;
  --muted: #5e6d77;
  --line: #d8e0e2;
  --line-dark: rgba(255, 255, 255, 0.14);
  --success-bg: #e8f3ef;
  --warning-bg: #fff2e8;
  --shadow: 0 22px 55px rgba(9, 31, 44, 0.1);
  --shadow-soft: 0 12px 30px rgba(9, 31, 44, 0.07);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--night);
  background: var(--orange);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.2rem, 7.2vw, 6.4rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4.3vw, 3.8rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p {
  margin-bottom: 1.15rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #176d8e;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--night);
  background: var(--orange);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.8rem, 8vw, 8rem);
}

.section-tight {
  padding-block: clamp(3rem, 5vw, 5rem);
}

.section-sand {
  background: var(--sand);
}

.section-mist {
  background: var(--mist);
}

.section-dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 10%, rgba(242, 160, 100, 0.13), transparent 30%),
    var(--night);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--orange);
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.25rem);
  line-height: 1.75;
}

.lead-light {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 2.5rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 0.2rem;
  color: var(--muted);
}

.section-heading-light p {
  color: rgba(255, 255, 255, 0.7);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1;
  transition: 180ms ease;
}

.button::after {
  font-size: 1.05rem;
  content: "→";
  transition: transform 180ms ease;
}

.button:hover::after {
  transform: translateX(4px);
}

.button-primary {
  color: var(--night);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(242, 160, 100, 0.22);
}

.button-primary:hover {
  background: #ffb27a;
  transform: translateY(-2px);
}

.button-dark {
  color: var(--paper);
  background: var(--navy);
}

.button-dark:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange-dark);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Header */

.site-header {
  position: relative;
  z-index: 100;
  color: var(--paper);
  background: var(--night);
  border-bottom: 1px solid var(--line-dark);
}

.site-header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--night);
  background: var(--orange);
  border-radius: 12px 3px 12px 3px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 0.96rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.desktop-nav a:not(.button) {
  padding-block: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--paper);
}

.desktop-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px var(--orange);
}

.header-button {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 800;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 0.8rem);
  right: 0;
  display: grid;
  width: min(280px, calc(100vw - 40px));
  padding: 0.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.mobile-nav-panel a {
  padding: 0.75rem 0.8rem;
  color: var(--ink);
  border-radius: 9px;
  font-weight: 750;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a[aria-current="page"] {
  background: var(--sand);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 20%, rgba(47, 120, 107, 0.3), transparent 26%),
    radial-gradient(circle at 89% 15%, rgba(242, 160, 100, 0.18), transparent 25%),
    linear-gradient(135deg, #07141d 0%, #102d40 64%, #0c2231 100%);
}

.hero::after {
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.02),
    0 0 0 140px rgba(255, 255, 255, 0.015);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(760px, calc(100svh - 82px));
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(4rem, 6vw, 6rem);
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.8rem, 5.5vw, 5.4rem);
  line-height: 1.03;
}

.hero-copy .lead {
  max-width: 710px;
  line-height: 1.6;
}

.hero-note {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.route-panel {
  position: relative;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.route-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.route-panel-header strong {
  font-size: 0.9rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.68rem;
  color: #a8e0cc;
  background: rgba(47, 120, 107, 0.22);
  border: 1px solid rgba(168, 224, 204, 0.25);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill::before {
  width: 7px;
  height: 7px;
  background: #79c5aa;
  border-radius: 50%;
  content: "";
}

.route-list {
  display: grid;
  gap: 0.7rem;
}

.route-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem;
  background: rgba(7, 20, 29, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.route-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--orange);
  background: rgba(242, 160, 100, 0.12);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 900;
}

.route-row strong {
  display: block;
  font-size: 0.88rem;
}

.route-row small {
  display: block;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
}

.route-state {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-strip {
  position: relative;
  z-index: 2;
  color: var(--paper);
  background: var(--navy);
  border-top: 1px solid var(--line-dark);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.7);
  border-right: 1px solid var(--line-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.capability-list li:first-child {
  border-left: 1px solid var(--line-dark);
}

/* Cards and layouts */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  position: relative;
  padding: clamp(1.45rem, 3vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 2rem;
  place-items: center;
  color: var(--orange-dark);
  background: var(--warning-bg);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.card p:last-child {
  margin-bottom: 0;
}

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

.value-card {
  min-height: 310px;
}

.value-card::after {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  display: grid;
  min-height: 270px;
  grid-template-rows: auto auto 1fr auto;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: #b9c7cb;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.service-kicker {
  margin-bottom: 1.4rem;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
}

.service-card .text-link {
  margin-top: 1rem;
  font-size: 0.88rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.audience-card {
  padding: 1.6rem;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
}

.audience-card h3 {
  font-size: 1.2rem;
}

.audience-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.audience-tag {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 1.8rem 1.4rem 1.4rem;
  border-top: 1px solid var(--line);
  counter-increment: process;
}

.process-step::before {
  position: absolute;
  top: -7px;
  left: 1.4rem;
  width: 13px;
  height: 13px;
  background: var(--orange);
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--orange);
  content: "";
}

.process-step::after {
  display: block;
  margin-top: 1.25rem;
  color: #9aa8af;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  content: "0" counter(process);
}

.process-step h3 {
  font-size: 1rem;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.fit-card {
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: var(--radius-lg);
}

.fit-card-good {
  background: var(--success-bg);
  border: 1px solid #c9e1d9;
}

.fit-card-filter {
  background: var(--warning-bg);
  border: 1px solid #f0d7c6;
}

.check-list,
.plain-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.7rem;
  color: #42535e;
}

.check-list li::before {
  position: absolute;
  top: 0.2rem;
  left: 0;
  color: var(--teal);
  font-weight: 900;
  content: "✓";
}

.plain-list li::before {
  position: absolute;
  top: 0.72rem;
  left: 0.15rem;
  width: 7px;
  height: 7px;
  background: var(--orange-dark);
  border-radius: 50%;
  content: "";
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 4.2rem);
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.cta-band::after {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.025);
  content: "";
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-band p {
  max-width: 710px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

/* Internal pages */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 8rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 84% 15%, rgba(242, 160, 100, 0.16), transparent 25%),
    linear-gradient(135deg, var(--night), var(--navy));
}

.page-hero::after {
  position: absolute;
  top: 55%;
  right: 6%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.02);
  content: "";
  transform: translateY(-50%);
}

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

.page-hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.page-hero .lead {
  max-width: 780px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.story-copy p {
  color: #41515b;
  font-size: 1.05rem;
}

.side-panel {
  position: sticky;
  top: 28px;
  padding: 2rem;
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.side-panel-label {
  margin-bottom: 1.5rem;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.side-panel-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-panel-list li {
  padding-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.9rem;
}

.side-panel-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.quote-block {
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.quote-block blockquote {
  max-width: 940px;
  margin-bottom: 1.2rem;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.quote-block p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.principle-card {
  grid-column: span 2;
  padding: 1.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.principle-card:nth-child(4),
.principle-card:nth-child(5) {
  grid-column: span 3;
}

.principle-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.identity-panel {
  padding: clamp(1.8rem, 4vw, 3.4rem);
}

.identity-panel:first-child {
  color: var(--paper);
  background: var(--navy);
}

.identity-panel:last-child {
  background: var(--sand);
}

.identity-label {
  margin-bottom: 1rem;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.identity-panel:first-child .identity-label {
  color: var(--orange);
}

.identity-panel h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.identity-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.identity-panel:first-child p {
  color: rgba(255, 255, 255, 0.64);
}

/* Services page */

.service-jump-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.service-jump {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  transition: 160ms ease;
}

.service-jump span {
  color: var(--orange-dark);
  font-size: 0.74rem;
}

.service-jump:hover {
  border-color: #aebec3;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.service-detail {
  scroll-margin-top: 20px;
  padding-block: clamp(4.4rem, 7vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.service-detail-heading {
  position: sticky;
  top: 28px;
}

.service-detail-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.service-detail-heading p {
  color: var(--muted);
}

.service-detail-body {
  display: grid;
  gap: 1rem;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  min-height: 70px;
  padding: 1rem 1rem 1rem 2.5rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: #40515b;
  font-size: 0.9rem;
}

.included-list li::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--teal);
  font-weight: 900;
  content: "✓";
}

.boundary-note {
  margin-top: 0.4rem;
  padding: 1.2rem;
  background: var(--warning-bg);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #66452e;
  font-size: 0.85rem;
}

.boundary-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #49311f;
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 0.45rem;
}

.faq-nav strong {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-nav a {
  padding: 0.55rem 0.7rem;
  color: #53636d;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 750;
}

.faq-nav a:hover {
  color: var(--ink);
  background: var(--sand);
}

.faq-content {
  display: grid;
  gap: 3.2rem;
}

.faq-group {
  scroll-margin-top: 20px;
}

.faq-group h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 1.25rem 3rem 1.25rem 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--orange-dark);
  background: var(--warning-bg);
  border-radius: 50%;
  content: "+";
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 760px;
  padding: 0 2rem 1.4rem 0;
  color: var(--muted);
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
  margin-bottom: 0;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.contact-panel {
  padding: 2rem;
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.contact-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.63);
}

.contact-methods {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-method {
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.contact-method span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-method a {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.brief-list {
  display: grid;
  gap: 0.5rem;
  margin: 2rem 0 0;
  padding: 1.2rem;
  color: #455761;
  background: var(--sand);
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
}

.brief-list strong {
  color: var(--ink);
}

.form-card {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.form-intro {
  margin-bottom: 2rem;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: #394a54;
  font-size: 0.78rem;
  font-weight: 850;
}

.choice-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-field legend {
  margin-bottom: 0.45rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.78rem 0.9rem;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid #cfd9dc;
  border-radius: 10px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid #176d8e;
  outline-offset: 2px;
  border-color: var(--teal);
  box-shadow: none;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.72rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #455761;
  font-size: 0.83rem;
}

.checkbox input {
  width: 17px;
  height: 17px;
  min-height: auto;
  margin: 0.18rem 0 0;
  accent-color: var(--teal);
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.consent input {
  width: 17px;
  height: 17px;
  margin-top: 0.18rem;
  accent-color: var(--teal);
}

.submit-button {
  margin-top: 1.3rem;
  border: 0;
  cursor: pointer;
}

/* 404 */

.not-found {
  display: grid;
  min-height: 65vh;
  place-items: center;
  padding-block: 5rem;
  text-align: center;
}

.not-found-code {
  margin-bottom: 0.7rem;
  color: var(--orange-dark);
  font-size: clamp(4.5rem, 13vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.not-found p {
  max-width: 560px;
  margin-inline: auto;
  color: var(--muted);
}

.not-found .button-row {
  justify-content: center;
}

/* Footer */

.site-footer {
  color: var(--paper);
  background: var(--night);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(130px, 0.55fr));
  gap: 3rem;
  padding-block: clamp(4rem, 7vw, 6rem);
}

.footer-intro {
  max-width: 400px;
}

.footer-intro p {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-column strong {
  margin-bottom: 0.55rem;
  color: var(--orange);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.footer-column a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid var(--line-dark);
  font-size: 0.73rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 1rem;
  }

  .desktop-nav a:not(.button) {
    font-size: 0.8rem;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.72fr;
    gap: 3rem;
  }

  .capability-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .capability-list li:nth-child(4) {
    border-left: 1px solid var(--line-dark);
  }

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

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 0;
  }

  .footer-main {
    grid-template-columns: 1.2fr repeat(2, 0.6fr);
  }

  .footer-main .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .route-panel {
    max-width: 630px;
  }

  .section-heading,
  .story-grid,
  .service-detail-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .side-panel,
  .service-detail-heading {
    position: static;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
  }

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

  .principle-card,
  .principle-card:nth-child(4),
  .principle-card:nth-child(5) {
    grid-column: span 1;
  }

  .service-jump-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-nav {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-nav strong {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-main .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.86rem;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-inner {
    gap: 2.5rem;
    padding-block: 3.5rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.4rem);
    line-height: 1.04;
  }

  .hero-copy .lead {
    line-height: 1.58;
  }

  .button-row .button {
    width: 100%;
  }

  .route-panel {
    padding: 1rem;
  }

  .route-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .route-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-row small,
  .route-state {
    display: none;
  }

  .capability-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-list li,
  .capability-list li:nth-child(4) {
    border-left: 0;
  }

  .capability-list li:nth-child(odd) {
    border-left: 1px solid var(--line-dark);
  }

  .capability-list li:last-child {
    grid-column: 1 / -1;
  }

  .service-grid,
  .audience-grid,
  .split-grid,
  .identity-grid,
  .service-jump-grid,
  .included-list,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    padding-left: 2.2rem;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .process-step::before {
    top: 2.1rem;
    left: -7px;
  }

  .process-step::after {
    position: absolute;
    top: 1.8rem;
    right: 0;
    margin-top: 0;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .faq-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-intro {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
