/* ═══════════════════════════════════════════════════
   Kokoro Co., Ltd. — Global Design Tokens & Base
   ═══════════════════════════════════════════════════ */
:root {
  --ink:     #0D1B2A;
  --paper:   #F7F4EF;
  --gold:    #B8963E;
  --gold-lt: #D4AE5A;
  --smoke:   #E4E0D8;
  --mid:     #5A6475;
  --pale:    #F0EDE7;
  --white:   #FFFFFF;
  --red:     #8B1A1A;

  --font: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max:  1200px;
  --hh:   72px;

  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Utility ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }
.section--pale { background: var(--pale); }
.section--ink { background: var(--ink); color: var(--paper); }
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.label--light { color: var(--gold-lt); }
h1, h2, h3, h4 { font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -.02em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }
p { color: var(--mid); line-height: 1.75; }
.ink p { color: rgba(247,244,239,.7); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 2px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-outline {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(247,244,239,.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--smoke);
}
.btn-outline-dark:hover { border-color: var(--ink); }
.divider { width: 40px; height: 2px; background: var(--gold); margin: 20px 0 28px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hh);
  background: var(--ink);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.25); }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; fill: var(--ink); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: .875rem; font-weight: 600; letter-spacing: .04em; color: var(--paper); }
.logo-sub  { font-size: .7rem; letter-spacing: .08em; color: rgba(13,27,42,.6); text-transform: uppercase; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(247,244,239,.65);
  transition: color .2s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--paper); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-x {
  display: flex;
  align-items: center;
  color: rgba(13,27,42,.6);
  transition: color .2s var(--ease);
}
.nav-x:hover { color: var(--paper); }
.nav-x svg { width: 16px; height: 16px; }
.nav-end {
  display: flex;
  align-items: center;
  gap: 24px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--hh); left: 0; right: 0;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 99;
  padding: 24px 40px;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(247,244,239,.7);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .nav-x-mob {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: .8rem;
  color: rgba(13,27,42,.55);
  border-bottom: none;
}
.mobile-nav .nav-x-mob:hover { color: var(--gold); }

/* ── Page wrapper ── */
.page { padding-top: var(--hh); }

/* ── Hero ── */
.hero {
  min-height: calc(100vh - var(--hh));
  background: var(--ink);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(184,150,62,.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 15% 80%, rgba(139,26,26,.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247,244,239,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,244,239,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.hero-eyebrow { margin-bottom: 24px; }
.hero h1 { color: var(--paper); max-width: 700px; margin-bottom: 28px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lead {
  max-width: 520px;
  color: rgba(247,244,239,.6);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-metrics {
  display: flex;
  gap: 56px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,.1);
}
.metric-val {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--paper);
  letter-spacing: -.03em;
  line-height: 1;
}
.metric-val span { color: var(--gold); font-weight: 500; }
.metric-lbl {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(13,27,42,.55);
  margin-top: 6px;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--smoke);
  border-radius: 2px;
  padding: 36px;
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.card:hover { box-shadow: 0 8px 40px rgba(13,27,42,.08); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--pale);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { font-size: .9rem; }
.card-dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 2px;
  padding: 36px;
  transition: background .2s var(--ease);
}
.card-dark:hover { background: rgba(255,255,255,.06); }
.card-dark h3 { color: var(--paper); margin-bottom: 10px; }
.card-dark p { color: rgba(13,27,42,.6); font-size: .9rem; }
.card-dark .card-icon { background: rgba(184,150,62,.12); }

/* ── Section head ── */
.section-head { margin-bottom: 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { max-width: 560px; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }
.section-head.center .divider { margin: 20px auto 28px; }

/* ── Feature strip ── */
.feature-strip {
  display: flex;
  gap: 0;
  border: 1px solid var(--smoke);
  border-radius: 2px;
  overflow: hidden;
}
.feature-item {
  flex: 1;
  padding: 40px 32px;
  border-right: 1px solid var(--smoke);
}
.feature-item:last-child { border-right: none; }
.feature-num {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--smoke);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.feature-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.feature-item p { font-size: .875rem; }

/* ── Testimonial ── */
.testimonial {
  border-left: 2px solid var(--gold);
  padding: 24px 32px;
  background: var(--white);
}
.testimonial q {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
  display: block;
  margin-bottom: 16px;
}
.testimonial-author { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--mid); }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--ink);
  padding: 80px 0 72px;
}
.page-hero .label { margin-bottom: 16px; }
.page-hero h1 { color: var(--paper); font-size: clamp(2rem, 4vw, 3rem); max-width: 600px; }
.page-hero p { color: rgba(247,244,239,.55); margin-top: 20px; max-width: 500px; font-size: 1.05rem; }

