/* main.css */
:root{
  --ufc-red:#CF202E;
  --glass:rgba(0,0,0,.60);
  --light-bg:#F3F4F6;
  --light-card:#FFFFFF;
  --light-border:rgba(0,0,0,.10);

  --belt-h-desktop: 70px;
  --belt-h-mobile: 70px;
}

*{box-sizing:border-box}
html,body{margin:0;font-family:"Noto Sans JP",sans-serif;background:#000;color:#fff}
a{text-decoration:none;color:inherit}
html{ scrollbar-gutter: stable; }

body{ padding-bottom: var(--belt-h-desktop); }
@media (max-width:768px){
  body{ padding-bottom: calc(var(--belt-h-mobile) + env(safe-area-inset-bottom)); }
}

/* ============== HERO ============== */
.hero{ position:relative; min-height:100vh; overflow:hidden; }
.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: top center;
}
@media (max-width:768px){
  .hero video{
    object-fit:cover;
    object-position: center top;
    background:#000;
  }
}

.hero::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.16),rgba(0,0,0,.64));
}

/* Catch copy top-left */
.hero-copy{
  position:absolute;
  left:18px;
  bottom: calc(var(--belt-h-desktop) + 18px);
  z-index:15;
  max-width:min(720px, calc(100% - 36px));
  pointer-events:none;
}

.hero-copy-title{
  margin-top:10px;
  font-weight:900;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height:1.06;
  letter-spacing:-0.02em;
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
}
.hero-copy-title .jp{
  display:inline-block;
  transform: skewX(-10deg);
  font-style: italic;
  white-space:normal;
}

.hero-copy-title .jp{ overflow-wrap: normal; word-break: keep-all; }

.hero-copy-sub{
  margin-top:10px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size: clamp(14px, 1.35vw, 22px);
  opacity:.92;
  transform: skewX(-10deg);
  font-style: italic;
}
.hero-copy-sub::after{
  content:"";
  display:block;
  width:160px;
  height:4px;
  background:var(--ufc-red);
  margin-top:12px;
  box-shadow: 0 0 0 7px rgba(207,32,46,.14);
}

/* hero dates (pre-open / grand-open) */
.hero-dates{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  pointer-events:none;
}
.hero-date-row{
  display:flex;
  align-items:center;
  gap:10px;
}
.hero-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  background: rgba(207,32,46,.92);
  color:#fff;
  font-weight:900;
  letter-spacing:.04em;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  white-space:nowrap;
  font-size:12px;
}
.hero-date{
  font-size:18px;
  font-weight:900;
  letter-spacing:.02em;
  opacity:.90;
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
  white-space:nowrap;
}

@media (max-width:768px){
  .hero-copy{
    left:14px;
    bottom: calc(var(--belt-h-mobile) + 76px);
    max-width: calc(100% - 28px);
  }
  .hero-copy-title{
    font-size: clamp(26px, 6.2vw, 44px);
  }
  .hero-copy-sub{
    font-size: clamp(13px, 3.3vw, 20px);
    margin-top:8px;
  }
  .hero-dates{ margin-top:12px; gap:8px; }
  .hero-pill{ padding:7px 10px; font-size:12px; opacity:.92; }
  .hero-date{ font-size:16px; opacity:.86; white-space:normal; }
}

/* ============== TOPBAR ============== */
.topbar{
  position:fixed; top:16px; left:16px; right:16px;
  z-index:20; display:flex; justify-content:space-between; align-items:center;
}
.topbar img{ width:140px; height:auto; display:block; }
@media (max-width:768px){ .topbar img{ width:120px; } }

