:root {
  --navy: #263052;
  --navy-dark: #192036;
  --navy-mid: #49516f;
  --accent: #e53f5f;
  --accent-dark: #c43250;
  --accent-soft: rgba(229, 63, 95, 0.12);
  --text: #4a4f5c;
  --text-dark: #111318;
  --muted: #6b7280;
  --line: #e6e8ee;
  --bg: #ffffff;
  --bg-soft: #f4f5f8;
  --bg-navy: #1b2238;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(25, 32, 54, 0.12);
  --radius: 18px;
  --max: 1180px;
  --header-h: 108px;
  --service-dock-h: 96px;
}
html[data-accent="navy"] {
  --accent: #0052d9;
  --accent-dark: #003dad;
  --accent-soft: rgba(0, 82, 217, 0.12);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  overflow-x: hidden;
}
html, body { margin: 0; padding: 0; }
body {
  font-family: "IBM Plex Sans", "Noto Sans SC", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--accent); }
h1, h2, h3, h4, h5 {
  font-family: Heebo, "Noto Sans SC", sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
button, input, textarea, select { font-family: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.kicker {
  display: inline-block;
  font-family: Heebo, "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.lede { font-size: 1.15rem; color: var(--navy-mid); max-width: 720px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: 0.2s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
a.btn-outline:hover { color: #fff; }
.btn-line { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.btn-line:hover { border-color: var(--navy); color: var(--navy); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(38,48,82,.08);
  overflow: visible;
}
body { padding-top: var(--header-h); }
body.page-home { padding-top: 0; }
.site-header.is-home-top {
  background: linear-gradient(180deg, rgba(17,19,24,.55), transparent);
  border-bottom-color: transparent;
}
.site-header.is-home-top .nav-link,
.site-header.is-home-top .lang-btn,
.site-header.is-home-top .menu-toggle { color: #fff; }
.site-header.is-home-top .logo-dark { opacity: 0; }
.site-header.is-home-top .logo-light { opacity: 1; }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "brand . actions"
    "nav nav nav";
  align-items: center;
  height: var(--header-h);
  padding: 10px 0 8px;
  column-gap: 16px;
  row-gap: 2px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 210px;
  height: 42px;
  grid-area: brand;
}
.brand img {
  position: absolute;
  inset: 0;
  width: 210px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  transition: opacity .2s ease;
}
.logo-light { opacity: 0; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  grid-area: nav;
  flex-wrap: nowrap;
}
.nav-link {
  color: var(--navy);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.is-active,
.nav-item-mega.is-open > .nav-link { color: var(--accent); }
.nav-item-mega {
  position: static;
}
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 60;
  padding: 22px 0 28px;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.nav-item-mega:hover .mega-menu,
.nav-item-mega.is-open .mega-menu,
.nav-item-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mega-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  color: inherit;
  min-height: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mega-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}
.mega-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}
.mega-card-body {
  padding: 12px 14px 16px;
}
.mega-card h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
  color: var(--text-dark);
}
.mega-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}
.site-header.is-home-top.is-mega-open,
.site-header.is-home-top:has(.nav-item-mega:hover),
.site-header.is-home-top:has(.nav-item-mega:focus-within) {
  background: #fff;
  border-bottom-color: rgba(38,48,82,.08);
}
.site-header.is-home-top.is-mega-open .nav-link,
.site-header.is-home-top.is-mega-open .lang-btn,
.site-header.is-home-top.is-mega-open .menu-toggle,
.site-header.is-home-top:has(.nav-item-mega:hover) .nav-link,
.site-header.is-home-top:has(.nav-item-mega:hover) .lang-btn,
.site-header.is-home-top:has(.nav-item-mega:focus-within) .nav-link,
.site-header.is-home-top:has(.nav-item-mega:focus-within) .lang-btn { color: var(--navy); }
.site-header.is-home-top.is-mega-open .nav-link:hover,
.site-header.is-home-top.is-mega-open .nav-item-mega.is-open > .nav-link,
.site-header.is-home-top.is-mega-open .nav-link.is-active,
.site-header.is-home-top:has(.nav-item-mega:hover) .nav-link:hover,
.site-header.is-home-top:has(.nav-item-mega:hover) .nav-item-mega:hover > .nav-link,
.site-header.is-home-top:has(.nav-item-mega:hover) .nav-link.is-active { color: var(--accent); }
.site-header.is-home-top.is-mega-open .logo-dark,
.site-header.is-home-top:has(.nav-item-mega:hover) .logo-dark,
.site-header.is-home-top:has(.nav-item-mega:focus-within) .logo-dark { opacity: 1; }
.site-header.is-home-top.is-mega-open .logo-light,
.site-header.is-home-top:has(.nav-item-mega:hover) .logo-light,
.site-header.is-home-top:has(.nav-item-mega:focus-within) .logo-light { opacity: 0; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-area: actions;
  flex-shrink: 0;
}
.header-actions .btn { white-space: nowrap; }
.header-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
}
.header-linkedin:hover { background: #0a66c2; color: #fff; }
.site-header.is-home-top .header-linkedin {
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
}
.site-header.is-home-top .header-linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}
.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.site-header.is-home-top .lang-switch { border-color: rgba(255,255,255,.35); }
.accent-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.accent-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, .12);
  opacity: 0.45;
  transform: scale(0.88);
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}
.accent-dot-red { background: #e53f5f; }
.accent-dot-navy { background: #0052d9; }
.accent-dot.is-on {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--navy);
}
.site-header.is-home-top .accent-switch { border-color: rgba(255,255,255,.35); }
.site-header.is-home-top .accent-dot.is-on {
  box-shadow: 0 0 0 2px rgba(17,19,24,.4), 0 0 0 3.5px #fff;
}
.site-header.is-home-top.is-mega-open .accent-switch,
.site-header.is-home-top:has(.nav-item-mega:hover) .accent-switch,
.site-header.is-home-top:has(.nav-item-mega:focus-within) .accent-switch {
  border-color: var(--line);
}
.site-header.is-home-top.is-mega-open .accent-dot.is-on,
.site-header.is-home-top:has(.nav-item-mega:hover) .accent-dot.is-on,
.site-header.is-home-top:has(.nav-item-mega:focus-within) .accent-dot.is-on {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--navy);
}
.lang-btn {
  background: transparent;
  border: 0;
  color: var(--navy);
  padding: 7px 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}
