@charset "UTF-8";
/* ==========================================================================
   34th Standard — Corporate Site
   Design system / global stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — sampled from the corporate logo */
  --brand:        #2CA3CF;
  --brand-deep:   #436799;
  --brand-light:  #7FCBE8;

  /* Ink / ground */
  --navy-900: #05162B;
  --navy-850: #082039;
  --navy-800: #0B2545;
  --navy-700: #143A63;
  --navy-600: #1E4E80;

  --gold:      #C7A252;
  --gold-soft: #E0C88C;

  --paper:     #F7F5F1;
  --paper-2:   #EFEBE4;
  --line:      #DCD6CC;
  --line-dark: rgba(255, 255, 255, .14);

  --ink:      #14181D;
  --ink-70:   #4A525C;
  --ink-50:   #737C87;

  /* Type — a single modern sans across the whole site */
  --f-serif: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif; /* display */
  --f-sans:  "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --f-en:    "Jost", "Helvetica Neue", Arial, sans-serif;
  --f-en-serif: "Jost", "Helvetica Neue", Arial, sans-serif;           /* english display */

  /* Rhythm */
  --gut:    clamp(20px, 5vw, 40px);
  --shell:  1280px;
  --sec-y:  clamp(88px, 12vw, 180px);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy-800); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   3. Bilingual switching  —  <html lang> drives visibility
   -------------------------------------------------------------------------- */
html[lang="ja"] .en-only { display: none !important; }
html[lang="en"] .ja-only { display: none !important; }
html[lang="en"] body { letter-spacing: .01em; line-height: 1.85; }

