/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--ink-500);
  background-color: var(--paper);
  line-height: var(--lh-base);
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink-700);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-h1); font-weight: 600; }
h2 { font-size: var(--fs-h2); font-weight: 600; }
h3 { font-size: var(--fs-h3); font-weight: 600; }

p { max-width: 68ch; }

a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.18s var(--ease);
}
a:hover { color: var(--accent); }

strong { color: var(--ink-700); font-weight: 600; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--s-24);
}
.section--alt {
  background-color: var(--paper-2);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease),
              box-shadow 0.18s var(--ease), transform 0.15s var(--ease);
  min-height: 44px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background-color: var(--accent-ink);
  border-color: var(--accent-ink);
  color: #fff;
}

.btn-ghost {
  background-color: transparent;
  color: var(--ink-700);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink-500);
  color: var(--ink-900);
}

.btn-ghost-light {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-ghost-light:hover {
  border-color: #fff;
  color: #fff;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header--scrolled {
  box-shadow: 0 1px 12px rgba(14,26,36,.08);
}
.site-header--hidden {
  transform: translateY(-100%);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--s-8);
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink-900);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo:hover { color: var(--ink-900); }
.logo-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
  margin-bottom: 2px;
  flex-shrink: 0;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-500);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: color 0.18s, background-color 0.18s;
}
.nav-link:hover { color: var(--ink-900); background-color: var(--paper-2); }
.nav-link.active { color: var(--ink-900); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background-color: var(--ink-700);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.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; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--ink-900);
  color: rgba(255,255,255,.65);
  padding-block: var(--s-16) var(--s-8);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: var(--s-8);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: var(--s-4);
}
.footer-brand p {
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  max-width: 28ch;
}

.footer-grid h3 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-4);
}

.footer-grid ul { display: flex; flex-direction: column; gap: var(--s-3); }
.footer-grid a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-grid a:hover { color: #fff; }

.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  font-size: var(--fs-sm);
}
.footer-contact a { text-decoration: none; }

.footer-bottom {
  padding-top: var(--s-6);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.3);
}

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}

/* ===== SECTION HEADING ===== */
.section-heading {
  margin-bottom: var(--s-12);
}
.section-heading h2 { margin-bottom: var(--s-3); }
.section-heading p {
  color: var(--ink-500);
  font-size: var(--fs-lg);
  max-width: 54ch;
}

/* ===== HERO ===== */
.hero {
  padding-block: var(--s-24) var(--s-20);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--s-6);
  background-color: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: var(--s-1) var(--s-3);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}
.hero h1 { margin-bottom: var(--s-6); color: var(--ink-900); }
.hero-lead {
  font-size: var(--fs-lg);
  color: var(--ink-500);
  margin-bottom: var(--s-8);
  max-width: 54ch;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual svg {
  width: 100%;
  max-width: 480px;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: var(--s-6);
  background-color: var(--paper-2);
}
.trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-8);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-item-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  background-color: var(--paper);
  transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease),
              border-color 0.22s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background-color: var(--accent);
  opacity: 0;
  transition: opacity 0.22s var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
  border-color: var(--line);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background-color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-6);
  color: var(--accent);
  flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; stroke-width: 1.5; }

.service-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--s-3);
  color: var(--ink-700);
}
.service-card p {
  font-size: var(--fs-sm);
  color: var(--ink-500);
  line-height: var(--lh-base);
  max-width: unset;
}

/* ===== HOW WE WORK ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(16.66% + var(--s-6));
  right: calc(16.66% + var(--s-6));
  height: 1px;
  background-color: var(--line);
}

.step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-color: var(--ink-900);
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-6);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: var(--s-3);
}
.step p { font-size: var(--fs-sm); max-width: unset; }

/* ===== KPI / RESULTS ===== */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.kpi-item {
  padding: var(--s-8);
  background-color: var(--paper);
  border-right: 1px solid var(--line);
}
.kpi-item:nth-child(3n) { border-right: none; }
.kpi-item:nth-child(n+4) { border-top: 1px solid var(--line); }

