/* ============================================================
   AWANA Creative BPO — Landing Page
   Tokens
   ============================================================ */
:root {
  --paper: #F6F6F0;
  --paper-2: #EFEFE6;
  --paper-3: #E6E6DB;
  --ink: #1D1D1A;
  --ink-2: #3A3A35;
  --ink-3: #6B6B62;
  --rule: #D9D9CC;
  --rule-2: #C9C9BA;

  --yellow: #F2C94C;
  --green: #0D6258;
  --green-deep: #153B35;
  --green-tint: #E5EEEB;
  --coral: #C85F4B;
  --blue: #24586F;
  --blue-tint: #E1E9ED;

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;

  --max: 1240px;
  --pad-x: 56px;

  --font-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", sans-serif;
  --font-mincho: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-jp);
  font-feature-settings: "palt" 1;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ============================================================
   Viewport frames (Tweaks: desktop / mobile)
   ============================================================ */
.viewport-stage {
  min-height: 100vh;
  background: var(--paper);
}
.viewport-stage[data-mode="mobile"] {
  background: #2a2a26;
  display: flex;
  justify-content: center;
  padding: 28px 0 60px;
}
.viewport-stage[data-mode="mobile"] .device-frame {
  width: 390px;
  background: var(--paper);
  border: 1px solid #111;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 8px 20px rgba(0,0,0,.25);
  position: relative;
}
.viewport-stage[data-mode="mobile"] .device-frame::before {
  content: "";
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #111;
  border-radius: 14px;
  z-index: 20;
}
.viewport-stage[data-mode="mobile"] .device-scroll {
  height: 844px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 52px;
}

/* When in mobile frame, force narrow-layout overrides */
.viewport-stage[data-mode="mobile"] .container { width: 100%; padding: 0 20px; }
.viewport-stage[data-mode="mobile"] .site-header { padding: 12px 16px; }
.viewport-stage[data-mode="mobile"] .site-header .nav-links { display: none; }
.viewport-stage[data-mode="mobile"] .site-header .header-cta { padding: 8px 14px; font-size: 13px; }
.viewport-stage[data-mode="mobile"] .site-header .brand-title { font-size: 14px; }
.viewport-stage[data-mode="mobile"] .site-header .brand-sub { display: none; }

.viewport-stage[data-mode="mobile"] .hero {
  padding: 20px 20px 24px;
  grid-template-columns: 1fr;
  gap: 18px;
}
.viewport-stage[data-mode="mobile"] .hero .hero-eyebrow { font-size: 11px; }
.viewport-stage[data-mode="mobile"] .hero h1 { font-size: 38px; line-height: 1.05; margin-bottom: 18px; }
.viewport-stage[data-mode="mobile"] .hero .hero-sub { font-size: 17px; line-height: 1.55; }
.viewport-stage[data-mode="mobile"] .hero .hero-body { font-size: 14px; margin-bottom: 22px; }
.viewport-stage[data-mode="mobile"] .hero .hero-ctas { flex-wrap: wrap; }
.viewport-stage[data-mode="mobile"] .hero .hero-ctas .btn { flex: 1 1 100%; justify-content: center; }
.viewport-stage[data-mode="mobile"] .hero .hero-media { aspect-ratio: 16/9; max-height: 210px; }
.viewport-stage[data-mode="mobile"] .hero-meta { font-size: 11px; }

.viewport-stage[data-mode="mobile"] .proof-strip {
  grid-template-columns: 1fr 1fr;
  padding: 18px 20px;
  gap: 14px 18px;
}
.viewport-stage[data-mode="mobile"] .proof-strip .proof-item { font-size: 12px; }

