/* ============================================
   Tokens — theme-construction
   ============================================ */
:root {
  --bg: #fbf8f5;
  --surface: #ffffff;
  --ink: #2a241d;
  --ink-2: #5b4a32;
  --muted: #8a8175;
  --line: #e7e0d4;
  --accent: #8a6b4a;       /* earth brown */
  --accent-deep: #6a5036;
  --accent-soft: #efe5d3;  /* warm cream accent */
  --green: #6b7a55;        /* planting green (subtle) */
  --wood: #d8c4a8;         /* wood beige (lines / bg) */
  --radius: 10px;
  --radius-lg: 14px;
  --space-9: 128px;
  --space-8: 80px;
  --shadow-md: 0 10px 30px rgba(40,30,20,.08);
  --shadow-sm: 0 4px 14px rgba(40,30,20,.06);
  --font-jp: "Noto Sans JP","Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo",sans-serif;
  --font-en: "Inter","Noto Sans JP",sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-jp);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75;
  font-size: 16px;
  letter-spacing: .02em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; line-height: 1.4; font-weight: 700; letter-spacing: .04em; }

/* ============================================
   Header — editorial split with numbered nav
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
}
.site-header::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(140%) blur(10px);
}
.site-header__inner {
  max-width: 1380px; margin: 0 auto;
  padding: 14px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 40px; align-items: center;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px; color: var(--ink);
}
.brand__logo { display: block; height: 48px; width: auto; }
.brand__mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s;
}
.brand:hover .brand__mark { transform: rotate(-8deg); }
.brand__text { display: inline-flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-size: 15px; font-weight: 700; letter-spacing: .12em; }
.brand__eng {
  font-family: var(--font-en); font-size: 9.5px; letter-spacing: .26em;
  color: var(--muted); margin-top: 4px;
}

.nav {
  display: flex; gap: 4px; justify-self: center;
}
.nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--ink);
  transition: background .15s;
}
.nav__t {
  font-size: 13px; font-weight: 600; letter-spacing: .08em; line-height: 1.1;
}
.nav__en {
  font-family: var(--font-en); font-size: 9.5px; letter-spacing: .18em;
  color: var(--muted); text-transform: uppercase; margin-top: 2px;
}
.nav a:hover { background: var(--accent-soft); }
.nav__mobile-cta { display: none; }

.site-header__cta {
  display: flex; align-items: center; justify-content: flex-end; gap: 14px;
}
.header-tel {
  display: inline-flex; align-items: center; gap: 10px;
  border-left: 1px solid var(--line);
  padding: 4px 0 4px 18px;
}
.header-tel__icon {
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.header-tel__icon svg { width: 24px; height: 24px; }
.header-tel__label {
  display: block; font-family: var(--font-en); font-size: 9.5px;
  letter-spacing: .22em; color: var(--muted); text-transform: uppercase;
}
.header-tel__num {
  display: block; font-family: var(--font-en); font-weight: 600;
  font-size: 16px; letter-spacing: .04em; color: var(--ink); white-space: nowrap;
}
.btn--sm { padding: 10px 16px; font-size: 12px; }

.hamburger {
  display: none; background: none; border: 0; padding: 8px;
  flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger span { width: 22px; height: 1.5px; background: var(--ink); display: block; }

/* ============================================
   Hero — full-bleed photo, type laid directly
   ============================================ */
.hero {
  position: relative;
  height: calc(100vh - 60px);
  min-height: 640px;
  max-height: 860px;
  overflow: hidden;
  color: #fff;
  background: #1f1a14;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  /* slow ken-burns drift + cross-fade slideshow (3 images, 18s cycle) */
  animation: kenburns 24s ease-in-out infinite alternate, herofade 18s ease-in-out infinite;
}
.hero__bg img:nth-of-type(1) { animation-delay: 0s, 0s; }
.hero__bg img:nth-of-type(2) { animation-delay: 0s, -6s; }
.hero__bg img:nth-of-type(3) { animation-delay: 0s, -12s; }
@keyframes kenburns {
  from { transform: scale(1.04) translate(-.4%, -.4%); }
  to   { transform: scale(1.10) translate(.6%, .8%); }
}
@keyframes herofade {
  0%   { opacity: 1; }
  30%  { opacity: 1; }
  36%  { opacity: 0; }
  97%  { opacity: 0; }
  100% { opacity: 1; }
}
.hero__bg-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,15,10,.35) 0%, rgba(20,15,10,0) 28%, rgba(20,15,10,0) 50%, rgba(20,15,10,.55) 100%),
    linear-gradient(90deg, rgba(20,15,10,.45) 0%, rgba(20,15,10,0) 55%);
}

/* Decorative side rail with vertical English type */
.hero__side {
  position: absolute; top: 28px; right: 36px; bottom: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  font-family: var(--font-en); font-size: 10.5px; letter-spacing: .42em;
  color: rgba(255,255,255,.78); writing-mode: vertical-rl;
  text-transform: uppercase; z-index: 2;
}
.hero__side-dot { writing-mode: horizontal-tb; color: var(--wood); font-size: 6px; line-height: 1; }
.hero__side::before, .hero__side::after {
  content: ""; flex: 1; width: 1px; background: rgba(255,255,255,.35);
}

