/* Woods Corporation — design tokens & global styles */
:root {
  --bg: #f5f3ee;
  --bg-2: #efece4;
  --bg-3: #e8e4d8;
  --fg: #1a1a1a;
  --fg-2: #4a4a44;
  --fg-3: #80807a;
  --hair: rgba(26,26,26,.12);
  --hair-2: rgba(26,26,26,.06);
  --primary: #1a3a2e;
  --primary-2: #25503f;
  --primary-3: #0f261d;
  --accent: #c4a572;
  --accent-2: #a88955;
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:  "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --en:    "Cormorant Garamond", "Times New Roman", serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;
  --type-scale: 1;
}

[data-theme="dark"] {
  --bg: #0f1612;
  --bg-2: #161e19;
  --bg-3: #1d2620;
  --fg: #ece9df;
  --fg-2: #b8b4a7;
  --fg-3: #7a766c;
  --hair: rgba(236,233,223,.14);
  --hair-2: rgba(236,233,223,.06);
  --primary: #d4c2a0;
  --primary-2: #c4a572;
  --primary-3: #e8d9b8;
  --accent: #c4a572;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  font-weight: 400;
  background: var(--bg);
  color: var(--fg);
  font-size: calc(15px * var(--type-scale));
  line-height: 1.7;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

.mono { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.sans { font-family: var(--sans); }
.en   { font-family: var(--en); font-style: italic; font-weight: 400; }

/* ── Layout ─────────────────────────────────────── */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 720px) { .wrap { padding: 0 24px; } }

.hairline { height: 1px; background: var(--hair); }

/* ── Nav ────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease, padding .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--hair);
  padding: 14px 48px;
}
@media (max-width: 720px) { .nav, .nav.scrolled { padding: 14px 20px; } }

.brand { display: flex; align-items: baseline; gap: 14px; }
.brand-mark {
  width: 28px; height: 28px; position: relative;
  align-self: center;
}
.brand-mark::before, .brand-mark::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--primary);
}
.brand-mark::after { transform: rotate(45deg); border-color: var(--accent); }
.brand-name { font-family: var(--en); font-size: 22px; font-weight: 500; letter-spacing: .04em; color: var(--primary); }
.brand-jp { font-family: var(--serif); font-size: 11px; letter-spacing: .3em; color: var(--fg-3); }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: var(--serif); font-size: 13px; font-weight: 500;
  color: var(--fg-2);
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--primary); transform: scaleX(0);
  transform-origin: left; transition: transform .3s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .en-sub { font-family: var(--en); font-size: 10px; color: var(--fg-3); display: block; line-height: 1; margin-top: 2px; letter-spacing: .08em; }
.nav-links .nav-cta {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  padding: 10px 24px; border: 1px solid var(--primary); color: var(--primary);
  border-radius: 999px; transition: background .2s, color .2s;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--primary); color: var(--bg); }

.lang {
  font-family: var(--en); font-size: 12px; color: var(--fg-3); letter-spacing: .12em;
  display: flex; gap: 4px; align-items: center;
}
.lang .active { color: var(--primary); }

.menu-btn { display: none; }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn {
    display: flex; flex-direction: column; gap: 5px;
    width: 32px; height: 32px; align-items: center; justify-content: center;
  }
  .menu-btn span { width: 22px; height: 1px; background: var(--fg); }
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  min-height: 100vh; padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
  max-width: 1320px; margin: 0 auto; padding: 0 48px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 40px;
  color: var(--fg-3);
}
.hero-eyebrow .line { width: 48px; height: 1px; background: var(--accent); }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.25; letter-spacing: .02em;
  color: var(--fg);
  margin-bottom: 36px;
}
.hero h1 .accent { color: var(--primary); }
.hero h1 em {
  font-family: var(--en); font-style: italic; font-weight: 400;
  color: var(--accent-2);
  font-size: .85em;
  letter-spacing: 0;
}
.hero-lede {
  font-size: 15px; line-height: 2; color: var(--fg-2);
  max-width: 520px; margin-bottom: 48px;
}
.hero-meta {
  display: flex; gap: 40px; padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.hero-meta-item .k { color: var(--fg-3); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; font-family: var(--mono); }
.hero-meta-item .v { font-family: var(--en); font-size: 28px; font-weight: 400; color: var(--primary); margin-top: 4px; }
.hero-meta-item .v sub { font-family: var(--serif); font-size: 11px; color: var(--fg-3); margin-left: 4px; letter-spacing: .1em; }

.hero-visual {
  position: relative; aspect-ratio: 4/5;
  background: var(--bg-3);
  overflow: hidden;
}
.hero-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(26,58,46,.06) 0,
      rgba(26,58,46,.06) 1px,
      transparent 1px,
      transparent 14px);
}
.hero-visual::after {
  content: ""; position: absolute; inset: 18px;
  border: 1px solid var(--hair);
}
.hero-visual-label {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  display: flex; justify-content: space-between; align-items: end;
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em;
  color: var(--fg-3); text-transform: uppercase;
}
.hero-visual-mark {
  position: absolute; top: 32px; right: 32px;
  font-family: var(--en); font-size: 56px; color: var(--primary); opacity: .3; line-height: 1;
}
.hero-vertical {
  position: absolute; left: 32px; top: 32px;
  writing-mode: vertical-rl;
  font-family: var(--serif); font-size: 13px; letter-spacing: .4em;
  color: var(--primary); font-weight: 500;
}

.scroll-cue {
  position: absolute; left: 48px; bottom: 32px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .15em;
  color: var(--fg-3);
}
.scroll-cue .bar {
  width: 1px; height: 40px; background: var(--hair); position: relative; overflow: hidden;
}
.scroll-cue .bar::after {
  content: ""; position: absolute; top: -40px; left: 0; right: 0; height: 40px;
  background: var(--primary);
  animation: scrollDown 2.4s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -40px; } 60% { top: 40px; } 100% { top: 40px; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 4/3; }
  .scroll-cue { display: none; }
}

/* ── Section header ─────────────────────────────── */
.section { padding: 140px 0; position: relative; }
.section.alt { background: var(--bg-2); }
.section-head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.section-num {
  font-family: var(--en); font-size: 14px; color: var(--accent-2); letter-spacing: .15em;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.3; color: var(--fg);
}
.section-title .en {
  display: block; font-family: var(--en); font-style: italic; font-size: .55em;
  color: var(--accent-2); margin-top: 4px; letter-spacing: .04em;
}
.section-lede {
  font-size: 15px; line-height: 2; color: var(--fg-2); max-width: 560px;
}
@media (max-width: 980px) {
  .section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ── Business cards ─────────────────────────────── */
.biz-tabs {
  display: flex; gap: 0; margin-bottom: 48px;
  border-bottom: 1px solid var(--hair);
  flex-wrap: wrap;
}
.biz-tab {
  padding: 16px 24px;
  font-family: var(--serif); font-size: 14px; font-weight: 500;
  color: var(--fg-3);
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  position: relative;
}
.biz-tab .num { font-family: var(--en); font-size: 11px; color: var(--accent-2); margin-right: 10px; letter-spacing: .1em; }
.biz-tab:hover { color: var(--fg-2); }
.biz-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.biz-content {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
  align-items: start;
}
.biz-image {
  aspect-ratio: 5/6; background: var(--bg-3);
  position: relative; overflow: hidden;
}
.biz-image-stripe {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg,
    rgba(26,58,46,.05) 0, rgba(26,58,46,.05) 1px,
    transparent 1px, transparent 16px);
}
.biz-image-num {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--en); font-size: 13px; color: var(--accent-2); letter-spacing: .15em;
}
.biz-image-cat {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  font-family: var(--mono); font-size: 10px; color: var(--fg-3); letter-spacing: .1em;
  text-transform: uppercase;
  display: flex; justify-content: space-between;
}
.biz-image-vertical {
  position: absolute; top: 50%; right: 32px; transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  color: var(--primary);
  letter-spacing: .3em;
}