.lang-btn{
  border:1px solid rgba(255,255,255,.35);
  background:rgba(0,0,0,.35);
  color:#fff; padding:8px 14px; border-radius:999px;
  font-weight:800; cursor:pointer; letter-spacing:.08em;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.lang-btn:hover{
  transform: translateY(-1px);
  background:rgba(0,0,0,.48);
  border-color: rgba(255,255,255,.48);
}

/* ============== FLOATING SNS ============== */
.sns-float{
  position:fixed; right:16px; top:50%; transform:translateY(-50%);
  z-index:30; display:flex; flex-direction:column; gap:12px;
}
.sns-btn{
  width:52px; height:52px; border-radius:50%;
  display:grid; place-items:center;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 34px rgba(0,0,0,.35), 0 0 0 6px rgba(255,255,255,.18);
  transition: transform .12s ease, box-shadow .12s ease;
}
.sns-btn svg{ width:22px; height:22px; fill:#000; }
.sns-btn.mail{
  background:var(--ufc-red);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 16px 34px rgba(0,0,0,.35), 0 0 0 6px rgba(207,32,46,.20);
}
.sns-btn.mail svg{ fill:#fff; }
.sns-btn:hover{ transform:translateY(-2px); }
.sns-btn:focus-visible{ outline:3px solid rgba(207,32,46,.55); outline-offset:3px; }

@media (max-width:768px){
  .sns-btn{ width:44px; height:44px; }
  .sns-btn svg{ width:19px; height:19px; }
}

/* ============== BELT ============== */
.belt-red{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:40;
  height:var(--belt-h-desktop);
  background: var(--ufc-red);
  border-top:1px solid rgba(255,255,255,.18);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: inset 0 3px 0 rgba(0,0,0,.18);
}

.belt-red-inner{
  height:var(--belt-h-desktop);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:0 18px;
}

.belt-marquee{
  position:relative;
  overflow:hidden;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  display:flex;
  align-items:center;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.belt-marquee-row{
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
  color:#fff;
  font-weight:900;
  letter-spacing:.08em;
  font-size:20px;
  line-height:1;
  will-change: transform;
  animation: beltMove 18s linear infinite;
}

.belt-item{ opacity:.98; }
.belt-spacer{ width: 40px; }

@keyframes beltMove{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

.belt-divider{
  width:1px;
  height:44px;
  background: rgba(255,255,255,.45);
  flex:0 0 auto;
}

.belt-cta-rect{
  flex:0 0 auto;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border:0;
  color:#fff;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.02em;
  border-radius:0;
  background:#000;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  white-space:nowrap;
}
.belt-cta-rect:hover{ filter:brightness(1.04); }
.belt-cta-text{ font-size:16px; }

@media (max-width:768px){
  .belt-red{
    height:var(--belt-h-mobile);
  }
  .belt-red-inner{
    height:var(--belt-h-mobile);
    padding:0 12px;
    gap:12px;
  }
  .belt-marquee-row{ font-size:16px; }
  .belt-divider{ height:40px; }
  .belt-cta-rect{ height:42px; padding:0 14px; }
  .belt-cta-text{ font-size:14px; }
}

/* ============== PHOTO MARQUEE ============== */
.marquee{
  background:#060607; padding:20px 0; overflow:hidden;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.marquee-track{ display:flex; gap:14px; width:max-content; animation:marqueeMove 36s linear infinite; }
.marquee img{ width:320px; height:180px; object-fit:cover; filter:contrast(1.02) saturate(1.06); display:block; }
@keyframes marqueeMove{ from{transform:translateX(0)} to{transform:translateX(-50%)} }
@media(max-width:768px){ .marquee img{ width:240px; height:140px; } }

/* ============== AMBIENCE (LIGHT) ============== */
.ambience{
  position:relative;
  padding:74px 16px;
  border-bottom:1px solid rgba(0,0,0,.06);
  background:#f3f4f6;
  color:#0b0b0c;
  isolation:isolate;
}
.ambience::before{
  content:"";
  position:absolute; inset:0; z-index:-2;
  background-image: url("assets/img/texture1.jpg");
  background-size: cover;
  background-position: center;
  opacity:.20;
  filter: contrast(1.05) saturate(.85);
}
.ambience::after{
  content:"";
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(58% 58% at 22% 38%, rgba(207,32,46,.14), rgba(255,255,255,0) 62%),
    radial-gradient(58% 58% at 78% 22%, rgba(0,0,0,.06), rgba(255,255,255,0) 62%),
    linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,255,255,.86));
}

.ambience-inner{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 440px 1fr;
  gap:46px;
  align-items:center;
}

.ambience h3{
  margin:10px 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  line-height:1.05;
  font-weight:900;
  letter-spacing:-0.02em;
  text-transform:uppercase;
  color:#0b0b0c;
}
.ambience h3 .jp{ text-transform:none; letter-spacing:0; }

.ambience-line{
  width:160px; height:3px;
  background:var(--ufc-red);
  margin:12px 0 18px;
  transform-origin:left;
  transform:scaleX(0);
  opacity:0;
}
.ambience.is-visible .ambience-line{
  animation: lineGrow .75s cubic-bezier(.2,.9,.2,1) .15s forwards;
}
@keyframes lineGrow{ to{ transform:scaleX(1); opacity:1; } }

.ambience p{
  margin:0;
  color:rgba(0,0,0,.72);
  line-height:1.9;
  font-size:15px;
  max-width:74ch;
}

/* Octagon stack */
.octos{ position:relative; width:420px; height:460px; }
.octo{
  position:absolute;
  width:330px; height:330px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  clip-path: polygon(30% 0%,70% 0%,100% 30%,100% 70%,70% 100%,30% 100%,0% 70%,0% 30%);
  opacity:0;
  transform: translateY(18px) scale(.96);
  will-change: transform, opacity;
}
.octo.one{ left:0; top:0; }
.octo.two{
  left:82px; top:130px;
  border-color: rgba(207,32,46,.45);
  box-shadow: 0 22px 70px rgba(0,0,0,.26);
}
.ambience.is-visible .octo.one{ animation: octIn .65s ease .02s forwards; }
.ambience.is-visible .octo.two{ animation: octIn .65s ease .14s forwards; }
@keyframes octIn{ to{ opacity:1; transform: translateY(0) scale(1); } }

.octoSlide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.06);
  filter: contrast(1.08) saturate(1.06);
}
.octoSlide.top{ opacity:0; transition: opacity .9s ease; }
.octoSlide.top.show{ opacity:1; }
.octo::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,0) 40%);
  opacity:.18; pointer-events:none;
}

