/* ============ TOKENS ============ */
:root {
  --bg: #FAF8F5;
  --ink: #1C1A17;
  --ink-soft: #4A453E;
  --ink-mute: #8A8478;
  --clay: #B85C38;
  --clay-deep: #964828;
  --slate: #2A3D45;
  --linen: #E2D9CC;
  --linen-soft: #EFE9DF;
  --rule: rgba(28,26,23,0.12);
  --rule-strong: rgba(28,26,23,0.22);

  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --sans-en: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "DM Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: var(--sans-jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.en {
  font-family: var(--sans-en);
  letter-spacing: 0.08em;
  font-weight: 400;
}
.en-tight { font-family: var(--sans-en); letter-spacing: -0.01em; }
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: 0.04em; }

.app { width: 100%; }
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 720px) { .wrap { padding: 0 24px; } }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  transition: background 0.3s ease, color 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 48px;
  border-bottom-color: var(--rule);
  color: var(--ink);
}
.nav.over-photo { color: var(--bg); }
.nav-brand { display: flex; align-items: baseline; gap: 14px; font-family: var(--sans-en); }
.nav-mark { font-size: 18px; letter-spacing: 0.18em; font-weight: 500; }
.nav-sub { font-size: 10px; letter-spacing: 0.3em; opacity: 0.7; }
.nav-links { display: flex; align-items: center; gap: 36px; font-family: var(--sans-en); font-size: 12px; letter-spacing: 0.18em; }
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a:hover { opacity: 0.6; }
.nav-cta {
  font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.2em;
  border: 1px solid currentColor; padding: 10px 18px; border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav.scrolled .nav-cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.nav.over-photo .nav-cta:hover { background: var(--bg); color: var(--ink); }
.nav-burger { display: none; width: 36px; height: 24px; position: relative; }
.nav-burger span {
  position: absolute; left: 0; right: 0; height: 1px; background: currentColor;
  transition: transform 0.3s, top 0.3s, opacity 0.2s;
}
.nav-burger span:nth-child(1) { top: 6px; }
.nav-burger span:nth-child(2) { top: 17px; }
.nav-burger.open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { top: 12px; transform: rotate(-45deg); }
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
}

/* mobile menu drawer */
.drawer {
  position: fixed; inset: 0; z-index: 70;
  background: var(--bg); color: var(--ink);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 110px 32px 140px; gap: 20px;
  transform: translateY(-100%); transition: transform 0.5s cubic-bezier(.7,0,.2,1);
}
.drawer.open { transform: translateY(0); }
.drawer-links { display: flex; flex-direction: column; gap: 8px; }
.drawer-links a {
  font-family: var(--serif); font-size: 32px; line-height: 1.4;
  border-bottom: 1px solid var(--rule); padding: 18px 0;
  display: flex; align-items: baseline; justify-content: space-between;
}
.drawer-links a small { font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.3em; color: var(--ink-mute); }
.drawer-foot { font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.2em; color: var(--ink-mute); display: flex; flex-direction: column; gap: 4px; }
.drawer-foot strong { font-size: 22px; letter-spacing: 0.05em; color: var(--ink); font-weight: 500; }