/* Bottom-left scroll cue */
.hero__scroll {
  position: absolute; left: 56px; bottom: 36px; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-en); font-size: 10.5px; letter-spacing: .32em;
  color: rgba(255,255,255,.78);
}
.hero__scroll-line {
  width: 56px; height: 1px; background: rgba(255,255,255,.5);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: -40%; top: 0; bottom: 0; width: 40%;
  background: var(--wood);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine { to { left: 100%; } }

/* Top-right plate index */
.hero__index {
  position: absolute; top: 40px; left: 56px; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-en); font-size: 10.5px; letter-spacing: .32em;
  color: rgba(255,255,255,.78);
}
.hero__index-no { font-size: 13px; color: var(--wood); }

/* Main type frame */
.hero__frame {
  position: relative; z-index: 2;
  height: 100%;
  max-width: 1180px; margin: 0 auto;
  padding: 0 56px;
  display: flex; flex-direction: column; justify-content: center;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-en); font-size: 11px; letter-spacing: .28em;
  color: rgba(255,255,255,.85); margin: 0 0 28px;
  text-transform: uppercase;
}
.hero__eyebrow .line { width: 36px; height: 1px; background: var(--wood); }

.hero__h {
  display: block; margin: 0 0 28px;
}
.hero__h-en {
  display: block;
  font-family: "Noto Serif JP", "Times New Roman", serif;
  font-weight: 400; font-style: normal;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05; letter-spacing: .005em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.hero__h-jp {
  display: block;
  margin-top: 22px;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: .12em; font-weight: 500;
  line-height: 1.8;
  color: rgba(255,255,255,.95);
}

.hero__sub {
  max-width: 460px;
  font-size: 14px; line-height: 2; letter-spacing: .08em;
  color: rgba(255,255,255,.82);
  margin: 0 0 36px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================
   Meta bar — sits below hero
   ============================================ */
.metabar {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.metabar__inner {
  max-width: 1180px; margin: 0 auto;
  padding: 28px 32px;
  display: grid; grid-template-columns: 1.1fr 2fr; gap: 32px; align-items: center;
}
.metabar__brand { display: flex; flex-direction: column; gap: 4px; }
.metabar__en {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .28em;
  color: var(--accent); margin: 0; text-transform: uppercase;
}
.metabar__jp {
  font-size: 15px; letter-spacing: .08em; margin: 0;
  color: var(--ink); font-weight: 600;
}
.metabar__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}
.metabar__stats > div {
  padding: 6px 24px;
  display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid var(--line);
}
.metabar__stats > div:last-child { border-right: 0; }
.meta__num {
  font-family: var(--font-en); font-size: 30px; font-weight: 500;
  color: var(--ink); letter-spacing: .01em; line-height: 1.15;
}
.meta__num small { font-size: 13px; margin-left: 3px; color: var(--accent); font-weight: 500; }
.meta__lbl { font-size: 11px; color: var(--muted); letter-spacing: .14em; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px;
  font-size: 14px; letter-spacing: .08em; font-weight: 600;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  cursor: pointer; border: 1px solid transparent;
  font-family: var(--font-jp);
}
.btn__sub {
  font-family: var(--font-jp); font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,.8); margin-left: 8px; letter-spacing: .06em;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-deep); }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line); padding: 14px 28px;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--white { background: #fff; color: var(--accent); }
.btn--white:hover { background: var(--bg); }
.btn--white-outline { border-color: rgba(255,255,255,.75); color: #fff; }
.btn--white-outline:hover { background: #fff; color: var(--accent); }
.btn--lg { padding: 16px 26px; font-size: 14px; }
.btn--lg .btn__sub { color: rgba(255,255,255,.78); }

.link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-en); font-size: 12px; letter-spacing: .14em;
  color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 4px;
  text-transform: uppercase;
}
.link span { transition: transform .2s; display: inline-block; }
.link:hover span { transform: translateX(4px); }
.link--lg { font-size: 13px; }

/* ============================================
   Section heads / labels
   ============================================ */
.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en); font-size: 11px; letter-spacing: .22em;
  color: var(--accent); text-transform: uppercase; margin: 0 0 16px;
}
.label .bar {
  display: inline-block; width: 28px; height: 1px; background: var(--accent);
}
.label > span:last-child {
  font-family: var(--font-jp); letter-spacing: .14em; color: var(--ink-2);
  font-size: 11px;
}

.sec-head { padding: 0 0 48px; }
.sec-head__h {
  font-size: 32px; letter-spacing: .06em; line-height: 1.5;
  margin: 0 0 16px; text-wrap: pretty;
}
.sec-head__p { color: var(--ink-2); margin: 0; font-size: 15px; }
.sec-head--center { text-align: center; padding-bottom: 56px; }
.sec-head--center .label { justify-content: center; }
.sec-head--row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
}

/* ============================================
   Lead — scattered photos around centered text
   ============================================ */