.biz-text h3 {
  font-family: var(--serif); font-size: 32px; font-weight: 500; line-height: 1.4;
  margin-bottom: 24px;
}
.biz-text h3 .en {
  display: block; font-family: var(--en); font-style: italic; font-size: 15px;
  color: var(--accent-2); font-weight: 400; margin-bottom: 8px; letter-spacing: .04em;
}
.biz-text p {
  font-size: 14px; line-height: 2; color: var(--fg-2); margin-bottom: 32px;
}
.biz-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--hair);
}
.biz-list-item {
  padding: 18px 4px;
  border-bottom: 1px solid var(--hair);
  display: flex; align-items: baseline; gap: 14px;
  font-size: 13px;
}
.biz-list-item:nth-child(odd) { padding-right: 20px; }
.biz-list-item:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--hair); }
.biz-list-item .idx {
  font-family: var(--en); font-size: 11px; color: var(--accent-2); letter-spacing: .1em;
  min-width: 24px;
}
.biz-list-item .nm { color: var(--fg); }

@media (max-width: 980px) {
  .biz-content { grid-template-columns: 1fr; gap: 32px; }
  .biz-list { grid-template-columns: 1fr; }
  .biz-list-item:nth-child(even) { padding-left: 4px; border-left: 0; }
}

/* ── About / Stats ─────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.about-text p {
  font-size: 15px; line-height: 2.2; color: var(--fg-2); margin-bottom: 24px;
}
.about-text .sig {
  margin-top: 32px;
  font-family: var(--serif); font-size: 14px; color: var(--fg);
}
.about-text .sig em { font-family: var(--en); font-style: italic; color: var(--accent-2); margin-left: 12px; }

.stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.stat {
  padding: 36px 32px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.stat .k { font-family: var(--mono); font-size: 10px; color: var(--fg-3); letter-spacing: .15em; text-transform: uppercase; }
.stat .v { font-family: var(--en); font-size: 48px; color: var(--primary); line-height: 1.1; margin: 16px 0 8px; font-weight: 400; }
.stat .v sub { font-family: var(--serif); font-size: 14px; color: var(--fg-3); margin-left: 6px; vertical-align: baseline; }
.stat .d { font-size: 12px; color: var(--fg-3); line-height: 1.6; }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Timeline / 沿革 ────────────────────────────── */
.timeline {
  border-top: 1px solid var(--hair);
}
.tl-row {
  display: grid; grid-template-columns: 180px 200px 1fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hair);
  align-items: baseline;
  transition: background .25s;
}
.tl-row:hover { background: var(--bg-2); }
.tl-year {
  font-family: var(--en); font-size: 26px; color: var(--primary); font-weight: 400;
  letter-spacing: .04em;
}
.tl-year .era { font-family: var(--serif); font-size: 11px; color: var(--fg-3); margin-left: 10px; letter-spacing: .1em; }
.tl-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-2);
}
.tl-text { font-size: 14px; line-height: 1.9; color: var(--fg-2); }
.tl-text strong { color: var(--fg); font-weight: 500; }

