/* ===========================
   Variables
=========================== */
:root {
  --primary:       #FF6B35;
  --primary-dark:  #E5521E;
  --primary-light: #FFF0EB;
  --secondary:     #FFD93D;
  --teal:          #4ECDC4;
  --green:         #6BCB77;
  --purple:        #A78BFA;
  --dark:          #2D3436;
  --text:          #555;
  --light:         #FFF8F4;
  --white:         #FFFFFF;
  --border:        #EEE;
  --radius:        16px;
  --radius-lg:     28px;
  --radius-xl:     40px;
  --shadow:        0 8px 32px rgba(255,107,53,.14);
  --shadow-card:   0 4px 24px rgba(0,0,0,.07);
  --font:          'M PLUS Rounded 1c', sans-serif;
  --ease:          0.3s ease;
}

/* ===========================
   Reset & Base
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; background: none; font-family: var(--font); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   Loading Animation
=========================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity .5s ease .2s;
  pointer-events: all;
}
.loader.done {
  opacity: 0;
  pointer-events: none;
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* 日本国旗 */
.loader__flag {
  width: 80px;
  height: 53px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  animation: loaderFlagIn .55s cubic-bezier(.34,1.56,.64,1) both;
  margin-bottom: 8px;
}
.loader__flag-circle {
  width: 33px;
  height: 33px;
  background: #bc002d;
  border-radius: 50%;
}
@keyframes loaderFlagIn {
  from { opacity: 0; transform: scale(.5) translateY(-8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.loader__name {
  font-size: 26px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: .04em;
  animation: loaderFadeUp .5s ease .55s both;
}
.loader__name em { color: var(--primary); font-style: normal; }

.loader__sub {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #aaa;
  animation: loaderFadeUp .5s ease .7s both;
}
.loader__bar-wrap {
  width: 140px;
  height: 3px;
  background: #eee;
  border-radius: 99px;
  overflow: hidden;
  margin-top: 16px;
  animation: loaderFadeUp .4s ease .8s both;
}
.loader__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 99px;
  animation: loaderBar 1s cubic-bezier(.4,0,.2,1) .8s forwards;
}
@keyframes loaderBar {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}
@keyframes loaderFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Header
=========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.header.scrolled {
  border-color: #FFE8DC;
  box-shadow: 0 4px 20px rgba(255,107,53,.1);
}
.header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 900;
  color: var(--dark);
}
.header__logo-icon { font-size: 22px; }
.header__logo em { color: var(--primary); font-style: normal; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  padding: 7px 14px;
  border-radius: 99px;
  transition: background var(--ease), color var(--ease);
}
.header__nav a:hover { background: var(--primary-light); color: var(--primary); }
.header__cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 99px !important;
  box-shadow: 0 4px 12px rgba(255,107,53,.3);
  transition: transform var(--ease), box-shadow var(--ease) !important;
}
.header__cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,107,53,.4) !important;
}

/* ハンバーガー */
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 6px;
}
.header__menu-btn span {
  display: block;
  height: 2.5px;
  background: var(--dark);
  border-radius: 99px;
  transition: transform .3s, opacity .3s;
}
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__menu-btn { display: flex; }
}

