/* ═══════════════════════════════════════════
   TOHO AUTO LINK — Black × Gold
   ═══════════════════════════════════════════ */
:root {
  --bg: #0a0a09;
  --bg-2: #0f0e0c;
  --panel: #141310;
  --line: rgba(201, 169, 97, 0.18);
  --line-soft: rgba(255, 255, 255, 0.07);
  --gold: #c9a961;
  --gold-light: #e8ce8c;
  --gold-deep: #8f7434;
  --text: #ece8de;
  --muted: #9a948a;
  --serif: "Shippori Mincho", serif;
  --sans: "Noto Sans JP", sans-serif;
  --en: "Manrope", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 6vw; }
.section { padding: clamp(90px, 12vw, 150px) 0; position: relative; }

/* ─── Header ─── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4vw;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 9, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 4vw;
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 40px; height: 40px; border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.35), 0 0 18px rgba(201, 169, 97, 0.15);
}
.brand-text {
  font-family: var(--en); font-weight: 700; font-size: 15px;
  letter-spacing: 0.22em; color: var(--text);
}
.global-nav { display: flex; align-items: center; gap: 30px; }
.global-nav a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.12em;
  color: var(--muted); transition: color 0.3s; position: relative;
}
.global-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.global-nav a:hover { color: var(--text); }
.global-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold) !important;
  padding: 10px 24px; border-radius: 999px; transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: #0a0a09 !important; }
.nav-toggle { display: none; }

/* ─── Hero ─── */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("../assets/hero-car.jpg") center 40% / cover no-repeat;
  opacity: 0.5;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.55) 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.55) 70%, transparent);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { from { scale: 1.15; } to { scale: 1.06; } }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 30% 55%, transparent, rgba(10,10,9,0.72));
}
.hero-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 42% 34% at 68% 46%, rgba(201, 169, 97, 0.22), transparent 70%);
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
.hero-fx { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero-cards { position: absolute; right: 3vw; top: 0; bottom: 0; width: 31vw; z-index: 1; pointer-events: none; }
.hc {
  position: absolute; aspect-ratio: 63/88; border-radius: 14px;
  background-size: cover; background-position: center;
  border: 1px solid rgba(201, 169, 97, 0.55);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(201, 169, 97, 0.22);
  transform: translate(var(--mx, 0), var(--my, 0)) rotate(var(--rot, 0deg));
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, margin-top;
}
.hc-1 {
  width: min(250px, 17vw); right: 22%; top: 22%; --rot: 8deg; z-index: 3;
  background-image: url("../assets/cards/charizard-vmax-swsh45sv-sv107.webp");
  animation: floatPack 7s ease-in-out infinite;
}
.hc-2 {
  width: min(190px, 13vw); right: 52%; top: 44%; --rot: -12deg; z-index: 2; opacity: 0.9;
  background-image: url("../assets/cards/giratina-v-aa.webp");
  animation: floatPack 8.5s ease-in-out 0.8s infinite;
}
.hc-3 {
  width: min(160px, 11vw); right: 4%; top: 56%; --rot: 16deg; z-index: 1; opacity: 0.7;
  background-image: url("../assets/cards/mew-ex-sar.webp");
  animation: floatPack 9.5s ease-in-out 1.6s infinite;
}

.hero-inner { position: relative; z-index: 2; padding: 0 6vw; max-width: 1120px; margin: 0 auto; width: 100%; }
.hero-eyebrow {
  font-family: var(--en); font-size: 13px; letter-spacing: 0.5em;
  color: var(--gold); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(40px, 7vw, 82px); line-height: 1.5; letter-spacing: 0.06em;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: inline-block; transform: translateY(110%);
  background: linear-gradient(105deg, #f0ede4 40%, var(--gold-light) 50%, #f0ede4 60%);
  background-size: 320% 100%; background-position: 120% 0;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: lineUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             titleShimmer 7s ease-in-out 2.2s infinite;
}
.hero-title .line:nth-child(2) > span { animation-delay: 0.18s, 2.5s; }
@keyframes titleShimmer {
  0% { background-position: 120% 0; }
  38%, 100% { background-position: -160% 0; }
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-light) 50%, var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-lead {
  margin-top: 34px; color: var(--muted); font-size: 15px;
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 44px; font-family: var(--en); font-size: 13px;
  letter-spacing: 0.3em; color: var(--gold);
  border-bottom: 1px solid var(--gold-deep); padding-bottom: 8px;
  opacity: 0; animation: fadeUp 1s 1.2s forwards;
  transition: letter-spacing 0.4s, color 0.3s;
}
.hero-cta::after { content: "→"; transition: transform 0.3s; }
.hero-cta:hover { letter-spacing: 0.38em; color: var(--gold-light); }
.hero-cta:hover::after { transform: translateX(6px); }

.hero-badge {
  position: absolute; right: 5vw; bottom: 8vh; z-index: 2;
  width: 120px; height: 120px; animation: spin 18s linear infinite;
}
.hero-badge text {
  font-family: var(--en); font-size: 9.5px; letter-spacing: 0.28em;
  fill: #c9a961; opacity: 0.85;
}
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-cue {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue span { font-family: var(--en); font-size: 10px; letter-spacing: 0.35em; color: var(--muted); }
.scroll-cue i {
  width: 1px; height: 64px; background: linear-gradient(var(--gold), transparent);
  display: block; animation: cueDrop 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cueDrop { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes lineUp { to { transform: translateY(0); } }

/* ─── Section heads ─── */
.sec-eyebrow {
  font-family: var(--en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.42em; color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.sec-eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold-deep); }
.sec-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.6; letter-spacing: 0.08em;
}
.sec-head { margin-bottom: clamp(48px, 6vw, 80px); }
.sec-lead { margin-top: 22px; color: var(--muted); font-size: 15px; max-width: 640px; }

/* ─── Reveal ─── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1); }
.reveal.on { opacity: 1; transform: none; }

/* ─── Philosophy ─── */
.philosophy { background: linear-gradient(var(--bg), var(--bg-2)); }
.philosophy-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.ph-lead {
  font-family: var(--serif); font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.9; letter-spacing: 0.1em; margin-bottom: 28px; color: var(--gold-light);
}
.philosophy-copy p:not(.ph-lead) { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.ph-rep { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.ph-rep-label { font-family: var(--en); font-size: 10px; letter-spacing: 0.35em; color: var(--gold); }
.ph-rep-name { font-family: var(--serif); font-size: 20px; letter-spacing: 0.14em; }
.ph-rep-name small { font-family: var(--en); font-size: 11px; letter-spacing: 0.2em; color: var(--muted); margin-left: 12px; }
.philosophy-visual { position: relative; margin: 0; }
.philosophy-visual::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--line); z-index: 0;
}
.philosophy-visual img { position: relative; z-index: 1; filter: grayscale(35%) brightness(0.85); aspect-ratio: 4/5; object-fit: cover; width: 100%; }

.glance {
  margin-top: clamp(64px, 8vw, 100px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.glance li {
  padding: 34px 10px; text-align: center;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.glance li + li { border-left: 1px solid var(--line); }
.g-num { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); color: var(--gold); letter-spacing: 0.06em; }
.g-label { font-size: 13px; line-height: 1.7; }
.g-label small { font-family: var(--en); font-size: 9px; letter-spacing: 0.25em; color: var(--muted); }

/* ─── Business ─── */
.biz {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
  padding: clamp(40px, 5vw, 64px) 0;
}
.biz + .biz { border-top: 1px solid var(--line-soft); }
.biz-rev .biz-visual { order: 2; }
.biz-visual { overflow: hidden; position: relative; margin: 0; }
.biz-visual img {
  aspect-ratio: 4/3; object-fit: cover; width: 100%;
  filter: grayscale(30%) brightness(0.85);
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1), filter 0.8s;
}
.biz:hover .biz-visual img { transform: scale(1.05); filter: grayscale(0%) brightness(0.95); }
.biz-num {
  font-family: var(--en); font-size: 13px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.14em; margin-bottom: 14px;
}
.biz-num span { font-size: 11px; letter-spacing: 0.35em; color: var(--muted); margin-left: 12px; }
.biz h3 { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 18px; }
.biz-body > p { color: var(--muted); font-size: 14.5px; }
.biz-points { margin-top: 22px; display: flex; flex-direction: column; gap: 8px; }
.biz-points li { font-size: 13.5px; padding-left: 22px; position: relative; color: var(--text); }
.biz-points li::before {
  content: ""; position: absolute; left: 0; top: 0.9em;
  width: 10px; height: 1px; background: var(--gold);
}

/* card fan (business 01 visual) */
.biz-visual-cards { display: grid; place-items: center; aspect-ratio: 4/3; background: radial-gradient(circle at 50% 40%, #1c1911, var(--bg-2) 70%); border: 1px solid var(--line); }
.fan { position: relative; width: min(52%, 200px); aspect-ratio: 63/88; }
.fan-card {
  position: absolute; inset: 0; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--gold-deep);
  background: linear-gradient(155deg, #23201a, #0e0d0a 55%, #1a1710);
  box-shadow: 0 24px 50px rgba(0,0,0,0.55);
  transform-origin: 50% 90%;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.fan-a {
  transform: rotate(-14deg); opacity: 0.9;
  background: url("../assets/cards/pikachu-vmax-rr.webp") center / cover no-repeat;
}
.fan-b {
  transform: rotate(-2deg); opacity: 0.96;
  background: url("../assets/cards/shanks-parallel-manga-alternate-art-op01-120.webp") center / cover no-repeat;
}
.fan-c {
  transform: rotate(10deg);
  background: url("../assets/cards/umbreon-vmax-aa.webp") center / cover no-repeat;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(201,169,97,0.12);
}
.biz:hover .fan-a { transform: rotate(-20deg) translateY(-4px); }
.biz:hover .fan-b { transform: rotate(-3deg) translateY(-8px); }
.biz:hover .fan-c { transform: rotate(14deg) translateY(-4px); }

/* pack scene: cards spilling out (business 02 visual) */
.pack-scene { position: relative; width: min(74%, 310px); aspect-ratio: 1; display: grid; place-items: center; }
.spill-card {
  position: absolute; width: 52%; aspect-ratio: 63/88;
  border-radius: 10px; border: 1px solid var(--gold-deep);
  background: linear-gradient(155deg, #23201a, #0e0d0a);
  background-size: cover; background-position: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.spill-l {
  left: 1%; top: 5%; transform: rotate(-16deg);
  background-image: url("../assets/cards/charizard-ex-sar.webp");
}
.spill-r {
  right: 1%; top: 9%; transform: rotate(15deg);
  background-image: url("../assets/cards/gol-d-roger-manga-op09-118.webp");
}
.spill-c {
  position: relative; z-index: 2; width: 56%; overflow: hidden;
  transform: rotate(-3deg);
  background-image: url("../assets/cards/pikachu-vmax-rr.webp");
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(201,169,97,0.12);
}
.biz:hover .spill-l { transform: rotate(-21deg) translate(-8px, -10px); }
.biz:hover .spill-r { transform: rotate(20deg) translate(8px, -10px); }
.biz:hover .spill-c { transform: rotate(0deg) translateY(-6px); }

/* pack container (business 02 visual) */
.biz-visual-pack { display: grid; place-items: center; aspect-ratio: 4/3; background: radial-gradient(circle at 50% 40%, #1c1911, var(--bg-2) 70%); border: 1px solid var(--line); }
.pack-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(232,206,140,0.16) 48%, transparent 62%);
  background-size: 240% 100%; animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine { 0%, 20% { background-position: 120% 0; } 60%, 100% { background-position: -120% 0; } }

/* ─── PackPull feature ─── */
.packpull { background: var(--bg-2); }
.pp-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center;
  gap: clamp(30px, 4vw, 60px);
  padding: clamp(40px, 6vw, 80px);
  background: linear-gradient(140deg, #16130c, #0c0b08 60%);
  border: 1px solid var(--line);
}
.pp-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(201,169,97,0.10), transparent);
  pointer-events: none;
}
.pp-title {
  font-family: var(--en); font-weight: 800;
  font-size: clamp(38px, 5vw, 60px); letter-spacing: 0.08em; line-height: 1.1;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-light) 45%, var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.pp-sub { font-family: var(--serif); font-size: clamp(19px, 2.2vw, 25px); line-height: 1.9; letter-spacing: 0.1em; margin-bottom: 20px; }
.pp-desc { color: var(--muted); font-size: 14.5px; max-width: 480px; }
.pp-cta {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 32px; padding: 16px 36px;
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: #0a0a09; font-weight: 700; font-size: 14px; letter-spacing: 0.1em;
  border-radius: 4px; transition: transform 0.3s, box-shadow 0.3s;
}
.pp-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(201,169,97,0.28); }
.pp-cta span { transition: transform 0.3s; }
.pp-cta:hover span { transform: translateX(5px); }

.pp-visual { position: relative; height: clamp(240px, 26vw, 340px); }
.pp-pack {
  position: absolute; width: clamp(150px, 15vw, 200px); aspect-ratio: 63/88;
  border-radius: 14px; left: 50%; top: 50%;
}
.pp-card-real {
  background-size: cover; background-position: center;
  border: 1px solid rgba(201,169,97,0.45);
  box-shadow: 0 18px 44px rgba(0,0,0,0.6);
}
.pp-card-a {
  transform: translate(-30%, -48%) rotate(12deg);
  background-image: url("../assets/cards/rayquaza-vmax-aa.webp");
}
.pp-card-b {
  transform: translate(-86%, -46%) rotate(-18deg);
  background-image: url("../assets/cards/monkey-d-luffy-119-manga-op09-119.webp");
  opacity: 0.9;
}
.pp-card-c {
  transform: translate(-58%, -50%) rotate(-6deg);
  background-image: url("../assets/cards/gengar-vmax-aa.webp");
  border: 1px solid var(--gold-deep);
  box-shadow: 0 30px 70px rgba(0,0,0,0.65), 0 0 50px rgba(201,169,97,0.14);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.pp-card:hover .pp-card-c { transform: translate(-58%, -54%) rotate(-3deg); }

/* ─── Strengths ─── */
.str-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 44px); }
.str-item {
  padding: clamp(28px, 3vw, 40px);
  background: var(--panel); border: 1px solid var(--line-soft);
  transition: border-color 0.4s, transform 0.4s;
}
.str-item:hover { border-color: var(--line); transform: translateY(-6px); }
.str-num {
  font-family: var(--en); font-weight: 700; font-size: 15px;
  color: var(--gold); margin-bottom: 18px; display: flex; align-items: center; gap: 14px;
}
.str-num::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.str-item h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; line-height: 1.8; letter-spacing: 0.08em; margin-bottom: 16px; }
.str-item p { color: var(--muted); font-size: 13.5px; }

/* ─── Recruit ─── */
.recruit {
  background:
    linear-gradient(rgba(10,10,9,0.82), rgba(10,10,9,0.9)),
    url("../assets/logistics-night.jpg") center / cover fixed no-repeat;
}
.recruit-inner { max-width: 680px; text-align: center; margin: 0 auto; }
.recruit .sec-eyebrow { justify-content: center; }
.recruit .sec-eyebrow::after { content: ""; width: 42px; height: 1px; background: var(--gold-deep); }
.recruit .sec-title { margin-bottom: 28px; }
.recruit-inner > p:not(.sec-eyebrow) { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.btn-gold {
  display: inline-block; margin-top: 28px; padding: 18px 48px;
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: #0a0a09; font-weight: 700; font-size: 15px; letter-spacing: 0.08em;
  border-radius: 999px; transition: transform 0.3s, box-shadow 0.3s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(201,169,97,0.3); }

/* ─── Company ─── */
.company { background: var(--bg-2); }
.company-table { max-width: 860px; }
.company-table > div {
  display: grid; grid-template-columns: 180px 1fr; gap: 20px;
  padding: 24px 8px; border-bottom: 1px solid var(--line-soft);
}
.company-table > div:first-child { border-top: 1px solid var(--line); }
.company-table dt { color: var(--gold); font-size: 13px; letter-spacing: 0.2em; font-weight: 500; padding-top: 2px; }
.company-table dd { font-size: 14.5px; }
.company-table dd a { border-bottom: 1px solid var(--gold-deep); transition: color 0.3s; }
.company-table dd a:hover { color: var(--gold-light); }

/* ─── Contact ─── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.contact-card {
  position: relative; padding: clamp(30px, 3vw, 44px);
  background: var(--panel); border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.4s, transform 0.4s, background 0.4s;
}
.contact-card:hover { border-color: var(--gold-deep); transform: translateY(-6px); background: #171510; }
.cc-label { font-family: var(--en); font-size: 11px; font-weight: 700; letter-spacing: 0.35em; color: var(--gold); }
.contact-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: 0.1em; }
.contact-card p { color: var(--muted); font-size: 13.5px; word-break: break-all; }
.cc-arrow {
  position: absolute; right: 26px; bottom: 22px; color: var(--gold);
  font-size: 18px; transition: transform 0.3s;
}
.contact-card:hover .cc-arrow { transform: translateX(6px); }

/* ─── Footer ─── */
.site-footer { border-top: 1px solid var(--line); padding: clamp(50px, 6vw, 80px) 0 0; background: #070706; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 50px; }
.footer-logo {
  width: 64px; height: 64px; border-radius: 50%; margin-bottom: 18px;
  box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.35), 0 0 22px rgba(201, 169, 97, 0.15);
}
.footer-brand .brand-text { display: block; margin-bottom: 16px; color: var(--gold); }
.footer-brand p:not(.brand-text) { color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--muted); font-size: 13px; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }
.copyright {
  text-align: center; padding: 24px 0; border-top: 1px solid var(--line-soft);
  font-family: var(--en); font-size: 11px; letter-spacing: 0.18em; color: #6b665c;
}

/* ─── Motion: scroll progress ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  z-index: 200; box-shadow: 0 0 12px rgba(201,169,97,0.5);
}

/* ─── Motion: marquee bands ─── */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 18px 0; background: #080807;
}
.marquee-track { display: inline-flex; }
.marquee-track span {
  font-family: var(--en); font-weight: 800;
  font-size: clamp(20px, 2.6vw, 34px); letter-spacing: 0.18em;
  color: transparent; -webkit-text-stroke: 1px rgba(201,169,97,0.4);
  padding-right: 40px;
  animation: marquee 40s linear infinite;
}
.marquee-rev .marquee-track span {
  animation-direction: reverse;
  font-family: var(--serif); font-weight: 600; -webkit-text-stroke: 0;
  color: rgba(201,169,97,0.22);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ─── Motion: image curtain reveal ─── */
.biz-visual::after, .philosophy-visual::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(120deg, #0c0b09, #191510);
  transform: scaleX(1); transform-origin: right;
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0.15s;
}
.reveal.on .biz-visual::after, .philosophy-visual.on::after { transform: scaleX(0); }

/* ─── Motion: stagger list items & glance ─── */
.reveal .biz-points li, .reveal.glance li {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.on .biz-points li, .reveal.on.glance li { opacity: 1; transform: none; }
.reveal.on .biz-points li:nth-child(1), .reveal.on.glance li:nth-child(1) { transition-delay: 0.25s; }
.reveal.on .biz-points li:nth-child(2), .reveal.on.glance li:nth-child(2) { transition-delay: 0.4s; }
.reveal.on .biz-points li:nth-child(3), .reveal.on.glance li:nth-child(3) { transition-delay: 0.55s; }
.reveal.on.glance li:nth-child(4) { transition-delay: 0.7s; }

/* ─── Motion: floating packs ─── */
.pp-card-c { animation: floatPack 5s ease-in-out infinite; }
.pp-card-a, .pp-card-b { animation: floatPack 6s ease-in-out 0.6s infinite; }
@keyframes floatPack {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -12px; }
}
.spill-c { animation: floatPack 5.5s ease-in-out infinite; }

/* ─── Motion: parallax targets (JS-driven) ─── */
.hero-bg, .biz-visual img, .philosophy-visual img { will-change: transform; }
.biz-visual img, .philosophy-visual img {
  transform: translateY(var(--py, 0px)) scale(1.12);
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1), filter 0.8s;
}
.biz:hover .biz-visual img { transform: translateY(var(--py, 0px)) scale(1.16); }

/* ─── Responsive ─── */
.pc { display: inline; }
@media (max-width: 900px) {
  .pc { display: none; }
  .global-nav {
    position: fixed; inset: 0; background: rgba(7,7,6,0.97);
    flex-direction: column; justify-content: center; gap: 34px;
    opacity: 0; pointer-events: none; transition: opacity 0.4s;
  }
  .global-nav.open { opacity: 1; pointer-events: auto; }
  .global-nav a { font-size: 17px; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 7px;
    background: none; border: none; cursor: pointer; z-index: 110; padding: 6px;
  }
  .nav-toggle span { width: 30px; height: 1.5px; background: var(--gold); transition: transform 0.35s, opacity 0.35s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

  .philosophy-grid, .biz, .pp-card { grid-template-columns: 1fr; }
  .biz-rev .biz-visual { order: 0; }
  .glance { grid-template-columns: repeat(2, 1fr); }
  .glance li:nth-child(3) { border-left: none; }
  .glance li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .str-grid, .contact-grid { grid-template-columns: 1fr; }
  .company-table > div { grid-template-columns: 1fr; gap: 4px; }
  .hero-badge { width: 90px; height: 90px; right: 6vw; bottom: 12vh; }
  .hero-cards { display: none; }
  .recruit { background-attachment: scroll; }
  .pp-visual { height: 260px; }
}

/* QA: ?nofx disables entrance animations */
.nofx *, .nofx *::before, .nofx *::after { animation: none !important; transition: none !important; }
.nofx .reveal, .nofx .hero-eyebrow, .nofx .hero-lead, .nofx .hero-cta, .nofx .hero-cta-row { opacity: 1 !important; transform: none !important; }
.nofx .hero-title .line > span { transform: none !important; }
.nofx .hero { min-height: 900px; }
.nofx .recruit { background-attachment: scroll; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
