/* ============================================================
   salon-02-noir  v2 — Midnight Bar Luxury
   ダークラグジュアリー / メンズ・高単価
   参照: Oribe（ダークラグジュアリー・大きなセリフ×モノクロ写真）
   方向: 深夜のバーのような静かな艶 — 額装された一頁
   bg #0e0d0b / ink #eae6de / gold #c8a96a / panel #1a1815
   区切りは影でなく金の1pxヘアラインと余白で。
   ============================================================ */

:root {
  --bg: #0e0d0b;
  --panel: #16130f;
  --panel-2: #1c1813;
  --ink: #eae6de;
  --ink-soft: #a49d90;
  --gold: #c8a96a;
  --gold-soft: color-mix(in srgb, var(--gold) 40%, transparent);
  --gold-line: color-mix(in srgb, var(--gold) 26%, transparent);
  --gold-hair: color-mix(in srgb, var(--gold) 34%, transparent);
  --gold-glow: color-mix(in srgb, var(--gold) 25%, transparent);
  --gold-faint: color-mix(in srgb, var(--gold) 12%, transparent);
  --serif: "Cormorant Garamond", serif;
  --mincho: "Zen Old Mincho", serif;
  --sans: "Noto Sans JP", sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.04em;
}

/* 写真は黒に沈めて彩度を落とす。ホバーで色と光が戻る */
img { filter: grayscale(0.4) brightness(0.9); }

::selection { background: var(--gold); color: #14120e; }

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* 欧文を Cormorant に寄せる要素群 */
.section-en,
.hero-sub,
.label-en,
.works-tag,
.cta-en,
.footer-logo,
.header-logo,
.site-nav a,
.cta-sns a {
  font-family: var(--serif);
}

/* ---------- Header — 透明→黒地に金ヘアライン ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 44px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding .5s ease, background .5s ease, border-color .5s ease;
}

body.is-scrolled .site-header {
  padding: 16px 44px;
  background: rgba(11, 10, 8, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--gold-line);
}

.header-logo {
  font-size: 23px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.site-nav a:not(.nav-cta a)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s cubic-bezier(0.19, 1, 0.22, 1);
}

.site-nav a:hover {
  color: var(--gold);
  text-shadow: 0 0 14px var(--gold-soft);
}

.site-nav li:not(.nav-cta) a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta a {
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 9px 24px;
  border-radius: 2px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, text-shadow 0.4s ease;
}

.nav-cta a::after { display: none; }

.nav-cta a:hover {
  border-color: var(--gold);
  box-shadow: 0 0 18px var(--gold-glow);
}

.nav-toggle { display: none; }

/* ---------- Hero — 額装されたポスター ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: -8% 0;
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) saturate(0.7) brightness(0.46);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(14, 13, 11, 0.18) 0%, rgba(14, 13, 11, 0.74) 80%),
    linear-gradient(to bottom, rgba(14, 13, 11, 0.62) 0%, rgba(14, 13, 11, 0.12) 42%, rgba(14, 13, 11, 0.88) 100%);
}

/* 金の1pxヘアライン内枠 — 額縁 */
.hero-frame {
  position: absolute;
  inset: 28px;
  z-index: 2;
  border: 1px solid var(--gold-hair);
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 3;
  padding: 0 24px;
  max-width: 960px;
}

.hero-sub {
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 26px;
}

.hero-rule {
  width: 1px;
  height: 58px;
  margin: 0 auto 30px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(52px, 10.5vw, 110px);
  line-height: 1.02;
  letter-spacing: 0.015em;
  color: var(--ink);
}

/* 欧文ロゴにイタリックを混ぜて誌面の艶を出す（&等の連結語） */
.hero-title em,
.hero-title i { font-style: italic; }

.hero-tagline {
  margin-top: 34px;
  font-family: var(--mincho);
  font-size: clamp(17px, 2.4vw, 25px);
  font-weight: 400;
  letter-spacing: 0.26em;
  color: var(--ink);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollline 2.4s ease-in-out infinite;
}

@keyframes scrollline {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- News ---------- */
.news { border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); }

.news-inner {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  padding-top: 46px;
  padding-bottom: 46px;
}

.news-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.news-label .label-en {
  font-size: 26px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}

.news-label .label-ja {
  font-family: var(--mincho);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}

.news-list { flex: 1; }

.news-list li {
  display: flex;
  gap: 30px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.news-list time {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--gold);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* ---------- Sections（共通・章扉） ---------- */
.section { padding: clamp(120px, 14vw, 180px) 0 0; }

.section-head {
  text-align: center;
  margin-bottom: clamp(56px, 7vw, 80px);
}

/* 英字イタリックを大きく — タイポ階層のジャンプ */
.section-en {
  display: block;
  font-size: clamp(36px, 5.4vw, 62px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}

.section-no {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.section-no::before,
.section-no::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold-line);
  vertical-align: middle;
  margin: 0 15px;
}

.section-title {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.95;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--ink);
  margin-bottom: 44px;
}

/* ---------- Concept ---------- */
.concept-body {
  max-width: 1000px;
  margin: 0 auto;
}

.concept-paras {
  max-width: 660px;
  margin: 0 auto;
}

.concept-para {
  color: var(--ink-soft);
  line-height: 2.4;
  text-align: center;
  margin-bottom: 1.6em;
}

.concept-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 72px;
  width: 100%;
}

