/* =========================================================
   AXIS — Athlete Conditioning
   Faithful rebuild of Ultimate Performance's actual UI system
   (Webflow/Relume tokens read from the live CSS):
   ink #161412 · paper #f7f6f3 · accent red #e4002b · dark-red #7c2629
   pill buttons (100px) · card/image radius 16-24px · headings Archivo 700
   ========================================================= */

:root {
  /* surfaces */
  --ink:        #161412;
  --ink-2:      #1f1b17;
  --dark:       #1a1a1a;
  --darkred:    #7c2629;
  --paper:      #f7f6f3;
  --paper-2:    #efede7;
  --paper-3:    #e6e4dc;
  --white:      #ffffff;
  --beige:      #d6d2c4;
  /* text */
  --text:       #161412;
  --text-mid:   #5b5a59;
  --text-soft:  #888b8d;
  --on-dark:      #f7f6f3;
  --on-dark-mid:  rgba(247,246,243,0.66);
  --on-dark-soft: rgba(247,246,243,0.40);
  /* accent */
  --red:        #e4002b;
  --red-deep:   #b60013;
  /* lines */
  --line-l:     rgba(1,1,1,0.12);
  --line-d:     rgba(255,255,255,0.16);
  /* radius (UP scale) */
  --r-s: 4px; --r-m: 8px; --r-l: 16px; --r-xl: 20px; --r-xxl: 24px; --r-pill: 100px;
  /* fonts */
  --f-disp: "Archivo Black", "Noto Sans JP", sans-serif;     /* hero / statement / big moments (900) */
  --f-head: "Archivo", "Noto Sans JP", sans-serif;           /* section headings (700) */
  --f-body: "Archivo", "Noto Sans JP", sans-serif;
  --f-cond: "Bebas Neue", "Archivo Black", sans-serif;
  --f-mono: "JetBrains Mono", monospace;
  /* metrics */
  --container: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --header-h: 84px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; scroll-padding-top: 92px; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  letter-spacing: .005em;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
em { font-style: normal; }
::selection { background: var(--red); color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- section surfaces ---------- */
.section-paper  { background: var(--paper);  color: var(--text); }
.section-paper.alt { background: var(--paper-2); }
.section-white  { background: var(--white);  color: var(--text); }
.section-dark   { background: var(--dark);   color: var(--on-dark); }
.section-ink    { background: var(--ink);    color: var(--on-dark); }
.section-darkred{ background: var(--darkred); color: var(--on-dark); }
section { position: relative; z-index: 2; }
.section-paper, .section-white, .section-dark, .section-ink, .section-darkred { padding-block: clamp(72px, 8vw, 128px); }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--f-mono); font-size: 12px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text-mid);
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 6px 12px;
  max-width: 100%; margin-bottom: 24px;
}
.section-dark .eyebrow, .section-ink .eyebrow, .section-darkred .eyebrow { color: var(--on-dark-mid); }
.eyebrow-accent { color: var(--red) !important; }
.section-dark .eyebrow-accent, .section-darkred .eyebrow-accent { color: #ff5a72 !important; }
.eyebrow-tick { width: 20px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow.center { justify-content: center; }

.sec-head { max-width: 50rem; margin-bottom: clamp(40px, 5vw, 72px); }
.sec-title {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(30px, 4.4vw, 56px); line-height: 1.12; letter-spacing: -.025em;
  color: var(--text);
}
.section-dark .sec-title, .section-ink .sec-title, .section-darkred .sec-title, .sec-title.light { color: var(--on-dark); }
.sec-title em { color: var(--red); }
.section-dark .sec-title em, .section-darkred .sec-title em { color: #ff5a72; }
.sec-lead {
  margin-top: 22px; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.85;
  color: var(--text-mid); max-width: 42rem;
}
.section-dark .sec-lead, .section-darkred .sec-lead, .sec-lead.light { color: var(--on-dark-mid); }

/* ---------- buttons (UP: pill 100px) ---------- */
.btn {
  --bh: 54px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--bh); padding: 0 28px;
  font-family: var(--f-body); font-weight: 600; font-size: 15px; letter-spacing: .01em;
  border-radius: var(--r-pill); border: 1px solid transparent;
  transition: transform .5s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .5s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-arrow { transition: transform .45s var(--ease-spring); }
.btn:hover .btn-arrow { transform: translateX(5px); }
.btn-sm { --bh: 44px; padding: 0 20px; font-size: 14px; }
.btn-lg { --bh: 60px; padding: 0 34px; font-size: 16px; }
.btn-xl { --bh: 66px; padding: 0 42px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* primary = ink (UP default), accent = red, secondary = transparent+blur+border */
.btn-dark   { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-accent { background: var(--red); color: #fff; border-color: var(--red); }
.btn-accent:hover { background: var(--red-deep); border-color: var(--red-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(228,0,43,.28); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line-l); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.btn-glass { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-glass:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.section-dark .btn-outline, .section-ink .btn-outline, .section-darkred .btn-outline { color: #fff; border-color: rgba(255,255,255,.45); }
.section-dark .btn-outline:hover { background: #fff; color: var(--ink); }

/* arrow-with-text outline pill (UP button-with-arrow) */
.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-body); font-weight: 600; font-size: 15px; color: var(--text); padding: 8px 0; }
.link-arrow .la-ico { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-l); display: inline-flex; align-items: center; justify-content: center; transition: background .3s, color .3s, transform .4s var(--ease-spring); }
.link-arrow:hover .la-ico { background: var(--red); color: #fff; border-color: var(--red); transform: translateX(4px); }
.section-dark .link-arrow { color: #fff; } .section-dark .link-arrow .la-ico { border-color: var(--line-d); }

/* ---------- scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 1200; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0%; background: var(--red); }

/* ---------- splash ---------- */
.splash { position: fixed; inset: 0; z-index: 1500; background: var(--ink); display: flex; align-items: center; justify-content: center; animation: splashOut .9s var(--ease) 2.4s forwards; }
.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.splash-axis { font-family: var(--f-disp); font-weight: 900; color: var(--on-dark); font-size: clamp(60px, 12vw, 140px); letter-spacing: .04em; line-height: 1; opacity: 0; transform: translateY(16px); animation: splashIn .9s var(--ease-spring) .15s forwards; }
.splash-rule { width: 1px; height: 0; background: var(--red); animation: splashRule .7s var(--ease) .55s forwards; }
.splash-jp { font-family: var(--f-mono); font-size: 12px; letter-spacing: .3em; color: var(--on-dark-mid); opacity: 0; animation: splashFade .8s ease .85s forwards; }
@keyframes splashIn { to { opacity: 1; transform: none; } }
@keyframes splashRule { to { height: 44px; } }
@keyframes splashFade { to { opacity: 1; } }
@keyframes splashOut { to { opacity: 0; visibility: hidden; } }
body.is-loaded .splash { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .8s ease, visibility 0s linear .8s; }

/* ---------- header ---------- */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: background .45s var(--ease), border-color .45s var(--ease); border-bottom: 1px solid transparent; }
.header-inner { height: var(--header-h); max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 24px; transition: height .45s var(--ease); }
.header.scrolled { background: rgba(22,20,18,.86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--line-d); }
.header.scrolled .header-inner { height: 64px; }
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark { width: 11px; height: 28px; background: var(--red); flex: none; border-radius: 1px; }
.logo-text { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-kabu { font-family: var(--f-mono); font-size: 9px; letter-spacing: .2em; color: var(--on-dark-mid); margin-bottom: 4px; }
.logo-name { font-family: var(--f-disp); font-weight: 900; font-size: 23px; letter-spacing: .12em; color: var(--on-dark); }
.header .nav-link, .header .tel-label, .header .tel-num { color: var(--on-dark); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav-link { font-family: var(--f-body); font-size: 14px; font-weight: 500; letter-spacing: .02em; position: relative; padding: 6px 0; color: var(--on-dark); transition: color .3s; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--red); transition: width .4s var(--ease); }
.nav-link:hover { color: #ff5a72; } .nav-link:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 20px; }
.header-tel { display: flex; flex-direction: column; line-height: 1.2; text-align: right; }
.tel-label { font-family: var(--f-mono); font-size: 9px; letter-spacing: .2em; color: var(--on-dark-mid); }
.tel-num { font-family: var(--f-cond); font-size: 21px; letter-spacing: .04em; }
.burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: flex-end; gap: 6px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--on-dark); transition: transform .4s var(--ease), opacity .3s, width .4s; }
.burger span:nth-child(2) { width: 18px; }
body.drawer-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); width: 26px; }
body.drawer-open .burger span:nth-child(2) { opacity: 0; }
body.drawer-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); width: 26px; }

/* ---------- drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 990; background: var(--ink); padding: calc(var(--header-h) + 30px) var(--pad) 40px; display: flex; flex-direction: column; justify-content: space-between; transform: translateY(-100%); transition: transform .6s var(--ease); visibility: hidden; }
body.drawer-open .drawer { transform: translateY(0); visibility: visible; }
.drawer-nav { display: flex; flex-direction: column; }
.drawer-link { display: flex; align-items: baseline; gap: 18px; font-family: var(--f-head); font-weight: 700; font-size: clamp(20px, 5.5vw, 28px); color: var(--on-dark); padding: 15px 0; border-bottom: 1px solid var(--line-d); }
.dl-num { font-family: var(--f-mono); font-size: 12px; color: #ff5a72; letter-spacing: .1em; }
.drawer-foot { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }

/* =====================================================
   HERO  (full-bleed visual + bottom-left text)
   ===================================================== */
.hero { position: relative; background: #0c0a07; color: var(--on-dark); min-height: 100svh; max-height: 1000px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 120% at 78% 26%, rgba(92,79,66,.52) 0%, rgba(28,23,18,.22) 42%, transparent 68%),
    radial-gradient(90% 90% at 90% 82%, rgba(124,38,41,.22) 0%, transparent 55%),
    linear-gradient(180deg, #1b160f 0%, #100c08 60%, #0a0806 100%);
  /* image-ready: background-image: url('../images/hero.jpg'); background-size: cover; background-position: center; */
  transform: scale(1.04); animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(8,6,4,.9) 0%, rgba(8,6,4,.55) 38%, rgba(8,6,4,.12) 68%, transparent 100%), linear-gradient(0deg, rgba(8,6,4,.94) 0%, rgba(8,6,4,.3) 40%, transparent 62%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(54px, 9vh, 110px); }
.hero-content { max-width: 900px; }
.hero-eyebrow { color: rgba(247,246,243,.74); margin-bottom: 26px; }
.hero-title { font-family: var(--f-disp); font-weight: 900; font-size: clamp(46px, 9vw, 124px); line-height: .96; letter-spacing: -.03em; margin-bottom: 28px; color: #fff; }
.hero-title .line { display: block; }
.hero-title em { color: var(--red); }
.hero-lead { font-size: clamp(15px, 1.6vw, 19px); line-height: 1.9; color: rgba(247,246,243,.82); max-width: 600px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.scroll-cue { position: absolute; right: var(--pad); bottom: 32px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.sc-txt { font-family: var(--f-mono); font-size: 9px; letter-spacing: .26em; color: rgba(247,246,243,.5); writing-mode: vertical-rl; }
.sc-line { width: 1px; height: 52px; background: linear-gradient(var(--on-dark-soft), transparent); position: relative; overflow: hidden; }
.sc-line::after { content: ""; position: absolute; top: -60%; left: 0; width: 100%; height: 60%; background: var(--red); animation: scDown 2s var(--ease) infinite; }
@keyframes scDown { 0% { top: -60%; } 60%,100% { top: 100%; } }

/* =====================================================
   STATEMENT  (UP section_text: big bold statement)
   ===================================================== */
.statement { text-align: left; }
.statement-inner { max-width: 64rem; }
.statement-title { font-family: var(--f-disp); font-weight: 900; font-size: clamp(34px, 6vw, 86px); line-height: 1.02; letter-spacing: -.03em; }
.statement-title em { color: var(--red); }
.statement-lead { margin-top: 30px; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.8; color: var(--text-mid); max-width: 40rem; }
.statement-actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

/* =====================================================
   APPROACH  (UP layout544: text + tall rounded image)
   ===================================================== */
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 72px); align-items: center; }
.approach-body { max-width: 34rem; }
.approach-points { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.approach-points li { display: flex; gap: 16px; align-items: flex-start; }
.approach-points .ap-no { font-family: var(--f-mono); font-size: 12px; color: var(--red); padding-top: 4px; letter-spacing: .08em; flex: none; }
.approach-points .ap-t { font-family: var(--f-head); font-weight: 700; font-size: 17px; margin-bottom: 4px; }
.approach-points .ap-d { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.media-frame {
  position: relative; width: 100%; aspect-ratio: 4/5; border-radius: var(--r-xxl); overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, #2a241c 0%, var(--ink) 72%), var(--ink);
  /* image-ready: background-image: url('../images/approach.jpg'); background-size: cover; background-position: center; */
  display: flex; align-items: flex-end; padding: 28px;
}
.media-frame::before { content: ""; position: absolute; left: 28px; top: 0; width: 3px; height: 58px; background: var(--red); }
.media-frame .mf-tag { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; color: var(--on-dark-mid); }

/* =====================================================
   PILLARS  (UP off-grid: 3 image feature blocks)
   ===================================================== */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.pillar { display: flex; flex-direction: column; }
.pillar-media {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(180deg, #26221b, var(--ink));
  /* image-ready: background-image: url('../images/pillar-N.jpg'); background-size: cover; background-position: center; */
  margin-bottom: 22px;
}
.pillar-media .pm-no { position: absolute; left: 20px; top: 16px; font-family: var(--f-cond); font-size: 40px; color: rgba(255,255,255,.9); }
.pillar-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,8,6,.55), transparent 55%); }
.pillar-title { font-family: var(--f-head); font-weight: 700; font-size: clamp(19px, 1.8vw, 24px); letter-spacing: -.01em; margin-bottom: 12px; }
.pillar-text { font-size: 14.5px; line-height: 1.8; color: var(--text-mid); }

/* =====================================================
   QUOTE  (UP section_testimonial1: dark-red big quote)
   ===================================================== */
.quote-inner { max-width: 60rem; margin: 0 auto; text-align: center; }
.quote-mark { font-family: var(--f-disp); font-size: 90px; line-height: .6; color: rgba(255,255,255,.22); }
.quote-text { font-family: var(--f-head); font-weight: 700; font-size: clamp(24px, 3.4vw, 46px); line-height: 1.32; letter-spacing: -.015em; color: var(--on-dark); margin: 18px 0 30px; }
.quote-cite { font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; color: rgba(255,255,255,.7); }

/* =====================================================
   RESULTS  (UP client-results: rounded image cards)
   ===================================================== */
.results-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(32px,4vw,56px); }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 20px); }
.result-card { position: relative; aspect-ratio: 3/4; border-radius: var(--r-xl); overflow: hidden; background: linear-gradient(160deg, #232019 0%, #14110b 70%) center/cover no-repeat; /* image-ready: per-card background-image set when photos arrive */ display: flex; flex-direction: column; padding: clamp(20px,2vw,26px); transition: transform .5s var(--ease); }
.result-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,6,4,.86) 0%, rgba(8,6,4,.2) 52%, transparent 100%); z-index: 1; }
.result-card:hover { transform: translateY(-5px); }
.rc-tag, .rc-sport, .rc-note { position: relative; z-index: 2; }
.rc-tag { align-self: flex-start; font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; color: #fff; background: rgba(228,0,43,.92); padding: 5px 11px; border-radius: var(--r-pill); margin-bottom: auto; }
.rc-sport { font-family: var(--f-cond); font-size: clamp(24px,2.3vw,32px); color: #fff; letter-spacing: .02em; line-height: 1.04; margin: 16px 0 8px; }
.rc-note { font-size: 12.5px; color: var(--on-dark-mid); line-height: 1.65; }

/* =====================================================
   SYSTEM  (UP white section: stats / mechanism)
   ===================================================== */
.system-grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px,5vw,64px); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-l); border: 1px solid var(--line-l); border-radius: var(--r-l); overflow: hidden; }
.stat { background: var(--white); padding: clamp(26px,3vw,42px) clamp(18px,2vw,30px); display: flex; flex-direction: column; gap: 12px; }
.stat-num { font-family: var(--f-cond); font-size: clamp(50px, 6.4vw, 88px); line-height: .9; color: var(--ink); display: flex; align-items: baseline; gap: 8px; }
.stat-num .count { font-variant-numeric: tabular-nums; }
.stat-suf { font-family: var(--f-head); font-weight: 700; font-size: clamp(15px,1.4vw,18px); color: var(--red); }
.stat-label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; color: var(--text-soft); line-height: 1.6; }