.lead {
  position: relative;
  padding: var(--space-9) 32px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead__scatter {
  position: absolute; inset: 40px 0 0;
  pointer-events: none;
}
.lead__text {
  position: relative; z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0;
}
.lead .label { justify-content: center; }
.lead__h {
  font-size: 30px; line-height: 1.75; letter-spacing: .12em;
  font-weight: 600; margin: 0 0 28px;
}
.lead__p {
  color: var(--ink-2); margin: 0; line-height: 2;
}

/* Scattered photo figures — pointer-events restored so hover works */
.scatter {
  position: absolute;
  margin: 0;
  pointer-events: auto;
  filter: drop-shadow(0 14px 30px rgba(40,30,20,.12));
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.scatter img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 6px;
}
.scatter:hover { transform: translateY(-4px) !important; }

/* Sizes intentionally varied — small / medium / tall / wide — for rhythm */
.scatter--1 {
  top: 40px; left: 10px;
  width: 160px; height: 110px;
}
.scatter--2 {
  top: 0; right: 60px;
  width: 200px; height: 280px;
}
.scatter--3 {
  bottom: 0; left: 80px;
  width: 240px; height: 320px;
}
.scatter--4 {
  bottom: 60px; right: 0;
  width: 320px; height: 200px;
}

/* Decorative typographic accents floating in scatter */
.scatter-deco {
  position: absolute;
  font-family: var(--font-en);
  color: var(--accent);
  letter-spacing: .02em;
  opacity: .85;
  pointer-events: none;
}
.scatter-deco--a {
  top: 50%; left: 50%;
  transform: translate(-50%, -220px);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .2em;
  font-style: normal;
  font-family: var(--font-en);
  text-transform: uppercase;
  white-space: nowrap;
}
.scatter-deco--b {
  bottom: 14%; left: 50%;
  transform: translate(-50%, 0);
  font-size: 13px;
  font-family: var(--font-en);
  font-style: normal;
  letter-spacing: .26em;
  color: var(--accent);
  white-space: nowrap;
}

.scatter-line {
  position: absolute; left: 0; right: 0; top: 40%; bottom: 0;
  width: 100%; height: 60%;
  opacity: .9;
}

/* ============================================
   Services — editorial horizontal rows
   ============================================ */
.services {
  max-width: 1280px; margin: 0 auto;
  padding: var(--space-9) 32px;
}
.services__head {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 64px; align-items: end;
  padding-bottom: 64px;
}
.services__h {
  font-size: 44px; line-height: 1.4; letter-spacing: .06em;
  margin: 18px 0 0; font-weight: 700;
}
.services__lead {
  font-size: 14px; line-height: 2; color: var(--ink-2); margin: 0;
}

.service-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1.4fr 1fr 60px;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left .3s ease, background .3s ease;
}
.service-row:hover {
  padding-left: 16px;
  background: var(--accent-soft);
}
.service-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform .3s ease;
}
.service-row:hover::before { transform: scaleY(1); }

.service-row__no {
  font-family: "Noto Serif JP", serif; font-weight: 400;
  font-size: 48px; line-height: 1; color: var(--accent);
  letter-spacing: -.01em;
}
.service-row__body { display: flex; flex-direction: column; gap: 10px; }
.service-row__cat {
  font-family: var(--font-en); font-size: 10.5px; letter-spacing: .28em;
  color: var(--muted); margin: 0; text-transform: uppercase;
}
.service-row__t {
  font-size: 24px; letter-spacing: .08em; margin: 0;
  font-weight: 700;
}
.service-row__p {
  font-size: 13.5px; line-height: 1.9; color: var(--ink-2); margin: 0;
}
.service-row__tags {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 11px;
}
.service-row__tags li {
  display: inline-flex; align-items: center;
  letter-spacing: .12em; color: var(--ink-2);
  padding-left: 14px; position: relative;
}
.service-row__tags li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 8px; height: 1px; background: var(--accent);
}
.service-row__link {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); justify-self: end;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.service-row:hover .service-row__link {
  background: var(--accent); color: #fff; border-color: var(--accent);
  transform: rotate(-45deg);
}

/* ============================================
   Works — horizontal slider
   ============================================ */
.works {
  padding: var(--space-9) 0;
  overflow: hidden;
}
.works__head {
  max-width: 1180px; margin: 0 auto 48px;
  padding: 0 32px;
  align-items: flex-end;
}
.works__ctrl {
  display: flex; align-items: center; gap: 24px;
}
.works__count {
  font-family: var(--font-en); font-size: 13px; letter-spacing: .14em;
  color: var(--muted); margin: 0; white-space: nowrap;
}
.works__count #works-current { color: var(--ink); font-weight: 600; font-size: 16px; }
.works__count-sep { margin: 0 6px; }
.works__nav { display: flex; gap: 8px; }
.nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--ink); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
}
.nav-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.nav-btn:disabled { opacity: .35; cursor: not-allowed; }
.nav-btn:disabled:hover { background: var(--surface); color: var(--ink); border-color: var(--line); }

