/* ============================================================
   株式会社7A — corporate one-pager
   生成り紙 × ARDBEG グリーン（ロゴシート指定 #2F4B27）
   シグネチャ: ロゴの意匠（7=カウンター/A=人）を構造化した
   「カウンター線」— 各セクションを 1 本の水平線が貫き、
   写真とロゴがその線の上に立つ・線をまたいで重なる
   ============================================================ */

:root {
  --paper: #f4f2eb;
  --paper-deep: #eae7db;
  --green: #2f4b27;
  --green-deep: #223a1c;
  --ink: #24291f;
  --moss: #6e7562;
  --neon: #3fd464;          /* 店の緑ネオン由来。hover と選択色だけに使う */
  --line-w: 3px;
  --nav-w: 220px;
  --font-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Space Grotesk", "Zen Kaku Gothic New", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.lenis-on { scroll-behavior: auto; } /* Lenis 起動時は CSS smooth と併用しない（js/3d.js） */

body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--neon); color: var(--green-deep); }

img { max-width: 100%; display: block; }

a { color: var(--green); }

/* --- 左固定 縦ナビ（PC） --- */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--nav-w);
  height: 100vh;
  padding: 36px 0 36px 36px;
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.side-nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.side-nav .brand img { width: 34px; height: auto; }

.side-nav ul {
  list-style: none;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-nav ul a {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: var(--moss);
  position: relative;
  padding-left: 18px;
  transition: color 0.25s ease;
}

.side-nav ul a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%) scale(0);
  transition: transform 0.25s ease;
}

.side-nav ul a:hover { color: var(--neon); }
.side-nav ul a.active { color: var(--green); font-weight: 700; }
.side-nav ul a.active::before { transform: translateY(-50%) scale(1); }

.side-nav .nav-foot {
  margin-top: auto;
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--moss);
  writing-mode: vertical-rl;
  min-height: 180px;
}

/* --- ハンバーガー（モバイル） --- */
.mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  padding: 14px 18px;
  align-items: center;
  justify-content: space-between;
  background: rgba(244, 242, 235, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.mobile-bar .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
}

.mobile-bar .brand img { width: 28px; }

.hamburger {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--paper);
  padding: 110px 30px;
}

.mobile-menu.open { display: block; }

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 22px; }

.mobile-menu a {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
}

.mobile-menu .jp { font-family: var(--font-jp); font-size: 0.78rem; color: var(--moss); margin-left: 12px; font-weight: 400; }

/* --- 共通レイアウト --- */
main { padding-left: var(--nav-w); }

.band { position: relative; padding: 130px 7vw 130px 4vw; }
.band--tint { background: var(--paper-deep); }

/* カウンター線: セクションを貫く 1 本の水平線 */
.counter-line {
  position: absolute;
  left: 0;
  right: 0;
  height: var(--line-w);
  background: var(--green);
}

