:root {
  --ink: #0B0E14;
  --ink-2: #11151E;
  --ink-3: #1A2030;
  --line-dark: rgba(255,255,255,0.10);
  --line-strong-dark: rgba(255,255,255,0.20);
  --text-dim: rgba(236,232,223,0.72);
  --text-muted: rgba(236,232,223,0.50);

  --cream: #F2EEE5;
  --cream-2: #ECE6D8;
  --cream-3: #E4DDC9;
  --line-light: rgba(11,14,20,0.10);
  --line-strong-light: rgba(11,14,20,0.20);
  --text-on-cream: #0B0E14;
  --text-on-cream-dim: rgba(11,14,20,0.70);
  --text-on-cream-muted: rgba(11,14,20,0.48);

  --cyan: #22E4FF;
  --cobalt: #2E5BFF;
  --orange: #FF5B1F;
  --lime: #D8F24A;

  --accent: var(--lime);

  --pad: 48px;
  --pad-y: 120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Geist", -apple-system, system-ui, sans-serif;
  background: var(--ink);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  width: 100%;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--ink); }

.mono {
  font-family: "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
}

.shell {
  width: 100%;
  padding: 0 var(--pad);
}

/* SECTIONS */
section { position: relative; }
.sec-dark { background: var(--ink); color: var(--cream); }
.sec-cream { background: var(--cream); color: var(--ink); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,14,20,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--cream);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
}
.nav-left { display: flex; align-items: center; gap: 64px; }
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-decoration: none;
  cursor: pointer;
}
.logo-mark { width: 24px; height: 24px; }
.logo-name span { color: var(--accent); }

.nav-links { display: flex; gap: 36px; }
.nav-link {
  background: none; border: none; padding: 0;
  font-family: "Geist", sans-serif;
  color: var(--cream);
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 400;
  opacity: 0.72;
  transition: opacity 120ms ease, color 120ms ease;
  position: relative;
  letter-spacing: -0.005em;
}
.nav-link:hover { opacity: 1; color: var(--accent); }
.nav-link.active { opacity: 1; color: var(--cream); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -26px;
  height: 2px;
  background: var(--accent);
}

.nav-right { display: flex; align-items: center; gap: 18px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Geist", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 12px 20px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease, border-color 140ms ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .arr { display: inline-flex; transition: transform 200ms cubic-bezier(.2,.7,.3,1); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn-primary:hover { filter: brightness(1.08); }

.btn-ghost-dark {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong-dark);
}
.btn-ghost-dark:hover { border-color: var(--cream); }

.btn-ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong-dark);
}
.btn-ghost-light:hover { border-color: var(--ink); }

.btn-lg { padding: 16px 24px; font-size: 15.5px; }

/* (Eyebrow mono labels removed site-wide.) */

/* ============ HOMEPAGE HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 24px;
  padding-bottom: 64px;
}
.hero-tagline {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--accent);
  text-align: left;
  padding: 0 var(--pad) 36px;
  /* align with the nav logo on the left edge */
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.hero-copy {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}
.hero-ctas { justify-content: center; }
.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 92px;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  color: var(--cream);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; }

.hero-visual {
  position: relative;
  min-height: 580px;
}

/* hero footer strip — qualitative, not numbers */
.hero-trust {
  border-top: 1px solid var(--line-dark);
  margin-top: 80px;
  padding-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}
.hero-trust .item {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--cream);
  display: flex; align-items: center; gap: 12px;
}
.hero-trust .item::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  display: inline-block;
}

/* ============ PAGE HEADER (non-home pages) ============ */
.page-head {
  padding: 96px 0 80px;
  border-bottom: 1px solid currentColor;
  text-align: center;
}
.sec-dark .page-head { border-color: var(--line-dark); }
.sec-cream .page-head { border-color: var(--line-dark); }

.page-head h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 96px;
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 0 auto;
  max-width: 16ch;
}
.page-head h1 em {
  font-style: normal;
  color: var(--accent);
}
.page-head .lede {
  font-size: 19px;
  line-height: 1.55;
  max-width: 60ch;
  margin: 28px auto 0;
}
.sec-dark .page-head .lede { color: var(--text-dim); }
.sec-cream .page-head .lede { color: var(--text-dim); }
.page-head .lede em { font-style: italic; color: var(--accent); }

/* ============ SECTION HEAD (used inside pages) ============ */
.sec-head {
  text-align: center;
  padding: 96px 0 56px;
}
.sec-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 auto;
  max-width: 22ch;
}
.sec-head .sec-intro {
  font-size: 17.5px;
  line-height: 1.55;
  max-width: 60ch;
  margin: 22px auto 0;
}
.sec-dark .sec-head .sec-intro { color: var(--text-dim); }
.sec-cream .sec-head .sec-intro { color: var(--text-dim); }

