/* ============================================
   塗装職人 よしだ — Shared Styles  v2
   ============================================ */
:root {
  --bone: #F2EFE7;
  --bone-2: #E7E2D2;
  --paper: #FFFFFF;
  --paper-2: #F8F5ED;
  --ink: #0E0D0B;
  --ink-2: #3D3933;
  --ink-3: #6F6A5E;
  --ink-4: #A39C8C;
  --rule: #D6CFBE;
  --rule-soft: #E1DBCB;
  --accent: #1B3554;
  --accent-2: #294B72;
  --warm: #B85427;
  --warn: #C73C1E;

  --font-jp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-en: "Inter", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1280px;
  --gutter: clamp(20px, 4.5vw, 64px);
  --bar-h: 60px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  font-weight: 400;
  font-feature-settings: "palt" 1;
  background: var(--bone);
  color: var(--ink);
  line-height: 1.8;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding-bottom: var(--bar-h);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.en { font-family: var(--font-en); letter-spacing: 0.04em; }
.mono { font-family: var(--font-mono); letter-spacing: 0; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(242, 239, 231, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 80px; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand__mark {
  width: 40px; height: 40px;
  background: var(--ink); color: var(--bone);
  display: grid; place-items: center;
  font-family: var(--font-en); font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em; position: relative;
}
.brand__mark::after {
  content: ""; position: absolute; inset: 4px;
  border: 1px solid var(--bone); pointer-events: none;
}
.brand__name { font-weight: 600; font-size: 17px; letter-spacing: 0.04em; line-height: 1.2; }
.brand__sub { font-size: 10px; color: var(--ink-3); letter-spacing: 0.18em; font-family: var(--font-en); margin-top: 3px; }

.nav-primary { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
.nav-primary a { position: relative; padding: 8px 0; color: var(--ink-2); transition: color 0.2s; }
.nav-primary a:hover { color: var(--ink); }
.nav-primary a.is-active { color: var(--ink); }
.nav-primary a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--accent);
}

.header-cta { display: flex; align-items: center; gap: 16px; }
.tel-cta { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; }
.tel-cta__label { font-size: 10px; letter-spacing: 0.2em; color: var(--ink-3); font-family: var(--font-en); margin-bottom: 4px; }
.tel-cta__num { font-family: var(--font-en); font-weight: 600; font-size: 21px; color: var(--ink); letter-spacing: 0.02em; }
.header-quote { display: inline-flex; padding: 11px 18px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; transition: background 0.2s; }
.header-quote:hover { background: var(--accent-2); }

@media (max-width: 960px) {
  .nav-primary { display: none; }
  .header-quote { display: none; }
  .tel-cta__label { display: none; }
  .tel-cta__num { font-size: 17px; }
  .site-header__inner { height: 68px; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 30px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.08em;
  border: 1.5px solid var(--ink); background: var(--ink); color: var(--bone);
  transition: all 0.2s; cursor: pointer; text-align: center;
  font-family: inherit;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: transparent; color: var(--accent); }
.btn--warm { background: var(--warm); border-color: var(--warm); color: #fff; }
.btn--warm:hover { background: transparent; color: var(--warm); }
.btn--lg { padding: 21px 38px; font-size: 15px; }
.btn__arrow { display: inline-block; transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ============================================
   Section helpers
   ============================================ */
.section { padding: clamp(80px, 11vw, 144px) 0; }
.section--tight { padding: clamp(56px, 7vw, 88px) 0; }
.section--ink { background: var(--ink); color: var(--bone); }
.section--ink p { color: var(--ink-4); }
.section--ink .eyebrow { color: var(--ink-4); }
.section--paper { background: var(--paper); }
.section--cream { background: var(--paper-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-en); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin-bottom: 28px;
}
.eyebrow::before { content: ""; display: inline-block; width: 36px; height: 1px; background: currentColor; }

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: 0.005em; line-height: 1.32; }
.h-display { font-size: clamp(38px, 6vw, 84px); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
.h-section { font-size: clamp(28px, 3.8vw, 50px); font-weight: 600; line-height: 1.25; letter-spacing: -0.005em; }
.h-lead { font-size: clamp(18px, 1.5vw, 22px); font-weight: 500; line-height: 1.7; color: var(--ink-2); }
p { margin: 0 0 1em; color: var(--ink-2); }
p.lead { font-size: clamp(16px, 1.25vw, 18px); line-height: 1.95; }

/* Section header row */
.sh { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; margin-bottom: clamp(48px, 6vw, 80px); align-items: end; }
.sh__lead { color: var(--ink-2); font-size: clamp(16px, 1.25vw, 19px); line-height: 1.9; }
@media (max-width: 800px) { .sh { grid-template-columns: 1fr; gap: 20px; } }

/* ============================================
   Sample banner + IZANA bar
   ============================================ */
.sample-banner {
  position: fixed; left: 18px; bottom: calc(var(--bar-h) + 16px); z-index: 90;
  background: var(--warn); color: #fff;
  padding: 10px 14px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; line-height: 1.4;
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  pointer-events: none;
}
.sample-banner__tag { display: block; font-family: var(--font-en); font-size: 14px; letter-spacing: 0.24em; margin-bottom: 2px; }
.sample-banner__sub { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; opacity: 0.92; }

.izana-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  height: var(--bar-h); background: var(--ink); color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid #2a2520;
}
.izana-bar a {
  display: flex; align-items: center; gap: 18px; padding: 0 28px;
  height: 100%; width: 100%; max-width: var(--maxw);
  justify-content: center; font-size: 13px; letter-spacing: 0.04em;
  transition: background 0.2s;
}
.izana-bar a:hover { background: #1f1a16; }
.izana-bar__tag {
  font-family: var(--font-en); font-size: 10px; letter-spacing: 0.22em;
  color: var(--ink-4); padding-right: 18px; border-right: 1px solid #2a2520;
}
.izana-bar__copy { color: var(--bone); font-weight: 500; }
.izana-bar__copy strong { color: #fff; font-weight: 700; font-family: var(--font-en); letter-spacing: 0.02em; }
.izana-bar__dot { color: #5a544a; margin: 0 8px; }
.izana-bar__cta { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.18em; color: var(--ink-4); margin-left: auto; }
.izana-bar__cta::after { content: " →"; }

@media (max-width: 820px) {
  .izana-bar a { gap: 10px; padding: 0 14px; font-size: 11px; flex-wrap: nowrap; overflow: hidden; }
  .izana-bar__tag { padding-right: 10px; font-size: 9px; }
  .izana-bar__copy { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .izana-bar__cta { margin-left: 8px; font-size: 10px; flex-shrink: 0; }
  .sample-banner { font-size: 10px; padding: 8px 11px; left: 12px; bottom: calc(var(--bar-h) + 10px); }
  .sample-banner__tag { font-size: 12px; }
}

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--ink); color: var(--bone); padding: 88px 0 56px; }
.site-footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 56px; }
.footer-brand .brand__mark { border: 1px solid var(--bone); }
.footer-brand .brand__name { color: var(--bone); }
.footer-brand .brand__sub { color: var(--ink-4); }
.footer-tagline { color: var(--ink-4); font-size: 13px; margin-top: 28px; line-height: 1.9; max-width: 380px; }
.footer-col h4 { font-size: 11px; font-family: var(--font-en); letter-spacing: 0.24em; color: var(--ink-4); font-weight: 600; margin-bottom: 20px; text-transform: uppercase; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--bone); font-size: 14px; }
.footer-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-col p { color: var(--bone); font-size: 14px; margin: 0 0 6px; }
.footer-col .small { color: var(--ink-4); font-size: 12px; line-height: 1.8; }
.footer-col .tel { font-family: var(--font-en); font-size: 22px; font-weight: 600; letter-spacing: 0.02em; margin: 4px 0 8px; }
.footer-bottom {
  border-top: 1px solid #2a2520; margin-top: 72px; padding-top: 28px;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 11px; color: var(--ink-4); font-family: var(--font-en); letter-spacing: 0.12em;
}
@media (max-width: 800px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

/* ============================================
   Hero (index)
   ============================================ */
.hero { position: relative; padding: clamp(40px, 6vw, 80px) 0 0; background: var(--bone); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: end; }
.hero__copy { padding-bottom: 28px; }
.hero__num { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.24em; color: var(--ink-3); margin-bottom: 28px; font-weight: 600; }
.hero__title {
  font-size: clamp(38px, 6.6vw, 88px);
  font-weight: 600; line-height: 1.08; letter-spacing: -0.012em;
}
.hero__title em { font-style: normal; color: var(--accent); }
.hero__title .strike { display: inline-block; position: relative; }
.hero__sub { color: var(--ink-2); font-size: clamp(15px, 1.18vw, 17px); line-height: 1.95; margin-top: 32px; max-width: 480px; }
.hero__actions { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.hero__img { aspect-ratio: 4 / 5; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.hero__caption { position: absolute; left: 16px; bottom: 16px; background: rgba(14,13,11,0.78); color: var(--bone); padding: 8px 12px; font-family: var(--font-en); font-size: 10px; letter-spacing: 0.18em; backdrop-filter: blur(4px); }

.hero__ticker {
  margin-top: 64px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 22px 0; display: flex; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; font-size: 12px; color: var(--ink-3); letter-spacing: 0.14em;
}
.hero__ticker span strong { color: var(--ink); font-weight: 600; margin-left: 10px; font-family: var(--font-en); letter-spacing: 0.02em; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { padding-bottom: 0; }
  .hero__img { aspect-ratio: 16/11; }
}

/* ============================================
   Page hero
   ============================================ */
.page-hero { padding: clamp(64px, 9vw, 124px) 0 clamp(48px, 6vw, 80px); border-bottom: 1px solid var(--rule); }
.page-hero__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: end; }
.page-hero__num { font-family: var(--font-en); font-size: 12px; letter-spacing: 0.22em; color: var(--ink-3); margin-bottom: 32px; font-weight: 600; }
.page-hero__title { font-size: clamp(36px, 5.4vw, 68px); font-weight: 600; line-height: 1.18; letter-spacing: -0.008em; }
.page-hero__en { font-family: var(--font-en); font-size: 13px; color: var(--ink-3); letter-spacing: 0.22em; margin-top: 16px; font-weight: 500; }
.page-hero__lead { color: var(--ink-2); font-size: clamp(15px, 1.2vw, 17px); line-height: 2; }
@media (max-width: 800px) { .page-hero__inner { grid-template-columns: 1fr; gap: 24px; } }

/* ============================================
   Segment chooser (B2C / B2B split)
   ============================================ */
.segments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.seg {
  background: var(--paper); padding: clamp(28px, 3.2vw, 44px);
  display: flex; flex-direction: column; gap: 18px; min-height: 320px;
  transition: background 0.2s; position: relative;
}
.seg:hover { background: var(--paper-2); }
.seg__num { font-family: var(--font-en); font-size: 10px; letter-spacing: 0.22em; color: var(--ink-3); font-weight: 600; }
.seg__title { font-size: 22px; font-weight: 600; line-height: 1.4; }
.seg__en { font-family: var(--font-en); font-size: 11px; color: var(--accent); letter-spacing: 0.18em; font-weight: 600; margin-top: 4px; }
.seg__title + .seg__en { margin-top: 6px; }
.seg__body { color: var(--ink-2); font-size: 14px; line-height: 1.9; flex: 1; }
.seg__meta { padding-top: 18px; border-top: 1px solid var(--rule-soft); display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; flex-wrap: wrap; }
.seg__meta > span:first-child { flex: 1 1 auto; min-width: 0; }
.seg__price { font-family: var(--font-en); font-weight: 700; color: var(--ink); font-size: 18px; letter-spacing: 0.01em; white-space: nowrap; }
.seg__price small { font-family: var(--font-jp); font-size: 11px; color: var(--ink-3); font-weight: 500; letter-spacing: 0; margin-left: 2px; }
.seg__cta { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: 0.06em; margin-top: 6px; }
.seg__cta::after { content: " →"; }

@media (max-width: 820px) { .segments { grid-template-columns: 1fr; } }

/* ============================================
   Three-layer concept
   ============================================ */
.threelayer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--rule); background: var(--paper); }
.threelayer__cell { padding: clamp(28px, 3.5vw, 48px); border-right: 1px solid var(--rule); position: relative; min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; gap: 22px; }
.threelayer__cell:last-child { border-right: none; }
.threelayer__big { font-family: var(--font-en); font-size: 64px; font-weight: 600; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.threelayer__big small { font-size: 12px; color: var(--ink-3); letter-spacing: 0.2em; font-weight: 500; display: block; margin-top: 8px; font-family: var(--font-en); }
.threelayer__title { font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; line-height: 1.35; }
.threelayer__title small { display: block; font-size: 11px; font-family: var(--font-en); color: var(--ink-3); letter-spacing: 0.18em; font-weight: 500; margin-top: 8px; }
.threelayer__body { color: var(--ink-2); font-size: 14px; line-height: 1.9; }
.threelayer__role { font-family: var(--font-en); font-size: 10px; letter-spacing: 0.2em; color: var(--accent); font-weight: 700; padding-top: 14px; border-top: 1px solid var(--rule-soft); }
.threelayer__bar { height: 4px; }
.threelayer__cell:nth-child(1) .threelayer__bar { background: #B5AC97; }
.threelayer__cell:nth-child(2) .threelayer__bar { background: #4A453D; }
.threelayer__cell:nth-child(3) .threelayer__bar { background: var(--accent); }

@media (max-width: 760px) {
  .threelayer { grid-template-columns: 1fr; }
  .threelayer__cell { border-right: none; border-bottom: 1px solid var(--rule); min-height: 0; }
  .threelayer__cell:last-child { border-bottom: none; }
}

/* ============================================
   Pricing plans
   ============================================ */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .plan-grid { grid-template-columns: 1fr; } }

.plan {
  background: var(--paper); border: 1px solid var(--rule);
  padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; gap: 16px;
  position: relative; transition: transform 0.2s, box-shadow 0.2s;
}
.plan:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(14,13,11,0.06); }
.plan.is-featured { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.plan.is-featured .plan__label { color: var(--ink-4); }
.plan.is-featured .plan__title { color: var(--bone); }
.plan.is-featured .plan__body { color: var(--ink-4); }
.plan.is-featured .plan__price { color: var(--bone); }
.plan.is-featured .plan__price small { color: var(--ink-4); }
.plan.is-featured .plan__feats li { color: var(--bone); border-color: #2a2520; }
.plan.is-featured .plan__feats li::before { background: var(--bone); }
.plan.is-featured .btn { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.plan.is-featured .btn:hover { background: transparent; color: var(--bone); }

.plan__badge {
  position: absolute; top: -1px; right: 24px; transform: translateY(-50%);
  background: var(--warm); color: #fff; font-size: 10px; padding: 6px 12px;
  letter-spacing: 0.18em; font-weight: 600; font-family: var(--font-en);
}
.plan__label { font-family: var(--font-en); font-size: 10px; letter-spacing: 0.22em; color: var(--ink-3); font-weight: 600; }
.plan__title { font-size: 22px; font-weight: 600; line-height: 1.4; }
.plan__title small { display: block; font-family: var(--font-en); font-size: 11px; color: var(--ink-3); letter-spacing: 0.18em; font-weight: 500; margin-top: 4px; }
.plan__body { font-size: 13px; color: var(--ink-2); line-height: 1.85; min-height: 60px; }
.plan__price { font-family: var(--font-en); font-size: 32px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); display: flex; align-items: baseline; gap: 8px; padding-top: 14px; border-top: 1px solid var(--rule-soft); }
.plan__price small { font-size: 12px; color: var(--ink-3); font-weight: 500; letter-spacing: 0.06em; }
.plan__feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.plan__feats li { position: relative; padding: 10px 0 10px 22px; font-size: 13px; line-height: 1.6; border-top: 1px solid var(--rule-soft); color: var(--ink); }
.plan__feats li:first-child { border-top: none; }
.plan__feats li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 10px; height: 1px; background: var(--ink);
}

/* ============================================
   Comparison table
   ============================================ */
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--paper); border: 1px solid var(--rule); }
.cmp-table th, .cmp-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--rule); border-right: 1px solid var(--rule); vertical-align: top; }
.cmp-table th:last-child, .cmp-table td:last-child { border-right: none; }
.cmp-table thead th { background: var(--ink); color: var(--bone); font-weight: 600; letter-spacing: 0.04em; border-bottom: none; border-right: 1px solid #2a2520; font-size: 13px; }
.cmp-table thead th:last-child { border-right: none; }
.cmp-table thead th small { display: block; font-family: var(--font-en); font-size: 10px; color: var(--ink-4); letter-spacing: 0.18em; font-weight: 500; margin-top: 4px; }
.cmp-table th[scope="row"] { background: var(--paper-2); width: 200px; font-weight: 500; color: var(--ink-2); font-size: 12px; letter-spacing: 0.1em; }
.cmp-table .num { font-family: var(--font-en); font-weight: 600; font-size: 17px; color: var(--ink); letter-spacing: 0.01em; }
.cmp-table .num small { display: block; font-size: 11px; color: var(--ink-3); font-weight: 400; letter-spacing: 0.06em; margin-top: 2px; }
.cmp-table .row-tag { display: inline-block; padding: 4px 10px; font-family: var(--font-en); font-size: 10px; letter-spacing: 0.16em; background: var(--bone-2); color: var(--ink-2); margin-bottom: 8px; font-weight: 600; }
.cmp-table .row-tag.is-accent { background: var(--accent); color: #fff; }
.cmp-table .row-tag.is-clay { background: var(--clay); color: #fff; }
.cmp-table ul.feats { list-style: none; padding: 0; margin: 0; }
.cmp-table ul.feats li { font-size: 13px; line-height: 1.65; color: var(--ink-2); padding-left: 14px; position: relative; margin-bottom: 6px; }
.cmp-table ul.feats li:last-child { margin-bottom: 0; }
.cmp-table ul.feats li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 1px; background: var(--ink-3); }
.cmp-table ul.feats li.is-muted { color: var(--ink-3); }
.cmp-table ul.feats li.is-muted::before { background: var(--ink-4); }
.cmp-table .col-head { font-family: var(--font-jp); font-weight: 600; font-size: 16px; color: var(--bone); letter-spacing: 0; }
.cmp-table .col-head small { display: block; font-family: var(--font-en); font-size: 10px; color: var(--ink-4); letter-spacing: 0.18em; font-weight: 500; margin-top: 4px; }

@media (max-width: 800px) {
  .cmp-table, .cmp-table thead, .cmp-table tbody, .cmp-table tr, .cmp-table th, .cmp-table td { display: block; }
  .cmp-table thead { display: none; }
  .cmp-table tr { border-bottom: 1px solid var(--rule); padding: 8px 0; }
  .cmp-table td { border: none; padding: 10px 18px; }
  .cmp-table th[scope="row"] { background: var(--ink); color: var(--bone); width: 100%; }
}

/* ============================================
   Timeline
   ============================================ */
.timeline { border-top: 1px solid var(--rule); }
.timeline__row { display: grid; grid-template-columns: 90px 1.1fr 2fr 1fr; gap: 36px; padding: 24px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.timeline__day { font-family: var(--font-en); font-size: 30px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.timeline__day small { display: block; font-size: 9px; color: var(--ink-3); letter-spacing: 0.2em; font-weight: 600; margin-top: 2px; }
.timeline__phase { font-size: 11px; font-family: var(--font-en); letter-spacing: 0.18em; color: var(--accent); font-weight: 700; }
.timeline__phase span { display: block; font-family: var(--font-jp); color: var(--ink); font-size: 17px; letter-spacing: 0.02em; margin-top: 6px; font-weight: 600; }
.timeline__desc { color: var(--ink-2); font-size: 14px; line-height: 1.9; }
.timeline__layer { font-family: var(--font-en); font-size: 10px; letter-spacing: 0.18em; color: var(--ink-3); text-align: right; font-weight: 600; }
.timeline__layer span { display: inline-block; padding: 5px 10px; background: var(--paper); border: 1px solid var(--rule); }

@media (max-width: 800px) {
  .timeline__row { grid-template-columns: 60px 1fr; gap: 16px; }
  .timeline__desc, .timeline__layer { grid-column: 2; text-align: left; }
}

/* ============================================
   Work cards
   ============================================ */
.work-list { display: grid; grid-template-columns: 1fr; gap: clamp(64px, 8vw, 110px); }
.work { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.work:nth-child(even) > .work__media { order: 2; }
.work__media { aspect-ratio: 5 / 4; background-size: cover; background-position: center; position: relative; }
.work__chip { position: absolute; top: 16px; left: 16px; background: var(--bone); padding: 6px 12px; font-family: var(--font-en); font-size: 10px; letter-spacing: 0.2em; color: var(--ink); font-weight: 600; }
.work__chip--ink { background: var(--ink); color: var(--bone); }
.work__type { display: inline-block; font-family: var(--font-en); font-size: 10px; letter-spacing: 0.2em; color: var(--accent); font-weight: 700; margin-bottom: 14px; padding: 4px 10px; border: 1px solid var(--accent); }
.work__type.is-b2b { color: var(--warm); border-color: var(--warm); }
.work__num { font-family: var(--font-en); font-size: 12px; color: var(--ink-3); letter-spacing: 0.2em; margin-bottom: 18px; font-weight: 600; }
.work__title { font-size: clamp(22px, 2.6vw, 32px); line-height: 1.38; font-weight: 600; margin-bottom: 24px; letter-spacing: -0.005em; }
.work__meta { display: grid; grid-template-columns: auto 1fr; gap: 10px 28px; border-top: 1px solid var(--rule); padding-top: 20px; font-size: 13px; line-height: 1.75; }
.work__meta dt { color: var(--ink-3); font-size: 11px; letter-spacing: 0.14em; }
.work__meta dd { margin: 0; color: var(--ink); }
.work__note { margin-top: 24px; padding: 18px 22px; background: var(--paper); border-left: 2px solid var(--accent); font-size: 13px; line-height: 1.9; color: var(--ink-2); }

@media (max-width: 800px) {
  .work { grid-template-columns: 1fr; }
  .work:nth-child(even) > .work__media { order: 0; }
}

/* ============================================
   Forms
   ============================================ */
.form { display: grid; gap: 24px; }
.field { display: grid; gap: 9px; }
.field label { font-size: 12px; letter-spacing: 0.1em; color: var(--ink-2); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.field .req { font-size: 9px; padding: 3px 7px; background: var(--warn); color: #fff; letter-spacing: 0.14em; font-weight: 600; }
.field .opt { font-size: 9px; padding: 3px 7px; background: var(--bone-2); color: var(--ink-3); letter-spacing: 0.14em; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; padding: 15px 17px; background: var(--paper); border: 1px solid var(--rule);
  font: inherit; color: var(--ink); font-size: 15px; transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 150px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-group label { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border: 1px solid var(--rule); background: var(--paper); cursor: pointer; font-size: 13px; letter-spacing: 0.04em; transition: all 0.2s; font-weight: 500; }
.radio-group input { position: absolute; opacity: 0; }
.radio-group label:has(input:checked) { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* ============================================
   Contact methods
   ============================================ */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-bottom: 80px; }
.cm { background: var(--paper); padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; gap: 14px; }
.cm__label { font-family: var(--font-en); font-size: 10px; letter-spacing: 0.22em; color: var(--ink-3); font-weight: 600; }
.cm__num { font-family: var(--font-en); font-size: clamp(24px, 2.6vw, 32px); font-weight: 600; letter-spacing: 0.01em; }
.cm__title { font-size: 19px; font-weight: 600; }
.cm__body { color: var(--ink-2); font-size: 13px; line-height: 1.9; flex: 1; }
.cm__cta { font-size: 12px; letter-spacing: 0.12em; color: var(--accent); font-weight: 700; }
.cm__cta::after { content: " →"; }
@media (max-width: 900px) { .contact-methods { grid-template-columns: 1fr; } }

/* ============================================
   Areas / lists
   ============================================ */
.areas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); list-style: none; padding: 0; margin: 0; }
.areas li { background: var(--paper); padding: 18px 22px; font-size: 14px; display: flex; justify-content: space-between; align-items: baseline; letter-spacing: 0.04em; }
.areas li small { font-family: var(--font-en); font-size: 10px; color: var(--ink-3); letter-spacing: 0.18em; font-weight: 600; }
@media (max-width: 760px) { .areas { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   Info / career
   ============================================ */
.info-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--rule); }
.info-table th, .info-table td { padding: 20px 0; border-bottom: 1px solid var(--rule); text-align: left; font-size: 14px; vertical-align: top; }
.info-table th { width: 220px; font-weight: 500; color: var(--ink-3); font-size: 12px; letter-spacing: 0.12em; padding-right: 24px; }
.info-table td { color: var(--ink); line-height: 1.9; }

.career-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule); }
.career-list li { display: grid; grid-template-columns: 130px 1fr; gap: 28px; padding: 22px 0; border-bottom: 1px solid var(--rule); font-size: 14px; line-height: 1.85; }
.career-list .year { font-family: var(--font-en); color: var(--ink-3); letter-spacing: 0.06em; font-weight: 600; }
@media (max-width: 600px) { .career-list li { grid-template-columns: 80px 1fr; gap: 16px; font-size: 13px; } }

.qual-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.qual { background: var(--paper); padding: 24px; font-size: 13px; line-height: 1.75; }
.qual__en { font-family: var(--font-en); font-size: 10px; letter-spacing: 0.2em; color: var(--ink-3); margin-bottom: 8px; font-weight: 600; }
.qual__title { font-size: 16px; font-weight: 600; line-height: 1.4; }

/* ============================================
   Pull quote / split / utility
   ============================================ */
.pull { font-size: clamp(22px, 2.8vw, 36px); font-weight: 500; line-height: 1.5; letter-spacing: 0.005em; max-width: 920px; }
.pull em { font-style: normal; color: var(--accent); }
.pull--warm em { color: var(--warm); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split__img { aspect-ratio: 4/5; background-size: cover; background-position: center; }
.split__img.is-landscape { aspect-ratio: 5/4; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } .split--reverse > :first-child { order: 0; } }

.img-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; aspect-ratio: 16/9; }
.img-grid > div { background-size: cover; background-position: center; }
.img-grid > div:nth-child(1) { grid-row: 1 / span 2; }
@media (max-width: 800px) { .img-grid { grid-template-columns: 1fr 1fr; aspect-ratio: 4/3; } .img-grid > div:nth-child(1) { grid-column: 1 / -1; grid-row: 1; } }

.divider { height: 1px; background: var(--rule); margin: clamp(56px, 7vw, 96px) 0; }
.muted { color: var(--ink-3); }
.tag { display: inline-block; padding: 5px 11px; background: var(--paper); border: 1px solid var(--rule); font-family: var(--font-en); font-size: 10px; letter-spacing: 0.18em; color: var(--ink-2); font-weight: 600; }
.tag.is-accent { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================================
   CTA block
   ============================================ */
.cta-block { background: var(--ink); color: var(--bone); padding: clamp(56px, 7vw, 96px) var(--gutter); display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.cta-block h2 { font-size: clamp(26px, 3.2vw, 40px); line-height: 1.35; font-weight: 600; color: var(--bone); }
.cta-block p { color: var(--ink-4); font-size: 14px; line-height: 1.9; max-width: 460px; }
.cta-block .btn { background: transparent; border-color: var(--bone); color: var(--bone); }
.cta-block .btn:hover { background: var(--bone); color: var(--ink); }
.cta-block__actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.cta-block__tel { font-family: var(--font-en); font-size: 34px; font-weight: 600; letter-spacing: 0.01em; }
.cta-block__tel small { display: block; font-size: 10px; color: var(--ink-4); letter-spacing: 0.22em; font-weight: 600; margin-bottom: 4px; }
@media (max-width: 800px) { .cta-block { grid-template-columns: 1fr; } .cta-block__actions { align-items: flex-start; } }

/* ============================================
   FAQ
   ============================================ */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary { padding: 22px 0; cursor: pointer; font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-en); font-size: 22px; color: var(--ink-3); font-weight: 400; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary .q { font-family: var(--font-en); font-size: 13px; color: var(--accent); margin-right: 12px; font-weight: 700; letter-spacing: 0.06em; }
.faq .a { padding: 0 0 24px; color: var(--ink-2); font-size: 14px; line-height: 1.9; }
.faq .a .a-tag { font-family: var(--font-en); font-size: 13px; color: var(--warm); margin-right: 12px; font-weight: 700; letter-spacing: 0.06em; }

/* ============================================
   Photo strips / portraits / before-after
   ============================================ */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.photo-strip > div { aspect-ratio: 4/5; background-size: cover; background-position: center; position: relative; }
.photo-strip > div span {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(14,13,11,0.82); color: var(--bone);
  padding: 6px 10px; font-family: var(--font-en);
  font-size: 10px; letter-spacing: 0.18em; font-weight: 600;
}
.photo-strip--wide > div { aspect-ratio: 3/4; }
@media (max-width: 700px) { .photo-strip { grid-template-columns: 1fr 1fr; } .photo-strip > div:last-child { grid-column: 1 / -1; aspect-ratio: 16/9; } }

.photo-row-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.photo-row-4 > div { aspect-ratio: 1; background-size: cover; background-position: center; }
@media (max-width: 700px) { .photo-row-4 { grid-template-columns: 1fr 1fr; } }

.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--ink); }
.ba > div { aspect-ratio: 5/4; background-size: cover; background-position: center; position: relative; }
.ba__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--bone); color: var(--ink);
  padding: 6px 12px; font-family: var(--font-en);
  font-size: 11px; letter-spacing: 0.22em; font-weight: 700;
}
.ba__tag.is-after { background: var(--accent); color: #fff; }
.ba-meta { display: flex; justify-content: space-between; margin-top: 14px; font-family: var(--font-en); font-size: 10px; letter-spacing: 0.2em; color: var(--ink-3); font-weight: 600; }

.portrait { aspect-ratio: 3/4; background-size: cover; background-position: center; }
.portrait-square { aspect-ratio: 1; background-size: cover; background-position: center; }

.full-bleed-img { width: 100%; aspect-ratio: 21/9; background-size: cover; background-position: center; }
.full-bleed-img.is-tall { aspect-ratio: 16/9; }

.image-banner {
  margin: 0 calc(var(--gutter) * -1);
  width: calc(100% + var(--gutter) * 2);
  aspect-ratio: 21/8;
  background-size: cover;
  background-position: center;
}

/* Color chips */
.chips { display: flex; gap: 2px; height: 90px; }
.chips > div { flex: 1; }
.chips__1 { background: #1A1714; }
.chips__2 { background: #3D352B; }
.chips__3 { background: #6B5A48; }
.chips__4 { background: #968066; }
.chips__5 { background: #C2B098; }
.chips__6 { background: #E0D2BB; }
.chips__7 { background: var(--accent); }
.chips__8 { background: var(--warm); }
