/* =============================================
   足柄テニスアカデミー ブランドサイト
   Navy × Gold — ライト基調
============================================= */

:root {
  --navy:       #0D2137;
  --navy-mid:   #163352;
  --navy-light: #1E4A73;
  --gold:       #C9A030;
  --gold-light: #E8C864;
  --gold-pale:  #F5ECD4;
  --white:      #FFFFFF;
  --bg-light:   #F7F9FB;
  --bg-section: #EFF4F9;
  --text:       #1a1a2e;
  --text-sub:   #4a5568;
  --text-light: #718096;
  --border:     #D6E4F0;
  --border-light: #E8EFF7;
  --shadow:     0 4px 24px rgba(13,33,55,0.08);
  --shadow-lg:  0 8px 40px rgba(13,33,55,0.12);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.25s ease;
  --max-width:  1100px;
  --font-en:    "Helvetica Neue", "Arial", sans-serif;
  --font-ja:    "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

/* =========== Reset & Base =========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ja);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========== ヘッダー =========== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,33,55,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,160,48,0.2);
  transition: var(--transition);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.logo-sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1.2;
  white-space: nowrap;
}

/* ナビゲーション */
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy) !important;
  background: var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links .btn-cta:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
}
.nav-links .btn-cta::after { display: none; }

/* モバイルメニュー */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* =========== ヒーロー（トップ） =========== */
#hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-video-mobile { display: none; }
@media (max-width: 768px) {
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,33,55,0.82) 0%, rgba(13,33,55,0.5) 60%, rgba(13,33,55,0.3) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 720px;
}
#hero .section-label {
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-weight: 900;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-line {
  display: block;
  font-size: clamp(24px, 4.5vw, 48px);
}
.hero-title .accent { color: var(--gold); }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 24px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-left: 3px solid var(--gold);
  color: rgba(255,255,255,0.9);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
#hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
#hero .btn-secondary:hover {
  border-color: var(--gold);
  color: var(--white) !important;
}

/* =========== 共通セクション =========== */
section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); color: var(--white); }

.section-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-title span { color: var(--gold); }
.bg-navy .section-title { color: var(--white); }
.section-divider {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.9;
  max-width: 640px;
}
.bg-navy .section-desc { color: rgba(255,255,255,0.65); }
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .section-divider { margin: 0 auto 24px; }
.section-header .section-desc { margin: 0 auto; }

/* =========== ボタン =========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  background: var(--gold);
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,160,48,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border: 2px solid var(--border);
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--navy) !important;
}
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: #06C755;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-line:hover {
  background: #05b34c;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* =========== 特徴カード =========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), rgba(201,160,48,0.3));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-num {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* =========== 代表紹介 =========== */
.coach-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.coach-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.coach-photo-mobile { display: none; }
.coach-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.coach-name {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.coach-name-en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.coach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.coach-tags .tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--gold-pale);
  color: var(--navy);
  border: 1px solid rgba(201,160,48,0.2);
}
.coach-bio {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 24px;
}
.coach-records {
  padding: 0;
}
.coach-records li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.coach-records li::before {
  content: '';
  width: 8px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}
.coach-records li strong { color: var(--gold); font-weight: 700; }

/* 資格・免許 */
.coach-credentials {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.credentials-heading {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.credentials-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.credential-category h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.credential-category ul {
  padding: 0;
  list-style: none;
}
.credential-category li {
  font-size: 13px;
  color: var(--text-sub);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}
.credential-category li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 1.5px;
  background: var(--gold);
}
.credentials-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cert-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  text-align: center;
}
.cert-img img {
  width: 100%;
  object-fit: contain;
  background: var(--bg-light);
  padding: 8px;
}
.cert-img span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-sub);
  padding: 6px 4px;
  background: var(--bg-light);
}

.coach-official {
  margin-top: 20px;
}
.coach-official a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}
.coach-official a:hover { color: var(--gold-light); }

/* =========== ギャラリー =========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,33,55,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 12px;
  color: var(--white);
  font-weight: 600;
}

/* =========== 料金テーブル =========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.pricing-card.featured::before {
  content: 'おすすめ';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 16px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pricing-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-target {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.pricing-price {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 4px;
}
.pricing-price strong {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
}
.pricing-price-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.pricing-features {
  text-align: left;
  padding: 0;
}
.pricing-features li {
  font-size: 13px;
  color: var(--text-sub);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}

/* 競技クラス（メイン料金テーブル） */
.team-block {
  max-width: 720px;
  margin: 0 auto 48px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
}
.team-header { text-align: center; margin-bottom: 24px; }
.team-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.team-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-target {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 4px;
}
.team-time {
  font-size: 12px;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.team-meta {
  font-size: 12px;
  color: var(--text-light);
}
.team-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  padding: 0;
  margin-bottom: 28px;
}
.team-features li {
  font-size: 13px;
  color: var(--text-sub);
  padding-left: 18px;
  position: relative;
}
.team-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}
.feature-note {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-left: 4px;
}