/* ============ HERO ============ */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  width: 100%; overflow: hidden;
  color: var(--bg);
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate(0,0); }
  to   { transform: scale(1.08) translate(-1.2%, -0.8%); }
}
.hero-img::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,26,23,0.45) 0%, rgba(28,26,23,0.15) 28%, rgba(28,26,23,0.05) 60%, rgba(28,26,23,0.55) 100%);
}
.hero-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 48px 72px;
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px;
}
.hero-jp {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 5.4vw, 78px);
  line-height: 1.35; letter-spacing: 0.04em;
  max-width: 15ch;
  text-shadow: 0 1px 30px rgba(0,0,0,0.25);
}
.hero-jp em { font-style: normal; color: var(--linen); }
.hero-meta {
  font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.28em;
  text-align: right; opacity: 0.9;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
}
.hero-meta .line { width: 40px; height: 1px; background: currentColor; opacity: 0.6; margin: 4px 0; }
.hero-corner-tl, .hero-corner-tr {
  position: absolute; top: 110px;
  font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.3em;
  opacity: 0.85;
}
.hero-corner-tl { left: 48px; }
.hero-corner-tr { right: 48px; text-align: right; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.3em;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .bar { width: 1px; height: 36px; background: currentColor; opacity: 0.5; animation: scrollBar 2.4s ease-in-out infinite; transform-origin: top; }
@keyframes scrollBar { 0%,100%{transform:scaleY(0.2);opacity:0.3} 50%{transform:scaleY(1);opacity:0.9} }

@media (max-width: 720px) {
  .hero { min-height: 620px; }
  .hero-content { padding: 0 24px 110px; grid-template-columns: 1fr; }
  .hero-meta { text-align: left; align-items: flex-start; }
  .hero-corner-tl { left: 24px; top: 84px; }
  .hero-corner-tr { right: 24px; top: 84px; }
  .hero-jp { font-size: 38px; }
  .hero-scroll { display: none; }
}

/* ============ MARQUEE STRIP ============ */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden; white-space: nowrap;
  padding: 22px 0; background: var(--bg);
}
.marquee-track {
  display: inline-flex; gap: 56px;
  font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.32em;
  color: var(--ink-soft);
  animation: marquee 40s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .dot { width: 5px; height: 5px; background: var(--clay); border-radius: 50%; display: inline-block; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============ PHILOSOPHY ============ */
.philosophy {
  position: relative;
  padding: 140px 0 160px;
  background: var(--bg);
}
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  position: relative;
}
.phil-eyebrow {
  font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.32em;
  color: var(--clay); margin-bottom: 36px;
  display: flex; align-items: center; gap: 14px;
}
.phil-eyebrow::before { content:""; width: 32px; height: 1px; background: var(--clay); display:inline-block; }
.phil-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 45px); line-height: 1.6; letter-spacing: 0.04em;
  color: var(--ink);
}
.phil-h strong { font-weight: 500; color: var(--clay-deep); font-style: normal; }
.phil-body {
  margin-top: 28px; font-size: 15px; line-height: 2.1; color: var(--ink-soft);
  max-width: 38ch;
}
.phil-sig {
  margin-top: 40px; font-family: var(--serif); font-size: 18px; letter-spacing: 0.1em; color: var(--ink);
}
.phil-sig small { display:block; font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.3em; color: var(--ink-mute); margin-top: 6px; }
.phil-img {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--linen);
}
.phil-img-cap {
  position: absolute; left: -28px; bottom: 32px;
  background: var(--bg); padding: 10px 18px;
  font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.3em; color: var(--ink-soft);
  border: 1px solid var(--rule);
}
.phil-stamp {
  position: absolute; right: 48px; top: 90px;
  width: 130px; height: 130px; border-radius: 50%;
  border: 1px solid var(--clay);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--serif); font-size: 12px; letter-spacing: 0.2em; color: var(--clay);
  transform: rotate(-8deg);
}
.phil-stamp small { display:block; font-family: var(--sans-en); font-size: 9px; letter-spacing: 0.3em; margin-top: 4px; color: var(--ink-mute); }
@media (max-width: 900px) {
  .philosophy { padding: 90px 0 100px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 50px; }
  .phil-stamp { display: none; }
}

/* ============ SERVICES ============ */
.services { background: var(--linen-soft); padding: 130px 0 140px; }
.svc-head { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 60px; margin-bottom: 90px; }
.svc-head .num { font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.32em; color: var(--clay); }
.svc-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 5vw, 64px); line-height: 1.3; letter-spacing: 0.04em;
  margin-top: 14px;
}
.svc-head p { font-size: 14px; line-height: 2.1; color: var(--ink-soft); max-width: 42ch; }

.svc-row {
  display: grid; grid-template-columns: 110px 1fr 1.1fr; gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--rule);
}
.svc-row:last-child { border-bottom: 1px solid var(--rule); }
.svc-row.flip { grid-template-columns: 1.1fr 1fr 110px; }
.svc-num { font-family: var(--sans-en); font-size: 13px; letter-spacing: 0.32em; color: var(--ink-mute); }
.svc-text h3 { font-family: var(--serif); font-weight: 500; font-size: 32px; letter-spacing: 0.08em; line-height: 1.4; }
.svc-text h3 small { display:block; font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.3em; color: var(--clay); margin-bottom: 10px; font-weight: 400; }
.svc-text p { margin-top: 18px; font-size: 14px; line-height: 2.1; color: var(--ink-soft); max-width: 42ch; }
.svc-text ul { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; list-style: none; }
.svc-text li { font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.18em; padding: 6px 12px; border: 1px solid var(--rule-strong); border-radius: 999px; color: var(--ink-soft); }
.svc-img { aspect-ratio: 5/4; overflow: hidden; background: var(--linen); position: relative; }
.svc-img::after { content: attr(data-tag); position: absolute; left: 16px; bottom: 14px; font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.3em; color: #fff; mix-blend-mode: difference; opacity: 0.8;}
.svc-row .svc-img img, .phil-img img, .hero-bg img { width:100%; height:100%; object-fit:cover; }
.svc-row.flip .svc-num { order: 3; text-align: right; }

@media (max-width: 900px) {
  .services { padding: 80px 0 90px; }
  .svc-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .svc-row, .svc-row.flip { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .svc-row.flip .svc-num { order: 0; text-align: left; }
  .svc-img { aspect-ratio: 4/3; }
}

/* ============ WORKS ============ */
.works { padding: 130px 0 140px; background: var(--bg); }
.works-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 60px; }
.works-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5vw, 60px); line-height: 1.3; letter-spacing: 0.04em; }
.works-head .eyebrow { font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.32em; color: var(--clay); margin-bottom: 14px; }
.works-nav { display: flex; gap: 12px; }
.works-nav button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--rule-strong); display: grid; place-items: center; transition: background 0.2s, color 0.2s; }
.works-nav button:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.works-nav button:disabled { opacity: 0.3; pointer-events: none; }