.lang-btn.is-active {
  background: var(--navy);
  color: #fff;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--navy);
  font-size: 22px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-color: #111;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-color: #111;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17,19,24,.25) 0%, rgba(17,19,24,.72) 70%, rgba(17,19,24,.88) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 0 88px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 16ch;
  margin-bottom: 18px;
}
.hero p { color: rgba(255,255,255,.86); max-width: 620px; font-size: 1.15rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-badge {
  margin: 18px 0 0;
  background: rgba(255,255,255,.14);
  color: #fff;
  text-decoration: none;
}
a.hero-badge:hover {
  background: rgba(255,255,255,.24);
  text-decoration: underline;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(17,19,24,.28);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.hero-arrow:hover { background: rgba(17,19,24,.5); }
.hero-prev { left: 18px; }
.hero-next { right: 18px; }
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  cursor: pointer;
}
.hero-dot.is-active { background: #fff; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

.page-hero {
  background: var(--navy) center/cover no-repeat;
  color: #fff;
  padding: 92px 0 64px;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25,32,54,.88), rgba(25,32,54,.45));
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.4rem); }
.page-hero p { color: rgba(255,255,255,.82); max-width: 680px; }
.page-hero-compact { padding: 48px 0 32px; }
.page-hero-compact h1 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 8px; }