/* ============ SERVICES ============ */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.svc {
  padding: 48px 40px 48px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
  position: relative;
  transition: background 200ms ease;
  text-align: center;
}
.svc:hover { background: var(--ink-2); }

.svc-icon-row {
  height: 110px;
  margin: 0 0 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.svc-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.svc-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 44ch;
  margin: 0 auto;
}

/* ============ INDUSTRIES ============ */
.industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}
.ind {
  border-right: 1px solid var(--line-dark);
  padding: 48px 28px 48px;
  position: relative;
  transition: background 200ms ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ind:last-child { border-right: none; }
.ind:hover { background: var(--ink-2); }
.ind.optional { opacity: 0.78; }
.ind-badge {
  position: absolute;
  top: 16px; right: 16px;
}
.ind-badge .badge {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--orange);
}
.ind h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 24px 0 16px;
  line-height: 1.02;
}
.ind p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
  max-width: 32ch;
}
.ind-uses {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  width: 100%;
  border-top: 1px solid var(--line-dark);
}
.ind-uses li {
  padding: 12px 8px;
  font-family: "Geist", sans-serif;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text-dim);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ind-uses li:last-child { border-bottom: none; }
.ind-uses li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--accent);
  flex: 0 0 5px;
  transform: rotate(45deg);
}

/* ============ WHY ============ */
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-bottom: 80px;
}
.why-quote {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.22;
  letter-spacing: -0.022em;
  color: var(--cream);
  max-width: 64ch;
  margin: 0 auto;
  text-align: center;
}
.why-quote em {
  font-style: normal;
  color: var(--accent);
}
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  border-top: 1px solid var(--line-dark);
}
.why-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.why-item .why-t {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  letter-spacing: -0.012em;
  color: var(--cream);
}

/* ============ PROCESS ============ */
.process-wrap { padding-bottom: 140px; }
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  border-top: 1px solid var(--line-dark);
}
.proc {
  padding: 56px 36px 0;
  border-left: 1px solid var(--line-dark);
  position: relative;
  min-height: 320px;
  text-align: center;
}
.proc:first-child { border-left: 1px solid var(--line-strong-dark); }
.proc h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 20px;
}
.proc p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 34ch;
  margin: 0 auto;
}

/* ============ TRUST ============ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  margin-bottom: 64px;
}
.trust {
  padding: 36px 26px 32px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  min-height: 240px;
}
.trust .title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--cream);
  margin-top: auto;
}

/* ============ FINAL CTA ============ */
.cta-section {
  padding: 140px 0 140px;
  position: relative;
}
.cta-inner {
  position: relative;
  padding: 110px 88px 120px;
  border: 1px solid var(--line-strong-dark);
  background: var(--ink-2);
  overflow: hidden;
  text-align: center;
}
.cta-inner h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 auto 28px;
  max-width: 16ch;
  position: relative;
  z-index: 1;
}
.cta-inner h2 em {
  font-style: normal;
  color: var(--orange);
}
.cta-inner p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0 auto 44px;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 40px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.foot-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-family: "Geist Mono", monospace;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.foot-col h4 {
  font-family: "Geist Mono", monospace;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a, .foot-col button {
  background: none; border: none; padding: 0;
  font-family: "Geist", sans-serif;
  color: var(--cream);
  text-decoration: none;
  font-size: 14.5px;
  opacity: 0.78;
  cursor: pointer;
  text-align: left;
}
.foot-col a:hover, .foot-col button:hover { opacity: 1; color: var(--accent); }

.foot-brand .logo { font-size: 24px; margin-bottom: 18px; }
.foot-brand p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 36ch;
  margin: 0 0 24px;
}
.foot-email {
  display: inline-block;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 140ms ease;
}
.foot-email:hover { color: var(--accent); }
.contact-block a.v { text-decoration: none; transition: color 140ms ease; }
.contact-block a.v:hover { color: var(--accent); }