.works-slider {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.works-track {
  display: flex; gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-left: 0;
  scrollbar-width: none;
  padding-bottom: 8px;
  /* allow last card to scroll fully into view */
  padding-right: 30%;
}
.works-track::-webkit-scrollbar { display: none; }
.works-track .work {
  flex: 0 0 calc((100% - 28px) / 2);
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 18px;
  cursor: pointer;
  position: relative;
}
.work__no {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .22em;
  color: var(--muted); margin: 0; text-transform: uppercase;
}
.work__img {
  aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius);
  background: #e9e1d2;
}
.work__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.work:hover .work__img img { transform: scale(1.04); }
.work__meta { display: flex; flex-direction: column; gap: 8px; }
.work__loc {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .2em;
  color: var(--accent); margin: 0; text-transform: uppercase;
}
.work__t {
  font-size: 18px; letter-spacing: .06em; line-height: 1.6; margin: 0;
  font-weight: 600;
}
.work__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: var(--ink-2);
}
.work__tags li {
  background: var(--accent-soft); padding: 3px 10px; border-radius: 999px;
  letter-spacing: .08em;
}

.works__progress {
  margin-top: 28px;
  height: 2px;
  background: var(--line);
  position: relative; overflow: hidden;
  border-radius: 2px;
}
.works__progress-bar {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 33%;
  background: var(--accent);
  transition: width .3s ease, transform .3s ease;
  transform-origin: left;
}

/* ============================================
   Flow — editorial side-by-side timeline
   ============================================ */
.flow {
  background: #f4ede0;
  padding: var(--space-9) 32px;
  position: relative;
}
.flow__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 360px 1fr; gap: 96px;
  align-items: flex-start;
}
.flow__intro {
  position: sticky; top: 96px;
}
.flow__intro .label { margin-bottom: 24px; }
.flow__h {
  font-size: 34px; line-height: 1.55; letter-spacing: .08em;
  margin: 0 0 28px; font-weight: 700;
}
.flow__lead {
  font-size: 14px; line-height: 2; color: var(--ink-2); margin: 0 0 40px;
}
.flow__lead strong { color: var(--accent); font-weight: 700; }
.flow__free {
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
  background: var(--bg);
}
.flow__free-no {
  font-family: var(--font-en); font-size: 10.5px; letter-spacing: .28em;
  color: var(--muted); text-transform: uppercase;
}
.flow__free-tag {
  font-family: var(--font-en); font-size: 18px; letter-spacing: .12em;
  color: var(--accent); font-weight: 600;
}
.flow__free-jp { font-size: 13px; color: var(--ink-2); }

.flow-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid #d6c9b1;
}
.flow-step {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid #d6c9b1;
  position: relative;
  transition: padding-left .3s ease;
}
.flow-step:hover { padding-left: 12px; }
.flow-step__no {
  font-family: "Noto Serif JP", serif; font-weight: 400;
  font-size: 64px; line-height: 1; color: var(--accent);
  letter-spacing: -.02em;
  display: flex; align-items: flex-start;
}
.flow-step--free .flow-step__no { color: var(--accent); }
.flow-step:not(.flow-step--free) .flow-step__no { color: #b8a888; }
.flow-step__no span { display: inline-block; }
.flow-step__body { padding-top: 8px; }
.flow-step__cat {
  font-family: var(--font-en); font-size: 10.5px; letter-spacing: .28em;
  color: var(--muted); margin: 0 0 10px; text-transform: uppercase;
}
.flow-step__t {
  font-size: 22px; letter-spacing: .08em; line-height: 1.5;
  margin: 0 0 12px; font-weight: 700;
  display: flex; align-items: center; gap: 12px;
}
.flow-step__free {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: .18em;
  background: var(--accent); color: #fff;
  padding: 3px 8px; border-radius: 3px;
}
.flow-step__p {
  font-size: 14px; line-height: 1.9; color: var(--ink-2); margin: 0;
}

/* ============================================
   Voices — editorial pull quotes on dark cream
   ============================================ */
.voices {
  background: #2a241d;
  color: #f4ede0;
  padding: var(--space-9) 32px;
  position: relative; overflow: hidden;
}
.voices::before {
  content: "";
  position: absolute; top: -120px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(216,196,168,.08), transparent 70%);
  pointer-events: none;
}
.voices__inner {
  max-width: 1180px; margin: 0 auto;
  position: relative;
}
.voices__head {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 32px 48px; align-items: end;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(216,196,168,.18);
}
.voices__head .label { margin: 0; }
.voices__head .label > span:last-child { color: rgba(244,237,224,.6); }
.voices__head .label .bar { background: var(--wood); }
.voices__head .label > span:first-child { color: var(--wood); }
.voices__h {
  font-size: 32px; letter-spacing: .08em; line-height: 1.5; margin: 0;
  color: #f4ede0;
}
.voices__lead {
  font-size: 13px; line-height: 1.9; color: rgba(244,237,224,.7); margin: 0;
  max-width: 320px;
}
.voice-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding-top: 64px;
}
.voice {
  display: flex; flex-direction: column; gap: 28px;
  position: relative;
  padding: 0;
}
.voice__head {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-en); font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase;
}
.voice__no {
  color: var(--wood); padding: 4px 10px; border: 1px solid rgba(216,196,168,.4);
  border-radius: 3px; white-space: nowrap;
}
.voice__where { color: rgba(244,237,224,.6); font-size: 11px; letter-spacing: .22em; }
.voice__t {
  font-family: "Noto Serif JP", serif; font-weight: 400;
  font-size: 22px; line-height: 1.85; letter-spacing: .04em;
  color: #f4ede0;
  margin: 0; text-wrap: pretty;
  position: relative;
  padding-left: 24px;
  border-left: 1px solid rgba(216,196,168,.35);
}
.voice__foot {
  display: flex; align-items: center; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(216,196,168,.18);
}
.voice__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--wood); color: #2a241d;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 13px; font-weight: 600; letter-spacing: .04em;
  flex-shrink: 0;
}
.voice__meta {
  display: flex; gap: 24px; margin: 0; flex-wrap: wrap;
}
.voice__meta > div { display: flex; flex-direction: column; gap: 2px; }
.voice__meta dt {
  font-family: var(--font-en); font-size: 9.5px; letter-spacing: .22em;
  color: rgba(244,237,224,.45); text-transform: uppercase;
  margin: 0;
}
.voice__meta dd {
  margin: 0; font-size: 13px; color: var(--wood); letter-spacing: .06em;
}