.kpi-label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--ink-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-3);
}
.kpi-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1;
  margin-bottom: var(--s-2);
}
.kpi-desc {
  font-size: var(--fs-xs);
  color: var(--ink-300);
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-6) var(--s-8);
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--ink-700);
  transition: background-color 0.15s;
}
.faq-item summary:hover { background-color: var(--paper-2); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--ink-300);
  transition: transform 0.25s var(--ease), color 0.15s;
}
details[open] .faq-chevron { transform: rotate(180deg); color: var(--accent); }

.faq-body {
  padding: 0 var(--s-8) var(--s-6);
  font-size: var(--fs-sm);
  color: var(--ink-500);
  line-height: var(--lh-base);
  max-width: unset;
}

/* ===== CTA BAND ===== */
.cta-band {
  background-color: var(--ink-900);
  padding-block: var(--s-20);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
  max-width: 20ch;
}
.cta-band-actions {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-band-phone {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.5);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s;
}
.cta-band-phone:hover { color: #fff; }

/* ===== PAGE INTRO ===== */
.page-intro {
  padding-block: var(--s-20) var(--s-16);
  border-bottom: 1px solid var(--line);
}
.page-intro h1 { margin-bottom: var(--s-4); }
.page-intro p {
  font-size: var(--fs-lg);
  color: var(--ink-500);
  max-width: 60ch;
}

/* ===== ABOUT: STORY ===== */
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--s-16);
  align-items: start;
}
.story-aside { position: sticky; top: 88px; }
.story-aside h2 { font-size: var(--fs-h2); }
.story-body { display: flex; flex-direction: column; gap: var(--s-6); }
.story-body p { font-size: var(--fs-base); max-width: unset; }

/* ===== ABOUT: PRINCIPLES ===== */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.principle {
  padding: var(--s-8);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.principle-num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: var(--s-4);
}
.principle h3 { font-size: 1.25rem; margin-bottom: var(--s-3); }
.principle p { font-size: var(--fs-sm); max-width: unset; }

/* ===== ABOUT: TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  max-width: 640px;
}
.team-card {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  padding: var(--s-6);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.team-monogram {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background-color: var(--ink-900);
  color: rgba(255,255,255,.7);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-card h3 { font-size: var(--fs-base); margin-bottom: var(--s-1); }
.team-card p { font-size: var(--fs-xs); color: var(--ink-300); max-width: unset; }

/* ===== ABOUT: INFO TABLE ===== */
.info-table {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 720px;
}
.info-table dl { display: grid; }
.info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: none; }
.info-row dt {
  padding: var(--s-4) var(--s-6);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-700);
  background-color: var(--paper-2);
  border-right: 1px solid var(--line);
}
.info-row dd {
  padding: var(--s-4) var(--s-6);
  font-size: var(--fs-sm);
  color: var(--ink-500);
}

