/* ═══════════════════════════════════════════════
   CUK School — Design System
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── Tokens ──────────────────────────────────── */
:root {
  /* Color */
  --c-primary:    #1a3578;
  --c-primary-l:  #2a4a9a;
  --c-primary-d:  #0f2050;
  --c-accent:     #c0392b;
  --c-accent-l:   #e74c3c;
  --c-gold:       #d4a843;
  --c-success:    #27ae60;
  --c-warning:    #f39c12;
  --c-error:      #e74c3c;

  --c-text:       #1e272e;
  --c-text-2:     #4a5568;
  --c-text-3:     #8395a7;
  --c-border:     #e2e8f0;
  --c-bg:         #ffffff;
  --c-bg-sub:     #f5f6f8;
  --c-bg-mute:    #edf0f4;

  /* Typography */
  --f-ko:  'Noto Sans KR', sans-serif;
  --f-en:  'Outfit', 'Noto Sans KR', sans-serif;
  --f-display: var(--f-ko);

  --fs-xs:  0.75rem;   /* 12px */
  --fs-sm:  0.8125rem; /* 13px */
  --fs-base:0.9375rem; /* 15px */
  --fs-md:  1.0625rem; /* 17px */
  --fs-lg:  1.25rem;   /* 20px */
  --fs-xl:  1.5rem;    /* 24px */
  --fs-2xl: 1.875rem;  /* 30px */
  --fs-3xl: 2.25rem;   /* 36px */
  --fs-4xl: 3rem;      /* 48px */

  --lh-tight: 1.3;
  --lh-base:  1.65;
  --lh-loose: 1.85;

  /* Spacing (4px base) */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
  --sp-8: 2rem;     --sp-10:2.5rem;   --sp-12:3rem;
  --sp-16:4rem;     --sp-20:5rem;     --sp-24:6rem;

  /* Radius */
  --r-sm: 6px;   --r-md: 10px;  --r-lg: 14px;
  --r-xl: 20px;  --r-full: 9999px;

  /* Shadow */
  --sh-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-md:  0 4px 12px rgba(0,0,0,.07);
  --sh-lg:  0 10px 30px rgba(0,0,0,.1);
  --sh-xl:  0 20px 50px rgba(0,0,0,.12);

  /* Transition */
  --tr-fast: 150ms ease;
  --tr-base: 250ms ease;
  --tr-slow: 400ms ease;

  /* Layout */
  --container: 1200px;
  --nav-h: 64px;
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-ko);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body[data-lang="en"] { font-family: var(--f-en); }
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--tr-fast); }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--f-display); line-height: var(--lh-tight); }

/* ── Skip Link ───────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: var(--sp-4);
  background: var(--c-primary); color: #fff;
  padding: var(--sp-2) var(--sp-4); border-radius: var(--r-sm);
  z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: var(--sp-2); }

/* ── Focus ───────────────────────────────────── */
:focus { outline: none; }
.user-tabbing :focus {
  outline: 2px solid var(--c-primary-l);
  outline-offset: 2px;
}

/* ── Container ───────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); }

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr-base), box-shadow var(--tr-base);
}
.navbar.is-scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: var(--sh-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo img { height: 44px; transition: height var(--tr-base); }
.navbar.is-scrolled .nav-logo img { height: 38px; }

/* Menu */
.nav-menu {
  display: flex; align-items: center; gap: var(--sp-1);
}
.nav-link {
  display: inline-flex; align-items: center;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm); font-weight: 500;
  border-radius: var(--r-sm);
  transition: background var(--tr-fast), color var(--tr-fast);
  white-space: nowrap; color: var(--c-text-2);
}
.nav-link:hover, .nav-link:focus-visible { background: var(--c-bg-sub); color: var(--c-primary); }
.nav-link.is-active {
  color: var(--c-primary); font-weight: 700;
}
.nav-link.is-active::after {
  content: ''; position: absolute; bottom: -2px; left: var(--sp-3); right: var(--sp-3);
  height: 2px; background: var(--c-primary); border-radius: 1px;
}
.nav-link { position: relative; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm); font-weight: 500;
  border-radius: var(--r-sm);
  background: none; border: none;
  color: var(--c-text-2);
  transition: background var(--tr-fast), color var(--tr-fast);
  position: relative;
}
.dropdown-trigger:hover, .dropdown-trigger:focus-visible { background: var(--c-bg-sub); color: var(--c-primary); }
.dropdown-trigger.is-active { color: var(--c-primary); font-weight: 700; }
.dropdown-trigger.is-active::after {
  content: ''; position: absolute; bottom: -2px; left: var(--sp-3); right: var(--sp-3);
  height: 2px; background: var(--c-primary); border-radius: 1px;
}
.dropdown-arrow {
  font-size: 10px; transition: transform var(--tr-fast);
  display: inline-block;
}
.dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-panel {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--r-md); box-shadow: var(--sh-lg);
  min-width: 200px; padding: var(--sp-2) 0;
  z-index: 50;
}
.dropdown:hover .dropdown-panel,
.dropdown.is-open .dropdown-panel { display: block; }
.dropdown-panel a {
  display: block; padding: var(--sp-2) var(--sp-5);
  font-size: var(--fs-sm); color: var(--c-text-2);
  transition: background var(--tr-fast), color var(--tr-fast);
}
.dropdown-panel a:hover, .dropdown-panel a:focus-visible {
  background: var(--c-bg-sub); color: var(--c-primary);
}