.works-scroller { padding: 0 48px; }
.works-track {
  display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 24px;
  scrollbar-width: thin; scrollbar-color: var(--rule-strong) transparent;
}
.works-track::-webkit-scrollbar { height: 4px; }
.works-track::-webkit-scrollbar-thumb { background: var(--rule-strong); border-radius: 4px; }
.work-card { flex: 0 0 520px; scroll-snap-align: start; }
.work-card.featured { flex: 0 0 640px; }
.work-img { aspect-ratio: 4/5; overflow: hidden; background: var(--linen); position: relative; }
.work-meta { display: flex; align-items: baseline; justify-content: space-between; margin-top: 22px; gap: 20px; }
.work-meta h4 { font-family: var(--serif); font-weight: 500; font-size: 22px; letter-spacing: 0.06em; }
.work-meta .tag { font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.3em; color: var(--clay); }
.work-meta p { color: var(--ink-soft); font-size: 13px; }

.ba-block { margin-top: 70px; }
.ba-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.ba-head h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; letter-spacing: 0.08em; }
.ba-head .eyebrow { font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.3em; color: var(--ink-mute); }
.ba {
  position: relative; aspect-ratio: 16/9; overflow: hidden; user-select: none; cursor: ew-resize;
  background: #000;
}
.ba .pane { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba .pane.before { clip-path: inset(0 var(--c, 50%) 0 0); }
.ba-divider {
  position: absolute; top: 0; bottom: 0; width: 2px; background: var(--bg);
  left: calc(100% - var(--c, 50%));
  transform: translateX(-1px);
  pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: calc(100% - var(--c, 50%)); transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%; background: var(--bg);
  display: grid; place-items: center; pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  font-family: var(--sans-en); font-size: 9px; letter-spacing: 0.2em;
  color: var(--ink);
}
.ba-tag {
  position: absolute; top: 24px; padding: 8px 14px; background: rgba(28,26,23,0.7); color: var(--bg);
  font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.3em;
}
.ba-tag.before { left: 24px; }
.ba-tag.after { right: 24px; }

@media (max-width: 900px) {
  .works { padding: 80px 0; }
  .works-head { flex-direction: column; align-items: flex-start; }
  .works-scroller { padding: 0 24px; }
  .work-card, .work-card.featured { flex-basis: 78%; }
  .ba { aspect-ratio: 4/3; }
}

/* ============ TRUST ============ */
.trust {
  background: var(--slate); color: var(--bg);
  padding: 130px 0 140px;
  position: relative; overflow: hidden;
}
.trust::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(184,92,56,0.12), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(226,217,204,0.08), transparent 40%);
  pointer-events: none;
}
.trust .wrap { position: relative; }
.trust-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.trust-head .eyebrow { font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.32em; color: var(--clay); margin-bottom: 18px; }
.trust-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5vw, 56px); line-height: 1.4; letter-spacing: 0.04em; }
.trust-head p { font-size: 14px; line-height: 2.1; color: rgba(250,248,245,0.75); max-width: 42ch; }