/* 金のヘアライン内枠で額装。影は使わない */
.concept-shot {
  position: relative;
  overflow: hidden;
}

.concept-shot::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold-hair);
  z-index: 2;
  pointer-events: none;
}

.concept-shot img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: filter 1s ease, transform 1.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.concept-shot:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.04);
}

/* ---------- Menu — パネルは背景色差と金ヘアラインのみ ---------- */
.menu-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-group {
  background: var(--panel);
  border: 1px solid var(--gold-line);
  padding: 44px 32px;
  transition: border-color 0.5s ease, background 0.5s ease;
}

.menu-group:hover {
  border-color: var(--gold-soft);
  background: var(--panel-2);
}

.menu-category {
  font-family: var(--serif);
  font-style: italic;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--gold-line);
}

.menu-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--gold-faint);
}

.menu-item:last-child { border-bottom: 0; }

.menu-item-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.menu-name { font-size: 15px; font-weight: 400; color: var(--ink); }

.menu-price {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.menu-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-soft);
}

.menu-foot {
  margin-top: 48px;
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Works ---------- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.works-media {
  position: relative;
  overflow: hidden;
}

.works-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-line);
  z-index: 2;
  pointer-events: none;
}

.works-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 1.3s cubic-bezier(0.19, 1, 0.22, 1), filter 0.8s ease;
}

.works-item:hover .works-media img {
  transform: scale(1.06);
  filter: grayscale(0) brightness(1);
}

.works-text { padding-top: 18px; text-align: center; }

.works-tag {
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.works-title {
  font-family: var(--mincho);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

.works-desc {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ---------- Staff ---------- */
.staff-list {
  display: grid;
  gap: clamp(80px, 9vw, 110px);
}

.staff-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(52px, 6vw, 72px);
  align-items: center;
}

.staff-item:nth-child(even) { grid-template-columns: 1fr 320px; }
.staff-item:nth-child(even) .staff-media { order: 2; }

.staff-media {
  position: relative;
  overflow: hidden;
}

.staff-media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold-hair);
  z-index: 2;
  pointer-events: none;
}

.staff-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: filter 1s ease;
}

.staff-item:hover .staff-media img { filter: grayscale(0) brightness(1); }

.staff-role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.staff-name {
  font-family: var(--mincho);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 12px 0 24px;
  position: relative;
  padding-bottom: 20px;
}

.staff-name::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 1px;
  background: var(--gold);
}

.staff-item:nth-child(even) .staff-name::after { left: auto; right: 0; }
.staff-item:nth-child(even) .staff-text { text-align: right; }
.staff-item:nth-child(even) .staff-bio { margin-left: auto; }

.staff-bio {
  color: var(--ink-soft);
  line-height: 2.3;
  max-width: 34em;
}

/* ---------- Voices — 大きな引用符 ---------- */
.section-head-center { text-align: center; }

.voices-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.voices-item {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--gold-line);
  padding: 66px 34px 42px;
  text-align: center;
}

.voices-item::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 100px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
}

.voices-text {
  font-family: var(--mincho);
  font-size: 15px;
  line-height: 2.3;
  color: var(--ink);
}

.voices-author {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* ---------- Flow ---------- */
.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.flow-item { text-align: center; }

.flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px; height: 66px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  color: var(--gold);
  margin-bottom: 24px;
}

.flow-title {
  font-family: var(--mincho);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.flow-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2.1;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--gold-line);
}

.faq-q {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  display: flex;
  gap: 20px;
}

.faq-q::before {
  content: "Q";
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  color: var(--gold);
  line-height: 1.1;
  flex-shrink: 0;
}

.faq-a {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2.1;
  display: flex;
  gap: 20px;
}

.faq-a::before {
  content: "A";
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  color: var(--ink-soft);
  line-height: 1.1;
  flex-shrink: 0;
}

