/* ============================================
   KUMAMOTO BARBER SCHOOL - STYLE.CSS
   Designer × Bold × Vivid
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Base */
  --bg: #ffffff;
  --bg-sub: #f5f5f7;
  --bg-dark: #0a0a0f;
  --bg-dark2: #111118;
  --bg-dark3: #1a1a24;

  /* Brand Colors — Deep Midnight × Neon Cyan × Electric Pink */
  --primary: #00c2a8;          /* neon teal/cyan */
  --primary-light: #00dfc2;
  --primary-pale: #e0faf7;
  --primary-ultra: #f0fdfc;

  --coral: #ff2d78;            /* electric pink/magenta */
  --coral-light: #ff5a96;
  --coral-pale: #fff0f5;

  --lime: #00e5ff;             /* electric cyan */
  --lime-dark: #00b8d4;

  --accent2: #7b2fff;          /* deep violet accent */
  --accent2-pale: #f0eaff;

  --black: #0a0a0f;
  --text: #111118;
  --text-mid: #44445a;
  --text-muted: #888899;
  --border: #e8e8ee;
  --border-mid: #ccccdd;
  --line-green: #06c755;
  --white: #ffffff;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 16px rgba(0,194,168,0.08);
  --shadow: 0 8px 40px rgba(0,194,168,0.14);
  --shadow-lg: 0 24px 72px rgba(0,194,168,0.2);
  --shadow-coral: 0 12px 40px rgba(255,45,120,0.28);
  --shadow-violet: 0 12px 40px rgba(123,47,255,0.22);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.section-label.light { color: var(--lime); }
.section-label.light::before { background: var(--lime); }

.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--black);
  letter-spacing: -0.02em;
}
.section-title em { color: var(--primary); font-style: normal; }
.section-title.light { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 48px; line-height: 1.9; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; border-radius: var(--radius); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--lime-dark));
  color: var(--black);
  box-shadow: 0 4px 24px rgba(0,194,168,0.4);
  font-weight: 800;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(0,194,168,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-pale);
}

.btn-line-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  background: var(--line-green);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
  margin: 20px 0 8px;
}
.btn-line-big:hover { background: #04a344; transform: translateY(-2px); }

/* ---------- FLOATING CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.floating-cta.visible { opacity: 1; transform: translateY(0); }
.floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-line { background: var(--line-green); color: #fff; }
.btn-line:hover { background: #04a344; transform: translateX(-4px); }
.btn-document { background: linear-gradient(135deg, var(--primary), var(--lime-dark)); color: var(--black); font-weight: 800; }
.btn-document:hover { opacity: 0.9; transform: translateX(-4px); }
.btn-event { background: var(--white); color: var(--black); border: 1.5px solid var(--border-mid); }
.btn-event:hover { border-color: var(--primary); color: var(--primary); transform: translateX(-4px); }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,194,168,0.10);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo .logo-en {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
}
.logo .logo-ja { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 1px; }
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a { font-size: 0.82rem; color: var(--text-mid); transition: var(--transition); letter-spacing: 0.02em; font-weight: 500; }
.nav-desktop a:hover { color: var(--primary); }
.nav-desktop a[aria-current="page"] { color: var(--primary); font-weight: 700; }
.nav-desktop .nav-cta {
  padding: 10px 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 4px 16px rgba(91,43,232,0.3);
}
.nav-desktop .nav-cta:hover { background: var(--primary-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: flex; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.nav-mobile.open { max-height: 720px; }
.mobile-nav-label {
  padding: 14px 24px 8px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-sub);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link { padding: 16px 24px; font-size: 0.9rem; color: var(--text-mid); border-bottom: 1px solid var(--border); transition: var(--transition); font-weight: 500; }
.mobile-nav-link:hover { color: var(--primary); background: var(--primary-ultra); }
.mobile-nav-link.cta-link { color: var(--primary); font-weight: 700; }
.mobile-nav-link[aria-current="page"] { color: var(--primary); font-weight: 700; background: var(--primary-ultra); }

.page-subnav {
  position: sticky;
  top: 76px;
  z-index: 850;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.page-subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-subnav-inner::-webkit-scrollbar { display: none; }
.page-subnav a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--text-mid);
  background: rgba(255,255,255,0.72);
  border: 1px solid transparent;
  transition: var(--transition);
}
.page-subnav a:hover,
.page-subnav a.active {
  color: var(--primary);
  background: var(--primary-ultra);
  border-color: rgba(0,194,168,0.18);
}
.page-subnav.is-hidden { display: none; }

.simple-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(0,229,255,0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255,45,120,0.10), transparent 30%),
    var(--bg);
}
.page-shell { padding: 140px 24px 80px; }
.page-hero {
  max-width: 960px;
  margin: 0 auto;
}
.page-hero-inner {
  padding: 56px;
  border-radius: 32px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,194,168,0.12);
  box-shadow: 0 24px 72px rgba(0,194,168,0.12);
}
.page-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--black);
}
.page-lead {
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 680px;
}
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
  background: var(--bg);
}

/* Background decorations */
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,229,255,0.13) 0%, rgba(0,194,168,0.07) 40%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(255,45,120,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text-side { position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 28px;
  background: var(--primary-pale);
  border: 1px solid rgba(0,194,168,0.3);
}
.hero-headline { margin-bottom: 24px; }
.hero-sub-copy {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  letter-spacing: 5px;
  color: var(--coral);
  margin-bottom: 12px;
  font-weight: 700;
}
.hero-main-copy {
  display: block;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -0.03em;
}
.hero-main-copy em {
  color: var(--primary);
  font-style: normal;
  position: relative;
}
.hero-main-copy em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--lime));
  opacity: 0.35;
  z-index: -1;
  border-radius: 4px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 36px;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note { font-size: 0.82rem; color: var(--text-muted); }