/* ============================================
   Area & company info — full-bleed map + grid below
   ============================================ */
.area {
  padding: var(--space-9) 0;
  /* not max-width constrained so map can be full bleed */
}
.area__top, .area__bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
}
.area__head {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px;
  align-items: end;
  padding-bottom: 56px;
}
.area__h {
  font-size: 44px; line-height: 1.4; letter-spacing: .06em;
  margin: 18px 0 0; font-weight: 700;
}
.area__lead {
  font-size: 14px; line-height: 2; color: var(--ink-2); margin: 0;
}

.area__map {
  position: relative;
  width: 100%;
  height: 520px;
  background: #f4ede0;
  overflow: hidden;
}
.area__map svg,
.area__map img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 28%; }
.area__map-label {
  position: absolute; top: 24px; left: 32px;
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.94); padding: 12px 18px;
  border-radius: 6px;
  font-family: var(--font-en); font-size: 10.5px; letter-spacing: .24em;
  color: var(--ink); text-transform: uppercase;
}
.map-label__no { color: var(--accent); font-weight: 600; }
.map-label__t { color: var(--ink-2); }

.area__bottom {
  padding-top: 80px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px;
  align-items: flex-start;
}
.area__main { display: flex; flex-direction: column; gap: 16px; }
.area__list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.area__list li {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 16px; align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding-left .2s ease;
}
.area__list li:hover { padding-left: 12px; background: var(--accent-soft); }
.area__list-no {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .2em;
  color: var(--accent); font-weight: 600;
}
.area__list li > div { display: flex; flex-direction: column; gap: 2px; }
.area__list-jp {
  font-size: 15px; font-weight: 600; letter-spacing: .06em; color: var(--ink);
}
.area__list-en {
  font-family: var(--font-en); font-size: 10.5px; letter-spacing: .14em;
  color: var(--muted); text-transform: uppercase;
}
.area__note { font-size: 12px; color: var(--muted); margin: 0; }

.area__office { display: flex; flex-direction: column; }
.area__office-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-en); font-size: 11px; letter-spacing: .22em;
  color: var(--accent); margin: 0 0 28px; text-transform: uppercase;
}
.area__office-label .bar {
  display: inline-block; width: 28px; height: 1px; background: var(--accent);
}
.area__office-label > span:last-child {
  font-family: var(--font-jp); letter-spacing: .14em; color: var(--ink-2);
  font-size: 11px;
}
.info-table {
  margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.info-table > div {
  display: flex; flex-direction: column; gap: 10px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.info-table > div:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
.info-table > div:nth-child(even) { padding-left: 24px; }
.info-table dt {
  font-family: var(--font-en); font-size: 10.5px; letter-spacing: .22em;
  color: var(--muted); text-transform: uppercase; margin: 0;
}
.info-table dd { margin: 0; color: var(--ink); line-height: 1.75; font-size: 13.5px; }
.info-table a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* ============================================
   CTA — editorial split, decorative wave
   ============================================ */
.cta {
  background: var(--accent);
  color: #fff;
  padding: var(--space-9) 32px;
  position: relative; overflow: hidden;
}
.cta__bg {
  position: absolute; top: 0; left: 0; right: 0; height: 240px;
  pointer-events: none; opacity: .9;
}
.cta__bg svg { width: 100%; height: 100%; display: block; }
.cta__inner {
  position: relative;
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 96px; align-items: center;
}
.cta__copy { display: flex; flex-direction: column; gap: 28px; }
.cta__label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-en); font-size: 11px; letter-spacing: .22em;
  margin: 0; text-transform: uppercase;
}
.cta__label .bar {
  display: inline-block; width: 28px; height: 1px; background: rgba(255,255,255,.7);
}
.cta__label > span:last-child {
  font-family: var(--font-jp); letter-spacing: .14em;
  color: rgba(255,255,255,.85);
}
.cta__h { display: flex; flex-direction: column; gap: 16px; margin: 0; }
.cta__h-en {
  font-family: "Noto Serif JP", serif; font-weight: 400;
  font-size: clamp(40px, 5vw, 64px); line-height: 1.35; letter-spacing: .04em;
}
.cta__h-jp {
  font-size: 16px; letter-spacing: .12em; font-weight: 500;
  color: rgba(255,255,255,.92);
}
.cta__p {
  font-size: 14px; line-height: 1.95; color: rgba(255,255,255,.85);
  margin: 0; max-width: 420px;
}
.cta__bullets {
  display: flex; flex-direction: column; gap: 8px; margin: 0;
}
.cta__bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.9); letter-spacing: .08em;
}
.cta__bullets .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--wood); display: inline-block;
}