@media(max-width:768px){
  .ambience-inner{ grid-template-columns:1fr; gap:26px; }
  .octos{ width:100%; height:410px; }
  .octo{ width:260px; height:260px; left:0; right:0; margin:auto; }
  .octo.two{ top:120px; }
  .ambience h3{ text-transform:none; }
}

/* ============== CAMPAIGN ============== */
.campaign{ width:100%; background:#000; border-bottom:0; }
.campaign picture, .campaign img{ display:block; width:100%; height:auto; }

/* Red separator between Campaign and Facilities */
.red-sep{
  height:4px;
  background: var(--ufc-red);
  box-shadow: 0 10px 28px rgba(207,32,46,.18);
}

/* =========================================================
   FACILITIES
========================================================= */
.facilities{
  position:relative;
  width:100%;
  min-height: 560px;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:#000;
  isolation:isolate;
}
.facilities-bg{
  position:absolute; inset:0; z-index:-2;
}
.fac-bg-layer{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.04);
  filter: contrast(1.03) saturate(1.03);
}
.fac-bg-layer.top{ opacity:0; transition: opacity .9s ease; }
.fac-bg-layer.top.show{ opacity:1; }

.facilities::after{
  content:"";
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.24) 56%, rgba(0,0,0,.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.62));
}

.facilities-inner{
  max-width:1100px;
  margin:0 auto;
  padding:70px 16px;
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  min-height: 560px;
}

.facilities-card{
  width:min(560px, 100%);
  background:rgba(255,255,255,.965);
  color:#0b0b0c;
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 30px 95px rgba(0,0,0,.46);
  padding:26px 22px;
  transform: translateY(8px);
}

.facilities-kicker{
  font-weight:900;
  letter-spacing:.14em;
  font-size:12px;
  text-transform:uppercase;
  color:rgba(0,0,0,.58);
}

.facilities-title{
  margin:10px 0 10px;
  font-size: clamp(19px, 2.05vw, 28px);
  line-height:1.22;
  font-weight:900;
  letter-spacing:-0.01em;
}

.facilities-body{
  margin:0;
  color:rgba(0,0,0,.76);
  font-size:13.5px;
  line-height:1.85;
  font-weight:600;
}