.hero-note i { color: var(--line-green); margin-right: 4px; }

/* Hero Image Side */
.hero-image-side { position: relative; }
.hero-img-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 520px;
}
.hero-img-main { grid-row: 1 / 3; border-radius: var(--radius-lg); overflow: hidden; }
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.hero-img-main:hover img { transform: scale(1.04); }
.hero-img-sub-wrap { display: flex; flex-direction: column; gap: 10px; }
.hero-img-sub { border-radius: var(--radius); overflow: hidden; flex: 1; }
.hero-img-sub img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hero-img-sub:hover img { transform: scale(1.06); }

.hero-img-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: linear-gradient(135deg, var(--coral), #ff6b9d);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-coral);
  z-index: 10;
}
.hib-num { display: block; font-size: 0.65rem; letter-spacing: 2px; opacity: 0.8; margin-bottom: 2px; }
.hib-val { display: block; font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.hib-val small { font-size: 1rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  opacity: 0.35;
}
.hero-scroll-hint span { font-family: 'Oswald', sans-serif; font-size: 9px; letter-spacing: 3px; color: var(--text); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: scrollLine 1.8s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- TICKER ---------- */
.ticker-wrap {
  background: linear-gradient(90deg, var(--black), #1a0a2e, var(--black));
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  border-top: 1px solid rgba(0,194,168,0.25);
  border-bottom: 1px solid rgba(0,194,168,0.25);
}
.ticker-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 200px,
    rgba(0,229,255,0.06) 200px,
    rgba(0,229,255,0.06) 201px
  );
}
.ticker {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.ticker span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.ticker .sep { color: var(--primary); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- VISION SECTION ---------- */
.section-vision {
  background: var(--black);
  overflow: hidden;
  position: relative;
}
.section-vision::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(0,194,168,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,45,120,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 50% 100%, rgba(123,47,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.section-vision .section-label { color: var(--primary); }
.section-vision .section-label::before { background: var(--primary); }
.section-vision .section-title { color: var(--white); margin-bottom: 12px; }
.section-vision .section-title em { color: var(--primary); }
.section-vision .section-desc { color: rgba(255,255,255,0.6); }

.vision-content { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.vision-title { margin-bottom: 16px; }
.vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.vision-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  backdrop-filter: blur(8px);
}
.vision-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.vision-card:hover {
  background: rgba(0,194,168,0.07);
  border-color: rgba(0,194,168,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,194,168,0.18);
}
.vision-card:hover::before { transform: scaleX(1); }
.vision-emoji { font-size: 2.4rem; margin-bottom: 16px; line-height: 1; display: block; }
.vision-card h3 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; line-height: 1.4; }
.vision-card p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* ---------- APPEAL / BENTO ---------- */
.section-appeal { background: var(--bg); }
.appeal-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
  margin-bottom: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.bento-item { position: relative; overflow: hidden; border-radius: var(--radius); }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.bento-item:hover img { transform: scale(1.06); }
.bento-large { grid-column: 1; grid-row: 1 / 3; }
.bento-tall { grid-column: 2; grid-row: 1 / 3; }
.bento-small { grid-column: 3; }
.bento-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(15,14,23,0.7), transparent);
}
.bento-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

/* About Grid */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-pale) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary); }
.about-card:hover::after { opacity: 1; }
.about-num {
  font-family: 'Oswald', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(0,194,168,0.07);
  line-height: 1;
  position: absolute;
  top: 12px; right: 16px;
}
.about-icon { font-size: 2rem; color: var(--primary); margin-bottom: 18px; position: relative; z-index: 1; }
.about-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--black); margin-bottom: 10px; position: relative; z-index: 1; }
.about-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.8; position: relative; z-index: 1; }