.trust-stats-link { display: block; text-decoration: none; color: inherit; transition: opacity 0.2s; }
.trust-stats-link:hover { opacity: 0.82; }
.trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(250,248,245,0.18); border-bottom: 1px solid rgba(250,248,245,0.18); }
.trust-stat { padding: 36px 28px; border-right: 1px solid rgba(250,248,245,0.18); display: flex; flex-direction: column; gap: 6px; }
.trust-stat:last-child { border-right: none; }
.trust-stat .v { font-family: var(--serif); font-size: 44px; letter-spacing: 0.04em; line-height: 1; }
.trust-stat .v small { font-family: var(--sans-en); font-size: 12px; letter-spacing: 0.18em; opacity: 0.7; margin-left: 6px; }
.trust-stat .l { font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.3em; opacity: 0.7; margin-top: 6px; }

.reviews { margin-top: 80px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.review {
  border: 1px solid rgba(250,248,245,0.18); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  background: rgba(250,248,245,0.03);
}
.review .stars { color: var(--clay); letter-spacing: 0.2em; font-size: 14px; }
.review p { font-family: var(--serif); font-size: 16px; line-height: 1.95; letter-spacing: 0.04em; flex: 1; }
.review .who { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.18em; opacity: 0.7; flex-wrap: wrap; gap: 4px; }
.review .who strong { font-family: var(--sans-jp); font-weight: 500; font-size: 13px; letter-spacing: 0.08em; opacity: 1; }
.review-link { font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.14em; color: var(--clay); text-decoration: none; opacity: 0.85; transition: opacity 0.2s; margin-left: auto; }
.review-link:hover { opacity: 1; text-decoration: underline; }
.reviews-cta { margin-top: 48px; text-align: center; }
.maps-btn { display: inline-flex; align-items: center; gap: 12px; border: 1px solid rgba(250,248,245,0.35); padding: 16px 36px; text-decoration: none; color: inherit; font-family: var(--sans-jp); font-size: 13px; letter-spacing: 0.12em; transition: background 0.2s, border-color 0.2s; }
.maps-btn:hover { background: rgba(250,248,245,0.07); border-color: rgba(250,248,245,0.6); }
.maps-btn .en { font-family: var(--sans-en); font-size: 14px; opacity: 0.7; }

@media (max-width: 900px) {
  .trust { padding: 80px 0; }
  .trust-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .trust-stat { border-right: none; border-bottom: 1px solid rgba(250,248,245,0.18); }
  .trust-stat:nth-child(odd) { border-right: 1px solid rgba(250,248,245,0.18); }
  .reviews { grid-template-columns: 1fr; }
}

/* ============ PROCESS ============ */
.process { padding: 130px 0 140px; background: var(--bg); }
.process-head { text-align: center; margin-bottom: 90px; }
.process-head .eyebrow { font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.32em; color: var(--clay); margin-bottom: 16px; }
.process-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 4.4vw, 52px); line-height: 1.3; letter-spacing: 0.04em; }

.proc-track {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  position: relative;
}
.proc-track::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 28px;
  height: 1px; background: var(--rule-strong);
}
.proc-step { padding: 0 18px; text-align: center; position: relative; }
.proc-step .dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--rule-strong);
  margin: 0 auto 28px; display: grid; place-items: center;
  font-family: var(--sans-en); font-size: 13px; letter-spacing: 0.2em; color: var(--ink-soft);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.proc-step:hover .dot { background: var(--clay); color: var(--bg); border-color: var(--clay); }
.proc-step h4 { font-family: var(--serif); font-weight: 500; font-size: 18px; letter-spacing: 0.08em; }
.proc-step h4 small { display:block; font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.3em; color: var(--clay); margin-bottom: 8px; }
.proc-step p { margin-top: 10px; font-size: 12.5px; line-height: 1.9; color: var(--ink-soft); }

@media (max-width: 900px) {
  .process { padding: 80px 0; }
  .proc-track { grid-template-columns: 1fr 1fr; gap: 40px 16px; }
  .proc-track::before { display: none; }
}

/* ============ AREA ============ */
.area { background: var(--linen); padding: 130px 0 140px; position: relative; overflow: hidden; }
.area-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 90px; align-items: center; }
.area .eyebrow { font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.32em; color: var(--clay); margin-bottom: 16px; }
.area h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 4.6vw, 56px); line-height: 1.4; letter-spacing: 0.04em; margin-bottom: 30px; }
.area p { font-size: 14px; line-height: 2.1; color: var(--ink-soft); max-width: 42ch; }

.area-list { margin-top: 36px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--rule-strong); }
.area-item { display: flex; align-items: baseline; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--rule); }
.area-item:nth-child(odd) { padding-right: 20px; border-right: 1px solid var(--rule); padding-left: 0; }
.area-item:nth-child(even) { padding-left: 20px; }
.area-item h5 { font-family: var(--serif); font-weight: 500; font-size: 19px; letter-spacing: 0.08em; }
.area-item h5 small { font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.3em; color: var(--ink-mute); margin-left: 10px; font-weight: 400; }
.area-item .km { font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.18em; color: var(--clay); }