/* Mobile Menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 2px solid #FFE8DC;
  padding: 16px 24px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s ease;
}
.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background var(--ease);
}
.mobile-menu a:hover { background: var(--primary-light); color: var(--primary); }

/* ===========================
   Hero
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
/* スライドショーコンテナ */
.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* 各スライド（デフォルト：透明・少し下・少し大きめ） */
.hero__slide {
  position: absolute;
  inset: 0;
  background-color: #1a0800;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: scale(1.06) translateY(16px);
  transition: opacity .9s ease, transform .9s ease;
  z-index: 0;
}
/* 表示中：正面・等倍・不透明 */
.hero__slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 1;
}
/* 退場中：上に抜けてフェードアウト */
.hero__slide.exit {
  opacity: 0;
  transform: scale(0.97) translateY(-12px);
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,5,0,.88) 0%,
    rgba(20,5,0,.55) 50%,
    rgba(20,5,0,.2) 100%
  );
  z-index: 1;
}
/* 左のオレンジ縦帯 */
.hero__overlay::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--secondary), var(--primary));
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 0 24px 100px;
}
/* PCサイズでは文字を小さく・下に配置（顔と被らないように） */
@media (min-width: 769px) {
  .hero__inner {
    position: absolute;
    bottom: 80px;
    left: 48px;
    max-width: 480px;
    padding: 0;
  }
  .hero__title {
    font-size: 36px;
    margin-bottom: 8px;
    white-space: nowrap;
  }
  .hero__sub {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .hero__badge {
    font-size: 10px;
    padding: 5px 14px;
    margin-bottom: 12px;
  }
  .hero__btn {
    font-size: 13px;
    padding: 10px 24px;
  }
}
/* ローダー後にスライドイン */
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* 1文字ずつ表示するアニメーション */
@keyframes titleCharAppear {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* 下からスライドイン */
@keyframes heroSlideInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero--loaded .hero__title    { /* タイトル自体にはアニメーションなし、子の文字で処理 */ }
.title-char {
  opacity: 0;
  animation: titleCharAppear .35s ease forwards;
  animation-delay: calc(0.75s + var(--char-index) * 0.15s);
}
.hero--loaded .hero__sub      { animation: heroSlideInUp .60s ease 3s both; }
.hero--loaded .hero__desc     { animation: heroSlideInUp .60s ease 3.25s both; }
.hero--loaded .hero__btn      { animation: heroSlideInUp .60s ease 3s both; }

.hero__title {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.hero__sub {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.9;
  margin-bottom: 32px;
}
.hero__btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 99px;
  box-shadow: 0 8px 28px rgba(255,107,53,.45);
  transition: transform var(--ease), box-shadow var(--ease);
}
.hero__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255,107,53,.55);
}
/* hero__btn 点滅アニメーション */
@keyframes heroBtnPulse {
  0%, 100% {
    box-shadow: 0 8px 28px rgba(255,107,53,.45);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 12px 40px rgba(255,107,53,.85);
    transform: scale(1.05);
  }
}
/* スマホサイズ：説明文非表示（基本スタイルより後に配置で上書き） */
@media (max-width: 768px) {
  .hero__desc {
    display: none;
  }
}
/* 波形 */
.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.hero__wave svg { width: 100%; display: block; }