/* ---------- NUMBERS SECTION ---------- */
.section-numbers { background: var(--black); overflow: hidden; }
.numbers-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 50% 50%, rgba(0,194,168,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 10% 20%, rgba(0,229,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 30% 40% at 90% 80%, rgba(255,45,120,0.08) 0%, transparent 50%);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.number-item { background: rgba(255,255,255,0.03); padding: 52px 28px; text-align: center; transition: var(--transition); }
.number-item:hover { background: rgba(0,194,168,0.12); }
.number-value {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}
.number-value .unit { font-size: 0.55em; opacity: 0.85; }
.number-label { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.number-desc { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ---------- COMPARE SECTION ---------- */
.section-compare { background: var(--bg-sub); }
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.compare-table th, .compare-table td {
  padding: 18px 24px; text-align: left;
  border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.compare-table thead tr { background: var(--white); }
.compare-table tbody tr { background: var(--white); transition: var(--transition); }
.compare-table tbody tr:hover { background: var(--primary-ultra); }
.th-item { color: var(--text-muted); font-weight: 600; }
.th-barber {
  background: linear-gradient(90deg, var(--primary-pale), var(--primary-ultra));
  color: var(--primary);
  font-weight: 700;
  border-left: 3px solid var(--primary);
}
.th-beauty { color: var(--text-mid); font-weight: 600; }
.badge-barber {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--lime-dark));
  color: var(--black);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
}
.td-barber { background: var(--primary-ultra); border-left: 3px solid rgba(0,194,168,0.4); font-weight: 600; color: var(--black); }
.icon-check { color: var(--primary); font-weight: 700; }
.icon-cross { color: #ccc; }
.icon-strong { color: var(--primary); font-weight: 700; }
.icon-mid { color: var(--text-mid); }
.icon-weak { color: #bbb; }

/* ---------- STORIES ---------- */
.section-stories { background: var(--bg); }
.stories-photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story-photo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1.5px solid var(--border);
}
.story-photo-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,194,168,0.18); border-color: var(--primary); }
.spc-img { position: relative; height: 220px; overflow: hidden; }
.spc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.story-photo-card:hover .spc-img img { transform: scale(1.06); }
.spc-body { padding: 24px; }
.spc-body h3 { font-size: 1.18rem; font-weight: 800; color: var(--black); margin-bottom: 14px; line-height: 1.45; }
.spc-story {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}
.spc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: none;
}

/* ---------- STRENGTH ---------- */
.section-strength { background: var(--bg-sub); }
.strength-list { display: flex; flex-direction: column; }
.strength-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 20px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  border-radius: var(--radius);
}
.strength-item:hover { background: var(--white); padding-left: 32px; box-shadow: var(--shadow-sm); }
.strength-item:last-child { border-bottom: none; }
.strength-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(0,194,168,0.12);
  line-height: 1;
  min-width: 80px;
}
.strength-content { display: flex; align-items: flex-start; gap: 20px; flex: 1; }
.strength-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-pale), #e0f7f4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,194,168,0.15);
}
.strength-text h3 { font-size: 1.1rem; font-weight: 800; color: var(--black); margin-bottom: 6px; }
.strength-text p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.8; }