/* 料金テーブル */
.price-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.price-row:last-child { border-bottom: none; }
.price-row.best {
  background: var(--gold-pale);
  border-radius: var(--radius);
  border-bottom: none;
  margin-top: 4px;
  padding: 16px 16px 16px 16px;
}
.price-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--gold);
  padding: 2px 10px;
  border-radius: 100px;
}
.price-freq {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.price-freq span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 2px;
}
.price-per {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}
.price-per span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
}
.price-monthly {
  text-align: right;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.price-monthly span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
}
.price-freq .price-discount {
  display: inline-block;
  margin-top: 6px;
  background: #E53935;
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  vertical-align: middle;
  white-space: nowrap;
}
.price-row.best .price-per { font-size: 20px; }
.price-row.best .price-monthly { font-size: 22px; color: var(--gold); }

/* 育成クラス / ビジター */
.sub-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 32px;
}
.sub-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.sub-label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.sub-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.sub-target {
  font-size: 12px;
  color: var(--text-sub);
  margin-bottom: 4px;
}
.sub-time {
  font-size: 11px;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.sub-meta {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.sub-prices { display: flex; flex-direction: column; gap: 8px; }
.sub-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-sub);
}
.sub-price-row strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}
.sub-note {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 12px;
}

/* 基礎クラス */
.startup-block {
  max-width: 720px;
  margin: 0 auto 48px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.startup-header { text-align: center; margin-bottom: 16px; }
.startup-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.startup-detail {
  font-size: 12px;
  color: var(--text-light);
}
.startup-price {
  font-size: 13px;
  color: var(--text-sub);
}
.startup-price strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 4px;
}

/* オプションサービス */
.options-section {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.options-heading {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.option-item {
  padding: 20px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
}
.option-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.option-desc {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.6;
}
.options-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

/* =========== 生徒の声 =========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.testimonial-quote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}
.testimonial-info .name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-info .detail {
  font-size: 11px;
  color: var(--text-light);
}

/* =========== 生徒実績 =========== */
.results-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.result-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.result-stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.result-stat-num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.result-stat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}
.result-stat-sub {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}
.results-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.results-table th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--navy);
  padding: 10px 16px;
  text-align: left;
}
.results-table th:first-child { border-radius: var(--radius) 0 0 0; }
.results-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.results-table td {
  font-size: 14px;
  color: var(--text);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}
.results-table tr:hover { background: var(--bg-light); }
.results-table .result-rank {
  font-weight: 800;
  color: var(--gold);
}
.results-latest {
  margin-top: 40px;
  padding: 24px 24px 8px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

/* =========== 元から強かったわけじゃない（疑念先回り） =========== */
#not-born {
  padding-top: 96px;
  padding-bottom: 96px;
}
#not-born .section-label {
  color: var(--gold-light);
}
.nb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.nb-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.nb-step {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
}
.nb-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 14px;
  line-height: 1.4;
}
.nb-text {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.nb-conclusion {
  margin-top: 56px;
  text-align: center;
  padding: 36px 24px;
  background: rgba(201,160,48,0.08);
  border: 1px solid rgba(201,160,48,0.3);
  border-radius: var(--radius-lg);
}
.nb-conclusion p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--white);
  margin: 0 0 24px;
}
.nb-conclusion p strong {
  color: var(--gold-light);
  font-weight: 800;
}
.btn-on-navy {
  background: var(--gold);
  color: var(--navy) !important;
  border: 2px solid var(--gold);
}
.btn-on-navy:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy) !important;
}
.sp-only { display: none; }