.viewport-stage[data-mode="mobile"] section.section { padding: 56px 0; }
.viewport-stage[data-mode="mobile"] .section-head h2 { font-size: 26px; }
.viewport-stage[data-mode="mobile"] .section-head .section-lead { font-size: 14px; }
.viewport-stage[data-mode="mobile"] .priority-grid { grid-template-columns: 1fr; }
.viewport-stage[data-mode="mobile"] .priority-card.is-primary { padding: 24px; }
.viewport-stage[data-mode="mobile"] .priority-card .pc-tags { gap: 6px; }
.viewport-stage[data-mode="mobile"] .priority-card.is-light { padding: 18px 20px; }
.viewport-stage[data-mode="mobile"] .priority-card.is-light .pc-title { font-size: 18px; }

.viewport-stage[data-mode="mobile"] .menu-grid { grid-template-columns: 1fr; }
.viewport-stage[data-mode="mobile"] .menu-card { padding: 22px; }
.viewport-stage[data-mode="mobile"] .menu-card .menu-title { font-size: 19px; }
.viewport-stage[data-mode="mobile"] .menu-card .menu-price { font-size: 26px; }

.viewport-stage[data-mode="mobile"] .quality-grid { grid-template-columns: 1fr 1fr; }
.viewport-stage[data-mode="mobile"] .quality-card { padding: 18px; }
.viewport-stage[data-mode="mobile"] .quality-card .qc-title { font-size: 14px; }

.viewport-stage[data-mode="mobile"] .network-wrap { grid-template-columns: 1fr; gap: 24px; }
.viewport-stage[data-mode="mobile"] .network-headline { font-size: 22px; }
.viewport-stage[data-mode="mobile"] .network-map { grid-template-columns: 1fr; min-height: auto; padding: 22px 18px; }
.viewport-stage[data-mode="mobile"] .map-layer { width: min(272px, 78vw); }
.viewport-stage[data-mode="mobile"] .map-site-panel { grid-template-columns: 1fr; }

.viewport-stage[data-mode="mobile"] .flow-track { grid-template-columns: 1fr 1fr; }
.viewport-stage[data-mode="mobile"] .flow-step .fs-title { font-size: 15px; }

.viewport-stage[data-mode="mobile"] .contact-wrap { grid-template-columns: 1fr; gap: 28px; }
.viewport-stage[data-mode="mobile"] .contact-form { padding: 24px 20px; }
.viewport-stage[data-mode="mobile"] .form-row { grid-template-columns: 1fr; gap: 0; }

.viewport-stage[data-mode="mobile"] .site-footer { padding: 32px 20px; }
.viewport-stage[data-mode="mobile"] .footer-grid { grid-template-columns: 1fr; gap: 24px; }

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

section.section {
  padding: 110px 0;
  position: relative;
}
section.section.tight { padding: 80px 0; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .section-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--ink-3);
  margin-bottom: 14px;
  display: block;
}
.section-head h2 {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0;
}
.section-head .section-lead {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0;
  max-width: 52ch;
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad-x) 0;
  font-size: 12px;
  color: var(--ink-3);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb li + li::before {
  content: "/";
  color: var(--rule-2);
}
.breadcrumb a {
  color: var(--ink-2);
  border-bottom: 1px solid transparent;
}
.breadcrumb a:hover {
  color: var(--ink);
  border-color: currentColor;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 246, 240, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--rule);
  padding: 14px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.site-header.no-nav {
  grid-template-columns: auto auto;
  justify-content: space-between;
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header .brand-mark {
  width: 30px; height: 30px;
  background: var(--ink);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 600;
  border-radius: 2px;
  letter-spacing: 0;
}
.site-header .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.site-header .brand-title {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}
.site-header .brand-sub {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0;
  font-family: var(--font-mono);
  margin-top: 2px;
}
.site-header .nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.site-header .nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.site-header .nav-links a:hover { color: var(--ink); }
.site-header .nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--ink);
  transition: right .2s ease;
}
.site-header .nav-links a:hover::after { right: 0; }
.site-header .header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 11px 20px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--ink);
  transition: background .15s ease;
}
.site-header .header-cta:hover { background: var(--green-deep); border-color: var(--green-deep); }
.site-header .header-cta .arrow {
  display: inline-block;
  transform: translateY(-0.5px);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 80px var(--pad-x) 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--green);
  margin-bottom: 26px;
}
.hero .hero-eyebrow::before {
  content: "";
  width: 24px; height: 1.5px;
  background: var(--green);
}
.hero h1 {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero h1 .accent {
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 8px;
  height: 14px;
  background: var(--yellow);
  z-index: -1;
  opacity: .85;
}
.hero .hero-sub {
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 20px;
  font-feature-settings: "palt" 1;
}
.hero .hero-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 38em;
}
.hero .hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  letter-spacing: 0;
}
.hero-meta .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