/* ---------- GALLERY MOSAIC ---------- */
.section-gallery { background: var(--white); padding-top: 80px; }
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gm-item { position: relative; overflow: hidden; border-radius: var(--radius); }
.gm-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.gm-item:hover img { transform: scale(1.07); }
.gm-wide { grid-column: 1 / 3; }
.gm-tall { grid-row: 1 / 3; }
.gm-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(15,14,23,0.7), transparent);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  opacity: 0;
  transition: var(--transition);
}
.gm-item:hover .gm-caption { opacity: 1; }

/* ---------- DAY COURSE HOME ---------- */
.section-daycourse-home {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,45,120,0.08), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
}
.daycourse-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.daycourse-home-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 28px;
}
.daycourse-home-text p strong { color: var(--coral); }
.daycourse-home-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.daycourse-home-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-mid); }
.daycourse-home-features li i { color: var(--coral); font-size: 1rem; }
.daycourse-home-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(17,17,24,0.16);
  background: var(--white);
}
.daycourse-home-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.daycourse-home-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: linear-gradient(135deg, var(--coral), #ff9c4a);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; font-weight: 700; line-height: 1.4;
  box-shadow: 0 18px 32px rgba(255,107,64,0.28);
}
.daycourse-home-badge i { font-size: 1.5rem; flex-shrink: 0; }

/* ---------- TSUSHIN ---------- */
.section-tsushin {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.section-tsushin::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,168,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.section-tsushin .section-label { color: var(--primary); }
.section-tsushin .section-label::before { background: var(--primary); }
.section-tsushin .section-title { color: var(--white); }
.section-tsushin .section-title em { color: var(--primary); }
.tsushin-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.tsushin-text p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 2; margin-bottom: 28px; }
.tsushin-text p strong { color: var(--primary); }
.tsushin-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.tsushin-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.tsushin-features li i { color: var(--primary); font-size: 1rem; }
.tsushin-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.4); }
.tsushin-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.tsushin-img-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: linear-gradient(135deg, var(--coral), #c9005a);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; font-weight: 700; line-height: 1.4;
  box-shadow: var(--shadow-coral);
}
.tsushin-img-badge i { font-size: 1.8rem; flex-shrink: 0; }

/* ---------- CURRICULUM ---------- */
.section-curriculum { background: var(--bg-sub); }
.curriculum-hero-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 48px; height: 320px; }
.curriculum-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.curriculum-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,50,45,0.85) 0%, rgba(0,194,168,0.3) 50%, transparent 100%);
  display: flex; align-items: center; padding: 40px;
}
.curriculum-img-overlay span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--white); letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.curriculum-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 52px; }
.timeline-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.timeline-item:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.timeline-year {
  background: linear-gradient(90deg, var(--primary), var(--lime-dark));
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem; font-weight: 800; letter-spacing: 2px; padding: 12px 24px;
}
.timeline-content { padding: 28px; }
.timeline-content h3 { font-size: 1rem; font-weight: 800; color: var(--black); margin-bottom: 16px; }
.timeline-content ul { display: flex; flex-direction: column; gap: 8px; }
.timeline-content li { font-size: 0.82rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; }
.timeline-content li::before { content: '→'; color: var(--primary); flex-shrink: 0; }
.curriculum-skills h3 { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; letter-spacing: 1px; font-weight: 600; }
.skills-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8rem; color: var(--text-mid);
  transition: var(--transition);
  font-weight: 500;
}
.skill-tag:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-pale); }
.skill-tag i { font-size: 0.75rem; color: var(--primary); }