.facilities-body::before{
  content:"";
  display:block;
  width:160px;
  height:3px;
  background: var(--ufc-red);
  margin:12px 0 14px;
  box-shadow:none;
}

.facilities-tags{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.tag{
  display:inline-flex;
  align-items:center;
  padding:5px 8px;
  border:1px solid rgba(0,0,0,.08);
  background: var(--ufc-red);
  color:#fff;
  font-weight:900;
  letter-spacing:.06em;
  font-size:10px;
  text-transform:none;
  box-shadow: 0 10px 28px rgba(207,32,46,.16);
  line-height:1.1;
}

@media (max-width:768px){
  .facilities{
    min-height: 600px;
  }
  .facilities-inner{
    padding:56px 14px 64px;
    justify-content:center;
    align-items:flex-end;
    min-height: 600px;
  }
  .facilities::after{
    background:
      linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.72));
  }
  .facilities-card{
    padding:20px 16px;
    box-shadow: 0 20px 68px rgba(0,0,0,.52);
    transform: translateY(10px);
  }
  .facilities-body{ font-size:13px; line-height:1.82; }
  .tag{ font-size:9.5px; padding:5px 7px; }
}

/* =========================================================
   CLASSES
========================================================= */
.classes{
  position:relative;
  padding:82px 16px;
  color:#0b0b0c;
  border-bottom:1px solid rgba(0,0,0,.06);
  overflow:hidden;
  isolation:isolate;
  background:
    radial-gradient(60% 60% at 18% 18%, rgba(207,32,46,.14), rgba(255,255,255,0) 56%),
    radial-gradient(60% 60% at 82% 24%, rgba(0,0,0,.06), rgba(255,255,255,0) 62%),
    linear-gradient(180deg, #F7F8FA, #EEF0F4);
}

.classes-inner{
  max-width:1100px;
  margin:0 auto;
}

.section-head--dark .section-title--dark{ color:#0b0b0c; }
.section-head--dark .section-sub--dark{ color:rgba(0,0,0,.62); }

.class-list{
  margin-top:26px;
  display:flex;
  flex-direction:column;
  gap:30px;
}

.class-row{
  position:relative;
  display:flex;
  align-items:center;
  gap:34px;
  padding:6px 0;
  background:transparent;
  border:0;
  box-shadow:none;
  overflow:visible;
}
.class-row.reverse{ flex-direction:row-reverse; }

.class-outline{
  position:absolute;
  inset:-10px -4vw;
  pointer-events:none;
  opacity:.26;
  mix-blend-mode:normal;
}
.class-outline::before{
  content: attr(data-outline) "  " attr(data-outline) "  " attr(data-outline) "  " attr(data-outline) "  " attr(data-outline) "  " attr(data-outline) "  ";
  position:absolute;
  left:-30%;
  top:50%;
  transform: translateY(-50%);
  white-space:nowrap;
  font-size: clamp(72px, 8.2vw, 132px);
  font-weight:900;
  letter-spacing:.16em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,.36);
  text-stroke: 1px rgba(0,0,0,.36);
  animation: outlineMarquee 18s linear infinite;
}
.class-row.reverse .class-outline::before{ animation-direction: reverse; }
@keyframes outlineMarquee{
  from{ transform: translate(0%, -50%); }
  to{ transform: translate(-55%, -50%); }
}

.class-octos{
  position:relative;
  width:500px;
  height:430px;
  flex:0 0 500px;
}

.class-octo{
  position:absolute;
  overflow:hidden;
  clip-path: polygon(30% 0%,70% 0%,100% 30%,100% 70%,70% 100%,30% 100%,0% 70%,0% 30%);
  border:1px solid rgba(0,0,0,.12);
  box-shadow: 0 18px 70px rgba(0,0,0,.22);
}
.class-octo::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(0,0,0,0) 40%);
  opacity:.16;
  pointer-events:none;
}
.class-octoSlide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.06);
  filter: contrast(1.04) saturate(1.02);
}
.class-octoSlide.top{ opacity:0; transition: opacity .9s ease; }
.class-octoSlide.top.show{ opacity:1; }

