﻿/* ===========================
   DESIGN TOKENS
   =========================== */
:root {
  /* Brand */
  --navy:         #0f2137;
  --navy-light:   #1a3050;
  --navy-muted:   #243c58;
  --white:        #ffffff;
  --off-white:    #f6f8fa;
  --grey-100:     #eef1f5;
  --grey-200:     #dde3ec;
  --grey-400:     #8a97a8;
  --grey-500:     #6b7a8d;
  --orange:       #ff6600;
  --orange-hover: #e65b00;
  --orange-tint:  #fff5ed;

  /* Semantic */
  --text:         #1a2b3c;
  --text-muted:   #5a6a7e;
  --border:       #e0e6ef;

  /* Sizing */
  --max-w:    1160px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --nav-h:     72px;

  /* Transition */
  --t:    0.22s ease;
  --t-md: 0.38s ease;
}

/* ===========================
   RESET & BASE
   =========================== */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  line-height: 1.15;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

p { line-height: 1.7; }

/* ===========================
   LAYOUT
   =========================== */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section__header {
  max-width: 600px;
  margin-bottom: 56px;
}
.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section__header h2 { margin-bottom: 14px; }
.section__header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: -0.01em;
  border-radius: var(--radius);
  border: 1.5px solid var(--orange);
  cursor: pointer;
  transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  box-shadow: none;
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn--outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-tint);
  box-shadow: none;
}

.btn--sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}
.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ===========================
   NAVBAR
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: box-shadow var(--t);
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.nav-wordmark {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-menu > li > a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
}
.nav-menu > li > a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}
.nav-menu > li > .btn {
  color: var(--white);
  margin-left: 8px;
}
.nav-menu > li > .btn:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  padding: calc(var(--nav-h) + 80px) 0 88px;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.055) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
}
.hero__text { flex: 1; min-width: 0; }
.hero__text h1 {
  color: var(--white);
  margin-bottom: 22px;
  max-width: 14ch;
}
.hero__text h1 .highlight { color: var(--orange); }
.hero__text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__visual {
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__lion {
  width: 240px;
  height: auto;
  opacity: 0.42;
  filter: drop-shadow(0 0 48px rgba(255, 102, 0, 0.22));
  transition: opacity var(--t-md);
}
.hero:hover .hero__lion { opacity: 0.55; }

/* ===========================
   TICKER
   =========================== */
.ticker {
  background: var(--navy-light);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 0;
  animation: ticker-scroll 28s linear infinite;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 32px;
}
.ticker__item::after {
  content: '·';
  margin-left: 32px;
  color: var(--orange);
  font-size: 1rem;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================
   SERVICES
   =========================== */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover {
  border-color: var(--grey-200);
  box-shadow: 0 8px 32px rgba(15, 33, 55, 0.09);
  transform: translateY(-3px);
}
.card:hover::before { transform: scaleX(1); }

.card__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.card h3 { margin-bottom: 10px; }
.card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  flex: 1;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--t);
}
.card:hover .card__link { gap: 10px; }

/* ===========================
   PROCESS
   =========================== */
.process { background: var(--navy); }
.process .section__header h2,
.process .section__eyebrow { color: var(--white); }
.process .section__header p { color: rgba(255, 255, 255, 0.6); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.process-step { padding: 0 24px 0 0; }
.process-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-variant-numeric: tabular-nums;
}
.process-step h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.process-step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===========================
   ABOUT
   =========================== */
.about { background: var(--off-white); }
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__copy h2 { margin-bottom: 20px; }
.about__copy p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about__copy p:last-of-type { margin-bottom: 28px; }
.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about__highlight-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--orange-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.about__highlight-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.about__highlight-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===========================
   PROJECT CTA BAND
   =========================== */
.cta-band {
  background: var(--orange);
  padding: 72px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band__copy h2 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.cta-band__copy p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  font-size: 1rem;
}
.cta-band .btn {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  flex-shrink: 0;
  font-size: 1rem;
  padding: 15px 32px;
}
.cta-band .btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: none;
  transform: translateY(-1px);
}

/* ===========================
   CONTACT
   =========================== */