/* ---------- FEES ---------- */
.section-fees { background: var(--white); }
.fees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.fee-card {
  background: var(--bg-sub);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.fee-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.fee-card-highlight { border-color: var(--primary); background: var(--primary-ultra); }
.fee-badge {
  position: absolute; top: -12px; right: 20px;
  background: linear-gradient(135deg, var(--coral), #ff6b9d);
  color: var(--white);
  font-size: 0.68rem; font-weight: 700;
  padding: 4px 14px; border-radius: var(--radius-full); letter-spacing: 1px;
}
.fee-icon { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.fee-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.fee-term { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 14px; letter-spacing: 1px; }
.fee-price { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; line-height: 1.3; background: linear-gradient(135deg, var(--primary), var(--lime-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.fee-card p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.6; }

.support-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.support-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-sub);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.support-item:hover { border-color: var(--primary); background: var(--primary-pale); }
.support-item > i { font-size: 1.2rem; color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.support-item strong { font-size: 0.88rem; color: var(--black); display: block; margin-bottom: 4px; font-weight: 700; }
.support-item p { font-size: 0.78rem; color: var(--text-mid); }

/* ---------- SNS ---------- */
.section-sns { background: var(--bg-sub); }
.sns-grid { display: grid; grid-template-columns: minmax(0, 520px); justify-content: center; gap: 20px; }
.sns-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.sns-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.sns-icon { font-size: 2.8rem; margin-bottom: 18px; }
.sns-card.tiktok { border-top: 3px solid #010101; }
.sns-card.tiktok .sns-icon { color: #010101; }
.sns-card.youtube { border-top: 3px solid #FF0000; }
.sns-card.youtube .sns-icon { color: #FF0000; }
.sns-card.instagram { border-top: 3px solid #E1306C; }
.sns-card.instagram .sns-icon { color: #E1306C; }
.sns-card-single { text-align: left; }
.sns-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--black); margin-bottom: 10px; }
.sns-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 22px; }
.sns-btn {
  display: inline-block; padding: 9px 24px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-full);
  font-size: 0.78rem; color: var(--text-mid);
  transition: var(--transition); font-weight: 600;
}
.sns-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-pale); }

/* ---------- CONTACT ---------- */
.section-contact { padding: 100px 0; position: relative; overflow: hidden; }
.contact-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 30% 50%, rgba(0,194,168,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(255,45,120,0.05) 0%, transparent 60%),
    var(--bg-sub);
}
.contact-inner { position: relative; z-index: 2; text-align: center; }
.contact-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.contact-desc { font-size: 1.05rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 56px; }
.contact-desc strong { color: var(--coral); }

.cta-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.cta-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.cta-card:hover { border-color: var(--primary); box-shadow: 0 12px 40px rgba(0,194,168,0.16); }
.cta-card-line { border-color: rgba(6,199,85,0.25); }
.cta-card-line:hover { border-color: rgba(6,199,85,0.55); }
.cta-card-icon { font-size: 2rem; color: var(--primary); margin-bottom: 14px; filter: drop-shadow(0 4px 8px rgba(0,194,168,0.3)); }
.cta-card-icon.line-icon { color: var(--line-green); }
.cta-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--black); margin-bottom: 10px; }
.cta-card > p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }
.cta-note { font-size: 0.7rem; color: var(--text-muted); text-align: center; }

.contact-form { display: flex; flex-direction: column; gap: 11px; }
.contact-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.contact-form input {
  background: var(--bg-sub);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--black);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.contact-form input:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(0,194,168,0.12); }
.contact-form input::placeholder { color: var(--text-muted); }

.event-list { display: flex; flex-direction: column; gap: 10px; }
.event-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  background: var(--bg-sub);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.event-item:hover { border-color: var(--primary); background: var(--primary-pale); }
.event-date {
  display: flex; flex-direction: column; align-items: center;
  min-width: 44px;
  background: linear-gradient(135deg, var(--primary), var(--lime-dark));
  color: var(--black);
  border-radius: 10px;
  padding: 4px 8px;
}
.e-month { font-size: 0.58rem; font-weight: 700; letter-spacing: 1px; }
.e-day { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; line-height: 1; }
.event-detail { flex: 1; }
.event-detail strong { display: block; font-size: 0.82rem; color: var(--black); margin-bottom: 2px; font-weight: 700; }
.event-detail span { font-size: 0.7rem; color: var(--text-muted); }
.event-btn {
  padding: 6px 14px;
  border: 1.5px solid rgba(0,194,168,0.4);
  border-radius: var(--radius-full);
  font-size: 0.7rem; color: var(--primary);
  transition: var(--transition); white-space: nowrap; font-weight: 700;
}
.event-btn:hover { background: linear-gradient(135deg, var(--primary), var(--lime-dark)); color: var(--black); border-color: var(--primary); }