.class-octo.one{
  width:350px;
  height:350px;
  left:0;
  top:0;
  opacity:.98;
  transform: translateY(8px);
  z-index:2;
}
.class-octo.two{
  width:310px;
  height:310px;
  left:135px;
  top:120px;
  border-color: rgba(207,32,46,.32);
  box-shadow: 0 20px 86px rgba(0,0,0,.26);
  opacity:1;
  z-index:3;
}

.studio-row .class-octos .class-octo.one{
  width:330px;
  height:330px;
  left:30px;
  top:32px;
  z-index:3;
  transform: translateY(0);
}
.studio-row .class-octos .class-octo.two{
  width:360px;
  height:360px;
  left:120px;
  top:118px;
  z-index:2;
  border-color: rgba(207,32,46,.28);
}

.class-text{
  flex:1;
  min-width: 260px;
  position:relative;
  z-index:1;
}
.class-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  letter-spacing:.12em;
  font-size:12px;
  text-transform:uppercase;
  color:rgba(0,0,0,.62);
}
.class-label::before{ content:none; }

.class-title{
  margin:10px 0 8px;
  font-size: clamp(19px, 2.35vw, 28px);
  line-height:1.18;
  font-weight:900;
  color:#0b0b0c;
}
.class-body{
  margin:0;
  color:rgba(0,0,0,.72);
  line-height:1.9;
  font-size:14.5px;
  font-weight:600;
  max-width: 74ch;
}

@media (max-width:768px){
  .classes{ padding:66px 14px; }
  .class-row, .class-row.reverse{
    flex-direction:column;
    padding:4px 0;
    gap:16px;
  }
  .class-outline{ opacity:.22; inset:-8px -6vw; }
  .class-outline::before{
    left:-55%;
    font-size: clamp(62px, 12.6vw, 112px);
    -webkit-text-stroke: 1px rgba(0,0,0,.30);
    text-stroke: 1px rgba(0,0,0,.30);
    animation-duration: 16s;
  }

  .class-octos{
    width:100%;
    max-width: 500px;
    height:420px;
    flex:0 0 auto;
  }

  .class-octo.one{
    width:310px; height:310px;
    left:0;
    right:auto;
    margin:0;
    top:0;
  }
  .class-octo.two{
    width:280px; height:280px;
    left:18%;
    right:auto;
    margin:0;
    top:132px;
  }

  .class-row.reverse .class-octos .class-octo.one{
    width:290px; height:290px;
    left:auto;
    right:0;
    top:8px;
  }
  .class-row.reverse .class-octos .class-octo.two{
    width:320px; height:320px;
    left:auto;
    right:12%;
    top:132px;
  }

  .studio-row .class-octos .class-octo.one{
    width:310px; height:310px;
    left:0; top:0;
  }
  .studio-row .class-octos .class-octo.two{
    width:300px; height:300px;
    left:16%; top:132px;
  }

  .class-text{ width:100%; margin-top:10px; }
  .class-body{ font-size:14px; line-height:1.85; }

  .class-row.reverse .class-body br{ display:none; }
}