.eyebrow {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.34em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.band h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.band .copy { max-width: 34em; font-size: 0.95rem; color: var(--ink); position: relative; z-index: 2; }
.band .copy p + p { margin-top: 1.2em; }
.band .copy .note { color: var(--moss); font-size: 0.82rem; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 4vw;
  padding: 90px 7vw 120px 4vw;
  overflow: hidden;
}

.hero .counter-line { bottom: 27%; }

.hero-text { position: relative; z-index: 2; }

.hero-co {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.34em;
  color: var(--moss);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 26px;
}

.hero h1 span { display: inline-block; white-space: nowrap; }

.hero .lead {
  max-width: 30em;
  font-size: 0.98rem;
  color: var(--ink);
}

/* ロゴがカウンター線の上に「立つ」（テキストと写真の間の余白） */
.hero-mark {
  position: absolute;
  left: 46%;
  bottom: 27%;
  width: clamp(90px, 10vw, 150px);
  z-index: 1;
  transform: translateY(2px); /* 接地 */
}

@media (max-width: 1150px) {
  .hero-mark { display: none; }
}

/* 写真 2 枚が線をまたいで重なる。
   枠は中身のアスペクトに合わせる（背面=横長動画 3:2 / 前面=縦長カクテル 5:8）。
   %高さの枠だと cover でネオンやグラスが見切れる（2026-07-16 オーナー指摘） */
.hero-photos { position: relative; z-index: 2; height: min(64vh, 560px); }

.hero-photos .ph {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(36, 41, 31, 0.28);
}

.hero-photos .ph img { width: 100%; height: 100%; object-fit: cover; }

.hero-photos .ph--back {
  top: 0;
  right: 0;
  width: 96%;
  aspect-ratio: 3 / 2;
}

.hero-photos .ph--front {
  bottom: 0;
  left: 0;
  width: 44%;
  aspect-ratio: 5 / 8;
}

/* --- シネマティックヒーロー（3D 演出レイヤー。動きは js/3d.js） ---
   JS/WebGL が無くてもこの CSS だけで「夜のバー＋静的ネオン線」として
   成立する（プログレッシブエンハンスメント）。JS 成功時は html.gl-on が
   付き、CSS の線を消して 3D のカウンターラインが引き継ぐ */
.hero--cinema {
  background:
    radial-gradient(110% 85% at 74% 26%, #223a1c 0%, rgba(34, 58, 28, 0) 55%),
    radial-gradient(90% 70% at 18% 82%, #17270f 0%, rgba(23, 39, 15, 0) 60%),
    #0b1407;
  color: var(--paper);
}

/* 全ページ共通の WebGL ステージ（固定・最背面。js/3d.js がフェードイン） */
.gl-stage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

/* WebGL 起動時（html.gl-on）はセクション背景を canvas に明け渡す。
   JS 無し・reduced-motion では以下が発動せず、各セクションの CSS 背景が生きる */
main, .footer { position: relative; z-index: 1; }
html.gl-on .band,
html.gl-on .band--tint,
html.gl-on .band--cinema,
html.gl-on .hero--cinema,
html.gl-on .footer { background: transparent; }

/* 縦ナビの昼夜対応: 背景の旅（js/3d.js）が nav-dark を付け外しする */
html.gl-on .side-nav .brand,
html.gl-on .side-nav ul a,
html.gl-on .side-nav .nav-foot { transition: color 0.5s ease; }
html.gl-on .side-nav .brand img { transition: filter 0.5s ease; }
html.nav-dark .side-nav .brand { color: var(--paper); }
html.nav-dark .side-nav .brand img { filter: brightness(0) invert(1); }
html.nav-dark .side-nav ul a { color: rgba(244, 242, 235, 0.55); }
html.nav-dark .side-nav ul a:hover { color: var(--neon); }
html.nav-dark .side-nav ul a.active { color: var(--neon); }
html.nav-dark .side-nav .nav-foot { color: rgba(244, 242, 235, 0.45); }

/* 粒状ノイズ（フィルムグレイン） */
.hero--cinema::after,
.band--cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.055;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
}

.hero--cinema .counter-line {
  background: var(--neon);
  box-shadow: 0 0 8px rgba(63, 212, 100, 0.9), 0 0 30px rgba(63, 212, 100, 0.5);
  opacity: 0.85;
  z-index: 1;
  transition: opacity 0.6s ease;
}

html.gl-on .hero--cinema .counter-line { opacity: 0; }

/* 3D 稼働時は各セクションの CSS カウンター線も消す（役割は WebGL のネオンラインが担う。
   線が本文を貫いて見える問題への対処。JS 無し環境では従来どおり表示） */
html.gl-on .band .counter-line { display: none; }

.hero--cinema .hero-co { color: #93ac86; }

.hero--cinema h1 { color: var(--paper); }

.hero--cinema h1 span ~ span {
  color: var(--neon);
  text-shadow: 0 0 22px rgba(63, 212, 100, 0.4);
}

.hero--cinema .lead { color: rgba(244, 242, 235, 0.84); }

.hero--cinema .hero-photos .ph {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  outline: 1px solid rgba(244, 242, 235, 0.08);
}

/* --- ダークバンド（Team 等・ヒーローと同じ夜の空気） --- */
.band--cinema {
  background:
    radial-gradient(100% 80% at 70% 20%, #223a1c 0%, rgba(34, 58, 28, 0) 55%),
    #0b1407;
  color: var(--paper);
}

.band--cinema h2 { color: var(--paper); }
.band--cinema .copy { color: rgba(244, 242, 235, 0.86); }
.band--cinema .eyebrow { color: var(--neon); }

/* Team: スタッフが一人ずつ灯る集合写真
   仕組み: 下=暗くした写真(.team-base) / 上=同じ写真を SVG マスク越しに表示。
   JS(js/3d.js) がマスクを黒に切替えてスポット(白楕円)を一人ずつ点灯させる。
   JS 無し・reduced-motion ではマスクが白のまま＝全灯の普通の写真 */
.team-figure {
  position: relative;
  margin: 56px auto 0;
  max-width: 1100px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  outline: 1px solid rgba(244, 242, 235, 0.08);
}

.team-figure .team-base {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease;
}

#team.team-armed .team-base { filter: brightness(0.16) saturate(0.6); }

.team-figure .team-lit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 全灯後にフェードインして「写真が動き出す」（js/3d.js が再生制御） */
.team-figure .team-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

/* Team 演出の追加レイヤー（js/3d.js が生成。JS 無しでは存在しない） */
.team-figure .team-flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.team-figure .team-sweep {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: 0;
  width: 36%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(120, 255, 175, 0.22) 42%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(120, 255, 175, 0.22) 58%,
    transparent
  );
  transform: translateX(-140%) skewX(-12deg);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.team-figure .team-count {
  position: absolute;
  right: 16px;
  bottom: 12px;
  margin: 0;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.3em;
  color: var(--neon);
  text-shadow: 0 0 12px rgba(120, 255, 175, 0.75);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

/* --- 汎用: 写真の重なり（線またぎ） --- */
.stack {
  position: relative;
  height: min(64vh, 560px);
}

.stack .ph {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(36, 41, 31, 0.25);
}

.stack .ph img { width: 100%; height: 100%; object-fit: cover; }

.stack .ph--back { top: 0; left: 0; width: 78%; height: 68%; }
.stack .ph--front { bottom: 0; right: 0; width: 52%; height: 46%; }

/* --- 2 カラムのセクション --- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 5vw;
  align-items: center;
}

.split--rev { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }

.band .counter-line { top: 52%; }

/* --- ロゴコンセプト（About） --- */
.concept {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: clamp(18px, 3.2vw, 48px);
  margin-top: 40px;
  padding-bottom: 6px;
  border-bottom: var(--line-w) solid var(--green);
  max-width: 640px;
}

.concept .glyph {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--moss);
  line-height: 1;
}

.concept .mark { flex-shrink: 0; } /* flex に潰されてロゴ幅 0 になる事故の防止 */

.concept .mark img { width: clamp(80px, 9vw, 130px); max-width: none; transform: translateY(2px); }

/* ラベルはカウンター線の下の注釈（行内に置くと狭い幅でロゴを圧迫するため） */
.concept .label {
  position: absolute;
  right: 0;
  bottom: -2em;
  font-size: 0.78rem;
  color: var(--moss);
  white-space: nowrap;
}

/* --- ボタン --- */
.btn {
  display: inline-block;
  margin-top: 34px;
  padding: 15px 34px;
  background: var(--green);
  color: var(--paper);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn:hover { background: var(--green-deep); transform: translateY(-2px); }

.btn .jp { font-family: var(--font-jp); font-weight: 700; }

/* --- 会社概要 --- */
.company-table {
  width: 100%;
  max-width: 640px;
  border-collapse: collapse;
  font-size: 0.92rem;
  position: relative;
  z-index: 2;
}

.company-table th,
.company-table td {
  text-align: left;
  padding: 18px 8px;
  border-bottom: 1px solid rgba(110, 117, 98, 0.35);
  vertical-align: top;
}

.company-table th {
  width: 9em;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

/* --- フッター --- */
.footer {
  position: relative;
  padding: 90px 7vw 46px 4vw;
  background: var(--green);
  color: var(--paper);
}

.footer .mark { width: 60px; margin-bottom: 24px; filter: brightness(0) invert(1); opacity: 0.92; }

.footer .co { font-weight: 700; letter-spacing: 0.08em; margin-bottom: 6px; }

.footer .addr { font-size: 0.8rem; opacity: 0.75; }

.footer .copyright {
  margin-top: 46px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  opacity: 0.6;
}

/* --- スクロール出現 --- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- HUD（マウス座標・時計。js/3d.js が生成・PC のみ） --- */
.hud {
  position: fixed;
  left: calc(var(--nav-w) + 2vw);
  right: 2vw;
  bottom: 14px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  pointer-events: none;
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--moss);
  transition: color 0.5s ease;
}

html.nav-dark .hud { color: rgba(244, 242, 235, 0.5); }

@media (max-width: 900px) {
  .hud { display: none; }
}

/* --- ネオン・カーソルドット（js/3d.js 生成・PC のみ） --- */
.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px rgba(63, 212, 100, 0.9), 0 0 30px rgba(63, 212, 100, 0.4);
  pointer-events: none;
  z-index: 300;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

/* --- スクロール進捗のネオンライン（右端・js/3d.js 生成） --- */
.gl-progress {
  position: fixed;
  top: 0;
  right: 0;
  width: 2px;
  height: 100vh;
  z-index: 90;
  pointer-events: none;
}

.gl-progress .fill {
  width: 100%;
  height: 100%;
  transform-origin: top;
  transform: scaleY(0);
  background: linear-gradient(var(--neon), rgba(63, 212, 100, 0.25));
  box-shadow: 0 0 8px rgba(63, 212, 100, 0.6);
}

/* --- サウンドトグル（HUD 内・js/3d.js 生成） --- */
.hud-sound {
  pointer-events: auto;
  cursor: pointer;
}

.hud-sound:hover { color: var(--neon); }

/* --- フィルムグレインの全ページ統一（gl-on 時。セクション個別のものは無効化） --- */
html.gl-on body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.04;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
}

html.gl-on .hero--cinema::after,
html.gl-on .band--cinema::after { display: none; }

/* --- クロスドキュメント View Transitions（whisky/ との相互遷移） ---
   両ページの CSS で宣言して初めて発動（whisky/ 側は sync-7a-whisky.sh が注入）。
   Chrome/Edge 126+・Safari 18.2+ でクロスフェード、Firefox は通常遷移に縮退 */
@view-transition { navigation: auto; }

/* --- Pour: 注ぎのスクロールスクラブ（実写連番。JS 無しではポスター 1 枚） --- */
.band--pour {
  padding: 0;
  background: #0b1407;
}

html.gl-on .band--pour { background: transparent; }

.pour-pin {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pour-frame {
  position: relative;
  margin: 0;
  height: min(86vh, 150vw);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.pour-poster, .pour-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pour-canvas { display: none; }
#pour.pour-on .pour-canvas { display: block; }
#pour.pour-on .pour-poster { visibility: hidden; }

.pour-copy {
  position: absolute;
  left: clamp(16px, 7vw, 130px);
  bottom: clamp(60px, 13vh, 150px);
  z-index: 2;
  margin: 0;
  color: var(--paper);
  font-weight: 700;
  font-size: clamp(19px, 2.6vw, 32px);
  line-height: 1.85;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.65);
}

/* --- ページ遷移の幕（whisky/ へのワープ退場。js/3d.js 生成） --- */
.page-warp {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 220;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 55%, rgba(63, 212, 100, 0.16), transparent 42%),
    radial-gradient(circle at 50% 50%, #14240e 0%, #0b1407 78%);
}

/* --- 万物粒子化のヒント: 3D 稼働時は写真が触れる合図（PC のみ） --- */
html.gl-on .ph { cursor: crosshair; }

/* --- フォーカス可視 --- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

/* --- レスポンシブ --- */
@media (max-width: 1080px) {
  :root { --nav-w: 180px; }
}

@media (max-width: 900px) {
  .side-nav { display: none; }
  .mobile-bar { display: flex; }
  main { padding-left: 0; }

  .band { padding: 90px 6vw; }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 130px 6vw 90px;
    min-height: auto;
  }

  .hero .counter-line { bottom: 22%; }
  .hero-mark { display: none; }
  .hero-photos { height: 100vw; }
  .hero-photos .ph--front { width: 36%; }

  .split, .split--rev { grid-template-columns: 1fr; gap: 44px; }
  .band .counter-line { top: 60%; }
  .stack { height: 78vw; }
}