/* ── About ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 4/5;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(184,150,62,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(139,26,26,.1) 0%, transparent 50%);
}
.about-kanji {
  position: relative;
  font-size: 8rem;
  color: rgba(247,244,239,.07);
  font-weight: 700;
  user-select: none;
  line-height: 1;
}
.about-tag {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--gold);
  color: var(--ink);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 2px;
}
.value-list { display: flex; flex-direction: column; gap: 24px; }
.value-item { display: flex; gap: 20px; align-items: flex-start; }
.value-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.value-item h4 { margin-bottom: 4px; font-weight: 600; }

/* ── Services ── */
.service-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--smoke);
  padding: 48px 0;
  align-items: start;
}
.service-row:first-child { border-top: 1px solid var(--smoke); }
.service-num {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 4px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--smoke);
  color: var(--mid);
  padding: 5px 10px;
  border-radius: 2px;
}
.service-body h3 { margin-bottom: 12px; }
.service-body p { margin-bottom: 16px; }

/* ── Clients ── */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--smoke); border: 1px solid var(--smoke); }
.industry-cell {
  background: var(--white);
  padding: 32px 28px;
}
.industry-cell h4 { margin-bottom: 8px; font-weight: 600; }
.industry-cell p { font-size: .875rem; }
.reach-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--smoke);
}
.reach-item {
  padding: 32px;
  border-right: 1px solid var(--smoke);
  text-align: center;
}
.reach-item:last-child { border-right: none; }
.reach-val { font-size: 2rem; font-weight: 300; color: var(--ink); letter-spacing: -.03em; }
.reach-val span { color: var(--gold); }
.reach-lbl { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--mid); margin-top: 4px; }

/* ── Contact ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.office-card { margin-bottom: 40px; }
.office-card:last-child { margin-bottom: 0; }
.office-name {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.office-card h3 { font-size: 1rem; margin-bottom: 8px; }
.office-addr { font-size: .875rem; color: var(--mid); line-height: 1.7; margin-bottom: 16px; }
.office-map {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 2px;
  display: block;
}
.contact-form label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--smoke);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: .9rem;
  margin-bottom: 20px;
  transition: border-color .2s var(--ease);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row > div { display: flex; flex-direction: column; }
.form-row label, .form-row input { margin-bottom: 0; }
.form-row > div > label { margin-bottom: 8px; }
.form-row > div > input { margin-bottom: 0; }
.form-group { margin-bottom: 20px; }
.form-note { font-size: .8rem; color: var(--mid); margin-top: 12px; }
.form-note a { color: var(--gold); }
.form-success {
  display: none;
  background: #f0faf4;
  border: 1px solid #b8dfc9;
  border-radius: 2px;
  padding: 20px 24px;
  color: #1a6040;
  font-size: .9rem;
  margin-top: 16px;
}

/* ── Legal pages ── */
.legal-body { max-width: 760px; margin: 0 auto; padding: 80px 40px; }
.legal-body h2 { font-size: 1.4rem; margin: 40px 0 12px; }
.legal-body h3 { font-size: 1.1rem; margin: 28px 0 8px; }
.legal-body p { margin-bottom: 16px; }
.legal-body ul { padding-left: 24px; margin-bottom: 16px; }
.legal-body ul li { margin-bottom: 8px; font-size: .9rem; color: var(--mid); list-style: disc; }
.legal-body a { color: var(--gold); }
.legal-meta { font-size: .8rem; color: var(--mid); margin-bottom: 40px; }