/* ---------- Access ---------- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 60px);
}

.access-info div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--gold-line);
  font-size: 13px;
}

.access-info dt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.access-info dd { color: var(--ink); }

.access-info dd a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-line);
  transition: text-shadow 0.4s ease, border-color 0.4s ease;
}

.access-info dd a:hover {
  text-shadow: 0 0 12px var(--gold-soft);
  border-color: var(--gold);
}

.access-map {
  position: relative;
  overflow: hidden;
}

.access-map::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-line);
  z-index: 2;
  pointer-events: none;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.95);
}

/* ---------- CTA ---------- */
.cta {
  margin-top: clamp(120px, 15vw, 180px);
  border-top: 1px solid var(--gold-line);
  background: var(--panel);
}

.cta-inner {
  padding-top: clamp(90px, 11vw, 120px);
  padding-bottom: clamp(90px, 11vw, 120px);
  text-align: center;
}

.cta-en {
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.24em;
  color: var(--gold);
}

.cta-rule {
  width: 1px;
  height: 50px;
  margin: 24px auto;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.cta-title {
  font-family: var(--mincho);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 46px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* ボタン — salon-01 の ::before scaleX ワイプを金色で */
.btn {
  position: relative;
  display: inline-block;
  min-width: 244px;
  padding: 19px 34px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-align: center;
  border-radius: 2px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.45s ease, border-color 0.45s ease;
}

.btn-primary {
  background: var(--gold);
  color: #14120e;
  font-weight: 500;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e6cd94;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .55s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-ghost {
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .55s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: #14120e;
}

.btn-ghost:hover::before { transform: scaleX(1); transform-origin: left; }

.cta-sns {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 36px;
}

.cta-sns a {
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 4px;
  transition: color 0.4s ease, text-shadow 0.4s ease, border-color 0.4s ease;
}

.cta-sns a:hover {
  color: var(--gold);
  text-shadow: 0 0 12px var(--gold-soft);
  border-color: var(--gold);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 60px 24px 50px;
  text-align: center;
  border-top: 1px solid var(--gold-line);
}

.footer-logo {
  font-size: 24px;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.footer-copy {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

/* ---------- Reveal ---------- */
[data-reveal]:not([data-reveal="curtain"]) { transform: translateY(28px); }

/* ---------- Skin（店舗別差別化 / TEMPLATE_SPEC §9） ---------- */
/* 和文見出しを Shippori Mincho に切替（欧文 Cormorant Garamond は維持） */
.u-alt-font { --mincho: "Shippori Mincho", serif; }

body.u-btn-square .btn, body.u-btn-square .nav-cta a { border-radius: 0; }
body.u-btn-round  .btn, body.u-btn-round  .nav-cta a { border-radius: 8px; }
body.u-btn-pill   .btn, body.u-btn-pill   .nav-cta a { border-radius: 999px; padding-left: 42px; padding-right: 42px; }

/* ---------- Mobile ---------- */
@media (max-width: 940px) {
  .menu-groups { grid-template-columns: 1fr; gap: 20px; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .voices-list { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .concept-gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .access-grid { grid-template-columns: 1fr; gap: 40px; }

  .staff-item,
  .staff-item:nth-child(even) { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .staff-item:nth-child(even) .staff-media { order: 0; }
  .staff-item:nth-child(even) .staff-text { text-align: center; }
  .staff-media { max-width: 320px; margin: 0 auto; }
  .staff-name::after,
  .staff-item:nth-child(even) .staff-name::after { left: 50%; right: auto; transform: translateX(-50%); }
  .staff-bio,
  .staff-item:nth-child(even) .staff-bio { margin: 0 auto; text-align: left; }
}

@media (max-width: 720px) {
  .site-header, body.is-scrolled .site-header { padding: 16px 22px; }
  .site-header {
    background: rgba(11, 10, 8, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--gold-line);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(11, 10, 8, 0.98);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .site-nav a { font-size: 22px; }
  .nav-cta a { font-size: 19px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 110;
  }

  .nav-toggle span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    transition: transform 0.35s ease;
  }

  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(4px) rotate(20deg); }
  body.nav-open .nav-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-20deg); }

  .hero-frame { inset: 16px; }
  .hero-title { font-size: clamp(44px, 15vw, 68px); }

  .inner { padding: 0 22px; }
  .section { padding-top: 92px; }
  .section-head { margin-bottom: 44px; }

  .news-inner { flex-direction: column; gap: 18px; }
  .news-label { flex-direction: row; align-items: baseline; gap: 12px; }
  .news-list li { flex-direction: column; gap: 2px; padding: 12px 0; border-bottom: 1px solid var(--gold-faint); }

  .concept-gallery { grid-template-columns: 1fr 1fr; }
  .works-grid { gap: 24px 14px; }
  .flow-list { grid-template-columns: 1fr; gap: 34px; max-width: 320px; margin: 0 auto; }

  .cta { margin-top: 100px; }
  .cta-inner { padding-top: 74px; padding-bottom: 74px; }
  .btn { min-width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }
}