.hero .hero-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-3);
}
.hero .hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero .hero-media .media-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(29,29,26,0.86);
  color: var(--paper);
  padding: 8px 12px;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0;
  border-radius: var(--r-sm);
  backdrop-filter: blur(4px);
}
.hero .hero-media .media-stat {
  position: absolute;
  right: -1px; top: 24px;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: var(--r-md) 0 0 var(--r-md);
  border: 1px solid var(--rule);
  border-right: none;
  box-shadow: -8px 8px 0 rgba(29,29,26,0.04);
}
.hero .hero-media .media-stat .ms-label {
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0;
  color: var(--ink-3);
  display: block;
}
.hero .hero-media .media-stat .ms-value {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 2px;
}
.hero .hero-media .media-stat .ms-value small {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 400;
  font-family: var(--font-jp);
  margin-left: 2px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform .1s ease, background .15s ease, border .15s ease;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn .arrow {
  font-size: 16px;
  transform: translateY(-1px);
  display: inline-block;
  transition: transform .15s ease;
}
.btn:hover .arrow { transform: translate(2px, -1px); }
.btn-link {
  flex-shrink: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  line-height: 1.3;
}

/* ============================================================
   Proof strip
   ============================================================ */
.proof-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px var(--pad-x);
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.proof-strip .proof-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
}
.proof-strip .proof-item .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  display: grid; place-items: center;
  font-size: 11px;
  margin-top: 2px;
}

/* ============================================================
   Priority section (3 services)
   ============================================================ */
.priority-section { background: var(--paper); }
.priority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  gap: 20px;
  align-items: stretch;
}
.priority-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.priority-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(29,29,26,0.06);
}
.priority-card .pc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0;
  color: var(--ink-3);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.priority-card .pc-num .num-chip {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--paper-2);
  border-radius: 50%;
  color: var(--ink);
  font-weight: 500;
  font-size: 12px;
}
.priority-card .pc-title {
  font-family: var(--font-mincho);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.3;
  letter-spacing: 0;
}
.priority-card .pc-desc {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0 0 22px;
  line-height: 1.7;
  flex: 1;
}
.priority-card .pc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.priority-card .pc-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--paper-2);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-2);
  font-family: var(--font-jp);
  letter-spacing: 0;
}

.priority-card.is-primary {
  background: var(--green-deep);
  color: var(--paper);
  border-color: var(--green-deep);
  padding: 40px 36px;
}
.priority-card.is-primary .pc-num,
.priority-card.is-primary .pc-desc { color: rgba(246, 246, 240, 0.7); }
.priority-card.is-primary .pc-num .num-chip {
  background: rgba(246, 246, 240, 0.12);
  color: var(--paper);
}
.priority-card.is-primary .pc-title { color: var(--paper); }
.priority-card.is-primary .pc-tag {
  background: rgba(246, 246, 240, 0.1);
  color: var(--paper);
}
.priority-card.is-primary::before {
  content: "MAIN OFFER";
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0;
  color: var(--yellow);
}

.priority-card.is-secondary {
  background: var(--paper-2);
  border-color: var(--rule);
}