/* ============ SOLUTIONS PAGE ============ */
.solutions-list {
  border-top: 1px solid var(--line-dark);
}
.sol-item {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 64px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
  position: relative;
  cursor: pointer;
  transition: padding-left 240ms ease;
}
.sol-item:hover { padding-left: 12px; }
.sol-item:hover .sol-arr { transform: translate(6px, 0); color: var(--cream); opacity: 1; }
.sol-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
}
.sol-body { display: flex; flex-direction: column; gap: 18px; }
.sol-body p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
  max-width: 56ch;
}
.sol-meta {
  display: flex;
  gap: 36px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.sol-arr {
  position: absolute;
  right: 0; top: 56px;
  color: var(--text-muted);
  transition: all 240ms ease;
  opacity: 0.5;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 0 140px;
  align-items: center;
}
.contact-card {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
}
.contact-card.contact-card--email {
  padding: 40px 48px 36px;
}
.contact-card.contact-card--meeting {
  padding: 48px 56px 56px;
}
.contact-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--cream);
}
.contact-card--meeting h2 { font-size: 56px; margin-bottom: 18px; }
.contact-card h2 em { font-style: normal; color: var(--accent); }
.contact-card .body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 auto 24px;
  max-width: 56ch;
}
.contact-card--meeting .body { font-size: 17px; max-width: 64ch; margin-bottom: 32px; }
.contact-card .body em { font-style: normal; color: var(--accent); }
.contact-card .btn { align-self: center; }

.contact-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
  border-top: 1px solid var(--line-dark);
  margin-top: 28px;
  padding-top: 4px;
  text-align: left;
  justify-content: center;
}
.contact-block {
  display: flex; align-items: baseline; gap: 14px;
  padding: 12px 0;
}
.contact-block .k {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-block .v {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.calendar-embed {
  width: 100%;
  max-width: 880px;
  margin: 0 auto 24px;
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  overflow: hidden;
}
.calendar-embed iframe {
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
  background: var(--cream);
}
.booking-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}
.calendar-placeholder {
  background: var(--ink);
  border: 1px dashed var(--line-strong-dark);
  padding: 28px 24px;
  margin-top: 8px;
}
.calendar-placeholder p {
  margin: 0 0 12px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
}
.calendar-placeholder p:last-child { margin-bottom: 0; }
.calendar-placeholder a { color: var(--accent); text-decoration: none; }
.calendar-placeholder .hint {
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--line-dark);
  padding-top: 12px;
}
.calendar-placeholder code {
  background: var(--ink-3);
  padding: 1px 6px;
  border-radius: 2px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--cream);
}

/* ============ ABOUT PAGE ============ */
.about-manifesto {
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--line-dark);
  text-align: center;
}
.about-manifesto h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin: 0 auto;
  max-width: 56ch;
}
.about-manifesto h2 em { font-style: normal; color: var(--accent); }

/* ============ HOME · INDUSTRY STRIP ============ */
.home-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.home-svc {
  padding: 36px 28px 36px;
  border-right: 1px solid var(--line-dark);
  background: var(--ink);
  cursor: pointer;
  transition: background 200ms ease;
  text-align: center;
}
.home-svc:last-child { border-right: none; }
.home-svc:hover { background: var(--ink-2); }
.home-svc:hover .home-svc-arr { transform: translate(4px, -4px); color: var(--cream); }
.home-svc-arr {
  color: var(--text-muted);
  transition: all 240ms cubic-bezier(.2,.7,.3,1);
}
.home-svc-top {
  display: flex; justify-content: center; align-items: flex-start;
  margin-bottom: 36px;
}
.home-svc h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.home-svc p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