/* ===== CONTACT CARD ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s-10);
  align-items: start;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  position: sticky;
  top: 88px;
}
.contact-card h2 {
  font-size: var(--fs-h3);
  margin-bottom: var(--s-6);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
}
.contact-info-icon {
  width: 38px; height: 38px;
  background-color: var(--accent-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; stroke-width: 1.5; }
.contact-info-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-1);
}
.contact-info-value {
  font-size: var(--fs-sm);
  color: var(--ink-700);
  font-weight: 500;
}
.contact-info-value a { text-decoration: none; font-weight: 500; color: var(--ink-700); }
.contact-info-value a:hover { color: var(--accent); }
.contact-info-hours {
  font-size: var(--fs-xs);
  color: var(--ink-300);
  margin-top: var(--s-1);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap h2 {
  font-size: var(--fs-h3);
  margin-bottom: var(--s-6);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: var(--s-2); }
.form-label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-700);
}
.form-label .required {
  color: var(--accent);
  margin-left: 2px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.6875rem var(--s-4);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--ink-700);
  background-color: var(--paper);
  transition: border-color 0.18s, box-shadow 0.18s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(194,65,12,.12);
}
.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid {
  border-color: var(--warn);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: var(--lh-base); }
.form-select {
  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='%235A6B7B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-error {
  font-size: var(--fs-xs);
  color: var(--warn);
  min-height: 1.2em;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-check-label {
  font-size: var(--fs-sm);
  color: var(--ink-500);
  line-height: var(--lh-base);
}
.form-check-label a { color: var(--accent-ink); font-weight: 500; }

.form-submit { margin-top: var(--s-2); }

.form-success {
  display: none;
  text-align: center;
  padding: var(--s-12);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.form-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background-color: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-4);
  color: var(--success);
}
.form-success h3 { font-size: var(--fs-h3); margin-bottom: var(--s-3); color: var(--ink-900); }
.form-success p { font-size: var(--fs-sm); color: var(--ink-500); max-width: unset; }

/* ===== MAP EMBED ===== */
.map-wrap {
  margin-top: var(--s-12);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}
.map-caption {
  padding: var(--s-4) var(--s-6);
  font-size: var(--fs-xs);
  color: var(--ink-300);
  background-color: var(--paper-2);
  border-top: 1px solid var(--line);
}

/* ===== ACCESS INFO ===== */
.access-note {
  margin-top: var(--s-6);
  padding: var(--s-4) var(--s-6);
  background-color: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--ink-500);
}

/* ===== LEGAL PROSE ===== */
.legal-prose {
  max-width: 720px;
  margin-inline: auto;
  padding-block: var(--s-16);
}
.legal-prose h1 {
  margin-bottom: var(--s-2);
}
.legal-updated {
  font-size: var(--fs-sm);
  color: var(--ink-300);
  margin-bottom: var(--s-12);
}
.legal-prose h2 {
  font-size: var(--fs-h3);
  margin-top: var(--s-12);
  margin-bottom: var(--s-4);
}
.legal-prose h3 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-top: var(--s-6);
  margin-bottom: var(--s-3);
}
.legal-prose p {
  font-size: var(--fs-base);
  color: var(--ink-500);
  margin-bottom: var(--s-4);
  max-width: unset;
  line-height: var(--lh-loose);
}
.legal-prose ul {
  list-style: disc;
  padding-left: var(--s-6);
  margin-bottom: var(--s-4);
}
.legal-prose li {
  font-size: var(--fs-base);
  color: var(--ink-500);
  margin-bottom: var(--s-2);
  line-height: var(--lh-base);
}

/* ===== UTILITIES ===== */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1120px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .section { padding-block: var(--s-16); }

  .nav { position: fixed; inset: 68px 0 0; flex-direction: column; justify-content: flex-start;
         align-items: flex-start; padding: var(--s-8) var(--s-6); gap: var(--s-4);
         background-color: var(--paper); border-top: 1px solid var(--line);
         transform: translateX(100%); transition: transform 0.3s var(--ease); z-index: 99; }
  .nav--open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .nav-link { font-size: var(--fs-base); padding: var(--s-3) 0; display: block; width: 100%; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding-block: var(--s-16) var(--s-12); }

  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-item:nth-child(2n) { border-right: none; }
  .kpi-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .kpi-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .kpi-item:nth-child(2n) { border-right: none; }

  .cta-band-inner { flex-direction: column; align-items: flex-start; }

  .story-inner { grid-template-columns: 1fr; }
  .story-aside { position: static; }
  .principles-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 100%; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; }
}

@media (max-width: 640px) {
  :root { --container-pad: var(--s-4); }
  .footer-grid { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; }
  .info-row dt { border-right: none; border-bottom: 1px solid var(--line); }
  .form-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  .kpi-item { border-right: none !important; }
  .kpi-item:nth-child(n+2) { border-top: 1px solid var(--line) !important; }
}