.priority-card.is-light {
  background: transparent;
  border: 1px dashed var(--rule-2);
  padding: 28px 28px;
}
.priority-card.is-light .pc-title {
  font-size: 20px;
  color: var(--ink-2);
}
.priority-card.is-light .pc-desc {
  font-size: 13px;
}
.priority-card.is-light .pc-tag {
  background: transparent;
  border: 1px solid var(--rule-2);
  font-size: 11px;
}
.priority-card.is-light::before {
  content: "補助";
  position: absolute;
  top: 20px; right: 24px;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0;
}

/* ============================================================
   Social BPO search intent
   ============================================================ */
.social-bpo-section {
  background: #fff;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.intent-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
  min-height: 238px;
}
.intent-card span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--green);
  margin-bottom: 16px;
}
.intent-card h3 {
  font-family: var(--font-mincho);
  font-size: 22px;
  line-height: 1.35;
  margin: 0 0 14px;
  letter-spacing: 0;
}
.intent-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-2);
}

/* ============================================================
   Productized menu
   ============================================================ */
.menu-section { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.menu-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color .15s ease, transform .2s ease;
}
.menu-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.menu-card .menu-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0;
  color: var(--green);
  margin-bottom: 16px;
}
.menu-card .menu-title {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
}
.menu-card .menu-desc {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0 0 28px;
  line-height: 1.65;
  flex: 1;
}
.menu-card .menu-price-row {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.menu-card .menu-price-label {
  font-size: 11px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  letter-spacing: 0;
}
.menu-card .menu-price {
  font-family: var(--font-mincho);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}
.menu-card .menu-price .yen {
  font-size: 16px;
  font-weight: 500;
  margin-right: 2px;
}
.menu-card .menu-price .from {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 400;
  margin-left: 6px;
}
.menu-card .menu-unit {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 6px;
}

/* ============================================================
   Quality flow
   ============================================================ */
.quality-section { background: var(--paper); }
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.quality-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px 24px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.quality-card .qc-num {
  font-family: var(--font-mincho);
  font-size: 44px;
  line-height: 1;
  color: var(--green);
  margin-bottom: 28px;
  letter-spacing: 0;
  font-weight: 600;
}
.quality-card .qc-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0;
}
.quality-card .qc-desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.7;
  margin: 0;
}
.quality-card::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50px;
  color: var(--rule-2);
  font-size: 18px;
  z-index: 2;
}
.quality-card:last-child::after { display: none; }

/* ============================================================
   Network section
   ============================================================ */