/* =====================================================
   GOALS  (UP goal cards: image cards with overlay)
   ===================================================== */
.goal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px,1.6vw,22px); }
.goal-card { position: relative; aspect-ratio: 3/4; border-radius: var(--r-xl); overflow: hidden; background: linear-gradient(180deg, #2a241c, var(--ink)); display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; color: #fff; transition: transform .5s var(--ease); }
.goal-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,6,4,.85) 0%, rgba(8,6,4,.2) 55%, transparent 100%); }
.goal-card:hover { transform: translateY(-6px); }
.goal-no { position: relative; z-index: 2; font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; color: #ff5a72; margin-bottom: auto; }
.goal-title { position: relative; z-index: 2; font-family: var(--f-head); font-weight: 700; font-size: clamp(18px,1.9vw,23px); line-height: 1.35; margin-bottom: 10px; }
.goal-text { position: relative; z-index: 2; font-size: 13px; line-height: 1.7; color: rgba(247,246,243,.78); }

/* =====================================================
   AUTHORITY  (UP dark "#1" + credential band)
   ===================================================== */
.authority-head { max-width: 50rem; }
/* static credential grid (no marquee) */
.creds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); border-radius: var(--r-l); overflow: hidden; margin-top: clamp(40px,5vw,68px); }
.cred { background: var(--dark); padding: clamp(24px,2.6vw,38px) clamp(18px,2vw,28px); display: flex; flex-direction: column; gap: 12px; }
.cred-k { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; color: #ff5a72; }
.cred-v { font-family: var(--f-head); font-weight: 700; font-size: clamp(16px,1.5vw,20px); color: var(--on-dark); line-height: 1.4; }
/* static sport tags (no marquee) */
.sport-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(30px,4vw,46px); }
.sport-tag { font-family: var(--f-body); font-weight: 500; font-size: 14px; color: var(--on-dark-mid); border: 1px solid var(--line-d); padding: 10px 20px; border-radius: var(--r-pill); }