@media (max-width: 980px) {
  .tl-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
}

/* ── Sustainability ─────────────────────────────── */
.sus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.sus-card {
  padding: 40px 32px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  position: relative;
  transition: background .25s;
}
.sus-card:hover { background: var(--bg-2); }
.sus-card .num { font-family: var(--en); font-size: 13px; color: var(--accent-2); letter-spacing: .15em; }
.sus-card h4 { font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.4; margin: 28px 0 16px; }
.sus-card .en-h { font-family: var(--en); font-style: italic; font-size: 13px; color: var(--accent-2); display: block; margin-bottom: 6px; letter-spacing: .04em; }
.sus-card p { font-size: 13px; line-height: 1.9; color: var(--fg-2); margin-bottom: 32px; }
.sus-card .tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.sus-card .tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid var(--hair); color: var(--fg-3); border-radius: 999px;
}
@media (max-width: 980px) { .sus-grid { grid-template-columns: 1fr; } }

/* ── News ───────────────────────────────────────── */
.news-filter {
  display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.news-chip {
  padding: 8px 18px; border: 1px solid var(--hair); border-radius: 999px;
  font-family: var(--serif); font-size: 12px; color: var(--fg-2);
  transition: all .2s;
}
.news-chip:hover { border-color: var(--fg-3); }
.news-chip.active { background: var(--primary); border-color: var(--primary); color: var(--bg); }

.news-list { border-top: 1px solid var(--hair); }
.news-row {
  display: grid; grid-template-columns: 140px 120px 1fr 24px;
  gap: 32px; padding: 24px 0;
  border-bottom: 1px solid var(--hair);
  align-items: center;
  cursor: pointer;
  transition: padding .25s, background .25s;
}
.news-row:hover { padding-left: 12px; background: var(--bg-2); }
.news-row:hover .news-arrow { transform: translateX(4px); color: var(--primary); }
.news-date { font-family: var(--en); font-size: 14px; color: var(--fg-3); letter-spacing: .04em; }
.news-cat {
  font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-2);
}
.news-title { font-family: var(--serif); font-size: 15px; color: var(--fg); line-height: 1.6; }
.news-arrow { color: var(--fg-3); transition: transform .25s, color .25s; font-family: var(--en); }
.news-empty { cursor: default; }
.news-empty:hover { padding-left: 0; background: transparent; }
@media (max-width: 720px) {
  .news-row { grid-template-columns: 1fr; gap: 6px; }
  .news-row > .news-arrow { display: none; }
}