.network-section {
  background: var(--green-deep);
  color: var(--paper);
}
.network-section .section-head h2 { color: var(--paper); }
.network-section .section-head .section-num { color: var(--yellow); }
.network-section .section-head .section-lead { color: rgba(246, 246, 240, 0.7); }
.network-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.38fr);
  gap: 48px;
  align-items: start;
}
.network-headline {
  font-family: var(--font-mincho);
  font-size: 28px;
  line-height: 1.45;
  margin: 0;
  color: var(--paper);
  letter-spacing: 0;
}
.network-headline em {
  font-style: normal;
  color: var(--yellow);
  position: relative;
  white-space: nowrap;
}
.network-callout {
  margin-top: 24px;
  padding: 20px;
  background: rgba(246, 246, 240, 0.04);
  border-left: 2px solid var(--yellow);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(246, 246, 240, 0.8);
}
.network-benefits {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.network-benefits div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 2px 12px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(246, 246, 240, 0.045);
  border: 1px solid rgba(246, 246, 240, 0.12);
  border-radius: var(--r-md);
}
.network-benefits span {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(242, 201, 76, 0.16);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 10px;
}
.network-benefits strong {
  color: var(--paper);
  font-size: 13px;
  line-height: 1.4;
}
.network-benefits small {
  color: rgba(246, 246, 240, 0.62);
  font-size: 11px;
  line-height: 1.55;
}
.network-map-card {
  background: rgba(246, 246, 240, 0.045);
  border: 1px solid rgba(246, 246, 240, 0.18);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.network-map {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(430px, 1.38fr) minmax(210px, 0.62fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(rgba(246, 246, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 246, 240, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}
.map-layer {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 720 / 820;
  justify-self: center;
  align-self: center;
}
.map-outline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-outline {
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.22));
}
.map-dot {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid rgba(21, 59, 53, 0.96);
  box-shadow:
    0 0 0 3px rgba(246, 246, 240, 0.12),
    0 0 14px rgba(242, 201, 76, 0.42);
}
.map-dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: rgba(246, 246, 240, 0.45);
}
.dot-sapporo { left: 72.3%; top: 20.8%; }
.dot-asahikawa { left: 78.1%; top: 15.5%; }
.dot-hitachinaka { left: 69.1%; top: 64.1%; }
.dot-mito { left: 67%; top: 65.6%; }
.dot-atsugi { left: 60.4%; top: 71.6%; }
.dot-shimbashi { left: 65%; top: 69.5%; }
.dot-kannai { left: 63.6%; top: 71%; }
.dot-fujisawa { left: 61.9%; top: 73.1%; }
.dot-nagoya { left: 48.06%; top: 72.94%; }
.dot-saga { left: 12.4%; top: 84.2%; }
.dot-nagasaki { left: 9.3%; top: 88%; }
.map-site-panel {
  display: grid;
  gap: 10px;
  align-self: stretch;
  align-content: center;
  position: relative;
  z-index: 2;
}
.site-row {
  min-height: 66px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 2px 9px;
  align-content: center;
  padding: 12px;
  background: rgba(21, 59, 53, 0.78);
  border: 1px solid rgba(246, 246, 240, 0.14);
  border-radius: var(--r-md);
}
.site-row span {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  align-self: center;
  border-radius: 50%;
  background: rgba(246, 246, 240, 0.1);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
}
.site-row strong {
  min-width: 0;
  color: var(--paper);
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}
.site-row small {
  min-width: 0;
  color: rgba(246, 246, 240, 0.56);
  font-size: 11px;
  line-height: 1.45;
}
.map-summary {
  position: absolute;
  left: 30px;
  top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-left: 2px solid var(--yellow);
  background: rgba(246, 246, 240, 0.06);
  z-index: 4;
}
.map-summary span {
  font-family: var(--font-mincho);
  font-size: 42px;
  line-height: 1;
  color: var(--yellow);
}
.map-summary small {
  color: rgba(246, 246, 240, 0.72);
  font-size: 12px;
  line-height: 1.4;
}
.map-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border-top: 1px solid rgba(246, 246, 240, 0.14);
  background: rgba(0, 0, 0, 0.08);
}
.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(246, 246, 240, 0.68);
  font-size: 12px;
}
.map-legend small {
  flex-basis: 100%;
  color: rgba(246, 246, 240, 0.46);
  font-size: 11px;
  line-height: 1.5;
}
.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(246, 246, 240, 0.32);
  background: var(--yellow);
}

/* ============================================================
   Start flow track
   ============================================================ */