/* =====================================================
   DIRECTOR
   ===================================================== */
.director-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px,5vw,72px); align-items: start; margin-bottom: clamp(56px,7vw,100px); }
.director-media { position: sticky; top: 110px; }
.dm-frame { position: relative; aspect-ratio: 4/5; border-radius: var(--r-xxl); overflow: hidden; background: radial-gradient(120% 90% at 50% 0%, #2a241c, var(--ink) 72%); border: 1px solid var(--line-d); display: flex; align-items: flex-end; padding: 28px; }
/* image-ready: .dm-frame{ background-image:url('../images/director.jpg'); background-size:cover; background-position:center; } */
.dm-frame::before { content: ""; position: absolute; left: 28px; top: 0; width: 3px; height: 60px; background: var(--red); }
.dm-tag { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; color: var(--on-dark-mid); }
.dm-cap { font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; color: var(--text-soft); margin-top: 14px; }
.director-quote { font-family: var(--f-head); font-weight: 700; font-size: clamp(22px,3vw,38px); line-height: 1.4; letter-spacing: -.01em; color: var(--text); margin: 26px 0; padding-left: 22px; border-left: 4px solid var(--red); }
.director-text { font-size: clamp(15px,1.4vw,16.5px); line-height: 2; color: var(--text-mid); margin-bottom: 16px; max-width: 58ch; }
.career { margin-top: 34px; border-top: 1px solid var(--line-l); }
.career-row { display: grid; grid-template-columns: 88px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line-l); }
.career-row dt { font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; color: var(--red); padding-top: 4px; }
.career-row dd { font-size: 14.5px; line-height: 1.8; color: var(--text-mid); display: flex; flex-wrap: wrap; gap: 10px; }
.career-tag { font-family: var(--f-head); font-weight: 700; font-size: 13px; color: var(--text); background: var(--white); border: 1px solid var(--line-l); padding: 8px 14px; border-radius: var(--r-pill); }
.ceo { background: var(--ink); color: var(--on-dark); border-radius: var(--r-xxl); padding: clamp(34px,4.5vw,68px); position: relative; overflow: hidden; }
.ceo-head { font-family: var(--f-head); font-weight: 700; font-size: clamp(22px,3vw,38px); letter-spacing: .01em; color: var(--on-dark); margin-bottom: 24px; }
.ceo-text { font-size: clamp(14.5px,1.4vw,16px); line-height: 2; color: var(--on-dark-mid); margin-bottom: 16px; max-width: 70ch; }
.ceo-sign { display: flex; align-items: baseline; gap: 14px; margin-top: 24px; }
.ceo-role { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; color: var(--on-dark-soft); }
.ceo-name { font-family: var(--f-head); font-weight: 700; font-size: 22px; color: var(--on-dark); }

/* =====================================================
   SERVICES (detail list)
   ===================================================== */
.svc-list { border-top: 1px solid var(--line-l); }
.svc-row { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: clamp(16px,3vw,44px); padding: clamp(22px,2.8vw,34px) 0; border-bottom: 1px solid var(--line-l); position: relative; transition: padding-left .5s var(--ease); }
.svc-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--red); transition: width .45s var(--ease); }
.svc-row:hover { padding-left: 20px; } .svc-row:hover::before { width: 4px; }
.svc-no { font-family: var(--f-cond); font-size: clamp(30px,3.6vw,48px); color: var(--text-soft); transition: color .4s; }
.svc-row:hover .svc-no { color: var(--red); }
.svc-name { font-family: var(--f-head); font-weight: 700; font-size: clamp(18px,2vw,25px); letter-spacing: -.01em; margin-bottom: 7px; }
.svc-text { font-size: 14.5px; line-height: 1.8; color: var(--text-mid); max-width: 56ch; }
.svc-tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; color: var(--text-soft); border: 1px solid var(--line-l); padding: 6px 12px; border-radius: var(--r-pill); white-space: nowrap; }