/* =========== Before / After 実例 =========== */
.ba-header {
  margin-top: 72px;
  text-align: center;
}
.ba-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.ba-heading {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.ba-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}
.ba-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
}
.ba-case-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 6px 0 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.ba-case-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 14px;
  width: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.ba-case {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--white);
}
.ba-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}
.ba-col {
  padding: 14px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ba-before {
  border: 1px solid rgba(255,255,255,0.08);
}
.ba-after {
  position: relative;
  border: 1px solid rgba(201,160,48,0.45);
  background-color: #062344;
  padding: 12px 14px 12px;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ba-after-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ba-after .ba-col-title {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.ba-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 4px 12px;
  border-radius: 4px;
}
.ba-tag-before {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.ba-tag-after {
  background: var(--gold);
  color: var(--navy);
}
.ba-col-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.04em;
}
.ba-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}
.ba-after-frame {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 4;
  background-image: url('../img/laurel_frame_navy.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  background-color: #062344;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25%;
  overflow: hidden;
}
.ba-after-headline {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: 900;
  font-size: clamp(13px, 1.7vw, 19px);
  color: #E9C97B;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.ba-after-sub {
  margin: 6px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
}
.ba-todo {
  color: var(--gold-light);
  font-style: italic;
  font-size: 12.5px;
}
.ba-quote {
  margin: 18px 0 0;
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  background: rgba(201,160,48,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.ba-card-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.ba-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ba-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,160,48,0.15);
  background: rgba(0,0,0,0.2);
  aspect-ratio: 4 / 5;
  min-height: 100%;
}
.ba-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
/* 横長画像用（CASE 02 など）: 画像全体をクロップせず表示 */
.ba-media--wide {
  aspect-ratio: 4 / 3;
  min-height: auto;
  align-self: start;
}
.ba-media--wide img {
  object-fit: contain;
  object-position: center center;
  background: var(--navy);
}
@media (max-width: 768px) {
  .ba-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ba-media {
    aspect-ratio: auto;
    min-height: auto;
    max-height: none;
  }
  .ba-media img {
    height: auto;
    object-fit: contain;
    object-position: center center;
    background: var(--navy);
  }
  .ba-media--wide { aspect-ratio: auto; }
}

/* =========== 他スクールとの比較 =========== */
.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.compare-full {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.7;
}
.compare-full th,
.compare-full td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-full tr:last-child td { border-bottom: none; }
.compare-header-item {
  background: var(--bg-section);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-sub);
  letter-spacing: 0.04em;
}
.compare-header-other {
  background: #f0f0f0;
  font-weight: 600;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.04em;
}
.compare-header-ata {
  background: var(--navy);
  font-weight: 800;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.compare-label {
  font-weight: 700;
  color: var(--navy);
  background: var(--bg-light);
  font-size: 14px;
  width: 22%;
}
.compare-full tbody td:nth-child(2),
.compare-full tbody td:nth-child(3) {
  color: #9aa;
  font-size: 14px;
}
.compare-ata-cell {
  color: var(--navy);
  font-size: 14px;
  background: rgba(201,160,48,0.04);
}
.compare-ata-cell strong {
  color: var(--gold);
  font-weight: 800;
}
.compare-full tbody tr:hover {
  background: rgba(201,160,48,0.04);
}
.rank-great, .rank-good, .rank-fair, .rank-poor {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin-right: 4px;
}
.rank-great { color: var(--gold); font-weight: 900; font-size: 22px; }
.rank-good { color: #7bbfee; font-weight: 700; font-size: 21px; }
.rank-fair { color: #bbb; font-weight: 700; font-size: 21px; }
.rank-poor { color: #d88; font-weight: 700; font-size: 21px; }
.compare-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
  text-align: right;
}
.compare-mobile-img {
  display: none;
}
@media (max-width: 768px) {
  .compare-mobile-img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: var(--radius);
  }
  .compare-scroll {
    display: none;
  }
  .compare-note {
    text-align: left;
    padding: 0 4px;
  }
}

@media (max-width: 768px) {
  .nb-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .nb-card { padding: 24px 20px; }
  .nb-conclusion {
    margin-top: 32px;
    padding: 28px 20px;
  }
  .nb-conclusion p { font-size: 15px; }
  .sp-only { display: inline; }
  #not-born {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .ba-header { margin-top: 48px; }
  .ba-heading { font-size: 22px; }
  .ba-desc { font-size: 13px; }
  .ba-card { padding: 22px 20px 20px; }
  .ba-case { font-size: 16px; }
  .ba-col { padding: 14px 16px; }
  .ba-col-title { font-size: 13.5px; }
  .ba-text { font-size: 13px; }
  .ba-after { padding: 10px 12px; }
  .ba-after-frame { aspect-ratio: 16 / 4.5; padding: 0 22%; }
  .ba-after-headline { font-size: clamp(10px, 3vw, 15px); letter-spacing: 0.02em; }
  .ba-after-sub { font-size: 12px; }
  .ba-quote { font-size: 13.5px; padding: 10px 14px; }
}
.results-latest-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: 0.05em;
}
.results-latest .results-table {
  margin-bottom: 0;
  background: transparent;
}
.results-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 32px;
}
.results-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}
.results-photos img:hover { transform: scale(1.04); }