/* --------------------------------------------------------------------------
   4. Typography helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: currentColor;
  opacity: .6;
}
.eyebrow--center { justify-content: center; }

.sec-num {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.h-xl {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.55;
  letter-spacing: .005em;
}
.h-lg {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.62;
  letter-spacing: .005em;
}
.h-md {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.7;
}
html[lang="en"] .h-xl,
html[lang="en"] .h-lg,
html[lang="en"] .h-md { font-weight: 500; letter-spacing: -.005em; }

.lead {
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 2.3;
  color: var(--ink-70);
  font-weight: 300;
}
.body-s { font-size: 14px; line-height: 2.15; color: var(--ink-70); font-weight: 300; }

.mark { color: var(--brand); }
.serif-en { font-family: var(--f-en); font-weight: 300; letter-spacing: .04em; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 19px 34px;
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid var(--navy-800);
  color: var(--navy-800);
  overflow: hidden;
  isolation: isolate;
  transition: color .5s var(--ease), border-color .5s var(--ease);
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--navy-800);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .55s var(--ease-out-expo);
  z-index: -1;
}
.btn:hover { color: #fff; }
.btn:hover::after { transform: scaleX(1); transform-origin: left center; }
.btn .arw { transition: transform .45s var(--ease); }
.btn:hover .arw { transform: translateX(5px); }

.btn--brand { border-color: var(--brand); color: var(--brand); }
.btn--brand::after { background: var(--brand); }
.btn--light { border-color: rgba(255,255,255,.45); color: #fff; }
.btn--light::after { background: #fff; }
.btn--light:hover { color: var(--navy-900); border-color: #fff; }
.btn--solid { background: var(--navy-800); color: #fff; }
.btn--solid::after { background: var(--brand); }
.btn--solid:hover { border-color: var(--brand); }

.link-u {
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  transition: gap .4s var(--ease), color .4s;
}
.link-u:hover { gap: 18px; color: var(--brand); }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  padding: 0 var(--gut);
  transition: background .55s var(--ease), box-shadow .55s var(--ease), padding .4s;
}
.hdr__in {
  max-width: calc(var(--shell) + var(--gut) * 2);
  margin-inline: auto;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: height .45s var(--ease);
}
.hdr__logo { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.hdr__logo-mk {
  position: relative; display: block; flex-shrink: 0;
  width: 46px;
  transition: width .4s var(--ease);
}
.hdr__logo-mk .lg { width: 100%; display: block; transition: opacity .45s var(--ease); }
.hdr__logo-mk .lg--c { position: absolute; left: 0; top: 0; opacity: 0; }
.hdr__logo-tx {
  font-family: var(--f-en);
  font-size: 15px;
  letter-spacing: .11em;
  line-height: 1.25;
  color: #fff;
  transition: color .55s var(--ease);
}
.hdr__logo-tx small {
  display: block;
  font-size: 8.5px;
  letter-spacing: .3em;
  opacity: .68;
  margin-top: 3px;
}

.hdr__nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.hdr__nav a {
  position: relative;
  font-size: 13px;
  letter-spacing: .09em;
  color: rgba(255,255,255,.88);
  padding: 6px 0;
  transition: color .45s var(--ease);
}
.hdr__nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease-out-expo);
}
.hdr__nav a:hover::after,
.hdr__nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.hdr__nav a[aria-current="page"] { color: var(--brand-light); }

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

.lang {
  display: flex; align-items: center;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .16em;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color .55s var(--ease);
}
.lang button {
  padding: 7px 13px;
  color: rgba(255,255,255,.6);
  transition: background .4s, color .4s;
}
.lang button[aria-pressed="true"] { background: var(--brand); color: #fff; }

.hdr__cta { display: none; }
@media (min-width: 1100px) { .hdr__cta { display: inline-flex; padding: 14px 24px; } }

/* scrolled state */
.hdr.is-stuck {
  background: rgba(247, 245, 241, .93);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
}
.hdr.is-stuck .hdr__in { height: 72px; }
.hdr.is-stuck .hdr__logo-mk { width: 40px; }
.hdr.is-stuck .hdr__logo-mk .lg--w { opacity: 0; }
.hdr.is-stuck .hdr__logo-mk .lg--c { opacity: 1; }
.hdr.is-stuck .hdr__logo-tx { color: var(--navy-800); }
.hdr.is-stuck .hdr__nav a { color: var(--ink-70); }
.hdr.is-stuck .hdr__nav a[aria-current="page"] { color: var(--brand); }
.hdr.is-stuck .lang { border-color: var(--line); }
.hdr.is-stuck .lang button { color: var(--ink-50); }
.hdr.is-stuck .lang button[aria-pressed="true"] { color: #fff; }
.hdr.is-stuck .btn--light { border-color: var(--navy-800); color: var(--navy-800); }
.hdr.is-stuck .btn--light::after { background: var(--navy-800); }
.hdr.is-stuck .btn--light:hover { color: #fff; }
.hdr.is-stuck .burger span { background: var(--navy-800); }

/* pages with a light hero start in the stuck style */
.hdr--solid { background: rgba(247,245,241,.93); backdrop-filter: blur(16px); }

/* while the drawer is open the header sits on top of it, always in light-on-dark */
.hdr.is-nav {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.hdr.is-nav .hdr__logo-tx { color: #fff; }
.hdr.is-nav .hdr__logo-mk .lg--w { opacity: 1; }
.hdr.is-nav .hdr__logo-mk .lg--c { opacity: 0; }
.hdr.is-nav .lang { border-color: rgba(255,255,255,.28); }
.hdr.is-nav .lang button { color: rgba(255,255,255,.6); }
.hdr.is-nav .lang button[aria-pressed="true"] { color: #fff; }
.hdr.is-nav .burger span { background: #fff; }

/* burger */
.burger {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 42px; height: 42px;
  z-index: 120;
}
.burger span {
  display: block; height: 1.5px; width: 24px; margin-inline: auto;
  background: #fff;
  transition: transform .5s var(--ease-out-expo), opacity .3s, background .5s;
}
.burger.is-open span { background: #fff; }
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 1000px) { .burger { display: none; } }
@media (max-width: 999px) { .hdr__nav { display: none; } }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0;
  z-index: 110;
  background: var(--navy-900);
  padding: 120px var(--gut) 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  clip-path: circle(0% at calc(100% - 44px) 46px);
  transition: clip-path .8s var(--ease-out-expo);
  overflow-y: auto;
}
.drawer.is-open { clip-path: circle(150% at calc(100% - 44px) 46px); }
.drawer__nav a {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(24px, 6.5vw, 34px);
  color: #fff;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.drawer.is-open .drawer__nav a { opacity: 1; transform: none; }
.drawer__nav a span {
  display: block;
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--brand);
  margin-top: 4px;
}
.drawer__foot { color: rgba(255,255,255,.55); font-size: 12px; padding-top: 34px; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-900);
  color: #fff;
}
.hero__media { position: absolute; inset: 0; }
.hero__media .hero__still,
.hero__media .hero__vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}
.hero__media .hero__still {
  animation: kenburns 26s var(--ease) infinite alternate;
}
/* the film fades in over the still once it is actually playing, so a blocked
   or slow video never leaves the hero empty */
.hero__vid { opacity: 0; transition: opacity 1.4s var(--ease); }
.hero__vid.is-playing { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero__vid { display: none; } }
@keyframes kenburns {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to   { transform: scale(1.16) translate3d(-1.5%, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) { .hero__media img { animation: none; } }

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(3,15,30,.92) 0%, rgba(3,15,30,.72) 34%, rgba(3,15,30,.24) 66%, rgba(3,15,30,.45) 100%),
    linear-gradient(to top, rgba(3,15,30,.9) 0%, rgba(3,15,30,0) 45%);
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

.hero__in {
  position: relative;
  width: 100%;
  max-width: calc(var(--shell) + var(--gut) * 2);
  margin-inline: auto;
  padding: clamp(124px, 15vh, 158px) var(--gut) clamp(46px, 8vh, 96px);
}
.hero__label {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--brand-light);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: clamp(16px, 3vh, 30px);
}
.hero__label::before { content: ""; width: 46px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(29px, 4.9vw, 60px);
  line-height: 1.46;
  letter-spacing: .004em;
  max-width: 17em;
  text-shadow: 0 2px 40px rgba(0,0,0,.45);
}
html[lang="en"] .hero h1 { font-weight: 500; line-height: 1.22; letter-spacing: -.015em; }
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1.15s var(--ease-out-expo) forwards;
}
.hero h1 .ln:nth-child(2) > span { animation-delay: .13s; }
.hero h1 .ln:nth-child(3) > span { animation-delay: .26s; }
@keyframes lineUp { to { transform: none; } }

.hero__sub {
  margin-top: clamp(20px, 3vh, 32px);
  max-width: 50em;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 2.25;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out-expo) .5s forwards;
}
.hero__acts {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: clamp(26px, 4vh, 44px);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out-expo) .68s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* hero meta strip: live clocks + coordinates */
.hero__meta {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: clamp(26px, 4.5vh, 66px);
  padding-top: clamp(16px, 2.4vh, 24px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px 22px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out-expo) .85s forwards;
}
.hero__meta dt {
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 7px;
}
.hero__meta dd {
  font-family: var(--f-en);
  font-size: clamp(15px, 1.5vw, 19px);
  letter-spacing: .07em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.hero__meta dd small { font-size: 11px; opacity: .55; letter-spacing: .2em; margin-left: 6px; }

.scroll-cue {
  position: absolute;
  right: var(--gut); bottom: 0;
  display: none;
  writing-mode: vertical-rl;
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  padding-bottom: 92px;
}
@media (min-width: 1100px) { .scroll-cue { display: block; } }
.scroll-cue::after {
  content: "";
  position: absolute; left: 50%; bottom: 0;
  width: 1px; height: 76px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0%,100% { transform: scaleY(.35); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

/* short desktop viewports — keep the whole hero above the fold */
@media (min-width: 900px) and (max-height: 830px) {
  .hero h1 { font-size: clamp(28px, 3.6vw, 46px); line-height: 1.38; }
  .hero__sub { font-size: 13.5px; line-height: 2.05; max-width: 60em; }
  .hero__meta dt { font-size: 9.5px; }
  .hero__meta dd { font-size: 16px; }
  .scroll-cue { padding-bottom: 76px; }
}

/* page hero (subpages) */
.phero {
  position: relative;
  min-height: 60svh;
  display: flex; align-items: flex-end;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.phero__media { position: absolute; inset: 0; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.phero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,22,43,.95), rgba(5,22,43,.55) 55%, rgba(5,22,43,.7));
}
.phero__in { position: relative; width: 100%; padding: 160px 0 clamp(52px, 7vw, 84px); }
.phero h1 { font-family: var(--f-serif); font-weight: 700; font-size: clamp(28px, 4.6vw, 50px); line-height: 1.45; }
html[lang="en"] .phero h1 { font-weight: 500; letter-spacing: -.01em; }
.phero__en {
  font-family: var(--f-en); font-size: 11px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--brand-light); margin-top: 16px;
}

/* breadcrumb */
.crumbs { font-family: var(--f-en); font-size: 11px; letter-spacing: .16em; color: var(--ink-50); padding: 22px 0; }
.crumbs a:hover { color: var(--brand); }
.crumbs span { opacity: .5; margin: 0 8px; }

/* --------------------------------------------------------------------------
   8. Sections
   -------------------------------------------------------------------------- */
.sec { padding-block: var(--sec-y); position: relative; }
.sec--paper2 { background: var(--paper-2); }
.sec--dark { background: var(--navy-900); color: #fff; }
.sec--dark .lead, .sec--dark .body-s { color: rgba(255,255,255,.72); }
.sec--dark .eyebrow { color: var(--brand-light); }

.sec-head { max-width: 56em; margin-bottom: clamp(44px, 6vw, 72px); }
.sec-head .lead { max-width: 44em; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .lead { margin-inline: auto; }

/* let Japanese headings break on phrase boundaries where the browser supports it */
.h-xl, .h-lg, .h-md, .stmt__jp, .hero h1, .phero h1 { word-break: auto-phrase; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.sec--dark .rule { background: var(--line-dark); }

/* reveal-on-scroll — only armed when JS is running, so the page is never blank */
.rv { transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo); }
.js .rv { opacity: 0; transform: translateY(30px); }
.rv.is-in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }
.rv-d4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero h1 .ln > span, .hero__sub, .hero__acts, .hero__meta { animation: none; opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   9. Statement block
   -------------------------------------------------------------------------- */
.stmt { display: grid; gap: clamp(34px, 5vw, 76px); }
@media (min-width: 900px) { .stmt { grid-template-columns: 1fr 1.15fr; align-items: start; } }
.stmt__jp { font-family: var(--f-serif); font-size: clamp(21px, 2.6vw, 32px); line-height: 1.95; font-weight: 700; letter-spacing: .005em; }
html[lang="en"] .stmt__jp { font-weight: 500; line-height: 1.35; letter-spacing: -.015em; }
.stmt__jp em { font-style: normal; color: var(--brand); }

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border-top: 1px solid var(--line-dark);
}
.stats li {
  padding: 38px 22px 34px;
  border-bottom: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
}
.stats li:last-child { border-right: 0; }
.stats .n {
  font-family: var(--f-en);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.stats .n sup, .stats .n .u { font-size: .38em; margin-left: 5px; color: var(--brand-light); letter-spacing: .1em; }
.stats .k { font-size: 12px; letter-spacing: .14em; color: rgba(255,255,255,.62); margin-top: 14px; }

/* same tiles on a light background */
.stats--light { border-top-color: var(--line); }
.stats--light li { border-bottom-color: var(--line); border-right-color: var(--line); }
.stats--light .n { color: var(--navy-800); }
.stats--light .n sup, .stats--light .n .u { color: var(--brand); }
.stats--light .k { color: var(--ink-50); }

/* --------------------------------------------------------------------------
   11. 34°N map
   -------------------------------------------------------------------------- */
.mapwrap { position: relative; margin-top: clamp(40px, 6vw, 70px); }
.mapwrap svg { width: 100%; height: auto; overflow: visible; }
.map-land {
  fill: rgba(255, 255, 255, .085);
  stroke: rgba(255, 255, 255, .24);
  stroke-width: .7;
  stroke-linejoin: round;
}
.map-lat { stroke: var(--gold); stroke-width: 1; stroke-dasharray: 5 7; opacity: .5; }
.map-arc {
  fill: none;
  stroke: var(--brand);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(44,163,207,.65));
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}
.is-in .map-arc { animation: draw 2.6s var(--ease-out-expo) .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.map-pulse { fill: var(--brand-light); transform-origin: center; }
.map-city text { font-family: var(--f-en); font-size: 15px; letter-spacing: .2em; fill: #fff; }
.map-city .sub { font-size: 10px; fill: var(--brand-light); letter-spacing: .18em; }
.map-city circle.core { fill: #fff; }
.map-city circle.halo { fill: none; stroke: var(--brand); stroke-width: 1.2; opacity: .8; }
.is-in .map-city circle.halo { animation: halo 3s ease-out infinite; }
@keyframes halo { 0% { r: 5; opacity: .9; } 100% { r: 24; opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .map-arc { stroke-dashoffset: 0; animation: none; }
  .is-in .map-city circle.halo { animation: none; }
}

/* phone version of the 34°N link — a vertical line instead of a world map */
.map-mobile { display: none; text-align: center; padding: 4px 0; }
.map-mobile .nm {
  display: block;
  font-family: var(--f-en); font-size: 19px; letter-spacing: .22em; color: #fff;
}
.map-mobile .co {
  display: block;
  font-family: var(--f-en); font-size: 10px; letter-spacing: .2em;
  color: var(--brand-light); margin-top: 7px;
}
.map-mobile__line { position: relative; height: 128px; margin: 22px 0; }
.map-mobile__line::before {
  content: "";
  position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(var(--brand-light), var(--brand), var(--brand-light));
  opacity: .75;
}
.map-mobile__line::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 74px; height: 1px; margin-left: -37px;
  background: var(--gold); opacity: .45;
}
.map-mobile__line span {
  position: absolute; left: 50%; top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: var(--navy-900); padding: 7px 14px;
  font-family: var(--f-en); font-size: 12px; letter-spacing: .18em;
  color: var(--brand-light); white-space: nowrap;
}

/* --------------------------------------------------------------------------
   12. Business cards
   -------------------------------------------------------------------------- */
.cards { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
@media (min-width: 700px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 980px)  { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  background: var(--paper);
  padding: clamp(30px, 3.4vw, 46px) clamp(24px, 2.6vw, 38px) clamp(34px, 3.6vw, 50px);
  display: flex; flex-direction: column;
  min-height: 100%;
  transition: background .6s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease-out-expo);
}
.card:hover::before { transform: scaleX(1); }
.card:hover { background: #fff; }
.card__n { font-family: var(--f-en); font-size: 11px; letter-spacing: .28em; color: var(--gold); }
.card__ttl { font-family: var(--f-serif); font-weight: 700; font-size: clamp(17px, 1.7vw, 20px); line-height: 1.7; margin: 18px 0 14px; }
html[lang="en"] .card__ttl { font-weight: 600; }
.card__tx { font-size: 13.5px; line-height: 2.1; color: var(--ink-70); font-weight: 300; }
.card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 24px; }
.card__tags span {
  font-family: var(--f-en); font-size: 10px; letter-spacing: .12em;
  padding: 5px 11px; border: 1px solid var(--line); color: var(--ink-50);
}

/* --------------------------------------------------------------------------
   13. Feature rows (image + text, alternating)
   -------------------------------------------------------------------------- */
.frow { display: grid; gap: clamp(28px, 4vw, 64px); align-items: center; }
@media (min-width: 900px) { .frow { grid-template-columns: 1.05fr 1fr; } .frow--rev > .frow__fig { order: 2; } }
.frow + .frow { margin-top: clamp(60px, 8vw, 120px); }
.frow__fig { position: relative; overflow: hidden; }
.frow__fig img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  transition: transform 1.4s var(--ease-out-expo);
}
.frow:hover .frow__fig img { transform: scale(1.05); }
.frow__cap {
  position: absolute; left: 0; bottom: 0;
  background: var(--navy-900); color: #fff;
  font-family: var(--f-en); font-size: 10px; letter-spacing: .24em;
  padding: 10px 16px;
}

/* --------------------------------------------------------------------------
   14. Case studies
   -------------------------------------------------------------------------- */
.case { position: relative; }
.case + .case { margin-top: clamp(64px, 8vw, 120px); padding-top: clamp(64px, 8vw, 120px); border-top: 1px solid var(--line); }
.sec--dark .case + .case { border-color: var(--line-dark); }
.case__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px 20px; margin-bottom: 26px; }
.case__badge {
  font-family: var(--f-en); font-size: 10.5px; letter-spacing: .24em;
  color: #fff; background: var(--navy-800); padding: 7px 14px;
}
.case__grid { display: grid; gap: clamp(26px, 3.6vw, 54px); }
@media (min-width: 940px) { .case__grid { grid-template-columns: 1.1fr 1fr; } }
.case__figs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.case__figs img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.case__figs .span2 { grid-column: span 2; aspect-ratio: 16/8; }
/* two product shots side by side */
.duo-shot { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.duo-shot figure { margin: 0; background: #0a0a0b; }
.duo-shot img { width: 100%; display: block; }
.duo-shot figcaption {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .24em;
  text-align: center;
  color: rgba(255, 255, 255, .78);
  padding: 0 0 15px;
}

.case__pts { margin-top: 30px; display: grid; gap: 14px; }
.case__pts li { position: relative; padding-left: 26px; font-size: 14px; line-height: 2.05; font-weight: 300; }
.case__pts li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 12px; height: 1px; background: var(--brand);
}
.kpi { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.kpi div {
  border: 1px solid var(--line); padding: 14px 18px; min-width: 132px;
}
.sec--dark .kpi div { border-color: var(--line-dark); }
.kpi b { display: block; font-family: var(--f-en); font-size: 22px; font-weight: 400; color: var(--brand); line-height: 1.2; }
.kpi span { font-size: 11px; letter-spacing: .1em; color: var(--ink-50); }
.sec--dark .kpi span { color: rgba(255,255,255,.55); }

/* --------------------------------------------------------------------------
   15. Process timeline
   -------------------------------------------------------------------------- */
.tl { position: relative; padding-left: 42px; }
.tl::before {
  content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 1px; background: var(--line);
}
.sec--dark .tl::before { background: var(--line-dark); }
.tl__fill {
  position: absolute; left: 8px; top: 8px;
  width: 1px; height: 0;
  background: linear-gradient(var(--brand), var(--brand-light));
  transition: height 1.4s var(--ease);
}
.tl li { position: relative; padding-bottom: clamp(34px, 4vw, 52px); }
.tl li:last-child { padding-bottom: 0; }
.tl li::before {
  content: ""; position: absolute; left: -38px; top: 9px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--brand);
  transition: background .5s;
}
.sec--dark .tl li::before { background: var(--navy-900); }
.tl li.is-in::before { background: var(--brand); }
.tl__n { font-family: var(--f-en); font-size: 10.5px; letter-spacing: .26em; color: var(--gold); }
.tl__t { font-family: var(--f-serif); font-weight: 700; font-size: clamp(17px, 1.8vw, 21px); margin: 8px 0 10px; }
html[lang="en"] .tl__t { font-weight: 600; }

/* --------------------------------------------------------------------------
   16. Split showcase (Hiroshima / Los Angeles)
   -------------------------------------------------------------------------- */
.duo { display: grid; gap: 1px; background: var(--line-dark); }
@media (min-width: 800px) { .duo { grid-template-columns: 1fr 1fr; } }
.duo__c { position: relative; overflow: hidden; min-height: clamp(320px, 44vw, 500px); display: flex; align-items: flex-end; }
.duo__c img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease-out-expo); }
.duo__c:hover img { transform: scale(1.07); }
.duo__c::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,22,43,.92), rgba(5,22,43,.15) 65%); }
.duo__b { position: relative; z-index: 1; padding: clamp(26px, 3vw, 44px); color: #fff; width: 100%; }
.duo__b .co { font-family: var(--f-en); font-size: 10.5px; letter-spacing: .26em; color: var(--brand-light); }
.duo__b h3 { font-family: var(--f-en); font-weight: 400; letter-spacing: .06em; font-size: clamp(26px, 3.4vw, 40px); margin: 10px 0 6px; }
.duo__b p { font-size: 13px; line-height: 2; color: rgba(255,255,255,.75); font-weight: 300; max-width: 30em; }
.duo__b .jp { font-family: var(--f-serif); font-size: 15px; letter-spacing: .08em; }

/* --------------------------------------------------------------------------
   17. Leadership
   -------------------------------------------------------------------------- */
.org { display: grid; gap: clamp(30px, 4vw, 60px); }
@media (min-width: 860px) { .org { grid-template-columns: 1fr 1fr; } }
.org__box { border: 1px solid var(--line); padding: clamp(26px, 3vw, 40px); background: #fff; }
.sec--dark .org__box { border-color: var(--line-dark); background: rgba(255,255,255,.03); }
.org__tag {
  display: inline-block; font-family: var(--f-en); font-size: 10px; letter-spacing: .26em;
  background: var(--navy-800); color: #fff; padding: 6px 13px; margin-bottom: 18px;
}
.org__nm { font-family: var(--f-serif); font-weight: 700; font-size: clamp(19px, 2vw, 23px); }
html[lang="en"] .org__nm { font-weight: 600; }
.org__role { font-size: 12.5px; color: var(--ink-70); margin-top: 6px; line-height: 1.9; }
.sec--dark .org__role { color: rgba(255,255,255,.65); }
.org dl { margin-top: 26px; border-top: 1px solid var(--line); }
.sec--dark .org dl { border-color: var(--line-dark); }
.org dl > div { display: grid; grid-template-columns: 8.5em 1fr; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.sec--dark .org dl > div { border-color: var(--line-dark); }
.org dt { font-size: 12px; letter-spacing: .1em; color: var(--ink-50); }
.sec--dark .org dt { color: rgba(255,255,255,.5); }
.org dd { font-size: 13.5px; }
@media (max-width: 520px) { .org dl > div { grid-template-columns: 1fr; gap: 3px; } }

/* --------------------------------------------------------------------------
   18. Contact / CTA
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--navy-900);
}
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(5,22,43,.94) 20%, rgba(5,22,43,.55)); }
.cta__in { position: relative; padding-block: clamp(80px, 11vw, 150px); }

.form { display: grid; gap: 22px; }
@media (min-width: 720px) { .form { grid-template-columns: 1fr 1fr; } .form .full { grid-column: 1 / -1; } }
.field label {
  display: block; font-size: 11.5px; letter-spacing: .14em; color: var(--ink-50); margin-bottom: 9px;
}
.field .req { color: var(--brand); margin-left: 5px; font-size: 10px; }
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit; font-size: 15px;
  padding: 15px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border-color .4s, box-shadow .4s;
  -webkit-appearance: none; appearance: none;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--ink-50) 50%), linear-gradient(135deg, var(--ink-50) 50%, transparent 50%); background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px; background-size: 6px 6px; background-repeat: no-repeat; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(44,163,207,.14);
}
.field textarea { min-height: 170px; resize: vertical; line-height: 1.9; }
.form__note { font-size: 12px; color: var(--ink-50); line-height: 1.9; }

.contact-cards { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 780px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
.contact-cards > div { background: #fff; padding: clamp(26px, 3vw, 40px); }
.contact-cards h3 { font-family: var(--f-serif); font-weight: 700; font-size: 19px; margin-bottom: 6px; }
html[lang="en"] .contact-cards h3 { font-weight: 600; }
.contact-cards .tel {
  font-family: var(--f-en); font-size: 26px; letter-spacing: .04em; color: var(--navy-800);
  display: inline-block; margin-top: 14px;
}
.contact-cards .tel:hover { color: var(--brand); }
.contact-cards .mail {
  font-family: var(--f-en);
  font-size: clamp(16px, 1.9vw, 21px);
  letter-spacing: .02em;
  color: var(--navy-800);
  display: inline-block;
  margin-top: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  word-break: break-all;
  transition: color .4s, border-color .4s;
}
.contact-cards .mail:hover { color: var(--brand); border-color: var(--brand); }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.ftr { background: var(--navy-900); color: rgba(255,255,255,.72); padding-top: clamp(60px, 8vw, 96px); }
.ftr__top { display: grid; gap: clamp(38px, 5vw, 64px); padding-bottom: clamp(44px, 6vw, 70px); }
@media (min-width: 900px) { .ftr__top { grid-template-columns: 1.25fr 1fr 1fr; } }
.ftr__logo { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.ftr__logo img { width: 52px; }
.ftr__logo b { font-family: var(--f-en); font-weight: 400; font-size: 17px; letter-spacing: .1em; color: #fff; display: block; }
.ftr__logo small { font-family: var(--f-en); font-size: 8.5px; letter-spacing: .3em; color: var(--brand-light); }
.ftr h4 { font-family: var(--f-en); font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--brand-light); margin-bottom: 20px; font-weight: 400; }
.ftr address { font-style: normal; font-size: 13px; line-height: 2.1; }
.ftr__links li { margin-bottom: 11px; }
.ftr__links a { font-size: 13px; transition: color .4s, padding .4s; }
.ftr__links a:hover { color: var(--brand-light); padding-left: 6px; }
.ftr__bot {
  border-top: 1px solid var(--line-dark);
  padding: 24px 0 30px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-family: var(--f-en); font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.45);
}
.clock { font-family: var(--f-en); font-variant-numeric: tabular-nums; letter-spacing: .08em; }

/* --------------------------------------------------------------------------
   20. Loader
   -------------------------------------------------------------------------- */
.loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--navy-900);
  display: none;
  place-items: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.js .loader { display: grid; }
.loader.is-done { opacity: 0; visibility: hidden; }
.loader img { width: 96px; opacity: 0; animation: fadeUp .9s var(--ease-out-expo) .1s forwards; }
.loader__bar { width: 140px; height: 1px; background: rgba(255,255,255,.18); margin-top: 26px; overflow: hidden; }
.loader__bar i { display: block; height: 100%; width: 100%; background: var(--brand); transform: scaleX(0); transform-origin: left; animation: load 1.1s var(--ease-out-expo) .15s forwards; }
@keyframes load { to { transform: scaleX(1); } }

/* --------------------------------------------------------------------------
   21. Marquee
   -------------------------------------------------------------------------- */
.mq { overflow: hidden; border-block: 1px solid var(--line-dark); padding: 20px 0; }
.mq__t { display: flex; gap: 60px; width: max-content; animation: mq 38s linear infinite; }
.mq__t span {
  font-family: var(--f-en); font-weight: 300; letter-spacing: .1em;
  font-size: clamp(19px, 2.4vw, 30px); color: rgba(255,255,255,.28); white-space: nowrap;
  display: flex; align-items: center; gap: 60px;
}
.mq__t span::after { content: "◆"; font-size: 7px; color: var(--gold); }
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .mq__t { animation: none; } }

/* --------------------------------------------------------------------------
   22. Utilities
   -------------------------------------------------------------------------- */
.mt-s { margin-top: 20px; }
.mt-m { margin-top: 34px; }
.mt-l { margin-top: clamp(40px, 5vw, 64px); }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.grid-2 { display: grid; gap: clamp(26px, 3.4vw, 50px); }
@media (min-width: 820px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.notice {
  border-left: 2px solid var(--brand);
  padding: 4px 0 4px 20px;
  font-size: 13px; line-height: 2.05; color: var(--ink-70); font-weight: 300;
}
.sec--dark .notice { color: rgba(255,255,255,.7); }

/* --------------------------------------------------------------------------
   23. iPhone / small-screen tuning
   The site is read on a phone more often than anywhere else, so the phone
   layout is treated as a first-class design, not a fallback.
   -------------------------------------------------------------------------- */
* { -webkit-tap-highlight-color: rgba(44, 163, 207, .16); }

/* never let a notch or a home indicator eat the content */
@supports (padding: max(0px)) {
  .shell,
  .hdr {
    padding-left: max(var(--gut), env(safe-area-inset-left));
    padding-right: max(var(--gut), env(safe-area-inset-right));
  }
  .hero__in,
  .phero__in > .shell { padding-left: max(var(--gut), env(safe-area-inset-left)); padding-right: max(var(--gut), env(safe-area-inset-right)); }
  .drawer { padding-bottom: max(48px, env(safe-area-inset-bottom)); }
  .ftr__bot { padding-bottom: max(30px, env(safe-area-inset-bottom)); }
}

/* 16px minimum stops iOS Safari zooming the page on focus */
.field input, .field textarea, .field select { font-size: 16px; }

@media (max-width: 680px) {
  :root { --sec-y: 78px; --gut: 22px; }

  body { font-size: 15px; }

  /* header */
  .hdr__in { height: 66px; }
  .hdr.is-stuck .hdr__in { height: 58px; }
  .hdr__logo-mk { width: 36px; }
  .hdr.is-stuck .hdr__logo-mk { width: 32px; }
  .hdr__logo-tx { font-size: 13px; letter-spacing: .08em; }
  .hdr__logo-tx small { font-size: 7px; letter-spacing: .22em; }
  .hdr__right { gap: 10px; }
  .lang { font-size: 10px; }
  .lang button { padding: 8px 10px; }

  .drawer { padding-top: 104px; }

  /* hero — the whole thing has to land inside one phone screen */
  .hero__in { padding-top: 116px; padding-bottom: 30px; }
  .hero__label { font-size: 9px; letter-spacing: .14em; gap: 9px; margin-bottom: 16px; }
  .hero__label::before { width: 22px; }
  .hero h1 { font-size: 30px; line-height: 1.58; max-width: none; }
  html[lang="en"] .hero h1 { font-size: 33px; line-height: 1.22; }
  .hero__sub { font-size: 13px; line-height: 2.0; margin-top: 20px; }
  .hero__acts { gap: 10px; margin-top: 26px; }
  .hero__acts .btn { flex: 1 1 0; justify-content: center; padding: 16px 10px; font-size: 10px; letter-spacing: .1em; gap: 7px; }
  .hero__meta { grid-template-columns: 1fr 1fr; margin-top: 24px; padding-top: 16px; gap: 14px; }
  .hero__meta > div:nth-child(n + 3) { display: none; }
  .hero__meta dt { font-size: 9px; margin-bottom: 4px; }
  .hero__meta dd { font-size: 18px; }

  .phero { min-height: 46svh; }
  .phero__in { padding-top: 128px; padding-bottom: 40px; }

  /* typography */
  .h-xl { font-size: 25px; line-height: 1.72; }
  .h-lg { font-size: 22px; line-height: 1.75; }
  .h-md { font-size: 18px; }
  .stmt__jp { font-size: 21px; line-height: 1.95; }
  .lead { font-size: 14.5px; line-height: 2.15; }
  .eyebrow { font-size: 10px; letter-spacing: .26em; margin-bottom: 20px; }

  /* touch targets */
  .btn { padding: 17px 26px; font-size: 11px; }
  .link-u { padding-block: 8px 8px; }
  .ftr__links a { display: inline-block; padding-block: 4px; }

  /* stats: two per row, not four cramped columns */
  .stats { grid-template-columns: 1fr 1fr; }
  .stats li { padding: 26px 16px 24px; }
  .stats li:nth-child(2n) { border-right: 0; }
  .stats .n { font-size: 34px; }
  .stats .k { font-size: 11px; margin-top: 10px; line-height: 1.8; }

  /* the world map is unreadable at phone width — show the vertical version */
  .mapwrap svg { display: none; }
  .map-mobile { display: block; }

  .card { padding: 28px 22px 32px; }
  .case__figs { gap: 8px; }
  .kpi div { min-width: 0; flex: 1 1 44%; padding: 12px 14px; }

  .tl { padding-left: 32px; }
  .tl::before, .tl__fill { left: 5px; }
  .tl li::before { left: -31px; }

  .duo__c { min-height: 300px; }
  .contact-cards .tel { font-size: 24px; padding-block: 6px; }

  /* full-width primary actions are easier to hit with a thumb */
  .form button[type="submit"],
  .cta .btn,
  .sec > .shell > p > .btn { width: 100%; justify-content: center; }

  .mq__t { gap: 34px; }
  .mq__t span { gap: 34px; font-size: 19px; }

  .ftr__top { gap: 36px; }
}

/* very small phones (iPhone SE / mini) */
@media (max-width: 380px) {
  .hero h1 { font-size: 27px; }
  .hero__acts .btn { font-size: 9.5px; padding: 15px 8px; }
  .hdr__logo-tx small { display: none; }
  .stats .n { font-size: 30px; }
}