/* =====================================================
   PRICING
   ===================================================== */
.price-list { border-top: 2px solid var(--text); }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: clamp(20px,2.6vw,32px) 0; border-bottom: 1px solid var(--line-l); transition: padding-left .45s var(--ease); }
.price-row:hover { padding-left: 14px; }
.pr-name { font-family: var(--f-head); font-weight: 700; font-size: clamp(17px,1.8vw,22px); display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pr-unit { font-family: var(--f-mono); font-size: 12px; color: var(--text-soft); letter-spacing: .06em; }
.pr-desc { font-size: 13.5px; color: var(--text-mid); margin-top: 5px; }
.pr-price { font-family: var(--f-cond); font-size: clamp(32px,4vw,54px); color: var(--text); line-height: 1; white-space: nowrap; }
.pr-yen { font-size: .5em; color: var(--red); margin-right: 2px; }
.pr-price-sm { font-family: var(--f-head); font-weight: 700; font-size: clamp(18px,2vw,23px); }
.price-note { margin-top: 28px; font-size: 13px; color: var(--text-mid); line-height: 1.8; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pn-badge { font-family: var(--f-head); font-weight: 700; font-size: 13px; color: #fff; background: var(--red); padding: 8px 16px; border-radius: var(--r-pill); }

/* =====================================================
   FLOW
   ===================================================== */
.flow-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px,1.6vw,22px); }
.flow-step { padding-top: 24px; border-top: 1px solid var(--line-d); position: relative; }
.flow-step::before { content: ""; position: absolute; top: -1px; left: 0; width: 38px; height: 3px; background: var(--red); }
.fs-no { font-family: var(--f-cond); font-size: clamp(38px,4.2vw,60px); color: var(--on-dark); line-height: .9; display: block; margin-bottom: 14px; }
.fs-title { font-family: var(--f-head); font-weight: 700; font-size: clamp(16px,1.6vw,20px); margin-bottom: 10px; color: var(--on-dark); }
.fs-text { font-size: 13.5px; line-height: 1.8; color: var(--on-dark-mid); }

/* =====================================================
   TEAM
   ===================================================== */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px,2.2vw,30px); }