/* Lang Toggle */
.lang-switch {
  display: flex; gap: 2px;
  background: var(--c-bg-mute); border-radius: var(--r-sm);
  padding: 2px; margin-left: var(--sp-3);
}
.lang-btn {
  padding: 3px 10px; font-size: var(--fs-xs); font-weight: 600;
  border: none; border-radius: 4px;
  background: transparent; color: var(--c-text-3);
  transition: all var(--tr-fast);
}
.lang-btn.is-active { background: var(--c-primary); color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; padding: var(--sp-2); background: none; border: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--c-text); border-radius: 2px;
  transition: transform var(--tr-base), opacity var(--tr-base);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, rgba(26,53,120,.88), rgba(15,32,80,.75)),
              url('hero-bg.jpg') center/cover no-repeat;
  background-color: var(--c-primary);
  color: #fff; text-align: center;
  padding: var(--sp-24) 0 calc(var(--sp-24) + 20px);
  position: relative;
}
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px; background: linear-gradient(to top, var(--c-bg-sub), transparent);
}
.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: var(--sp-1) var(--sp-5); border-radius: var(--r-full);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 3px;
  margin-bottom: var(--sp-6);
}
.hero h1 {
  font-size: var(--fs-4xl); font-weight: 800;
  margin-bottom: var(--sp-2);
}
.hero h2 {
  font-size: var(--fs-xl); font-weight: 300; opacity: .92;
  margin-bottom: var(--sp-3);
}
.hero__sub { font-size: var(--fs-base); opacity: .8; }
.hero__tagline {
  margin: var(--sp-8) auto; max-width: 640px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: var(--sp-5) var(--sp-6);
}
.hero__tagline-main {
  font-size: var(--fs-lg); font-weight: 700; margin-bottom: var(--sp-2);
}
.hero__tagline-desc { font-size: var(--fs-sm); opacity: .8; }
.hero__actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; margin-top: var(--sp-10); }

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2); padding: var(--sp-3) var(--sp-8);
  font-size: var(--fs-sm); font-weight: 600;
  border-radius: var(--r-md); border: 2px solid transparent;
  transition: all var(--tr-base); text-decoration: none;
  white-space: nowrap; cursor: pointer;
}
.btn:focus-visible { box-shadow: 0 0 0 3px rgba(26,53,120,.3); }
.btn--primary {
  background: #fff; color: var(--c-primary);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.btn--ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn--solid {
  background: var(--c-primary); color: #fff;
  box-shadow: var(--sh-sm);
}
.btn--solid:hover { background: var(--c-primary-l); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--outline {
  background: transparent; color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline:hover { background: var(--c-primary); color: #fff; }
.btn--lg { padding: var(--sp-4) var(--sp-10); font-size: var(--fs-base); }
.btn--block { width: 100%; }

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
.section { padding: var(--sp-20) 0; }
.section--alt { background: var(--c-bg-sub); }
.section__header { text-align: center; margin-bottom: var(--sp-12); }
.section__title {
  font-size: var(--fs-2xl); font-weight: 800;
  color: var(--c-primary); margin-bottom: var(--sp-2);
}
.section__sub { font-size: var(--fs-md); color: var(--c-text-3); font-weight: 400; }

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
  color: #fff; text-align: center; padding: var(--sp-16) 0;
  position: relative;
}
.page-header::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 40px; background: linear-gradient(to top, var(--c-bg-sub), transparent);
}
.page-header__title { font-size: var(--fs-3xl); font-weight: 800; margin-bottom: var(--sp-2); }
.page-header__sub { font-size: var(--fs-md); opacity: .85; font-weight: 400; }

/* ═══════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════ */
.card {
  background: var(--c-bg); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); overflow: hidden;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.card:hover {
  transform: translateY(-4px); box-shadow: var(--sh-lg);
}
.card__body { padding: var(--sp-6); }

/* Info Card */
.info-card {
  display: flex; gap: var(--sp-5); align-items: flex-start;
  background: var(--c-bg); padding: var(--sp-6);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.info-card__icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.info-card__label { font-size: var(--fs-sm); font-weight: 700; color: var(--c-primary); margin-bottom: var(--sp-1); }
.info-card__value { font-size: var(--fs-sm); color: var(--c-text-2); line-height: var(--lh-loose); }

/* Program Card */
.program-card {
  background: var(--c-bg); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); overflow: hidden;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.program-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.program-card__head {
  padding: var(--sp-6); color: #fff; text-align: center;
}
.program-card__head--danbi  { background: linear-gradient(135deg, #e67e22, #f39c12); }
.program-card__head--hanbyul { background: linear-gradient(135deg, #2980b9, #6c5ce7); }
.program-card__head--gaon   { background: linear-gradient(135deg, #00b894, #00cec9); }
.program-card__name { font-size: var(--fs-xl); font-weight: 800; }
.program-card__level { font-size: var(--fs-sm); opacity: .9; margin-top: 2px; }
.program-card__body { padding: var(--sp-6); }
.program-card__section { margin-bottom: var(--sp-5); }
.program-card__section:last-child { margin-bottom: 0; }
.program-card__section h4 {
  font-size: var(--fs-sm); font-weight: 700; color: var(--c-primary);
  margin-bottom: var(--sp-2);
  text-transform: uppercase; letter-spacing: .5px;
}
.program-card__list { list-style: none; }
.program-card__list li {
  padding: var(--sp-1) 0 var(--sp-1) var(--sp-5);
  position: relative; font-size: var(--fs-sm); color: var(--c-text-2);
  line-height: var(--lh-loose);
}
.program-card__list li::before {
  content: ''; position: absolute; left: 0; top: .7em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-accent);
}
.program-card__age {
  display: inline-block; margin-top: var(--sp-2);
  background: rgba(255,255,255,.2); padding: 2px 12px;
  border-radius: var(--r-full); font-size: var(--fs-xs); font-weight: 600;
}
.program-card__footer {
  padding: 0 var(--sp-6) var(--sp-6);
}
.program-card__link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: var(--fs-sm); font-weight: 600; color: var(--c-primary);
}
.program-card__link:hover { text-decoration: underline; }
.program-card__link::after { content: '→'; }

/* Step Card */
.step-card {
  background: var(--c-bg); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); padding: var(--sp-8);
  text-align: center;
  transition: transform var(--tr-base);
}
.step-card:hover { transform: translateY(-3px); }
.step-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  font-size: var(--fs-md); font-weight: 700;
  margin-bottom: var(--sp-4);
}
.step-card__title { font-size: var(--fs-md); font-weight: 700; color: var(--c-primary); margin-bottom: var(--sp-1); }
.step-card__desc { font-size: var(--fs-sm); color: var(--c-text-3); }

/* Notice Card */
.notice-card {
  background: var(--c-bg); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); overflow: hidden;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.notice-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.notice-card__img {
  height: 180px; background: var(--c-bg-mute);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.notice-card__img img { width: 100%; height: 100%; object-fit: cover; }
.notice-card__img .notice-icon { font-size: 2.5rem; }
.notice-card__body { padding: var(--sp-5); }
.notice-card__body h4 { font-size: var(--fs-base); font-weight: 600; margin: var(--sp-2) 0; }
.notice-card__body p { font-size: var(--fs-sm); color: var(--c-text-3); margin-bottom: var(--sp-2); }
.notice-card__date { font-size: var(--fs-xs); color: var(--c-text-3); }
.notice-link { font-size: var(--fs-sm); font-weight: 600; color: var(--c-primary); }
.notice-link:hover { text-decoration: underline; }

/* Badge */
.badge {
  display: inline-block; padding: 2px 10px;
  border-radius: var(--r-full); font-size: var(--fs-xs);
  font-weight: 700; letter-spacing: .3px;
}
.badge--new     { background: var(--c-error); color: #fff; }
.badge--event   { background: var(--c-warning); color: #fff; }
.badge--recruit { background: var(--c-success); color: #fff; }
.badge--info    { background: var(--c-primary-l); color: #fff; }

/* Feature Box */
.feature-box {
  background: var(--c-bg-sub); padding: var(--sp-6);
  border-radius: var(--r-lg);
  transition: transform var(--tr-base);
}
.feature-box:hover { transform: translateY(-2px); }
.feature-box__icon { font-size: 1.5rem; margin-bottom: var(--sp-3); }
.feature-box__title { font-size: var(--fs-sm); font-weight: 700; color: var(--c-primary); margin-bottom: var(--sp-2); }
.feature-box__desc { font-size: var(--fs-sm); color: var(--c-text-2); }

/* ═══════════════════════════════════════════════
   GRIDS
   ═══════════════════════════════════════════════ */
.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto-fill { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

/* ═══════════════════════════════════════════════
   MISSION BLOCK
   ═══════════════════════════════════════════════ */
.mission-block {
  max-width: 820px; margin: 0 auto var(--sp-12);
  background: var(--c-bg); padding: var(--sp-8) var(--sp-10);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  border-left: 5px solid var(--c-accent);
  font-size: var(--fs-md); line-height: var(--lh-loose);
}

/* ═══════════════════════════════════════════════
   TABLES
   ═══════════════════════════════════════════════ */
.table-wrap {
  background: var(--c-bg); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); overflow: hidden;
  margin-bottom: var(--sp-8);
}
.table-wrap h3 {
  padding: var(--sp-6) var(--sp-6) var(--sp-4);
  font-size: var(--fs-lg); font-weight: 700; color: var(--c-primary);
}
table { width: 100%; border-collapse: collapse; }
thead th {
  background: var(--c-primary); color: #fff;
  padding: var(--sp-3) var(--sp-5); text-align: left;
  font-size: var(--fs-sm); font-weight: 600;
}
tbody td {
  padding: var(--sp-3) var(--sp-5);
  border-bottom: 1px solid var(--c-border);
  font-size: var(--fs-sm);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--c-bg-sub); }
.table-note {
  padding: var(--sp-2) var(--sp-6) var(--sp-5);
  font-size: var(--fs-xs); color: var(--c-text-3);
}
.table-note::before { content: '※ '; color: var(--c-accent); }

/* ═══════════════════════════════════════════════
   CTA BLOCK
   ═══════════════════════════════════════════════ */
.cta-block {
  text-align: center; background: var(--c-bg);
  padding: var(--sp-12); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.cta-block__title { font-size: var(--fs-xl); font-weight: 700; color: var(--c-primary); margin-bottom: var(--sp-3); }
.cta-block__desc { font-size: var(--fs-base); color: var(--c-text-2); margin-bottom: var(--sp-6); }
.cta-block__hint { font-size: var(--fs-xs); color: var(--c-text-3); margin-top: var(--sp-4); }

/* ═══════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════ */
.form-section {
  background: var(--c-bg); padding: var(--sp-12);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
}
.form-section__title {
  text-align: center; font-size: var(--fs-xl); font-weight: 700;
  color: var(--c-primary); margin-bottom: var(--sp-2);
}
.form-section__desc { text-align: center; color: var(--c-text-3); margin-bottom: var(--sp-8); }
.form-inner { max-width: 640px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-group { margin-bottom: var(--sp-5); }
.form-group label {
  display: block; margin-bottom: var(--sp-1);
  font-size: var(--fs-sm); font-weight: 600; color: var(--c-text);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--c-border); border-radius: var(--r-md);
  font: inherit; font-size: var(--fs-sm);
  background: var(--c-bg-sub);
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(26,53,120,.1);
  background: var(--c-bg); outline: none;
}

/* ═══════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: var(--sp-8); left: 50%;
  transform: translate(-50%, 20px); opacity: 0;
  padding: var(--sp-4) var(--sp-8); border-radius: var(--r-md);
  font-size: var(--fs-sm); font-weight: 600;
  z-index: 9999; box-shadow: var(--sh-lg);
  transition: opacity var(--tr-base), transform var(--tr-base);
  max-width: 90vw;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.toast--success { background: var(--c-success); color: #fff; }
.toast--error { background: var(--c-error); color: #fff; }

/* ═══════════════════════════════════════════════
   NOTICES EMPTY
   ═══════════════════════════════════════════════ */
.empty-state {
  text-align: center; padding: var(--sp-16) var(--sp-6);
  background: var(--c-bg-sub); border-radius: var(--r-lg);
  color: var(--c-text-3);
}
.empty-state__icon { font-size: 2.5rem; margin-bottom: var(--sp-4); }
.empty-state__sub { font-size: var(--fs-xs); margin-top: var(--sp-3); }

/* ═══════════════════════════════════════════════
   DIRECTIONS
   ═══════════════════════════════════════════════ */
.directions { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
.directions__list {
  background: var(--c-bg); padding: var(--sp-6); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.directions__item {
  display: flex; gap: var(--sp-4); padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-border);
  font-size: var(--fs-sm); color: var(--c-text-2);
}
.directions__item:last-child { border-bottom: none; }
.directions__icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.directions__map {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm);
}
.directions__map iframe { display: block; }

/* ═══════════════════════════════════════════════
   SCHEDULE BOX
   ═══════════════════════════════════════════════ */
.schedule-highlight {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-6); background: var(--c-bg);
  padding: var(--sp-8); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); margin-bottom: var(--sp-10);
}
.schedule-highlight__icon { font-size: 3rem; }
.schedule-highlight__day { font-size: var(--fs-lg); font-weight: 700; color: var(--c-primary); }
.schedule-highlight__time { font-size: var(--fs-xl); font-weight: 800; color: var(--c-accent); }
.schedule-highlight__desc { font-size: var(--fs-sm); color: var(--c-text-3); }

.schedule-cta {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
  padding: var(--sp-12); border-radius: var(--r-lg);
  text-align: center; color: #fff;
}
.schedule-cta p { margin-bottom: var(--sp-6); font-size: var(--fs-base); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--c-primary-d); color: #fff;
  padding: var(--sp-16) 0 var(--sp-6);
}
.footer__grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--sp-10); margin-bottom: var(--sp-10);
}
.footer__logo { height: 56px; border-radius: var(--r-md); margin-bottom: var(--sp-3); }
.footer__name { font-size: var(--fs-sm); opacity: .8; margin: 2px 0; }
.footer h4 {
  font-size: var(--fs-sm); font-weight: 700; color: var(--c-gold);
  margin-bottom: var(--sp-4); text-transform: uppercase; letter-spacing: .5px;
}
.footer a { color: rgba(255,255,255,.75); font-size: var(--fs-sm); }
.footer a:hover { color: var(--c-gold); }
.footer li { margin-bottom: var(--sp-2); }
.footer p { font-size: var(--fs-sm); opacity: .7; margin: var(--sp-1) 0; }
.footer__bottom {
  text-align: center; padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__bottom p { font-size: var(--fs-xs); opacity: .45; }

/* ═══════════════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤960px)
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--c-bg); border-top: 1px solid var(--c-border);
    box-shadow: var(--sh-lg); padding: var(--sp-4);
    max-height: calc(100dvh - var(--nav-h)); overflow-y: auto;
  }
  .nav-menu.is-open { display: flex; }
  .nav-link, .dropdown-trigger { padding: var(--sp-3) var(--sp-4); font-size: var(--fs-base); width: 100%; text-align: left; }
  .lang-switch { margin: var(--sp-3) var(--sp-4) 0; }
  .dropdown-panel {
    position: static; box-shadow: none; border: none;
    padding: 0 0 0 var(--sp-6); background: var(--c-bg-sub); border-radius: var(--r-md);
  }
  .dropdown-panel a { font-size: var(--fs-sm); }

  .hero h1 { font-size: var(--fs-3xl); }
  .hero h2 { font-size: var(--fs-lg); }
  .hero { padding: var(--sp-16) 0 calc(var(--sp-16) + 20px); }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .directions { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .schedule-highlight { flex-direction: column; text-align: center; }

  .form-section { padding: var(--sp-8) var(--sp-5); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤600px)
   ═══════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --nav-h: 56px; }
  .container { padding: 0 var(--sp-4); }
  .hero h1 { font-size: var(--fs-2xl); }
  .hero h2 { font-size: var(--fs-md); }
  .hero { padding: var(--sp-12) 0 calc(var(--sp-12) + 20px); }
  .hero__actions { flex-direction: column; }
  .btn--primary, .btn--ghost, .btn--solid, .btn--outline { width: 100%; }
  .section { padding: var(--sp-12) 0; }
  .page-header { padding: var(--sp-10) 0; }
  .page-header__title { font-size: var(--fs-2xl); }
  .section__title { font-size: var(--fs-xl); }
  .mission-block { padding: var(--sp-6); font-size: var(--fs-base); }
  .cta-block { padding: var(--sp-8); }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; }
  .footer { padding: var(--sp-10) 0 var(--sp-4); }
}