/* ===========================
   Stats
=========================== */
.stats {
  padding: 48px 0 56px;
  background: var(--white);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--ease);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card--orange { background: linear-gradient(135deg, #FF6B35, #FF8C61); color: #fff; }
.stat-card--yellow { background: linear-gradient(135deg, #FFD93D, #FFE87A); color: var(--dark); }
.stat-card--teal   { background: linear-gradient(135deg, #4ECDC4, #7EDDD7); color: #fff; }
.stat-card--green  { background: linear-gradient(135deg, #6BCB77, #95DA9E); color: #fff; }
.stat-card__num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__num small { font-size: 14px; font-weight: 700; margin-left: 2px; }
.stat-card__label { font-size: 12px; font-weight: 700; opacity: .85; }
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   Section common
=========================== */
.section {
  padding: 88px 0;
}
.section--light { background: var(--light); }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head--white { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-tag--white {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--dark);
}
.section-title--white { color: var(--white); }
.section-lead--white {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.8);
}

/* ===========================
   Features
=========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 2px solid #F0EEF0;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.feature-card--accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  color: var(--white);
}
.feature-card--accent .feature-card__title,
.feature-card--accent .feature-card__desc { color: var(--white); }
.feature-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.feature-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card__desc {
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Schedule
=========================== */
.schedule-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--primary-light);
  position: relative;
  overflow: hidden;
}
.schedule-card::before {
  content: '🥋';
  position: absolute;
  right: -10px; top: -10px;
  font-size: 80px;
  opacity: .06;
  transform: rotate(20deg);
}
.schedule-card__days {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.day-badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  padding: 10px 28px;
  border-radius: 99px;
  box-shadow: 0 4px 16px rgba(255,107,53,.3);
}
.schedule-card__time {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 20px;
}
.schedule-card__place {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}
.schedule-card__btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 99px;
  box-shadow: 0 4px 16px rgba(255,107,53,.3);
  transition: transform var(--ease), box-shadow var(--ease);
}
.schedule-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,.4);
}

/* ===========================
   Instructors
=========================== */
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.instructor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 2px solid #F0EEF0;
  transition: transform var(--ease), box-shadow var(--ease);
}
.instructor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.instructor-card__avatar {
  width: 80px; height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 16px;
  border: 3px solid var(--primary);
}
.instructor-card__name {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.instructor-card__grade {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.instructor-card__desc {
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .instructor-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ===========================
   Fee Section
=========================== */
.fee-section {
  padding: 88px 0;
  background: linear-gradient(135deg, #FF6B35 0%, #FF9A00 60%, #FFD93D 100%);
  position: relative;
  overflow: hidden;
}
.fee-section__bg-deco {
  position: absolute;
  right: -40px; bottom: -40px;
  font-size: 240px;
  opacity: .06;
  line-height: 1;
  transform: rotate(-20deg);
  pointer-events: none;
}
.fee-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
}
.fee-card__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 16px;
}
.fee-card__price {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  line-height: 1;
  margin-bottom: 20px;
}
.fee-card__num {
  font-size: clamp(64px, 14vw, 100px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
}
.fee-card__unit {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  padding-bottom: 10px;
}
.fee-card__unit small { font-size: 13px; }
.fee-card__highlight {
  background: rgba(255,255,255,.2);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 99px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  display: inline-block;
}
.fee-card__highlight strong { color: var(--secondary); font-size: 16px; }
.fee-card__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: left;
}
.fee-point {
  background: rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.fee-note {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
@media (max-width: 480px) {
  .fee-card__points { grid-template-columns: 1fr; }
}

/* ===========================
   Flow
=========================== */
.flow-grid {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.flow-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 2px solid #F0EEF0;
  transition: transform var(--ease), border-color var(--ease);
}
.flow-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}
.flow-card__num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--primary);
  margin-bottom: 10px;
}
.flow-card__icon { font-size: 32px; margin-bottom: 10px; }
.flow-card__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.flow-card p { font-size: 12px; color: var(--text); line-height: 1.7; }
.flow-arrow {
  font-size: 18px;
  color: var(--primary);
  padding-top: 60px;
  flex-shrink: 0;
  opacity: .6;
}
@media (max-width: 768px) {
  .flow-grid {
    flex-direction: column;
    max-width: 360px;
    margin: 0 auto;
  }
  .flow-arrow { padding: 0; transform: rotate(90deg); align-self: center; }
}

/* ===========================
   Access
=========================== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.access-info {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
}
.access-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.access-item:first-child { padding-top: 0; }
.access-item__icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.access-item__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 3px;
}
.access-item__val {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
}
.access-item__sub {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}
.trial-banner {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--primary), #1e90d0);
  border-radius: var(--radius);
  padding: 24px 24px;
}
.trial-banner__title {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.trial-banner__points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.trial-banner__point {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
}
.trial-banner__btn {
  display: block;
  text-align: center;
  background: var(--white);
  color: var(--primary);
  font-size: 15px;
  font-weight: 900;
  padding: 12px 20px;
  border-radius: var(--radius);
  transition: transform var(--ease), box-shadow var(--ease);
}
.trial-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.access-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
}
.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}
@media (max-width: 768px) {
  .access-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Footer
=========================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 56px 0 32px;
  text-align: center;
}
.footer__logo {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}
.footer__logo em { color: var(--primary); font-style: normal; }
.footer__desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.8;
}
.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 32px;
}
.footer__nav a {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  padding: 6px 14px;
  border-radius: 99px;
  transition: background var(--ease), color var(--ease);
}
.footer__nav a:hover {
  background: rgba(255,107,53,.2);
  color: var(--primary);
}
.footer__bottom {
  font-size: 12px;
  color: rgba(255,255,255,.25);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
}

/* ===========================
   Scroll Reveal (JS-driven)
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