.team-card { background: var(--white); border: 1px solid var(--line-l); border-radius: var(--r-xl); padding: clamp(28px,3.4vw,48px); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(22,19,14,.1); }
.team-title { font-family: var(--f-head); font-weight: 700; font-size: clamp(20px,2.2vw,28px); letter-spacing: -.01em; margin-bottom: 16px; }
.team-text { font-size: 14.5px; line-height: 1.9; color: var(--text-mid); margin-bottom: 22px; }
.team-points { display: flex; flex-direction: column; gap: 13px; }
.team-points li { position: relative; padding-left: 24px; font-size: 14.5px; line-height: 1.7; color: var(--text); }
.team-points li::before { content: ""; position: absolute; left: 0; top: 11px; width: 12px; height: 2px; background: var(--red); }

/* =====================================================
   ACCESS / MAP
   ===================================================== */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,68px); align-items: center; }
.access-info { margin: 32px 0; border-top: 1px solid var(--line-l); }
.ai-row { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line-l); }
.ai-row dt { font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; color: var(--red); padding-top: 3px; }
.ai-row dd { font-size: 14.5px; line-height: 1.8; color: var(--text); }
.ai-sub { color: var(--text-soft); font-size: 13px; }
.ai-tel { font-family: var(--f-cond); font-size: 26px; letter-spacing: .03em; }
.access-actions { margin-top: 28px; }
.access-map { aspect-ratio: 1/1; border-radius: var(--r-xxl); overflow: hidden; border: 1px solid var(--line-l); }
.map-embed { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.25) contrast(1.03); }