/* ── Footer ── */
.site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,.1);
  padding: 64px 0 32px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 56px;
}
.footer-logo { margin-bottom: 24px; }
.footer-tagline { font-size: .85rem; color: rgba(13,27,42,.6); max-width: 280px; line-height: 1.7; margin-bottom: 28px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(13,27,42,.6);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 16px; margin-top: 4px; }
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(13,27,42,.6);
  transition: color .2s;
}
.footer-social-link:hover { color: var(--gold); }
.footer-social-link svg { width: 17px; height: 17px; }
.footer-social-link svg path { fill: #0D1B2A; }
.footer-social-link svg rect,
.footer-social-link svg circle { stroke: #0D1B2A; }
.footer-x {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(13,27,42,.6);
  margin-top: 20px;
  transition: color .2s;
}
.footer-x:hover { color: var(--gold-lt); }
.footer-x svg { width: 14px; height: 14px; }
.footer-contacts { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 360px; }
.footer-office-title {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-office-addr {
  font-size: .8rem;
  color: rgba(13,27,42,.55);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-contact-detail {
  font-size: .78rem;
  color: rgba(13,27,42,.6);
  margin-bottom: 4px;
}
.footer-contact-detail a { color: rgba(13,27,42,.6); transition: color .2s; }
.footer-contact-detail a:hover { color: var(--gold); }
.footer-map {
  display: block;
  width: 100%;
  height: 160px;
  border: none;
  margin-top: 16px;
  border-radius: 2px;
  opacity: .75;
  filter: grayscale(30%);
}
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: .75rem; color: rgba(13,27,42,.5); display: flex; flex-direction: column; gap: 4px; }
.footer-corpnum { font-size: .7rem; color: rgba(13,27,42,.35); letter-spacing: .02em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .75rem; color: rgba(13,27,42,.5); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── Map section (contact page) ── */
.maps-section { padding: 0; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: .75rem;
  color: rgba(247,244,239,.35);
  letter-spacing: .04em;
}
.breadcrumb a { color: rgba(247,244,239,.35); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(247,244,239,.6); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--gold);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--ink); margin-bottom: 16px; }
.cta-banner p { color: rgba(13,27,42,.65); max-width: 500px; margin: 0 auto 36px; }
.cta-banner .btn-primary { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.cta-banner .btn-primary:hover { background: #162130; border-color: #162130; }

/* ── Clients logos placeholder ── */
.clients-marquee {
  overflow: hidden;
  position: relative;
}
.clients-marquee::before,
.clients-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 1;
}
.clients-marquee::before { left: 0; background: linear-gradient(90deg, var(--pale), transparent); }
.clients-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--pale), transparent); }
.clients-track {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-logo-item {
  height: 40px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 0 24px;
  border: 1px solid var(--smoke);
  border-radius: 2px;
  background: var(--white);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════
   Responsive
   ══════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-contacts { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4, .about-split, .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .feature-strip { flex-direction: column; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--smoke); }
  .feature-item:last-child { border-bottom: none; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-contacts { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-metrics { flex-direction: column; gap: 28px; }
  .service-row { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .reach-strip { grid-template-columns: repeat(2, 1fr); }
  .reach-item { border-bottom: 1px solid var(--smoke); }
  .form-row { grid-template-columns: 1fr; }
  .nav-links, .nav-end .btn { display: none; }
  .nav-x { display: none; }
  .burger { display: flex; }
  .hero h1 { font-size: 2rem; }
  .hero-content { padding: 48px 20px; }
  .page-hero { padding: 48px 0; }
  .legal-body { padding: 48px 20px; }
}
@media (max-width: 480px) {
  .reach-strip { grid-template-columns: 1fr; }
}