.company-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
  background: var(--navy);
}
.company-split-photo {
  position: relative;
  min-height: 100%;
}
.company-split-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.company-split-credit {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
}
.company-split-copy {
  display: flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  padding: 56px 48px;
}
.company-split-inner { width: min(560px, 100%); }
.company-split-copy h1 {
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: 22px;
}
.company-split-copy p { color: rgba(255,255,255,.88); }
.company-split-copy p:last-child { margin-bottom: 0; }
.company-focus {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 72px;
}
.company-focus p {
  color: rgba(255,255,255,.88);
  max-width: 860px;
  margin-bottom: 36px;
}
.company-refs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
}
.company-refs img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.company-mgmt-sub { margin-top: 40px; }
.mgmt-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #0a66c2;
  color: #fff;
  flex-shrink: 0;
}
.mgmt-linkedin:hover { background: #084e93; color: #fff; }

.partner-page { padding: 48px 0 80px; }
.partner-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
  padding: 28px 0 36px;
}
.partner-logo img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}
.partner-row.is-tall .partner-logo img {
  max-height: 240px;
  width: auto;
  max-width: 180px;
}
.partner-quote {
  margin: 0 0 18px;
  font-size: 1.05rem;
  color: var(--text);
}
.partner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.partner-row ul { margin: 0 0 1em; padding-left: 18px; }
.partner-rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 8px 0 28px;
}