.contact { background: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact__copy h2 { margin-bottom: 14px; }
.contact__copy p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact__info { display: flex; flex-direction: column; gap: 16px; }
.contact__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact__info-item strong { color: var(--navy); font-weight: 600; }

/* ===========================
   FORM
   =========================== */
.form { display: flex; flex-direction: column; gap: 16px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field--full { grid-column: 1 / -1; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 0.93rem;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
input:hover, select:hover, textarea:hover { border-color: var(--grey-400); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.10);
}
textarea { resize: vertical; min-height: 120px; }
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a6a7e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form__note {
  font-size: 0.77rem;
  color: var(--grey-500);
  text-align: center;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--navy);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}
.footer__brand .nav-logo { height: 36px; margin-bottom: 14px; }
.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 240px;
}
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===========================
   SERVICE PAGE — HERO
   =========================== */
.service-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.service-hero .wrap { position: relative; }
.service-hero__inner {
  max-width: 700px;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255, 102, 0, 0.15);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 102, 0, 0.25);
}
.service-hero h1 {
  color: var(--white);
  margin-bottom: 18px;
}
.service-hero p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 32px;
}
.service-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===========================
   SERVICE PAGE — CAPABILITIES
   =========================== */
.service-caps { background: var(--white); }
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cap-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.cap-card:hover {
  border-color: var(--grey-200);
  box-shadow: 0 6px 24px rgba(15, 33, 55, 0.08);
  transform: translateY(-2px);
}
.cap-card h3 { margin-bottom: 8px; }
.cap-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===========================
   SERVICE PAGE — PROCESS
   =========================== */
.service-process { background: var(--off-white); }

/* ===========================
   SERVICE CTA
   =========================== */
.service-cta {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.service-cta .wrap { position: relative; }
.service-cta h2 { color: var(--white); margin-bottom: 14px; }
.service-cta p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}
.service-cta .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   INTAKE / START PROJECT
   =========================== */
.intake-hero {
  padding: calc(var(--nav-h) + 56px) 0 56px;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.intake-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.intake-hero .wrap { position: relative; }
.intake-hero h1 { color: var(--white); margin-bottom: 16px; max-width: 16ch; }
.intake-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
}
.intake-section { background: var(--off-white); padding: 72px 0 96px; }
.intake-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.intake-aside h3 { margin-bottom: 16px; font-size: 1.15rem; }
.intake-aside p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.intake-steps { display: flex; flex-direction: column; gap: 16px; }
.intake-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.intake-step__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intake-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  padding-top: 3px;
}
.intake-step strong { color: var(--navy); }

.intake-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(15, 33, 55, 0.07);
}
.intake-form-card .form__section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.intake-form-card .form__section-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--orange);
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.checkbox-item input[type="checkbox"]:focus { box-shadow: none; outline: 2px solid var(--orange); outline-offset: 2px; }
.checkbox-item span { font-size: 0.9rem; color: var(--text); cursor: pointer; }

/* ===========================
   ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .caps-grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .intake-grid { grid-template-columns: 1fr; gap: 48px; }
  .intake-aside { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 60px 0; }
  .section__header { margin-bottom: 36px; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy-light);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a {
    display: block;
    padding: 12px 24px;
    border-radius: 0;
    font-size: 0.95rem;
  }
  .nav-menu > li > .btn {
    margin: 10px 24px 0;
    width: calc(100% - 48px);
    justify-content: center;
  }

  /* Hero */
  .hero { padding-bottom: 64px; }
  .hero__inner { flex-direction: column; text-align: center; }
  .hero__text h1 { max-width: 100%; }
  .hero__text p { margin: 0 auto 28px; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__lion { width: 160px; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .process-step { padding-right: 0; }

  /* Caps */
  .caps-grid { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__copy p { margin: 0 auto; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Forms */
  .form__row { grid-template-columns: 1fr; }

  /* Intake */
  .intake-form-card { padding: 24px; }
}

@media (max-width: 480px) {
  .hero__lion { width: 120px; }
  .services-grid { gap: 12px; }
  .cta-band { padding: 56px 0; }
}