.start-section { background: var(--paper-2); border-top: 1px solid var(--rule); }
.flow-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.flow-track::before {
  content: "";
  position: absolute;
  left: 24px; right: 24px;
  top: 20px;
  height: 1px;
  background: var(--rule-2);
  z-index: 0;
}
.flow-step {
  display: flex;
  flex-direction: column;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.flow-step .fs-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--rule-2);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0;
  margin-bottom: 22px;
}
.flow-step .fs-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.flow-step:nth-child(1) .fs-dot { background: var(--coral); color: var(--paper); border-color: var(--coral); }
.flow-step:nth-child(2) .fs-dot { background: var(--blue); color: var(--paper); border-color: var(--blue); }
.flow-step:nth-child(3) .fs-dot { background: var(--green); color: var(--paper); border-color: var(--green); }
.flow-step:nth-child(4) .fs-dot { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.flow-step .fs-title {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}
.flow-step .fs-desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   Column hub
   ============================================================ */
.column-section {
  background: #fff;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.column-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: border-color .15s ease, transform .2s ease;
}
.column-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}
.column-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--green);
  margin-bottom: 18px;
}
.column-card h3 {
  font-family: var(--font-mincho);
  font-size: 23px;
  line-height: 1.4;
  margin: 0 0 14px;
  letter-spacing: 0;
}
.column-card h3 a {
  color: var(--ink);
}
.column-card p {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-2);
}
.column-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  border-bottom: 1px solid currentColor;
}
.column-more {
  margin-top: 26px;
  display: flex;
  justify-content: flex-end;
}
.column-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: var(--r-md);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.column-more a:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ============================================================
   Column pages
   ============================================================ */