/* Sections */
.section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--bg-navy); color: #fff; }
.section-navy .section-head h2 { color: #fff; }
.section-head { margin-bottom: 36px; }
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.stat {
  padding: 28px 8px;
  border-top: 2px solid var(--accent);
}
.stat b {
  display: block;
  font-family: Heebo, sans-serif;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1.1;
}
.section-navy .stat b { color: #fff; }
.stat span { color: var(--muted); font-size: 0.95rem; }
.section-navy .stat span { color: rgba(255,255,255,.72); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(25,32,54,.04);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 { font-size: 1.2rem; margin: 0; display: flex; align-items: center; gap: 8px; }
.card p { color: var(--muted); margin: 0; }
.card .more { margin-top: auto; padding-top: 14px; font-weight: 600; color: var(--accent); }

.media-card { border-radius: var(--radius); overflow: hidden; }
.media-card img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

.pillars .card { padding: 0; }
.pillars .card-body { min-height: 180px; }

/* Services layout */
.service-overview { margin-top: 8px; }
.service-block {
  scroll-margin-top: var(--service-dock-h);
  background: #fff;
}
.service-intro,
.service-offers,
.service-benefits {
  scroll-margin-top: var(--service-dock-h);
}
.service-dock {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: var(--navy);
  box-shadow: 0 10px 28px rgba(25, 32, 54, .16);
}
.service-tabs {
  display: flex;
  align-items: stretch;
  gap: 3px;
  padding: 8px 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.service-tabs::-webkit-scrollbar { display: none; }
.service-tab {
  flex: 1 0 auto;
  min-width: max-content;
  text-align: center;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.07);
  border-radius: 10px 10px 0 0;
  padding: 11px 16px 12px;
  font-family: Heebo, "Noto Sans SC", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}
.service-tab:hover { color: #fff; background: rgba(255,255,255,.14); }
.service-tab.is-active {
  background: #fff;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: inset 0 3px 0 var(--accent);
  position: relative;
  z-index: 1;
  margin-bottom: -1px;
}
.service-dock .service-jump {
  background: #fff;
  text-align: center;
  padding: 10px 16px 12px;
  position: static;
  border-bottom: 1px solid var(--line);
}
.service-dock .service-jump a {
  color: var(--navy-mid);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 4px;
}
.service-dock .service-jump a + a::before {
  content: "|";
  display: inline-block;
  margin: 0 14px 0 10px;
  color: var(--line);
}
.service-dock .service-jump a:hover,
.service-dock .service-jump a.is-active {
  color: var(--accent);
}
.service-dock .service-jump a.is-active { font-weight: 700; }
.service-page-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy) center/cover no-repeat;
  position: relative;
  padding: 96px 20px 88px;
  color: #fff;
}
.service-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 32, 54, .48);
}
.service-page-hero .wrap { position: relative; z-index: 1; max-width: 820px; }
.service-page-hero .kicker { color: #fff; }
.service-page-hero h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 8px 0 0;
}
.service-intro {
  padding: 88px 0 72px;
}
.service-intro h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 36px;
}
.service-about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  text-align: left;
}
.service-about-cols p,
.service-intro p {
  margin: 0;
  color: var(--text);
  line-height: 1.85;
}
.service-offers { padding: 64px 0 80px; }
.service-offers .section-head { text-align: center; margin-bottom: 48px; }
.service-offers h3 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.service-offer-row {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-soft);
  padding: 36px 40px;
  margin: 0 0 32px;
}
.service-offer-row.is-text { grid-template-columns: 1fr; }
.service-offer-row.is-sub { margin-top: -16px; }
.service-offer-row img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-offer-copy h3 {
  color: var(--navy);
  font-size: 1.55rem;
  margin: 0 0 12px;
}
.service-offer-copy h4 {
  color: var(--navy);
  margin: 18px 0 8px;
}
.service-offer-price {
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
}
.service-offer-meta {
  color: var(--muted);
  margin: 0 0 10px;
}
.service-offer-rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 16px 0 18px;
}
.service-offer-copy ul { margin: 0 0 16px; padding-left: 18px; }
.service-offer-copy .btn-outline { margin-top: 8px; }
.service-extra { padding: 24px 0 64px; }
.service-extra h3 { margin-bottom: 28px; }
.service-people {
  background: var(--bg-soft);
  padding: 72px 0 80px;
}
.service-people .section-head {
  text-align: center;
  margin-bottom: 40px;
}
.service-people .section-head h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0;
}
.service-people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.service-person {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  box-shadow: 0 10px 28px rgba(25, 32, 54, .08);
  overflow: hidden;
}
.service-person img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: top center;
}
.service-person-copy {
  padding: 28px 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-person-copy h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin: 0 0 4px;
}
.service-person-role {
  color: var(--muted);
  margin: 0 0 10px;
}
.service-person-copy a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 0.92rem;
}
.service-person-copy a:hover { color: var(--accent); }
.service-people .service-note {
  text-align: center;
  max-width: 720px;
  margin: 36px auto 0;
}
.service-people .service-note a { font-weight: 700; }
.service-extra-grid { margin-top: 12px; }
.service-extra-card {
  background: var(--bg-soft);
  padding: 28px 26px 32px;
}
.service-extra-card h4 { margin: 10px 0 10px; }
.service-note { margin-top: 28px; color: var(--text); }
.service-catalog {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.service-catalog p { margin: 0 0 18px; color: var(--navy-mid); }
.service-acc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.service-acc-card {
  background: var(--bg-soft);
  padding: 32px 36px 28px;
}
.service-acc-card > h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 12px;
}
.service-acc-card > p {
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.75;
}
.service-acc {
  border-top: 1px solid var(--line);
}
.service-acc:first-of-type { margin-top: 18px; }
.service-acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-family: Heebo, "Noto Sans SC", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  padding: 14px 0;
  line-height: 1.35;
}
.service-acc summary::-webkit-details-marker,
.service-acc summary::marker { display: none; content: ""; }
.service-acc summary::after {
  content: "+";
  flex: 0 0 auto;
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--navy-mid);
}
.service-acc[open] summary::after { content: "−"; }
.service-acc-body { padding: 0 0 16px; }
.service-acc-body p { margin: 0; color: var(--text); line-height: 1.75; }
.service-acc-body img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: 0 0 14px;
}
.service-location {
  margin-top: 56px;
  text-align: center;
}
.service-location h3 { margin-bottom: 16px; }
.service-location .map-frame {
  max-width: 720px;
  margin: 0 auto;
  height: 300px;
}
.service-benefits {
  background: var(--navy);
  color: #fff;
  padding: 88px 0;
}
.service-benefits .kicker { color: rgba(255,255,255,.72); }
.service-benefits h3 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 48px;
}
.service-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 72px;
}
.service-benefit-emoji {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 16px;
}
.service-benefits h4 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 0 10px;
}
.service-benefits p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
}
.cta-photo {
  position: relative;
  background: var(--navy) center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 88px 20px 80px;
}
.cta-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 32, 54, .62);
}
.cta-photo .wrap { position: relative; z-index: 1; }
.cta-photo h2 { color: #fff; margin: 0 0 28px; }
.cta-photo-line {
  width: min(640px, 80%);
  height: 1px;
  background: rgba(255,255,255,.28);
  margin: 0 auto 36px;
}
.cta-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
.cta-photo-grid a {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cta-photo-grid span { font-size: 1.4rem; }
.cta-photo-grid b { font-weight: 600; font-size: 0.98rem; }
.cta-photo-grid a:hover { color: var(--accent); }

.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.offer, .benefit {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 20px;
}
.offer h4, .benefit h4 { margin-bottom: 8px; font-size: 1.05rem; }
.offer h5 { margin: 14px 0 6px; font-size: 0.95rem; color: var(--navy); }
.offer-img, .sub-img {
  width: 100%;
  border-radius: 12px;
  margin: 0 0 12px;
  max-height: 200px;
  object-fit: cover;
}
.person-card { padding: 0; overflow: hidden; }
.person-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
}
.person-card > div { padding: 16px 18px 18px; }
.offer p { margin: 0 0 10px; }
.offer p:last-child { margin-bottom: 0; }
.price { color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.offer ul, .benefit ul { margin: 0; padding-left: 18px; color: var(--text); }

.quote {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 36px;
}
.quote p { font-size: 1.15rem; color: rgba(255,255,255,.92); }
.quote cite { color: rgba(255,255,255,.7); font-style: normal; }

.partner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 16px;
}
.partner .mark {
  width: 160px;
  height: 110px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  font-family: Heebo, sans-serif;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  padding: 10px;
}

.news-section { padding-top: 36px; padding-bottom: 56px; }
.news-archive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.news-item {
  scroll-margin-top: calc(var(--header-h) + 20px);
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  min-height: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.news-item img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
}
.news-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px;
  border: 0;
  background: var(--bg-soft);
  cursor: zoom-in;
  align-self: stretch;
}
.news-item .news-thumb { height: auto; min-height: 100%; }
.news-item .news-thumb img {
  pointer-events: none;
}
.news-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.news-body h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.news-body p {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-body .more { margin-top: auto; padding-top: 10px; font-weight: 600; color: var(--accent); }
.news-date { color: var(--accent); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; display: block; }
.page-hero .news-date { margin: 0 0 12px; }
.news-archive .news-item:first-child {
  grid-column: 1 / -1;
  grid-template-columns: 320px 1fr;
}
.news-archive .news-item:first-child img {
  min-height: 0;
}
.news-archive .news-item:first-child .news-body { padding: 22px 28px; }
.news-archive .news-item:first-child h3 { font-size: 1.55rem; }
.news-archive .news-item:first-child p { -webkit-line-clamp: 4; font-size: 1rem; }
.news-article { max-width: 820px; }
.news-article img { width: 100%; border-radius: 18px; margin: 18px 0 24px; object-fit: contain; }
.news-story {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  max-width: 1080px;
}
.news-story > .news-thumb {
  position: static;
  z-index: 0;
  align-self: start;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(25, 32, 54, .12);
  background: var(--bg-soft);
}
.news-story > .news-thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  min-height: 0;
}
.news-story-copy { min-width: 0; }
.article-md img.is-zoomable,
img.is-zoomable {
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17, 19, 24, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }
.article-back {
  display: inline-block;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.article-back:hover { color: #fff; text-decoration: underline; }
.article-md .kicker {
  display: block;
  margin: 36px 0 10px;
}
.article-md .kicker:first-child { margin-top: 0; }
.article-md h2 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  margin: 0 0 18px;
  color: var(--text-dark);
}
.article-md h3 { margin: 22px 0 10px; }
.article-md h4 { margin: 16px 0 8px; }
.article-md p { margin: 0 0 16px; }
.article-md ul, .article-md ol { margin: 0 0 16px; padding-left: 1.2em; }
.article-md li { margin: 0 0 6px; }
.article-md hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }
.article-md img { border-radius: 12px; margin: 12px 0; }
.article-md > .offer {
  margin: 0 0 22px;
  padding: 22px 24px;
}
.article-md .offer h4 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}
.article-md .offer h5 {
  margin: 14px 0 6px;
  font-size: 0.95rem;
  color: var(--navy);
}
.article-md .offer p { margin: 0 0 10px; }
.article-md .offer ul,
.article-md .offer ol { margin: 0 0 10px; padding-left: 18px; }
.article-md .offer p:last-child,
.article-md .offer ul:last-child,
.article-md .offer ol:last-child { margin-bottom: 0; }
.article-md .offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 8px 0 28px;
}
.article-md .article-vehicles {
  width: 100vw;
  margin: 48px 0 0;
  margin-left: calc(50% - 50vw);
  padding: 56px clamp(20px, 5vw, 72px) 64px;
  background: var(--navy);
  color: #fff;
  box-sizing: border-box;
}
.article-md .article-vehicles .kicker {
  margin-top: 0;
  margin-bottom: 10px;
}
.article-md .article-vehicles h2 {
  color: #fff;
  margin: 0 0 28px;
}
.article-md .article-vehicles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.article-md .article-vehicle h4 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 1.15rem;
}
.article-md .article-vehicle ul {
  margin: 0;
  padding-left: 1.15em;
  color: rgba(255, 255, 255, 0.92);
}
.article-md .article-vehicle li { margin: 0 0 8px; }
.article-md .article-vehicle img,
.article-md .article-vehicle .article-vehicle-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 0 16px;
}
.article-offer { margin-bottom: 22px; }
.article-offer h3 { margin: 0 0 10px; }
.article-schedule {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}
.article-schedule h4 { margin: 0 0 4px; }
.article-schedule p { margin: 0; }
.article-source {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--muted);
}
.article-source a { word-break: break-all; }
.wrap.article-body { max-width: 860px; }
.article-body .offer-grid { padding: 8px 0 24px; }
.article-body .article-offer { padding: 22px 24px; }
.article-md .offer .offer-more,
.article-body .offer-more { margin: 18px 0 0; }
.article-md .offer .btn-outline { margin-top: 4px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}
.contact-card h3 { margin-bottom: 8px; }
.contact-card a { font-weight: 600; }
.map-frame {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 14px;
  margin-top: 14px;
  background: var(--bg-soft);
  object-fit: cover;
  display: block;
}
a.map-link { display: block; }
.map-canvas {
  pointer-events: none;
}
.map-canvas .leaflet-control-container {
  display: none !important;
}
.map-fallback {
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background:
    linear-gradient(180deg, transparent 40%, rgba(25,32,54,.55)),
    repeating-linear-gradient(0deg, transparent, transparent 27px, rgba(38,48,82,.08) 28px),
    repeating-linear-gradient(90deg, transparent, transparent 27px, rgba(38,48,82,.08) 28px),
    #e8ebe3;
  color: #fff;
  font-weight: 600;
}
.map-open { margin: 10px 0 0; font-size: 0.92rem; }
.footer-grid > div > h4:first-child { margin-top: 0; }
.form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
}
.form textarea { min-height: 140px; resize: vertical; }