/* ============== BOOKING ============== */
.booking{ background:var(--light-bg); color:#000; padding:48px 16px; }
.booking-inner{ max-width:980px; margin:auto; }
.booking h2{
  font-size:20px; margin-bottom:10px;
  border-left:4px solid var(--ufc-red);
  padding-left:12px;
}
.booking-sub{
  margin:0 0 18px;
  color:rgba(0,0,0,.72);
  line-height:1.6;
  font-size:14px;
  font-weight:600;
}
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:24px; }
.step{ background:var(--light-card); border:1px solid var(--light-border); padding:16px; }
.step strong{ display:inline-block; margin-bottom:8px; color:var(--ufc-red); font-weight:800; letter-spacing:.06em; }
.widget-wrap{ background:#fff; border:1px solid var(--light-border); padding:12px; }
iframe{ width:100%; min-height:900px; border:0; }
@media(max-width:768px){ .steps{ grid-template-columns:1fr; } }

/* =========================================================
   COACHES (carousel)
========================================================= */
.coaches{
  background: var(--light-bg);
  color:#0b0b0c;
  padding:72px 16px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.coaches-inner{
  max-width:1100px;
  margin:0 auto;
}

.coach-carousel{
  position:relative;
  margin-top:18px;
}

.coach-viewport{
  overflow:hidden;
  width:100%;
  touch-action: pan-y;
}

.coach-track{
  display:flex;
  gap:16px;
  will-change: transform;
  transition: transform .28s ease;
}

.coach-card{
  flex: 0 0 calc((100% - 32px) / 3);
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.coach-card.is-hidden{ display:none; }

.coach-photo{
  aspect-ratio: 4 / 5;
  background-size:cover;
  background-position:center;
  background-color:#e9eaee;
}

.coach-info{
  padding:16px 14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  min-height:110px;
}

.coach-name{
  font-weight:900;
  letter-spacing:.08em;
  font-size:16px;
}

.coach-role{
  font-weight:800;
  color:rgba(0,0,0,.68);
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
  min-height:16px;
}

.coach-links{
  margin-top:4px;
  display:flex;
  gap:10px;
}
.coach-links a{
  width:40px; height:40px;
  border-radius:999px;
  display:grid; place-items:center;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  transition: transform .12s ease, opacity .12s ease;
}
.coach-links a svg{ width:18px; height:18px; fill:#111; }
.coach-links a:hover{ transform: translateY(-1px); }
.coach-links a.muted{ opacity:.40; pointer-events:none; }

.coach-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.95);
  color:#111;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: 0 18px 60px rgba(0,0,0,.14);
  transition: transform .12s ease, opacity .12s ease;
  z-index:3;
}
.coach-arrow.left{ left:-10px; }
.coach-arrow.right{ right:-10px; }
.coach-arrow:hover{ transform: translateY(-50%) scale(1.02); }
.coach-arrow:focus-visible{ outline:3px solid rgba(207,32,46,.45); outline-offset:3px; }
.coach-arrow span{
  font-size:28px;
  font-weight:900;
  line-height:1;
}

@media (max-width:768px){
  .coaches{ padding:62px 14px; }
  .coach-card{ flex: 0 0 calc((100% - 16px) / 2); }
  .coach-photo{
    aspect-ratio: 4 / 5;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    background-color:#eef0f4;
  }
  .coach-arrow.left{ left:-6px; }
  .coach-arrow.right{ right:-6px; }
}

/* =========================================================
   MEMBERSHIP (UPDATED DESIGN)
========================================================= */
.membership{
  background: var(--light-bg);
  color:#0b0b0c;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.membership-hero{
  position:relative;
  width:100%;
  height:220px;
  background-image:url("assets/img/membership-hero.jpg");
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.membership-hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.22) 55%, rgba(0,0,0,.60));
}

.membership-hero-title{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size: clamp(28px, 4.2vw, 54px);
  color:#fff;
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
  z-index:1;
  padding:0 16px;
  text-align:center;
}

@media (max-width:768px){
  .membership-hero{ height:160px; }
  .membership-hero-title{
    font-size: clamp(24px, 7vw, 38px);
    letter-spacing:.08em;
  }
}

.membership-inner{
  max-width:1100px;
  margin:0 auto;
  padding:52px 16px 72px;
}

.member-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width:960px){
  .member-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:640px){
  .member-grid{ grid-template-columns: 1fr; }
}

.plan-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  overflow:hidden;
}

.plan-top{
  position:relative;
  height:150px;
  background:
    linear-gradient(120deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.74) 45%, rgba(0,0,0,.98) 100%);
  isolation:isolate;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:58px 16px 26px;
}