/* ---------- FOOTER ---------- */
.footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; padding-bottom: 60px; }
.footer-logo { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.footer-logo .logo-en { font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 700; letter-spacing: 3px; color: var(--primary); }
.footer-logo .logo-ja { font-size: 0.68rem; color: rgba(255,255,255,0.4); letter-spacing: 1px; }
.footer-copy-text { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 20px; }
.footer-sns { display: flex; gap: 12px; }
.footer-sns a {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-sns a:hover { border-color: var(--primary); color: var(--primary); background: rgba(0,194,168,0.12); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-nav-col h4 { font-size: 0.68rem; letter-spacing: 3px; color: var(--primary); margin-bottom: 16px; text-transform: uppercase; font-weight: 700; }
.footer-nav-col a, .footer-nav-col p { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 8px; line-height: 1.6; transition: var(--transition); }
.footer-nav-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.25); letter-spacing: 1px; }

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,14,23,0.7);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 400px; width: 90%;
  transform: scale(0.9);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.active .modal-box { transform: scale(1); }
.modal-icon { font-size: 3rem; color: var(--primary); margin-bottom: 16px; filter: drop-shadow(0 4px 12px rgba(0,194,168,0.4)); }
.modal-box h3 { font-size: 1.5rem; font-weight: 800; color: var(--black); margin-bottom: 12px; }
.modal-box p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }

/* ============================================
   DESIGNER ENHANCEMENT EFFECTS
   ============================================ */