.article-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px var(--pad-x) 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
}
.article-main {
  min-width: 0;
}
.article-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  margin-bottom: 18px;
}
.article-main h1 {
  font-family: var(--font-mincho);
  font-size: 46px;
  line-height: 1.18;
  letter-spacing: 0;
  margin: 0 0 20px;
}
.article-lead {
  font-size: 18px;
  line-height: 1.9;
  color: var(--ink-2);
  margin: 0 0 26px;
}
.article-meta {
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
}
.article-main h2 {
  font-family: var(--font-mincho);
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 0;
  margin: 54px 0 16px;
}
.article-main h3 {
  font-size: 19px;
  line-height: 1.55;
  margin: 30px 0 10px;
}
.article-main p {
  font-size: 16px;
  line-height: 2;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.article-main ul,
.article-main ol {
  margin: 0 0 26px;
  padding-left: 1.35em;
  color: var(--ink-2);
  line-height: 1.95;
}
.article-main li + li {
  margin-top: 8px;
}
.article-note {
  margin: 30px 0;
  padding: 22px 24px;
  background: var(--green-tint);
  border-left: 3px solid var(--green);
  color: var(--green-deep);
  line-height: 1.9;
}
.article-cta {
  margin-top: 54px;
  padding: 30px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
}
.article-cta h2 {
  margin: 0 0 12px;
  color: var(--paper);
  font-size: 26px;
}
.article-cta p {
  color: rgba(246, 246, 240, 0.74);
  font-size: 14px;
}
.article-cta .btn {
  margin-top: 8px;
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.article-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}
.side-card {
  padding: 22px;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  background: #fff;
}
.side-card h2,
.side-card h3 {
  font-family: var(--font-mincho);
  font-size: 18px;
  margin: 0 0 12px;
}
.side-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.8;
  margin: 0 0 14px;
}
.side-card a {
  color: var(--green-deep);
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
}
.article-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.article-list a {
  border-bottom: none;
  display: block;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.55;
}
.article-list small {
  display: block;
  margin-top: 4px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 10px;
}
.column-index-hero {
  padding: 70px var(--pad-x) 54px;
  border-bottom: 1px solid var(--rule);
  background: #fff;
}
.column-index-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 56px;
  align-items: end;
}
.column-index-inner h1 {
  font-family: var(--font-mincho);
  font-size: 52px;
  line-height: 1.15;
  margin: 0 0 18px;
}
.column-index-inner p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.9;
  margin: 0;
}
.column-index-panel {
  padding: 26px;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  background: var(--paper);
}
.column-index-panel strong {
  display: block;
  font-family: var(--font-mincho);
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.column-index-panel span {
  display: block;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.8;
}

/* ============================================================
   Contact section
   ============================================================ */
.contact-section { background: var(--paper); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-aside h3 {
  font-family: var(--font-mincho);
  font-size: 28px;
  margin: 0 0 18px;
  line-height: 1.35;
  font-weight: 600;
}
.contact-aside p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.8;
  margin: 0 0 28px;
}
.contact-aside .contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-aside .contact-points li {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-2);
  align-items: baseline;
}
.contact-aside .contact-points li::before {
  content: "—";
  color: var(--coral);
  font-weight: 600;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 36px;
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.field legend {
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 0 10px;
  padding: 0;
}
.field label .req,
.field legend .req {
  font-size: 10px;
  background: var(--coral);
  color: var(--paper);
  padding: 2px 6px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0;
}
.field input,
.field textarea,
.field select {
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  background: var(--paper);
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  transition: border-color .12s ease, background .12s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ink);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 18px;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.check-grid label,
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px 13px;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
}
.check-grid input,
.consent-row input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--green-deep);
  flex: 0 0 auto;
}
.consent-row {
  margin-top: 18px;
}
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .12s ease;
  user-select: none;
}
.chip:hover { border-color: var(--ink-3); }
.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  gap: 20px;
}
.form-submit .form-note {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.6;
}
.form-success {
  background: var(--green-tint);
  border: 1px solid var(--green);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-alert {
  padding: 14px 16px;
  border-radius: var(--r-md);
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.7;
}
.form-alert-success {
  background: var(--green-tint);
  border: 1px solid rgba(13, 98, 88, 0.32);
  color: var(--green-deep);
}
.form-alert-error {
  background: #F8EAE7;
  border: 1px solid rgba(200, 95, 75, 0.36);
  color: #7C3022;
}
.contact-card h3 {
  font-family: var(--font-mincho);
  font-size: 24px;
  line-height: 1.35;
  margin: 0 0 22px;
}
.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
.contact-fields div {
  background: var(--paper);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-fields span {
  font-size: 12px;
  color: var(--ink-3);
}
.contact-fields strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.contact-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.contact-mail {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green-deep);
  border-bottom: 1px solid currentColor;
}
.legal-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.8;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
}
.faq-list {
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
}
.faq-list details {
  border-bottom: 1px solid var(--rule);
  background: #fff;
}
.faq-list details:last-child {
  border-bottom: none;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: center;
  font-weight: 600;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule-2);
  border-radius: 50%;
  color: var(--green-deep);
  font-family: var(--font-mono);
  font-size: 14px;
}
.faq-list details[open] summary::after {
  content: "−";
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--paper);
}
.faq-list p {
  margin: -4px 26px 24px;
  padding-left: 18px;
  border-left: 2px solid var(--yellow);
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.85;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(246, 246, 240, 0.7);
  padding: 56px var(--pad-x) 36px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(246, 246, 240, 0.12);
}
.footer-grid-simple {
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  align-items: start;
}
.footer-brand-title {
  font-family: var(--font-mincho);
  color: var(--paper);
  font-size: 22px;
  margin: 0 0 8px;
}
.footer-brand-sub {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(246, 246, 240, 0.6);
  margin: 0;
}
.footer-col h5 {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0;
  color: var(--paper);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li { font-size: 13px; }
.footer-col a { color: rgba(246, 246, 240, 0.7); }
.footer-col a:hover { color: var(--paper); }
.footer-company {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(246, 246, 240, 0.66);
}
.footer-company p {
  margin: 0 0 6px;
}
.footer-company a {
  color: var(--paper);
  border-bottom: 1px solid rgba(246, 246, 240, 0.36);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px !important;
}
.footer-links a {
  color: rgba(246, 246, 240, 0.74);
}
.footer-links a:hover {
  color: var(--paper);
}
.footer-bottom {
  max-width: var(--max);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(246, 246, 240, 0.4);
  font-family: var(--font-mono);
  letter-spacing: 0;
}

/* ============================================================
   Responsive — true browser-width based fallback
   (when NOT inside the mobile preview frame)
   ============================================================ */
@media (max-width: 880px) {
  :root { --pad-x: 22px; }
  .site-header {
    padding: 12px 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }
  .site-header .brand { min-width: 0; }
  .site-header .brand-text { min-width: 0; }
  .site-header .nav-links { display: none; }
  .site-header .brand-sub { display: none; }
  .site-header .brand-title {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero { grid-template-columns: 1fr; padding: 24px 22px 24px; gap: 18px; }
  .hero .hero-eyebrow { margin-bottom: 16px; }
  .hero h1 { font-size: 38px; margin-bottom: 20px; }
  .hero .hero-sub { font-size: 17px; }
  .hero .hero-body { margin-bottom: 24px; }
  .hero .hero-ctas { margin-bottom: 18px; }
  .hero .hero-ctas .btn {
    flex: 1 1 0;
    justify-content: center;
    white-space: nowrap;
    padding: 14px 10px;
    font-size: 13px;
  }
  .hero .hero-media { aspect-ratio: 16/9; max-height: 220px; }
  .proof-strip { grid-template-columns: 1fr 1fr; padding: 18px 22px; }
  section.section { padding: 56px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .section-head h2 { font-size: 26px; }
  .priority-grid { grid-template-columns: 1fr; }
  .intent-grid { grid-template-columns: 1fr; }
  .column-grid { grid-template-columns: 1fr; }
  .column-card { min-height: auto; }
  .column-more { justify-content: stretch; }
  .column-more a { width: 100%; justify-content: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .quality-card::after { display: none; }
  .network-wrap { grid-template-columns: 1fr; gap: 24px; }
  .network-map {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px 22px;
  }
  .map-layer { width: min(320px, 74vw); }
  .map-site-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: stretch;
  }
  .flow-track { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .flow-track::before { display: none; }
  .contact-wrap { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .contact-form { padding: 24px 20px; }
  .contact-fields { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .faq-list summary { padding: 18px 18px; }
  .faq-list p { margin: -2px 18px 20px; }
  .article-shell {
    grid-template-columns: 1fr;
    padding: 36px var(--pad-x) 64px;
    gap: 34px;
  }
  .article-main h1 { font-size: 34px; }
  .article-lead { font-size: 16px; }
  .article-side { position: static; }
  .column-index-hero { padding: 44px var(--pad-x) 42px; }
  .column-index-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .column-index-inner h1 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 520px) {
  .site-header { padding: 12px 14px; }
  .site-header .brand { gap: 10px; }
  .site-header .brand-mark {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }
  .site-header .brand-title { font-size: 15px; }
  .site-header .header-cta {
    padding: 9px 12px;
    font-size: 12px;
    gap: 6px;
  }
  .hero .hero-ctas {
    flex-direction: column;
  }
  .hero .hero-ctas .btn {
    width: 100%;
    flex: none;
    white-space: normal;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 8px 14px;
  }
  .hero .hero-media .media-stat {
    left: 92px;
    right: 8px;
    top: 24px;
    padding: 10px 12px;
  }
  .hero .hero-media .media-stat .ms-value {
    font-size: 18px;
  }
  .hero .hero-media .media-stat .ms-value small {
    display: block;
    margin: 3px 0 0;
  }
  .proof-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .menu-card .menu-price-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .network-map-card {
    margin-left: -2px;
    margin-right: -2px;
  }
  .network-map {
    padding: 22px 16px 18px;
    gap: 18px;
  }
  .map-layer {
    width: min(284px, 80vw);
  }
  .map-summary {
    left: 16px;
    top: 16px;
    padding: 9px 11px;
  }
  .map-summary span { font-size: 34px; }
  .map-summary small { font-size: 11px; }
  .map-site-panel { grid-template-columns: 1fr; }
  .site-row {
    min-height: 58px;
    padding: 10px 12px;
  }
  .site-row strong { font-size: 16px; }
  .map-legend {
    padding: 14px 16px;
    gap: 10px 14px;
  }
  .map-legend span {
    font-size: 11px;
  }
}