.legal { color: var(--muted); font-size: 0.95rem; }
.legal h3 { color: var(--navy); margin-top: 28px; }

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.78);
  padding: 0 0 36px;
}
.footer-inner { padding-top: 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 8px; }
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 28px;
  flex-wrap: wrap;
  padding: 8px 0 6px;
}
.footer-bar img { width: 160px; height: auto; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}
.footer-legal a {
  color: #fff;
  padding: 0 12px;
  border-left: 1px solid rgba(255,255,255,.35);
}
.footer-legal a:first-child { border-left: 0; padding-left: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 18px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.footer-icp {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.6;
}
.footer-icp a {
  color: rgba(255,255,255,.7);
}
.footer-icp a:hover {
  color: #fff;
  text-decoration: underline;
}
.kumho-banner {
  display: block;
  margin: 28px 0 0;
  background: #000;
  line-height: 0;
}
.kumho-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 22px;
  padding: 32px 36px;
}
.cta-band h2 { color: #fff; margin: 0 0 6px; }
.cta-band p { margin: 0; color: rgba(255,255,255,.9); }
.cta-band .btn { background: #fff; color: var(--accent); }

.tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
}

@media (max-width: 980px) {
  :root { --header-h: 60px; --radius: 14px; }
  body { line-height: 1.55; }
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .wrap.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    height: var(--header-h);
    padding: 0 10px 0 14px;
    gap: 8px;
  }
  .header-actions {
    margin-left: auto;
    gap: 6px;
  }
  .header-linkedin { width: 36px; height: 36px; }
  .menu-toggle { padding: 4px; margin: 0; }
  .brand, .brand img { width: 168px; height: 34px; }
  .grid-2, .grid-3, .grid-4, .grid-6, .service-layout, .service-hero, .news-item, .news-archive, .contact-grid, .footer-grid, .partner,
  .article-md .offer-grid, .article-body .offer-grid, .article-md .article-vehicles-grid,
  .service-offer-row, .service-about-cols, .service-benefits-grid, .cta-photo-grid, .service-acc-grid, .service-people-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    padding: 8px 16px 14px;
    border-bottom: 1px solid var(--line);
  }
  .mega-menu { display: none !important; }
  .nav-item-mega { display: contents; }
  .site-header.is-home-top .nav.is-open .nav-link { color: var(--navy); }
  .menu-toggle { display: block; }
  .hero {
    min-height: 72vh;
  }
  .hero-arrow { display: none; }
  .hero-inner { padding: calc(var(--header-h) + 20px) 0 56px; }
  .hero h1 { font-size: 1.7rem; max-width: none; margin-bottom: 10px; }
  .hero p { font-size: 0.95rem; margin-bottom: 0; }
  .hero-actions { margin-top: 16px; gap: 8px; }
  .company-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .company-split-photo { min-height: 0; aspect-ratio: 16 / 10; }
  .company-split-copy { padding: 36px 22px 40px; }
  .company-focus { padding: 32px 0 44px; }
  .company-refs { grid-template-columns: 1fr 1fr; gap: 8px; }
  .partner-row { grid-template-columns: 1fr; gap: 16px; padding: 22px 0 28px; }
  .partner-logo img, .partner-row.is-tall .partner-logo img { max-width: 200px; max-height: 120px; }
  .page-hero { padding: 72px 0 28px; }
  .page-hero-compact { padding: 36px 0 22px; }
  .page-hero h1 { font-size: 1.55rem; }
  .page-hero p { font-size: 0.95rem; margin-bottom: 0; }
  .section { padding: 36px 0; }
  .section-head { margin-bottom: 16px; }
  .lede { font-size: 1rem; }
  .stat { padding: 12px 0; }
  .stat b { font-size: 1.45rem; }
  .card img { height: 132px; }
  .card-body { padding: 14px 14px 16px; gap: 6px; }
  .card h3 { font-size: 1.05rem; }
  .card .more { padding-top: 8px; }
  .media-card img { min-height: 0; height: 180px; }
  .pillars .card-body { min-height: 0; }
  .toc {
    position: sticky;
    top: var(--header-h);
    z-index: 40;
    padding: 0;
    margin: 0 0 12px;
    border-radius: 0 0 14px 14px;
    overflow: visible;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 28px rgba(25, 32, 54, 0.1);
  }
  .toc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    padding: 8px 14px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: var(--navy);
  }
  .toc-toggle-kicker {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .toc-toggle-current {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
  }
  .toc-toggle-current:empty { display: none; }
  .toc-chevron {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: -3px;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: rotate(45deg);
    transition: transform .2s ease, margin .2s ease;
  }
  .toc.is-open .toc-chevron {
    margin-top: 4px;
    transform: rotate(-135deg);
  }
  .toc-title { display: none; }
  .toc-links { display: none; }
  .toc.is-open .toc-links {
    display: block;
    position: absolute;
    left: -1px;
    right: -1px;
    top: 100%;
    padding: 6px 8px 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 16px 32px rgba(25, 32, 54, 0.12);
  }
  .toc a { padding: 10px 12px; font-size: 0.95rem; }
  .service-page-hero { min-height: 260px; padding: 72px 16px 56px; }
  .service-intro, .service-offers, .service-benefits, .service-extra, .service-people, .cta-photo { padding: 44px 0; }
  .service-offer-row { padding: 20px 16px; margin-bottom: 18px; gap: 16px; }
  .service-benefits-grid { gap: 28px; }
  .service-tab { font-size: 0.78rem; padding: 9px 12px 10px; }
  .service-acc-card { padding: 22px 18px 16px; }
  .service-tab.is-active { font-size: 0.86rem; }
  .service-dock .service-jump { padding: 8px 10px 10px; }
  .service-dock .service-jump a { font-size: 0.8rem; }
  .service-dock .service-jump a + a::before { margin: 0 8px 0 6px; }
  .service-hero img { aspect-ratio: 16 / 9; height: auto; }
  .news-body, .service-copy, .offer-grid, .benefit-row, .service-note { padding: 14px; }
  .offer, .benefit { padding: 12px 14px; border-radius: 12px; }
  .offer-grid { gap: 10px; }
  .benefit-row { gap: 10px; }
  .quote { padding: 18px; border-radius: 14px; }
  .quote p { font-size: 1rem; }
  .partner { padding: 14px; gap: 12px; }
  .partner .mark { width: 100%; height: 64px; }
  .news-section { padding-top: 20px; padding-bottom: 28px; }
  .news-archive { gap: 12px; }
  .news-item { border-radius: 14px; gap: 0; }
  .news-item img,
  .news-archive .news-item:first-child img { min-height: 0; height: auto; }
  .news-story {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news-story > .news-thumb {
    max-width: 280px;
  }
  .news-archive .news-item:first-child {
    grid-template-columns: 1fr;
  }
  .news-archive .news-item:first-child .news-body { padding: 12px 14px 14px; }
  .news-archive .news-item:first-child h3 { font-size: 1.15rem; }
  .news-body { padding: 12px 14px 14px; }
  .news-article img { margin: 10px 0 14px; border-radius: 12px; }
  .contact-card { padding: 16px; border-radius: 14px; }
  .map-frame { height: 150px; margin-top: 10px; border-radius: 10px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 18px; border-radius: 14px; gap: 12px; }
  .site-footer { padding: 0 0 22px; }
  .footer-inner { padding-top: 28px; }
  .footer-legal a { padding: 0 8px; }
  .kumho-banner { margin-top: 20px; }
  .person-card img { height: 180px; }
  .footer-grid { margin-bottom: 18px; gap: 16px; }
}

@media (max-width: 640px) {
  :root { --header-h: 56px; }
  .wrap { width: min(var(--max), calc(100% - 20px)); }
  .wrap.header-inner { width: 100%; max-width: none; padding: 0 8px 0 12px; }
  .brand, .brand img { width: 148px; height: 30px; }
  .lang-btn { padding: 6px 8px; font-size: 11px; }
  .hero {
    height: auto;
    min-height: 68vh;
    aspect-ratio: auto;
  }
  .hero-inner { padding: calc(var(--header-h) + 16px) 0 52px; }
  .hero h1 { font-size: 1.45rem; }
  .hero-actions, .cta-band { width: 100%; }
  .hero-actions .btn, .cta-band .btn, .form .btn { width: 100%; justify-content: center; padding: 11px 16px; }
  .service-person { grid-template-columns: 1fr; }
  .service-person img { min-height: 200px; max-height: 260px; }
  .section { padding: 28px 0; }
  .page-hero { padding: 64px 0 22px; }
  .page-hero-compact { padding: 28px 0 18px; }
  .card img { height: 112px; }
  .media-card img { height: 150px; }
  .news-item img,
  .news-archive .news-item:first-child img { height: auto; }
  .news-story > .news-thumb { max-width: 100%; }
  .news-article img { max-height: none; }
  .map-frame { height: 128px; }
  .form textarea { min-height: 110px; }
  .btn { padding: 11px 16px; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .footer-legal a:first-child { padding-left: 0; }
}