.plan-badge{
  position:absolute;
  left:12px;
  top:12px;
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border-radius:50%;
  z-index:4;
  pointer-events:none;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,.22), rgba(255,255,255,0) 55%),
    linear-gradient(135deg, #F6D77A, #D9A441 55%, #B9832E);
  box-shadow:
    0 14px 30px rgba(0,0,0,.35),
    0 0 0 4px rgba(217,164,65,.18);
  border:1px solid rgba(0,0,0,.18);
}
.plan-badge span{
  font-weight:900;
  font-size:12px;
  line-height:1.1;
  letter-spacing:.06em;
  color:rgba(0,0,0,.86);
  text-align:center;
  transform: rotate(-6deg);
  text-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.plan-badge::before{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:50%;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(255,255,255,.0) 0deg 10deg,
      rgba(255,255,255,.28) 10deg 14deg
    );
  -webkit-mask: radial-gradient(circle, transparent 62%, #000 64%);
  mask: radial-gradient(circle, transparent 62%, #000 64%);
  opacity:.55;
  animation: badgeSpin 3.8s linear infinite;
}
@keyframes badgeSpin{ to{ transform: rotate(360deg); } }

@media (max-width:420px){
  .plan-badge{ width:58px; height:58px; left:10px; top:10px; }
  .plan-badge span{ font-size:11px; }
}

.plan-name{
  position:absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  background: var(--ufc-red);
  color:#fff;
  font-weight:900;
  letter-spacing:.06em;
  padding:12px 18px;
  text-align:center;
  width: fit-content;
  max-width: calc(100% - 24px);
  z-index:3;
  white-space:nowrap;
}

.plan-price{
  position:relative;
  left:auto;
  top:auto;
  transform:none;
  color:#fff;
  font-weight:900;
  font-size:52px;
  letter-spacing:-0.01em;
  z-index:3;
  white-space:nowrap;
  line-height:1;
  background:none;
  border:0;
  padding:0;
  border-radius:0;
  box-shadow:none;
  text-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.plan-price .yen{
  font-size:.80em;
  vertical-align: .08em;
}

.plan-body{
  position:relative;
  padding:18px 16px 18px;
  background:#fff;
}

.plan-points{
  margin:0;
  padding:0 0 0 20px;
  list-style:disc;
  color:rgba(0,0,0,.78);
  line-height:1.75;
  font-weight:700;
  font-size:13px;
}
.plan-points li{ margin-top:10px; }

@media (max-width:768px){
  .plan-top{
    height:142px;
    padding:54px 14px 24px;
  }
  .plan-price{ font-size:46px; }
  .plan-name{
    padding:11px 16px;
    font-size:12px;
    letter-spacing:.02em;
    max-width: calc(100% - 8px);
  }
}
@media (max-width:420px){
  .plan-name{
    padding:10px 12px;
    font-size:11.5px;
    max-width: calc(100% - 4px);
  }
}

/* ============== INFO BG (clean + consistent widths) ============== */
.info-bg{
  position:relative;
  padding:72px 16px 92px;
  background:#f3f4f6;
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
  isolation:isolate;
  color:#111;
}
.info-bg::before{
  content:"";
  position:absolute; inset:0; z-index:-2;
  background-image:url("assets/img/yuzuki1920x1080.jpg");
  background-size:cover;
  background-position:center;
  opacity:.92;
  filter: contrast(1.02) saturate(1.02);
  transform: translateZ(0);
  will-change: transform;
}
.info-bg::after{
  content:"";
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(60% 60% at 25% 30%, rgba(207,32,46,.14), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.80));
}
.info-inner{
  max-width:980px;
  margin:0 auto;
  display:grid;
  gap:46px;
}
@media (min-width:769px){
  .info-inner{ gap:62px; }
}

.section-head{ margin-bottom:14px; }
.section-title{
  font-size:28px;
  font-weight:900;
  letter-spacing:.04em;
  line-height:1.1;
  color:#0b0b0c;
}
.section-sub{
  margin-top:6px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(0,0,0,.58);
}

.faq-panel,
.access-wrap,
.company-table{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(0,0,0,.10);
  border-left:5px solid var(--ufc-red);
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
  overflow:hidden;
  border-radius:0;
}

.faq-item{ border-top:1px solid rgba(0,0,0,.08); }
.faq-item:first-child{ border-top:0; }

.faq-q{
  list-style:none;
  cursor:pointer;
  padding:16px 16px;
  font-weight:800;
  letter-spacing:.01em;
  line-height:1.35;
  display:flex;
  align-items:center;
  color:#0f0f10;
  -webkit-tap-highlight-color: transparent;
}
.faq-q::-webkit-details-marker{ display:none; }
.faq-q::after{
  content:"";
  margin-left:auto;
  width:10px; height:10px;
  border-right:2px solid rgba(0,0,0,.60);
  border-bottom:2px solid rgba(0,0,0,.60);
  transform: rotate(45deg);
  transition: transform .18s ease, opacity .18s ease;
  opacity:.85;
}
.faq-item[open] .faq-q::after{ transform: rotate(-135deg); }
.faq-item[open] .faq-q{ background:rgba(207,32,46,.06); }

.faq-a{
  padding:0 16px 0 16px;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transform: translateY(-6px);
  transition: max-height .28s ease, opacity .22s ease, transform .22s ease, padding-bottom .22s ease;
  color:rgba(0,0,0,.78);
  line-height:1.9;
  font-size:14px;
}
.faq-item[open] .faq-a{
  max-height: 520px;
  opacity:1;
  transform: translateY(0);
  padding-bottom:16px;
}
@media (max-width:768px){
  .faq-q{ padding:14px 14px; font-size:13.5px; }
  .faq-a{ font-size:13px; line-height:1.8; }
}

/* ACCESS */
.access-wrap{
  display:grid;
  grid-template-columns: 1fr 1.35fr;
  gap:0;
}
@media (min-width:769px){
  .access-card{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:26px 26px;
  }
}
.access-card{
  padding:18px 16px;
  border-right:1px solid rgba(0,0,0,.08);
}

.access-row{
  display:grid;
  grid-template-columns: 66px 1fr;
  gap:10px;
  align-items:start;
  font-size:14px;
}
.access-row + .access-row{ margin-top:10px; }
.access-row .k{ font-weight:700; color:rgba(207,32,46,.92); }
.access-row .v{ color:rgba(0,0,0,.86); line-height:1.7; }

.access-hours{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,.10);
}
.access-hours-title{
  font-weight:800;
  margin:0 0 10px;
  letter-spacing:.02em;
  font-size:14px;
}
.access-hours-row{
  display:flex; gap:10px;
  margin:6px 0;
  color:rgba(0,0,0,.86);
  font-size:14px;
}
.access-hours-row .d{ font-weight:800; min-width:52px; }

.map-card iframe{
  width:100%;
  height:100%;
  min-height:420px;
  border:0;
  display:block;
}

/* COMPANY */
.company-table .tr{
  display:grid;
  grid-template-columns: 150px 1fr;
  border-top:1px solid rgba(0,0,0,.10);
}
.company-table .tr:first-child{ border-top:0; }
.company-table .th{
  padding:16px 14px;
  font-weight:700;
  color:rgba(207,32,46,.92);
  background:rgba(255,255,255,.60);
  letter-spacing:.02em;
  font-size:14px;
}
.company-table .td{
  padding:16px 14px;
  color:rgba(0,0,0,.88);
  line-height:1.85;
  font-size:14px;
  font-weight:600;
}

/* ============== FOOTER (with logo + links) ============== */
.site-footer{
  background:#040405;
  border-top:1px solid rgba(255,255,255,.08);
  padding:26px 16px;
  color:rgba(255,255,255,.78);
}
.footer-inner{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  gap:14px;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.footer-logo{
  width:92px;
  height:auto;
  display:block;
}
.footer-meta{ display:flex; flex-direction:column; gap:2px; }
.footer-name{ font-weight:900; letter-spacing:.08em; }
.footer-small{ font-size:12px; opacity:.70; letter-spacing:.06em; }

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  font-weight:800;
  letter-spacing:.04em;
}
.footer-links a{
  opacity:.88;
  transition: opacity .12s ease;
}
.footer-links a:hover{ opacity:1; }

.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:12px;
  opacity:.72;
}
.footer-dot{ opacity:.55; }

.footer-spacer{ height: var(--belt-h-desktop); }
@media (max-width:768px){
  .footer-spacer{ height: calc(var(--belt-h-mobile) + env(safe-area-inset-bottom)); }
  .access-wrap{ grid-template-columns:1fr; }
  .access-card{ border-right:0; border-bottom:1px solid rgba(0,0,0,.08); }
  .map-card iframe{ min-height:360px; }
  .company-table .tr{ grid-template-columns: 120px 1fr; }
}