/* Gradient text utility */
.grad-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--lime) 50%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-teal {
  background: linear-gradient(135deg, var(--primary), var(--lime-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow effects */
.glow-teal { box-shadow: 0 0 30px rgba(0,194,168,0.4), 0 0 60px rgba(0,194,168,0.2); }
.glow-pink { box-shadow: 0 0 30px rgba(255,45,120,0.4), 0 0 60px rgba(255,45,120,0.2); }

/* Decorative section numbers / BIG CHARACTERS */
.section-deco-text {
  position: absolute;
  top: -20px;
  right: 40px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,194,168,0.1);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
  user-select: none;
}

/* Pill tag highlight */
.pill-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--primary-pale), var(--coral-pale));
  border: 1px solid rgba(0,194,168,0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

/* Logo gradient */
.logo .logo-en {
  background: linear-gradient(135deg, var(--primary), var(--lime-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero main copy gradient on em */
.hero-main-copy em {
  background: linear-gradient(135deg, var(--primary) 0%, var(--lime-dark) 60%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-main-copy em::after { display: none; }

/* Section title em gradient */
.section-title em {
  background: linear-gradient(135deg, var(--primary), var(--lime-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Dark bg em stays white/teal */
.section-vision .section-title em,
.section-tsushin .section-title em {
  background: linear-gradient(135deg, var(--primary), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Contact title gradient */
.contact-title {
  background: linear-gradient(135deg, var(--black) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Horizontal divider with gradient */
.grad-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--coral), transparent);
  border: none;
  margin: 0;
}

/* Floating CTA redesign - gradient */
.btn-document {
  background: linear-gradient(135deg, var(--primary), var(--lime-dark)) !important;
  color: var(--black) !important;
  font-weight: 800 !important;
}

/* Nav CTA button redesign */
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--lime-dark)) !important;
  color: var(--black) !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 20px rgba(0,194,168,0.35) !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--coral), #ff6b9d) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 30px rgba(255,45,120,0.35) !important;
}

/* Vision card emoji glow */
.vision-emoji {
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(0,194,168,0.4));
}

/* About card icon ring */
.about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-pale), #e0f7f4);
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 18px;
  box-shadow: 0 0 0 8px rgba(0,194,168,0.06), 0 4px 16px rgba(0,194,168,0.15);
}

/* Skill tag active glow */
.skill-tag {
  transition: var(--transition);
  position: relative;
}
.skill-tag:hover {
  box-shadow: 0 4px 20px rgba(0,194,168,0.2);
  transform: translateY(-2px);
}

/* CTA section coral highlight for strong */
.section-contact .contact-desc strong {
  background: linear-gradient(135deg, var(--coral), #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Numbers section value glow */
.number-value {
  text-shadow: 0 0 40px rgba(0,194,168,0.6);
}

/* Strength item hover border accent */
.strength-item {
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.strength-item:hover {
  border-left-color: var(--primary);
}

/* Timeline year text color fix for gradient bg */
.timeline-year {
  background: linear-gradient(90deg, var(--primary), var(--lime-dark));
  color: var(--black);
}

/* Bento overlay gradient upgraded */
.bento-overlay {
  background: linear-gradient(to top, rgba(10,10,15,0.75) 0%, rgba(0,194,168,0.1) 70%, transparent 100%);
}

/* Gallery caption upgraded */
.gm-caption {
  background: linear-gradient(to top, rgba(10,10,15,0.8) 0%, transparent 100%);
}

/* Story card border-top accent line */
.story-photo-card {
  border-top: 3px solid transparent;
  background-clip: padding-box;
}
.story-photo-card:nth-child(1) { border-top-color: var(--primary); }
.story-photo-card:nth-child(2) { border-top-color: var(--coral); }
.story-photo-card:nth-child(3) { border-top-color: var(--accent2); }

/* Fee card highlight upgraded */
.fee-card-highlight {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-ultra), #f0fff9);
  box-shadow: 0 8px 40px rgba(0,194,168,0.15);
}

/* SNS cards hover color */
.sns-card.tiktok:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.15); border-top-color: #010101; }
.sns-card.youtube:hover { box-shadow: 0 12px 40px rgba(255,0,0,0.12); }
.sns-card.instagram:hover { box-shadow: 0 12px 40px rgba(225,48,108,0.12); }

/* Animated teal dot for section-label */
.section-label::before {
  background: linear-gradient(135deg, var(--primary), var(--lime-dark));
  box-shadow: 0 0 8px rgba(0,194,168,0.5);
}

/* Ticker text upgraded – staggered color */
.ticker span:nth-child(4n+1) { color: var(--white); }
.ticker span:nth-child(4n+2) { color: rgba(255,255,255,0.75); }
.ticker span:nth-child(4n+3) { color: rgba(200,255,248,0.9); }

/* Hero badge pulse animation */
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,194,168,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(0,194,168,0); }
}
.hero-badge {
  animation: badgePulse 2.5s ease infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .daycourse-home-inner,
  .tsushin-inner { gap: 40px; }
  .hero-split { gap: 40px; padding: 0 24px; }
  .hero-img-grid { height: 420px; }
  .appeal-bento { grid-template-rows: 200px 200px; }
  .vision-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .page-subnav { top: 72px; }
  .page-subnav-inner { padding: 10px 16px; gap: 10px; }
  .page-subnav a { padding: 9px 14px; font-size: 0.78rem; }

  .hero { padding: 80px 0 60px; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
  .hero-image-side { order: -1; }
  .hero-img-grid { height: 280px; grid-template-columns: 1.5fr 1fr; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }
  .hero-img-badge { bottom: -12px; left: -12px; padding: 12px 16px; }
  .hib-val { font-size: 1.6rem; }

  .vision-cards { grid-template-columns: 1fr 1fr; }

  .appeal-bento { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
  .bento-large { grid-column: 1 / 3; grid-row: 1; }
  .bento-tall { grid-column: 1; grid-row: 2; }

  .stories-photo-row { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .gm-wide { grid-column: 1 / 3; }
  .gm-tall { grid-row: auto; }

  .about-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .curriculum-timeline { grid-template-columns: 1fr; }
  .fees-grid { grid-template-columns: 1fr; }
  .support-list { grid-template-columns: 1fr; }
  .sns-grid { grid-template-columns: 1fr; }
  .cta-cards { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 12px 10px; font-size: 0.78rem; }

  .daycourse-home-inner,
  .tsushin-inner { grid-template-columns: 1fr; gap: 40px; }
  .daycourse-home-img-wrap img,
  .tsushin-img-wrap img { height: 280px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 24px; }
  .floating-cta { bottom: 16px; right: 12px; gap: 8px; }
  .floating-btn { padding: 10px 14px; font-size: 0.75rem; }
  .strength-item { flex-direction: column; gap: 14px; }
  .strength-num { font-size: 2.5rem; }
  .curriculum-hero-img { height: 200px; }
  .curriculum-img-overlay { padding: 24px; }
  .curriculum-img-overlay span { font-size: 1rem; }
  .page-shell { padding: 120px 16px 56px; }
  .page-hero-inner { padding: 32px 24px; border-radius: 24px; }
  .page-actions { flex-direction: column; }
  .page-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.9rem; }
  .numbers-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .hero-main-copy { font-size: 2.5rem; }
  .vision-cards { grid-template-columns: 1fr; }
  .page-title { font-size: 2.1rem; }
}