/* page transition */
.page-wrap {
  animation: pageIn 320ms cubic-bezier(.2,.7,.3,1) both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

svg { display: block; }

/* density tweak */
body[data-density="comfy"] { --pad: 48px; }
body[data-density="tight"] { --pad: 28px; }
body[data-density="airy"]  { --pad: 80px; }

/* =============================================================
   RESPONSIVE — tablet (≤1024) and mobile (≤640)
============================================================= */
@media (max-width: 1024px) {
  :root { --pad: 32px; --pad-y: 80px; }

  .hero h1 { font-size: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 420px; }

  .page-head { padding: 64px 0 56px; }
  .page-head h1 { font-size: 64px; }
  .page-head .lede { font-size: 17px; }

  .sec-head { padding: 72px 0 40px; }
  .sec-head h2 { font-size: 44px; }

  .services { grid-template-columns: 1fr 1fr; }
  .home-services { grid-template-columns: 1fr 1fr; }
  .home-svc { border-right: 1px solid var(--line-dark); }
  .home-svc:nth-child(2) { border-right: none; }
  .home-svc:nth-child(1), .home-svc:nth-child(2) { border-bottom: 1px solid var(--line-dark); }

  .industries { grid-template-columns: 1fr 1fr; }
  .ind:nth-child(2) { border-right: none; }
  .ind:nth-child(1), .ind:nth-child(2) { border-bottom: 1px solid var(--line-dark); }

  .why-quote { font-size: 26px; }
  .why-list { grid-template-columns: 1fr; }

  .process { grid-template-columns: 1fr; }
  .proc { border-left: none; border-top: 1px solid var(--line-dark); min-height: 0; padding: 40px 24px 32px; }
  .proc:first-child { border-left: none; border-top: 1px solid var(--line-strong-dark); }
  .proc h3 { font-size: 38px; }

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

  .cta-section { padding: 96px 0; }
  .cta-inner { padding: 72px 40px 80px; }
  .cta-inner h2 { font-size: 56px; }

  .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-brand { grid-column: 1 / -1; }

  .sol-item { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .sol-arr { position: static; align-self: flex-start; }

  .contact-card.contact-card--meeting { padding: 36px 28px 40px; }
  .contact-card--meeting h2 { font-size: 44px; }
  .calendar-embed iframe { height: 680px; }

  .about-manifesto h2 { font-size: 32px; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; }

  body { font-size: 15px; }

  /* NAV — collapse links, keep logo + CTA */
  .nav-inner { padding: 14px var(--pad); gap: 12px; }
  .nav-left { gap: 20px; }
  .nav-links { display: none; }
  .nav-right .btn { padding: 10px 14px; font-size: 13px; }
  .nav-right .btn .arr { display: none; }
  .logo { font-size: 17px; }

  /* HERO */
  .hero { padding-top: 16px; padding-bottom: 48px; }
  .hero-tagline { font-size: 16px; padding-bottom: 24px; text-align: left; }
  .hero h1 { font-size: 40px; line-height: 1; margin-bottom: 24px; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { justify-content: center; }
  .hero-visual { min-height: 280px; }
  .hero-trust { margin-top: 48px; gap: 16px 24px; font-size: 14px; }
  .hero-trust .item { font-size: 14px; }

  /* PAGE / SECTION HEADERS */
  .page-head { padding: 48px 0 40px; }
  .page-head h1 { font-size: 40px; }
  .page-head .lede { font-size: 15.5px; margin-top: 20px; }

  .sec-head { padding: 56px 0 32px; }
  .sec-head h2 { font-size: 32px; }
  .sec-head .sec-intro { font-size: 15.5px; margin-top: 16px; }

  /* CARDS — all to single column */
  .services { grid-template-columns: 1fr; }
  .svc { padding: 36px 24px; border-right: none; }
  .svc-title { font-size: 24px; }

  .home-services { grid-template-columns: 1fr; }
  .home-svc { border-right: none; border-bottom: 1px solid var(--line-dark); padding: 28px 24px; }
  .home-svc:last-child { border-bottom: none; }

  .industries { grid-template-columns: 1fr; }
  .ind { border-right: none; border-bottom: 1px solid var(--line-dark); padding: 36px 24px; }
  .ind:last-child { border-bottom: none; }
  .ind h3 { font-size: 26px; }

  .why-quote { font-size: 22px; }
  .why-item .why-t { font-size: 17px; }

  .process { grid-template-columns: 1fr; }
  .proc h3 { font-size: 30px; }

  .trust-grid { grid-template-columns: 1fr 1fr; margin-bottom: 80px; }
  .trust { padding: 24px 16px; min-height: 200px; }
  .trust .title { font-size: 17px; }

  /* CTA */
  .cta-section { padding: 64px 0; }
  .cta-inner { padding: 48px 24px 56px; }
  .cta-inner h2 { font-size: 36px; }
  .cta-inner p { font-size: 16px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  /* SOLUTIONS */
  .sol-title { font-size: 28px; }
  .sol-body p { font-size: 15px; }
  .sol-meta { gap: 18px; flex-wrap: wrap; }

  /* CONTACT */
  .contact-grid { gap: 28px; padding: 32px 0 80px; }
  .contact-card { padding: 32px 22px 28px; }
  .contact-card.contact-card--email { padding: 28px 20px 24px; }
  .contact-card.contact-card--meeting { padding: 32px 18px 32px; }
  .contact-card h2 { font-size: 32px; }
  .contact-card--meeting h2 { font-size: 36px; }
  .contact-card .body { font-size: 15px; }
  .contact-blocks { flex-direction: column; gap: 0; }
  .contact-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .contact-block:last-child { border-bottom: none; }
  .contact-block .v { font-size: 14px; word-break: break-word; }

  .calendar-embed iframe { height: 620px; }

  /* FOOTER */
  .foot-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .foot-bot { flex-direction: column; gap: 10px; }
  .foot-brand .logo { font-size: 21px; }

  /* ABOUT */
  .about-manifesto { padding: 56px 0 64px; }
  .about-manifesto h2 { font-size: 24px; }
}