.cta__phone {
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  padding: 36px 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  backdrop-filter: blur(4px);
}
.cta__phone-label {
  font-family: var(--font-en); font-size: 10.5px; letter-spacing: .28em;
  color: var(--wood); margin: 0; text-transform: uppercase;
}
.cta__phone-num {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-en); font-weight: 500;
  font-size: clamp(28px, 3.6vw, 40px); letter-spacing: .02em;
  color: #fff;
  margin: 0;
}
.cta__phone-num:hover { color: var(--wood); }
.cta__phone-hours {
  font-size: 12px; color: rgba(255,255,255,.7); letter-spacing: .08em;
  margin: 0; line-height: 1.8;
}
.cta__divider {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-en); font-size: 10px; letter-spacing: .28em;
  color: rgba(255,255,255,.5); margin: 12px 0 4px;
}
.cta__divider::before, .cta__divider::after {
  content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.2);
}

/* ============================================
   Footer — editorial brand hero + nav + license
   ============================================ */
.site-footer {
  background: #1f1a14; color: #d8d0c3;
  padding: 96px 32px 32px;
  position: relative;
}
.site-footer__hero {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px;
  align-items: flex-end;
  padding-bottom: 80px;
  border-bottom: 1px solid #3a322a;
}
.site-footer__sub {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .28em;
  color: #8b8175; margin: 0 0 24px; text-transform: uppercase;
}
.site-footer__big {
  font-family: "Noto Serif JP", serif; font-weight: 400;
  font-size: clamp(48px, 7vw, 88px); line-height: 1; letter-spacing: -.005em;
  color: #f4ede0; margin: 0;
}
.site-footer__jp {
  font-size: 14px; letter-spacing: .22em; margin: 20px 0 0;
  color: #b8aea0;
}