/* =========== FAQ =========== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  position: relative;
  font-family: var(--font-ja);
  line-height: 1.6;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-question.active::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
}

/* =========== お知らせ =========== */
.news-list {
  max-width: 720px;
}
.news-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.news-date {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  flex-shrink: 0;
  min-width: 90px;
}
.news-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}
.news-tag.info { background: var(--bg-section); color: var(--navy); }
.news-tag.result { background: var(--gold-pale); color: var(--gold); }
.news-tag.event { background: #E8F5E9; color: #2E7D32; }
.news-title {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

/* =========== アクセス =========== */
.access-grid,
.access-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.access-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 40px;
}
.access-summary-card {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  align-items: flex-start;
}
.access-summary-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.access-summary-content h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.access-summary-content p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-sub);
  margin: 0;
}
.access-summary-content p + p {
  margin-top: 4px;
}
.access-summary-content strong {
  color: var(--navy);
  font-weight: 700;
}

.access-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}
.access-detail-card {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
}
.access-detail-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  letter-spacing: 0.02em;
}
.access-num {
  color: var(--gold);
  margin-right: 6px;
  font-weight: 900;
}
.access-detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.access-entrance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.access-detail-list {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-sub);
}
.access-detail-list li {
  margin-bottom: 8px;
}
.access-detail-list li:last-child {
  margin-bottom: 0;
}
.access-detail-list strong {
  color: var(--navy);
  font-weight: 700;
}
.access-photo {
  margin: 0;
  text-align: center;
}
.access-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.access-photo figcaption {
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 10px;
  line-height: 1.7;
}
.access-photo figcaption small {
  display: block;
  font-size: 11.5px;
  color: var(--text-sub);
  margin-top: 4px;
  opacity: 0.9;
}
.access-photo figcaption strong {
  color: var(--navy);
  font-weight: 700;
}
.access-photo--entrance img {
  margin-bottom: 10px;
}
.access-photo--entrance .access-sign-img {
  max-width: 80%;
  margin: 0 auto 10px;
}
@media (max-width: 768px) {
  .access-details {
    gap: 20px;
    margin-top: 28px;
  }
  .access-detail-card { padding: 20px; }
  .access-detail-body,
  .access-entrance-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .access-summary {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px 0 28px;
  }
  .access-summary-card { padding: 18px 20px; }
}
.access-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.access-table {
  width: 100%;
}
.access-table tr {
  border-bottom: 1px solid var(--border-light);
}
.access-table th {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  padding: 10px 16px 10px 0;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
}
.access-table td {
  font-size: 14px;
  color: var(--text-sub);
  padding: 10px 0;
  line-height: 1.7;
}
.access-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
}
.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========== CTA =========== */
#cta {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
}
.cta-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========== フッター =========== */
#footer {
  background: var(--navy);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-col p, .footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-col ul { padding: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* =========== アニメーション =========== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========== レスポンシブ =========== */
@media (max-width: 900px) {
  #hero { min-height: 70vh; }
  .hero-inner { padding-top: 100px; padding-bottom: 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .coach-grid { grid-template-columns: 1fr; gap: 32px; }
  .coach-photo { display: none; }
  .coach-photo-mobile {
    display: block;
    margin: 20px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 320px;
  }
  .coach-photo-mobile img {
    display: block;
    width: 100%;
    height: auto;
  }
  .price-row { grid-template-columns: 1.4fr 1fr 1fr; padding: 14px 14px; gap: 8px; }
  .price-per { font-size: 14px; }
  .price-monthly { font-size: 17px; }
  .price-row.best .price-per { font-size: 16px; }
  .price-row.best .price-monthly { font-size: 20px; }
  .sub-plans { grid-template-columns: 1fr; max-width: 400px; }
  .startup-content { flex-direction: column; text-align: center; }
  .options-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .access-grid,
  .access-top { grid-template-columns: 1fr; }
  .access-details {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }
  .access-detail-card { padding: 18px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .results-highlight { grid-template-columns: repeat(2, 1fr); }
  .results-photos { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .credentials-list { grid-template-columns: 1fr; }
  .credentials-images { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* 料金テーブル: 縦積みで文字被りを解消 */
  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 16px;
    text-align: left;
  }
  .price-row.best {
    padding: 22px 16px 18px;
    margin-top: 8px;
  }
  .price-freq {
    font-size: 16px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 6px;
  }
  .price-row.best .price-freq {
    border-bottom-color: rgba(201,160,48,0.3);
  }
  .price-per,
  .price-monthly {
    text-align: left;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .price-per::before { content: "1回あたり"; font-size: 12px; font-weight: 500; color: var(--text-light); }
  .price-monthly::before { content: "月謝"; font-size: 12px; font-weight: 500; color: var(--text-light); }
  .price-row.best .price-per,
  .price-row.best .price-monthly { font-size: 18px; }
  .price-row.best .price-monthly { font-size: 22px; }
  .price-freq .price-discount {
    display: inline-block;
    margin-top: 8px;
  }
  .price-badge { top: -11px; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13,33,55,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .mobile-toggle { display: flex; z-index: 1001; }
  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }
  .mobile-overlay.open { display: block; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
}