/* =====================================================
   FINAL CTA
   ===================================================== */
.final { text-align: center; overflow: hidden; }
.final-inner { position: relative; z-index: 2; }
.final-title { font-family: var(--f-disp); font-weight: 900; font-size: clamp(42px,7.5vw,110px); line-height: .98; letter-spacing: -.03em; color: var(--on-dark); margin: 12px 0 24px; }
.final-title em { color: var(--red); }
.final-lead { color: var(--on-dark-mid); font-size: clamp(15px,1.5vw,18px); line-height: 1.9; margin-bottom: 40px; }
.final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   COMPANY
   ===================================================== */
.company-table { border-top: 2px solid var(--text); max-width: 56rem; }
.ct-row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 15px 0; border-bottom: 1px solid var(--line-l); }
.ct-row dt { font-family: var(--f-head); font-weight: 700; font-size: 14px; color: var(--text); }
.ct-row dd { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { padding-block: clamp(54px,6vw,84px) 0; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: clamp(28px,4vw,56px); padding-bottom: clamp(44px,5vw,68px); border-bottom: 1px solid var(--line-d); }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .logo-mark { width: 13px; height: 32px; }
.footer-name { font-family: var(--f-disp); font-weight: 900; font-size: 32px; letter-spacing: .12em; color: var(--on-dark); }
.footer-name .f-kabu { display: block; font-family: var(--f-mono); font-weight: 400; font-size: 11px; letter-spacing: .22em; color: var(--on-dark-mid); margin-bottom: 6px; }
.footer-tag { font-size: 13.5px; color: var(--on-dark-mid); line-height: 1.8; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 14px; color: var(--on-dark-mid); transition: color .3s, padding-left .3s; }
.footer-nav a:hover { color: #ff5a72; padding-left: 6px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-tel { font-family: var(--f-cond); font-size: 30px; color: var(--on-dark); letter-spacing: .03em; }
.footer-mail { font-size: 14px; color: var(--on-dark-mid); }
.footer-addr { font-size: 13px; color: var(--on-dark-soft); line-height: 1.7; margin-top: 6px; }
.footer-base { max-width: var(--container); margin: 0 auto; padding: 26px var(--pad); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-base span { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; color: var(--on-dark-soft); }

/* ---------- mobile fixed CTA ---------- */
.mobile-cta { position: fixed; left: 0; bottom: 0; width: 100%; z-index: 900; display: none; grid-template-columns: 1fr 1.4fr; gap: 1px; background: var(--line-d); transform: translateY(110%); transition: transform .5s var(--ease); }
.mobile-cta.show { transform: translateY(0); }
.mc-tel, .mc-form { padding: 16px; font-family: var(--f-head); font-weight: 700; font-size: 14px; text-align: center; }
.mc-tel { background: var(--ink); color: var(--on-dark); }
.mc-form { background: var(--red); color: #fff; }

/* ---------- modal / enquiry ---------- */
.modal { position: fixed; inset: 0; z-index: 2000; display: none; }
.modal.open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(10,8,6,.7); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity .4s var(--ease); }
.modal.open .modal-overlay { opacity: 1; }
.modal-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(560px, 100%); background: var(--paper); padding: clamp(28px,4vw,56px); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; transform: translateX(100%); transition: transform .55s var(--ease); box-shadow: -30px 0 80px rgba(0,0,0,.3); }
.modal.open .modal-panel { transform: translateX(0); }
.modal-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border: 1px solid var(--line-l); border-radius: 50%; font-size: 22px; line-height: 1; color: var(--text); transition: background .3s, color .3s, transform .4s; }
.modal-close:hover { background: var(--red); color: #fff; border-color: var(--red); transform: rotate(90deg); }
.modal-title { font-family: var(--f-head); font-weight: 700; font-size: clamp(26px,3.4vw,36px); margin-bottom: 14px; }
.modal-lead { font-size: 14px; line-height: 1.9; color: var(--text-mid); margin-bottom: 28px; }
.enq-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label, .field-legend { font-family: var(--f-head); font-weight: 700; font-size: 13px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.field > label > span { font-family: var(--f-mono); font-size: 9px; letter-spacing: .1em; color: #fff; background: var(--red); padding: 2px 7px; border-radius: var(--r-s); font-weight: 500; }
.field input, .field textarea { font-family: var(--f-body); font-size: 15px; color: var(--text); background: var(--white); border: 1px solid var(--line-l); border-radius: var(--r-m); padding: 13px 15px; transition: border-color .3s, box-shadow .3s; width: 100%; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(228,0,43,.12); }
.field textarea { resize: vertical; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span { display: inline-block; font-family: var(--f-body); font-weight: 500; font-size: 13px; color: var(--text-mid); border: 1px solid var(--line-l); background: var(--white); padding: 9px 16px; border-radius: var(--r-pill); transition: all .25s var(--ease); }
.chip input:checked + span { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.chip span:hover { border-color: var(--red); }
.enq-note { font-size: 11.5px; color: var(--text-soft); line-height: 1.6; }
.enq-done { text-align: center; padding: 56px 20px; }
.enq-check { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--red); color: #fff; font-size: 30px; margin-bottom: 20px; }
.enq-done h3 { font-family: var(--f-head); font-weight: 700; font-size: 24px; margin-bottom: 12px; }
.enq-done p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }

/* ---------- reveal (JS-gated failsafe) ---------- */
.js .reveal { opacity: 0; transform: translateY(30px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform 1s var(--ease); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1080px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 18px; }
  .pillar { flex-direction: row; gap: 22px; align-items: center; }
  .pillar-media { aspect-ratio: 4/3; width: 42%; flex: none; margin-bottom: 0; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .goal-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-list { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .director-grid { grid-template-columns: 1fr; }
  .director-media { position: relative; top: 0; max-width: 420px; }
  .approach-grid { grid-template-columns: 1fr; }
  .media-frame { aspect-ratio: 16/10; max-height: 420px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --header-h: 70px; }
  .nav, .header-tel { display: none; }
  .burger { display: flex; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .creds { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .access-map { aspect-ratio: 16/10; max-height: 320px; }
  .field-row { grid-template-columns: 1fr; }
  .mobile-cta { display: grid; }
  .footer-base { padding-bottom: 80px; }
}
@media (max-width: 560px) {
  .pillar { flex-direction: column; align-items: stretch; }
  .pillar-media { width: 100%; aspect-ratio: 16/10; margin-bottom: 18px; }
  .pillar-title br { display: none; }
  .pillar-title { text-wrap: balance; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-card { min-height: 158px; }
  .goal-grid { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 52px 1fr; } .svc-tag { display: none; }
  .pr-price { font-size: clamp(30px,9vw,44px); }
  .ct-row { grid-template-columns: 1fr; gap: 4px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .results-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 420px) {
  :root { --pad: 18px; }
  .hero-title { font-size: clamp(40px, 11vw, 56px); }
  .statement-title { font-size: clamp(30px, 9vw, 48px); }
  .hero-eyebrow { font-size: 10.5px; letter-spacing: .12em; }
  .stat-num { font-size: clamp(44px, 14vw, 60px); }
  .stat-label { font-size: 9.5px; letter-spacing: .06em; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* =====================================================
   PHOTOS APPLIED (19 images)
   ===================================================== */
.hero-media { background: #100c08 url('../images/hero.jpg') 55% center / cover no-repeat; }
@media (max-width: 768px) { .hero-media { background: #100c08 url('../images/hero-mobile.jpg') center / cover no-repeat; } }

.media-frame { background: linear-gradient(0deg, rgba(8,6,4,.6) 0%, transparent 48%), #14110b url('../images/approach.jpg') center / cover no-repeat; }
.dm-frame    { background: linear-gradient(0deg, rgba(8,6,4,.62) 0%, transparent 46%), #14110b url('../images/director.jpg') center / cover no-repeat; }

.pillar:nth-of-type(1) .pillar-media { background-image: url('../images/pillar-1.jpg'); }
.pillar:nth-of-type(2) .pillar-media { background-image: url('../images/pillar-2.jpg'); }
.pillar:nth-of-type(3) .pillar-media { background-image: url('../images/pillar-3.jpg'); }
.pillar-media { background-size: cover; background-position: center; background-repeat: no-repeat; }
.pillar-media::after { background: linear-gradient(180deg, rgba(8,6,4,.42) 0%, transparent 26%, transparent 60%, rgba(8,6,4,.34) 100%); }
.pillar-media .pm-no { z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,.55); }

.goal-card:nth-of-type(1) { background-image: url('../images/goal-1.jpg'); }
.goal-card:nth-of-type(2) { background-image: url('../images/goal-2.jpg'); }
.goal-card:nth-of-type(3) { background-image: url('../images/goal-3.jpg'); }
.goal-card:nth-of-type(4) { background-image: url('../images/goal-4.jpg'); }
.goal-card { background-size: cover; background-position: center; background-repeat: no-repeat; }
.goal-no { text-shadow: 0 2px 8px rgba(0,0,0,.5); }

.result-card:nth-of-type(1) { background-image: url('../images/sport-football.jpg'); }
.result-card:nth-of-type(2) { background-image: url('../images/sport-baseball.jpg'); }
.result-card:nth-of-type(3) { background-image: url('../images/sport-track.jpg'); }
.result-card:nth-of-type(4) { background-image: url('../images/sport-swim.jpg'); }
.result-card:nth-of-type(5) { background-image: url('../images/sport-combat.jpg'); }
.result-card:nth-of-type(6) { background-image: url('../images/sport-volley.jpg'); }
.result-card:nth-of-type(7) { background-image: url('../images/sport-tennis.jpg'); }
.result-card:nth-of-type(8) { background-image: url('../images/sport-hockey.jpg'); }
.result-card { background-size: cover; background-position: center; background-repeat: no-repeat; }