.site-footer__hero-meta {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
.site-footer__hero-meta > div { display: flex; flex-direction: column; gap: 8px; }
.site-footer__addr {
  font-size: 13px; line-height: 1.85; margin: 0; color: #d8d0c3;
}
.site-footer__tel {
  font-family: var(--font-en); font-weight: 500; font-size: 22px;
  color: #f4ede0; letter-spacing: .02em; margin: 0;
}
.site-footer__tel:hover { color: var(--wood); }
.site-footer__hours { font-size: 12px; color: #8b8175; margin: 0; letter-spacing: .08em; }
.site-footer__area { font-size: 13px; line-height: 1.85; margin: 0; color: #d8d0c3; }

.site-footer__nav-wrap {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  align-items: flex-start;
  padding: 56px 0;
  border-bottom: 1px solid #3a322a;
}
.site-footer__nav {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
.ft-h {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .22em;
  color: var(--wood); margin: 0 0 18px; text-transform: uppercase;
}
.site-footer__nav a {
  display: block; font-size: 13.5px; padding: 8px 0; color: #d8d0c3;
  border-bottom: 1px solid #2c2620;
  transition: color .15s, padding-left .15s;
}
.site-footer__nav a:hover { color: var(--wood); padding-left: 6px; }
.site-footer__top-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid #3a322a;
  color: #d8d0c3; padding: 12px 18px; border-radius: 999px;
  font-family: var(--font-en); font-size: 11px; letter-spacing: .22em;
  cursor: pointer; transition: border-color .15s, color .15s;
}
.site-footer__top-btn:hover { border-color: var(--wood); color: var(--wood); }

.site-footer__license {
  max-width: 1280px; margin: 0 auto;
  padding-top: 32px;
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  align-items: center;
}
.license-stamp {
  display: inline-flex; align-items: center; gap: 14px;
  border: 1px solid #3a322a;
  padding: 10px 16px;
  border-radius: 4px;
}
.license-stamp__en {
  font-family: var(--font-en); font-size: 9.5px; letter-spacing: .28em;
  color: var(--wood); padding-right: 14px;
  border-right: 1px solid #3a322a;
  text-transform: uppercase;
}
.license-stamp__no {
  font-size: 11.5px; color: #d8d0c3; letter-spacing: .08em;
}
.site-footer__copy {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .14em;
  color: #8b8175; margin: 0; text-align: right;
}

/* ============================================
   Mobile bottom CTA
   ============================================ */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--surface); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(40,30,20,.08);
  padding: 8px;
  gap: 8px;
}
.mobile-cta__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; border-radius: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: .08em;
}
.mobile-cta__btn--primary { background: var(--accent); color: #fff; }
.mobile-cta__btn--outline { border: 1px solid var(--ink); color: var(--ink); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 16px;
  }
  /* ナビをサイドオフキャンバスパネル化 */
  .nav {
    flex-direction: column; gap: 2px;
    position: fixed; top: 77px; right: 0; bottom: 0;
    width: 82%; max-width: 380px;
    background: var(--accent-deep); color: #fff;
    padding: 32px 26px 28px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .38s cubic-bezier(.4,0,.2,1), visibility 0s linear .38s;
    z-index: 100;
    overflow-y: auto;
    box-shadow: -20px 0 40px rgba(0,0,0,.12);
  }
  .nav::before {
    content: 'Menu';
    font-family: var(--font-en); font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
    color: rgba(255,255,255,.5); margin-bottom: 10px;
  }
  .nav a { color: #fff; padding: 15px 14px; border-radius: 10px; }
  .nav a:hover { background: rgba(255,255,255,.1); }
  .nav__t { font-size: 19px; }
  .nav__en { font-size: 10px; letter-spacing: .2em; color: rgba(255,255,255,.5); }
  .nav__mobile-cta {
    display: block; margin-top: auto; padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.15);
  }
  .nav a.nav__mobile-tel {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #fff; color: var(--accent-deep); text-decoration: none;
    padding: 14px; border-radius: 999px; font-weight: 700; font-size: 15px;
  }
  .nav__mobile-hours { text-align: center; font-size: 11px; color: rgba(255,255,255,.55); margin-top: 10px; }

  /* 背景オーバーレイ + パネル表示 + 背景スクロール停止 */
  body.nav-open::before {
    content: ''; position: fixed; inset: 0; top: 77px;
    background: rgba(20,15,10,.42); z-index: 90;
  }
  /* .nav は .site-header（position:sticky・独自スタッキングコンテキスト）の子孫のため、
     .nav 自身の z-index は .site-header の外からは効かない（実質 .site-header の z-index=50 として評価される）。
     body::before（オーバーレイ, z-index:90）より確実に手前へ出すため、開いている間は .site-header 自体を引き上げる */
  body.nav-open .site-header { z-index: 200; }
  body.nav-open .nav {
    transform: translateX(0); visibility: visible;
    transition: transform .38s cubic-bezier(.4,0,.2,1), visibility 0s linear 0s;
  }
  body.nav-open { overflow: hidden; }
  /* 下部固定CTA（.mobile-cta）はメニュー表示中は隠す（同z-index帯での重なり事故を回避） */
  body.nav-open .mobile-cta { display: none; }
  /* ヘッダー内CTA（電話・お問い合わせ）は grid アイテムのため z-index が効きにくく、
     パネルより手前に描画される事故が起きる。メニュー表示中は非表示にして確実に回避する */
  body.nav-open .site-header__cta { visibility: hidden; }

  /* ハンバーガー → × 変形 */
  .hamburger { display: inline-flex; }
  .hamburger span { transition: transform .25s ease, opacity .2s ease; }
  body.nav-open .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
  body.nav-open .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .site-header__cta { gap: 10px; }
  .header-tel { padding-left: 12px; }
  .header-tel__label { display: none; }
  .services__head { grid-template-columns: 1fr; gap: 16px; padding-bottom: 40px; }
  .services__h { font-size: 32px; }
  .service-row {
    grid-template-columns: 56px 1fr 44px;
    gap: 20px;
  }
  .service-row__tags { display: none; }
  .service-row__no { font-size: 36px; }
  .service-row__t { font-size: 20px; }
  .works-track .work { flex-basis: calc((100% - 28px) / 2); }
  .works__head { flex-direction: column; align-items: stretch; gap: 20px; }
  .works__ctrl { justify-content: flex-start; }
  .flow__inner { grid-template-columns: 1fr; gap: 48px; }
  .flow__intro { position: static; }
  .voices__head { grid-template-columns: 1fr; gap: 16px; padding-bottom: 40px; }
  .voices__lead { max-width: none; }
  .voice-grid { grid-template-columns: 1fr; gap: 56px; padding-top: 40px; }
  .area__head { grid-template-columns: 1fr; gap: 24px; padding-bottom: 48px; }
  .area__h { font-size: 32px; }
  .area__bottom { grid-template-columns: 1fr; gap: 48px; padding-top: 56px; }
  .area__map { height: 380px; }
  .area__map-label { top: 16px; left: 16px; }
  .cta__inner { grid-template-columns: 1fr; gap: 48px; }
  .site-footer__hero { grid-template-columns: 1fr; gap: 48px; }
  .site-footer__nav-wrap { grid-template-columns: 1fr; gap: 32px; }
  .hero__frame { padding: 0 32px; }
  .metabar__inner { grid-template-columns: 1fr; }
  .metabar__stats { border-left: 0; border-top: 1px solid var(--line); padding-top: 18px; }
  /* lead scatter: scale figures down but keep size rhythm */
  .scatter--1 { width: 130px; height: 90px; left: 0; }
  .scatter--2 { width: 150px; height: 210px; right: 20px; }
  .scatter--3 { width: 180px; height: 240px; left: 20px; }
  .scatter--4 { width: 240px; height: 150px; right: 0; }
}
@media (max-width: 720px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 10px 16px; gap: 12px;
  }
  /* ヘッダー高さが 69px になるため、ナビパネル/オーバーレイの基準位置を合わせる */
  .nav { top: 69px; }
  body.nav-open::before { top: 69px; }
  .site-header__cta .btn { display: none; }
  .header-tel { border-left: 0; padding-left: 0; }
  .header-tel__num { display: none; }
  .hero { height: auto; min-height: 0; max-height: none; padding: 0; }
  .hero { aspect-ratio: 3/4; max-height: 720px; }
  .hero__side { right: 14px; top: 80px; bottom: 80px; gap: 10px; font-size: 9px; }
  .hero__scroll { left: 20px; bottom: 20px; }
  .hero__index { left: 20px; top: 20px; }
  .hero__frame { padding: 0 22px; }
  .hero__eyebrow { font-size: 9.5px; margin-bottom: 18px; }
  .hero__h-en { font-size: 38px; }
  .hero__h-jp { font-size: 16px; margin-top: 14px; }
  .hero__sub { font-size: 13px; margin-bottom: 24px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; padding: 14px 16px; }
  .metabar__inner { grid-template-columns: 1fr; padding: 24px 16px; gap: 18px; }
  .metabar__stats { border-left: 0; border-top: 1px solid var(--line); padding-top: 18px; }
  .metabar__stats > div { padding: 4px 12px; }
  .meta__num { font-size: 22px; }
  /* lead: stack scatter into a horizontal strip below text */
  .lead { min-height: 0; padding: var(--space-8) 16px; display: block; }
  .lead__text { margin: 0 auto 40px; padding: 0; max-width: none; }
  .lead__scatter {
    position: relative; inset: auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
    height: auto;
  }
  .scatter, .scatter--1, .scatter--2, .scatter--3, .scatter--4 {
    position: static;
    width: 100%; height: 110px;
    transform: none !important;
  }
  .scatter figcaption { display: none; }
  .scatter-deco, .scatter-line { display: none; }
  /* flow mobile */
  .flow__h { font-size: 22px; }
  .flow-step { grid-template-columns: 76px 1fr; gap: 18px; padding: 24px 0; }
  .flow-step__no { font-size: 42px; }
  .flow-step__t { font-size: 18px; }
  .flow-step:hover { padding-left: 0; }
  /* voices mobile */
  .voices__h { font-size: 22px; }
  .voice__t { font-size: 17px; padding-left: 18px; }
  .voice__foot { flex-wrap: wrap; gap: 14px; }
  .voice__meta { gap: 16px; }
  /* area mobile */
  .area__h { font-size: 28px; }
  .area__map { height: 280px; }
  .info-table { grid-template-columns: 1fr; }
  .info-table > div, .info-table > div:nth-child(n) {
    border-right: 0; border-bottom: 1px solid var(--line);
    padding: 16px 0; margin: 0;
  }
  .info-table > div:last-child { border-bottom: 0; }
  /* services mobile */
  .service-row {
    grid-template-columns: 48px 1fr 44px;
    gap: 14px; padding: 20px 0;
  }
  .service-row__img { display: none; }
  .service-row__no { font-size: 30px; }
  .service-row__t { font-size: 18px; }
  .service-row:hover { padding-left: 0; }
  /* cta mobile */
  .cta__phone { padding: 28px 24px; }
  .cta__phone-num { font-size: 28px; }
  /* footer mobile */
  .site-footer { padding: 64px 16px 24px; }
  .site-footer__hero { padding-bottom: 56px; }
  .site-footer__big { font-size: 44px; }
  .site-footer__nav { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer__license { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .site-footer__copy { text-align: left; }
  .lead, .services, .works, .flow, .voices, .area, .cta {
    padding-top: var(--space-8); padding-bottom: var(--space-8);
    padding-left: 16px; padding-right: 16px;
  }
  .lead__h { font-size: 22px; line-height: 1.8; }
  .sec-head__h, .cta__h { font-size: 24px; }
  .sec-head--row { flex-direction: column; align-items: flex-start; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { padding: 24px 20px; }
  .works-grid { grid-template-columns: 1fr; gap: 28px; }
  .works-track .work { flex-basis: 82%; }
  .works__head { padding: 0 16px; margin-bottom: 32px; }
  .works__ctrl { gap: 14px; width: 100%; }
  .works__ctrl .link { display: none; }
  .works-slider { padding: 0 16px; }
  .works-track { padding-right: 18%; gap: 16px; }
  .works-track .work { flex-basis: 78%; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: 1fr; }
  .info-table > div { grid-template-columns: 88px 1fr; }
  .site-footer__nav { grid-template-columns: repeat(2, 1fr); }
  .site-footer__bottom { flex-direction: column; }
  .mobile-cta { display: flex; }
  main { padding-bottom: 70px; }
}