/* ── Recruit ─────────────────────────────────────── */
.recruit {
  background: var(--primary);
  color: var(--bg);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.recruit::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg,
    rgba(196,165,114,.05) 0, rgba(196,165,114,.05) 1px,
    transparent 1px, transparent 32px);
}
.recruit-inner { position: relative; }
.recruit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.recruit h2 {
  font-family: var(--serif); font-size: clamp(36px, 4.4vw, 60px); font-weight: 500;
  line-height: 1.3; margin-bottom: 32px;
}
.recruit h2 .en {
  display: block; font-family: var(--en); font-style: italic; font-size: .35em;
  color: var(--accent); margin-bottom: 12px; letter-spacing: .04em;
}
.recruit p { font-size: 15px; line-height: 2; color: rgba(245,243,238,.78); max-width: 480px; }
.recruit-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--serif); font-size: 14px; font-weight: 500;
  margin-top: 32px;
  transition: background .2s, color .2s;
}
.recruit-cta:hover { background: var(--accent); color: var(--primary); }
.recruit-cta .arr { font-family: var(--en); font-size: 18px; }

.recruit-list { display: grid; gap: 20px; }
.recruit-job {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(245,243,238,.18);
  cursor: pointer;
}
.recruit-job:last-child { border-bottom: 1px solid rgba(245,243,238,.18); }
.recruit-job .role { font-family: var(--serif); font-size: 18px; }
.recruit-job .role .meta { display: block; font-family: var(--mono); font-size: 10px; color: var(--accent); letter-spacing: .1em; margin-top: 4px; }
.recruit-job .arr { color: var(--accent); font-family: var(--en); font-size: 18px; transition: transform .25s; }
.recruit-job:hover .arr { transform: translateX(6px); }
.recruit-note { cursor: default; }

@media (max-width: 980px) {
  .recruit { padding: 80px 0; }
  .recruit-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Contact ─────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-form .field { margin-bottom: 28px; }
.contact-form label {
  display: flex; gap: 12px; align-items: baseline;
  font-family: var(--serif); font-size: 13px; color: var(--fg);
  margin-bottom: 12px;
}
.contact-form label .req {
  font-family: var(--mono); font-size: 9px; padding: 2px 6px;
  color: #b34244; border: 1px solid #b34244; letter-spacing: .1em;
}
.contact-form label .en { font-family: var(--en); color: var(--fg-3); margin-left: auto; font-size: 12px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 14px 0;
  border: 0; border-bottom: 1px solid var(--hair);
  background: transparent; color: var(--fg);
  font-family: var(--serif); font-size: 15px;
  transition: border-color .25s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-bottom-color: var(--primary);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-form .submit {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 36px; background: var(--primary); color: var(--bg);
  font-family: var(--serif); font-size: 14px; font-weight: 500;
  margin-top: 12px;
  transition: background .2s;
}
.contact-form .submit:hover { background: var(--primary-3); }
.contact-form .submit:disabled { opacity: .5; cursor: not-allowed; }
.contact-form .ok {
  padding: 24px; border: 1px solid var(--primary); color: var(--primary);
  font-family: var(--serif); font-size: 14px; line-height: 1.7;
}

.contact-info { padding-left: 0; }
.contact-info-block { padding: 24px 0; border-bottom: 1px solid var(--hair); }
.contact-info-block:first-child { border-top: 1px solid var(--hair); }
.contact-info-block .k { font-family: var(--mono); font-size: 10px; color: var(--fg-3); letter-spacing: .12em; text-transform: uppercase; }
.contact-info-block .v { font-family: var(--serif); font-size: 16px; color: var(--fg); margin-top: 8px; line-height: 1.7; }
.contact-info-block .v .en { font-family: var(--en); display: block; color: var(--fg-3); font-size: 13px; margin-top: 4px; }
.contact-info-block .v.tel { font-family: var(--en); font-size: 28px; color: var(--primary); }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form .row2 { grid-template-columns: 1fr; }
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--primary-3);
  color: rgba(245,243,238,.7);
  padding: 80px 0 32px;
  position: relative;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(245,243,238,.1);
}
.footer-brand .brand-name { color: var(--accent); }
.footer-brand .brand-jp { color: rgba(245,243,238,.5); }
.footer-brand p { font-size: 12px; line-height: 1.9; margin-top: 28px; max-width: 320px; }
.footer-col h5 {
  font-family: var(--mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px; font-weight: 500;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { font-size: 13px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  color: rgba(245,243,238,.4);
}
.footer-bottom .links { display: flex; gap: 24px; }
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ── Reveal animation ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }

/* ── Mobile drawer ──────────────────────────────── */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  padding: 80px 32px 32px;
  transform: translateX(100%); transition: transform .35s ease;
  display: flex; flex-direction: column; gap: 4px;
}
.drawer.open { transform: none; }
.drawer a { padding: 18px 0; border-bottom: 1px solid var(--hair); font-size: 18px; }
.drawer-close { position: absolute; top: 24px; right: 24px; font-size: 22px; }