.area-map {
  aspect-ratio: 1/1.05; background: var(--bg);
  border: 1px solid var(--rule-strong); position: relative;
  overflow: hidden;
}
.area-map iframe { width: 100%; height: 100%; min-height: 360px; display: block; border: 0; }

@media (max-width: 900px) {
  .area { padding: 80px 0; }
  .area-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ============ CONTACT ============ */
.contact { background: var(--bg); padding: 140px 0 200px; position: relative; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.contact h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5vw, 64px); line-height: 1.4; letter-spacing: 0.04em; }
.contact h2 strong { font-weight: 500; color: var(--clay-deep); font-style: normal; }
.contact .eyebrow { font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.32em; color: var(--clay); margin-bottom: 18px; }
.contact .lead { margin-top: 32px; font-size: 14px; line-height: 2.1; color: var(--ink-soft); max-width: 38ch; }

.cta-row { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }
.cta-primary, .cta-secondary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px; border-radius: 999px;
  font-family: var(--sans-en); font-size: 12px; letter-spacing: 0.22em;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.cta-primary { background: var(--clay); color: var(--bg); }
.cta-primary:hover { background: var(--clay-deep); transform: translateY(-2px); }
.cta-secondary { border: 1px solid var(--ink); color: var(--ink); }
.cta-secondary:hover { background: var(--ink); color: var(--bg); }
.cta-arrow { width: 18px; height: 1px; background: currentColor; position: relative; }
.cta-arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }

.contact-card {
  border-top: 1px solid var(--rule-strong);
  padding-top: 36px;
  display: flex; flex-direction: column; gap: 24px;
}
.contact-row { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.contact-row .k { font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.3em; color: var(--ink-mute); }
.contact-row .v { font-family: var(--sans-jp); font-size: 14px; line-height: 1.9; color: var(--ink); }
.contact-row .v.tel { font-family: var(--serif); font-size: 26px; letter-spacing: 0.08em; color: var(--clay-deep); }
.contact-row .v small { display:block; font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.25em; color: var(--ink-mute); margin-top: 4px; }

@media (max-width: 900px) {
  .contact { padding: 80px 0 200px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ============ FOOTER ============ */
.foot { background: var(--ink); color: var(--linen); padding: 80px 0 36px; }
.foot-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(250,248,245,0.18); }
.foot-brand .mark { font-family: var(--sans-en); font-size: 22px; letter-spacing: 0.18em; }
.foot-brand .sub { font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.3em; opacity: 0.6; margin-top: 4px; }
.foot-brand p { margin-top: 28px; font-size: 13px; line-height: 1.95; opacity: 0.7; max-width: 32ch; }
.foot h6 { font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.32em; opacity: 0.55; margin-bottom: 22px; font-weight: 400; }
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot ul a { font-family: var(--serif); font-size: 14px; letter-spacing: 0.06em; opacity: 0.85; }
.foot ul a:hover { color: var(--clay); opacity: 1; }
.foot-bot { display: flex; justify-content: space-between; align-items: baseline; padding-top: 28px; font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.28em; opacity: 0.5; }
@media (max-width: 900px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-bot { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ============ MOBILE BOTTOM CTA ============ */
.mcta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--bg); border-top: 1px solid var(--rule);
  padding: 10px 14px;
  grid-template-columns: 1fr 1fr; gap: 10px;
  box-shadow: 0 -8px 24px rgba(28,26,23,0.06);
}
.mcta a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; border-radius: 4px;
  font-family: var(--sans-en); font-size: 11px; letter-spacing: 0.2em;
}
.mcta .tel { background: var(--clay); color: var(--bg); }
.mcta .tel strong { font-family: var(--serif); font-size: 16px; letter-spacing: 0.08em; }
.mcta .form { background: var(--slate); color: var(--bg); }
@media (max-width: 720px) { .mcta { display: grid; } body { padding-bottom: 76px; } }

/* ============ UTIL ============ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1);
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.bg-fill { width: 100%; height: 100%; object-fit: cover; }

/* placeholder image (used if Unsplash blocks) */
.ph {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(28,26,23,0.04) 0 2px, transparent 2px 18px),
    var(--linen);
  display: grid; place-items: center;
  font-family: var(--mono, monospace); font-size: 11px; letter-spacing: 0.2em; color: var(--ink-mute);
}
