:root {
    --bg: #ffffff;
    --bg-soft: #f6f8fb;
    --bg-section: #fafbfc;
    --navy: #143c62;
    --navy-2: #23588a;
    --navy-hover: #0e2c4a;
    --gold: #c69337;
    --gold-bg: #eef2f8;
    --ink: #0c1a2b;
    --ink-2: #2b3a4a;
    --ink-dim: #6b7785;
    --line: #e6ebf2;
    --line-2: #eef1f6;
    --shadow-sm: 0 1px 2px rgba(15, 30, 50, 0.04);
    --shadow-md: 0 8px 24px -8px rgba(15, 30, 50, 0.10);
    --shadow-lg: 0 24px 60px -20px rgba(15, 30, 50, 0.18);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  .container { max-width: 1440px; margin: 0 auto; padding: 0 56px; }
  .container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

  /* ============ SNU TOP BANNER ============ */
  .snu-banner {
    background: var(--navy);
    color: #fff;
    padding: 10px 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  .snu-banner .gold { color: var(--gold); font-weight: 700; }
  .snu-banner a { text-decoration: underline; text-underline-offset: 2px; opacity: 0.85; }
  .snu-banner a:hover { opacity: 1; }

  /* ============ NAV ============ */
  nav.topnav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .topnav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo-text {
    font-weight: 800;
    font-size: 20px;
    color: var(--ink);
    letter-spacing: -0.025em;
  }
  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    font-size: 15px;
    font-weight: 500;
  }
  .nav-links a {
    color: var(--ink-2);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--navy); }
  .nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .nav-link {
    color: var(--ink-2);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 14px;
  }
  .cta-nav {
    background: var(--navy);
    color: #fff;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
  }
  .cta-nav:hover { background: var(--navy-hover); }

  /* ============ HERO ============ */
  .hero {
    padding: 88px 56px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
  }
  .pill {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold-bg);
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
  }
  h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 24px;
  }
  h1 .accent { color: var(--gold); font-weight: 700; }
  .lede {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-dim);
    margin-bottom: 36px;
    max-width: 540px;
    word-break: keep-all;
  }
  .actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--navy);
    color: #fff;
    padding: 16px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--navy);
  }
  .btn-primary:hover {
    background: var(--navy-hover);
    transform: translateY(-1px);
  }
  .btn-primary::after { content: '→'; font-size: 18px; }
  .btn-ghost {
    color: var(--ink);
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--ink); }

  .trust-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  .trust-stat { display: flex; flex-direction: column; }
  .stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .stat-num .unit {
    font-size: 18px;
    color: var(--gold);
    font-weight: 700;
    margin-left: 2px;
  }
  .stat-label {
    font-size: 13px;
    color: var(--ink-dim);
    margin-top: 8px;
  }

  .hero-visual { position: relative; }
  .hero-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  }
  .hero-inset {
    position: absolute;
    top: 24px;
    right: -36px;
    width: 180px;
    aspect-ratio: 1 / 1.1;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    border: 4px solid #fff;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  }
  .hero-img:hover, .hero-inset:hover { transform: translateY(-2px); }
  .hero-img.swapping { opacity: 0.4; transform: scale(0.97); }
  .hero-inset.swapping { opacity: 0.4; transform: scale(0.92) rotate(-3deg); }
  .swap-hint {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
    pointer-events: auto;
  }
  .swap-hint:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }
  .swap-hint .swap-icon { font-size: 14px; }
  .pro-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--navy);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  .floating-card {
    position: absolute;
    bottom: -32px;
    left: -32px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    border-radius: 14px;
    width: 280px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .float-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
  }
  .float-text .float-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
  }
  .float-text .float-sub {
    font-size: 12px;
    color: var(--ink-dim);
  }

  /* ============ SECTION COMMON ============ */
  section { padding: 120px 0; }
  section.alt { background: var(--bg-section); }
  .section-head { text-align: center; margin-bottom: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
  .eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  h2 .accent { color: var(--gold); }
  .section-lede {
    font-size: 17px;
    color: var(--ink-dim);
    line-height: 1.65;
  }

  /* ============ 3기둥 PILLARS ============ */
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .pillar-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s;
  }
  .pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
  }
  .pillar-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-bg);
    color: var(--navy);
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
  }
  .pillar-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--navy);
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .pillar-card h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .pillar-card p {
    font-size: 15px;
    color: var(--ink-dim);
    line-height: 1.7;
  }
  .pillar-card .check-list {
    margin-top: 20px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .pillar-card .check-list li {
    font-size: 14px;
    color: var(--ink-2);
    padding-left: 24px;
    position: relative;
  }
  .pillar-card .check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
  }

  /* ============ PHILOSOPHY ============ */
  .philosophy-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
  }
  .philosophy-headline {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .philosophy-headline .accent { color: var(--gold); }
  .philosophy-body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--ink-dim);
    margin-bottom: 32px;
  }
  .philosophy-points {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .philosophy-points li {
    font-size: 14px;
    line-height: 1.6;
  }
  .philosophy-points li strong {
    display: block;
    font-size: 15px;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 6px;
  }
  .philosophy-points li span {
    color: var(--ink-dim);
  }

  /* ============ PROGRAMS ============ */
  .programs-pull {
    text-align: center;
    margin-bottom: 48px;
    padding: 28px 32px;
    background: var(--bg-soft);
    border-left: 3px solid var(--gold);
    border-radius: 0 14px 14px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .programs-pull .quote {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .programs-pull .quote .accent { color: var(--gold); }
  .programs-pull .body {
    font-size: 14px;
    color: var(--ink-dim);
    line-height: 1.65;
  }
  .programs-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .program-featured {
    background: linear-gradient(135deg, #fff 0%, var(--bg-soft) 100%);
    border: 1.5px solid var(--gold);
    border-radius: 18px;
    padding: 36px 32px;
    position: relative;
    transition: all 0.3s;
  }
  .program-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -16px rgba(198, 147, 55, 0.2);
  }
  .program-featured .director-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
  }
  .program-featured .director-tag::before {
    content: '★';
    color: var(--gold);
  }
  .program-featured h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    color: var(--navy);
  }
  .program-featured h3 .brand {
    color: var(--gold);
    margin-right: 6px;
  }
  .program-featured .pf-sub {
    font-size: 14px;
    color: var(--ink-dim);
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .program-featured .pf-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .program-featured .pf-points li {
    font-size: 14px;
    color: var(--ink-2);
    padding-left: 22px;
    position: relative;
    line-height: 1.55;
  }
  .program-featured .pf-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
  }

  .programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .program-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--navy);
  }
  .program-card .pc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-soft);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: -0.02em;
  }
  .program-card .pc-body { flex: 1; }
  .program-card .ta-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    text-transform: uppercase;
  }
  .program-card .subject {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
  }
  .program-card h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .program-card .topics {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }
  .program-card .topics li {
    font-size: 13px;
    color: var(--ink-dim);
    padding-left: 14px;
    position: relative;
  }
  .program-card .topics li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
  }
  .program-card .meta {
    padding-top: 16px;
    border-top: 1px solid var(--line-2);
    font-size: 12px;
    color: var(--ink-dim);
  }
  .program-card .meta strong {
    color: var(--navy);
    font-weight: 700;
  }

  /* ============ BOOKS & EXAMS ============ */
  .be-block { margin-bottom: 64px; }
  .be-block:last-child { margin-bottom: 0; }
  .be-subhead {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .be-subhead::before,
  .be-subhead::after {
    content: '';
    flex: 0 0 40px;
    height: 1px;
    background: var(--line);
  }
  .books-marquee {
    overflow: hidden;
    position: relative;
    margin: 0 -32px;
    padding: 8px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .books-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee 40s linear infinite;
  }
  .books-track:hover { animation-play-state: paused; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 8px)); }
  }
  .book-card {
    flex: 0 0 180px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
  }
  .book-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
  }
  .book-cover {
    aspect-ratio: 3/4;
    background: #f4f4f4;
    border-radius: 4px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px -8px rgba(20, 60, 98, 0.2), inset -3px 0 0 rgba(0,0,0,0.08);
  }
  .book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .book-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
  }
  .book-cover::after {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 0;
    width: 6px;
    background: linear-gradient(90deg, rgba(0,0,0,0.25), transparent);
  }
  .book-cover .brand {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
  }
  .book-cover .title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    z-index: 1;
  }
  /* Brand-specific covers — mimic actual publisher palettes */
  .book-cover.bc-gan {
    background: linear-gradient(155deg, #d4471f 0%, #b13317 60%, #8e2510 100%);
  }
  .book-cover.bc-gan .brand { color: #ffd9a8; }
  .book-cover.bc-sang {
    background: linear-gradient(155deg, #2a4d8f 0%, #1e3a72 100%);
  }
  .book-cover.bc-sang .brand { color: #ffd57a; }
  .book-cover.bc-batang {
    background: linear-gradient(155deg, #f1ece1 0%, #ddd3bf 100%);
    color: #2a1d10;
  }
  .book-cover.bc-batang .brand { color: #8a4a1f; }
  .book-cover.bc-batang::before { background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%); }
  .book-cover.bc-igam {
    background: linear-gradient(155deg, #1a2540 0%, #0f1828 100%);
  }
  .book-cover.bc-igam .brand { color: #e23b4a; }
  .book-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    text-align: center;
    letter-spacing: -0.01em;
  }

  .exams-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
  }
  .exam-card {
    background: linear-gradient(155deg, var(--bg-soft) 0%, #fff 100%);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
  }
  .exam-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--navy);
  }
  .exam-cover {
    aspect-ratio: 16 / 11;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--line);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    gap: 8px;
  }
  .exam-cover .pub {
    font-size: 11px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.15em;
  }
  .exam-cover .ex-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .exam-cover.exam-cover-img {
    padding: 0;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f7f7f7;
  }
  .exam-cover.exam-cover-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
  }
  .exam-cover .ex-tag {
    font-size: 12px;
    color: var(--ink-dim);
    margin-top: 4px;
  }
  .exam-card h4 {
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .exam-card p {
    font-size: 13px;
    color: var(--ink-dim);
    text-align: center;
    line-height: 1.6;
  }
  .be-note {
    text-align: center;
    font-size: 14px;
    color: var(--ink-dim);
    margin-top: 28px;
    line-height: 1.65;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ============ FACILITY GALLERY ============ */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 240px 240px 240px;
    gap: 12px;
  }
  .gallery-grid figure {
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-soft);
    position: relative;
  }
  .gallery-grid figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .gallery-grid figure:hover img { transform: scale(1.04); }
  .gallery-grid .g-1 { grid-column: span 2; grid-row: span 2; }
  .gallery-grid .g-2 { grid-column: span 2; grid-row: span 1; }
  .gallery-grid .g-3 { grid-column: span 1; grid-row: span 1; }
  .gallery-grid .g-4 { grid-column: span 1; grid-row: span 1; }
  .gallery-grid .g-5 { grid-column: span 2; grid-row: span 1; }
  .gallery-grid .g-6 { grid-column: span 2; grid-row: span 1; }
  figcaption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
  }

  /* ============ FACILITY SPECS ============ */
  .specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .spec-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s;
  }
  .spec-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
  }
  .spec-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }
  .spec-card h3 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.35;
  }
  .spec-card p {
    font-size: 14px;
    color: var(--ink-dim);
    line-height: 1.7;
  }

  /* ============ D-DAY COUNTDOWN — CINEMATIC ============ */
  .dday-panel {
    background:
      radial-gradient(circle at 85% 25%, rgba(240, 169, 60, 0.18) 0%, transparent 55%),
      radial-gradient(circle at 10% 110%, rgba(240, 169, 60, 0.08) 0%, transparent 50%),
      linear-gradient(135deg, #2c3e58 0%, #3d5070 50%, #324560 100%);
    border-radius: 20px;
    padding: 56px 48px 48px;
    margin-bottom: 56px;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 24px 60px -24px rgba(50, 70, 100, 0.4);
  }
  .dday-panel::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(240, 169, 60, 0.6) 50%, transparent 100%);
  }
  .dday-stamp {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #f0a93c;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
  }
  .dday-stamp::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #f0a93c;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(240, 169, 60, 0.22), 0 0 24px rgba(240, 169, 60, 0.6);
    animation: dday-pulse 1.6s ease-in-out infinite;
  }
  @keyframes dday-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.7); opacity: 0.55; }
  }
  .dday-title {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
  }
  .dday-title .gold {
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
  }
  .dday-clock {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 32px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
  }
  .dday-unit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
      transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .dday-panel.in-view .dday-unit { opacity: 1; transform: translateY(0); }
  .dday-panel.in-view .dday-unit:nth-child(1) { transition-delay: 0.10s; }
  .dday-panel.in-view .dday-unit:nth-child(2) { transition-delay: 0.25s; }
  .dday-panel.in-view .dday-unit:nth-child(3) { transition-delay: 0.40s; }
  .dday-panel.in-view .dday-unit:nth-child(4) { transition-delay: 0.55s; }
  .num-text {
    font-size: 88px;
    font-weight: 700;
    color: #fff;
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
    display: inline-block;
    transition: opacity 0.2s ease;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  }
  .dday-unit.tick .num-text {
    animation: digit-fade 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  @keyframes digit-fade {
    0%   { opacity: 1; transform: translateY(0); }
    40%  { opacity: 0.25; transform: translateY(-6px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .dday-label {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(240, 169, 60, 0.35);
    width: 100%;
    min-width: 140px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }
  .dday-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 36px;
    position: relative;
    z-index: 2;
  }
  .benefit-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(240, 169, 60, 0.35);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
  }
  .benefit-pill:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(240, 169, 60, 0.6);
  }
  .benefit-pill .bp-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(240, 169, 60, 0.15);
    color: #f0a93c;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .benefit-pill .bp-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .benefit-pill .bp-label {
    font-size: 11px;
    font-weight: 700;
    color: #f0a93c;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .benefit-pill .bp-value {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.01em;
  }
  .benefit-pill .bp-value strong {
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.02em;
  }

  .dday-footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
    line-height: 1.7;
  }
  .dday-footer strong { color: #f0a93c; font-weight: 700; }

  /* ============ EXPANSION TEASER ============ */
  .expansion-section {
    background: linear-gradient(180deg, #fff 0%, var(--bg-section) 100%);
    position: relative;
    overflow: hidden;
  }
  .expansion-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--navy);
    padding: 8px 16px 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
  }
  .expansion-tag .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f0a93c;
    box-shadow: 0 0 0 3px rgba(240, 169, 60, 0.18);
    animation: ex-pulse 2s ease-out infinite;
  }
  @keyframes ex-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
  }
  .preview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    margin-bottom: 56px;
  }
  .preview-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg-soft);
    cursor: default;
  }
  .preview-card.tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }
  .preview-card .preview-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease, filter 0.5s ease;
    filter: blur(2px) saturate(0.95);
  }
  .preview-card:hover .preview-img {
    filter: blur(0) saturate(1);
    transform: scale(1.02);
  }
  .preview-veil {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 50%, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 70%, rgba(255,255,255,0.7) 100%),
      linear-gradient(180deg, rgba(15,30,50,0.05) 0%, rgba(15,30,50,0.25) 100%);
    transition: opacity 0.5s ease;
  }
  .preview-card:hover .preview-veil { opacity: 0.3; }
  .preview-card.reveal .preview-img { filter: none; }
  .preview-card.reveal .preview-veil {
    background: linear-gradient(180deg, rgba(15,30,50,0) 55%, rgba(15,30,50,0.45) 100%);
  }
  .preview-card.reveal .preview-stamp {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }
  .preview-stamp {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    border: 1px solid var(--line);
  }
  .preview-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    z-index: 2;
  }
  .preview-caption .hint {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-top: 2px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .expansion-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
  }
  .ex-feat {
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid var(--line);
  }
  .ex-feat:last-child { border-right: none; }
  .ex-feat .num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .ex-feat .label {
    font-size: 12px;
    color: var(--ink-dim);
    letter-spacing: 0.02em;
  }
  .ex-feat-urgent .num {
    color: #f0a93c;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .urgent-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f0a93c;
    box-shadow: 0 0 0 4px rgba(240, 169, 60, 0.18);
    animation: ex-pulse 1.4s ease-out infinite;
  }

  .expansion-cta {
    text-align: center;
  }
  .expansion-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
  }
  .expansion-cta a:hover {
    background: var(--navy-hover);
    transform: translateY(-1px);
  }
  .expansion-cta a::after { content: '→'; font-size: 16px; }
  .expansion-cta .small {
    display: block;
    font-size: 12px;
    color: var(--ink-dim);
    margin-top: 14px;
  }

  /* ============ 5F SEAT RESERVATION TEASER ============ */
  .seatres-section {
    background: #fff;
    padding-top: 0;
  }
  .seatres-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .seatres-copy h2 { text-align: left; margin-top: 14px; }
  .seatres-copy .section-lede { text-align: left; margin-top: 16px; max-width: none; }
  .seatres-points {
    list-style: none;
    margin: 24px 0 28px;
    padding: 0;
    display: flex; flex-direction: column; gap: 10px;
  }
  .seatres-points li {
    position: relative;
    padding-left: 22px;
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.65;
  }
  .seatres-points li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold, #c69337);
  }
  .seatres-points strong { color: var(--ink, #0c1a2b); font-weight: 700; }

  .seatres-status {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    background: #f6f8fb;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--ink-2);
  }
  .seatres-status__label {
    background: var(--navy, #143c62);
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 4px 9px;
    border-radius: 6px;
    text-transform: uppercase;
  }
  .seatres-status__time { color: var(--ink, #0c1a2b); font-weight: 600; }
  .seatres-status__count {
    margin-left: auto;
    font-variant-numeric: tabular-nums;
    color: var(--navy, #143c62);
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .seatres-status--open .seatres-status__label {
    background: var(--gold, #c69337);
  }
  .seatres-status--closed .seatres-status__label {
    background: #6b7785;
  }

  .seatres-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
  .seatres-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
  }
  .seatres-btn--locked {
    background: #e6ebf2;
    color: #6b7785;
    cursor: not-allowed;
    pointer-events: none;
  }
  .seatres-btn--open {
    background: var(--navy, #143c62);
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
  }
  .seatres-btn--open:hover {
    background: var(--navy-hover, #0e2c4a);
    transform: translateY(-1px);
  }
  .seatres-btn--open::after { content: '→'; font-size: 16px; }
  .seatres-btn--closed {
    background: var(--navy, #143c62);
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
  }
  .seatres-btn--closed:hover {
    background: var(--navy-hover, #0e2c4a);
    transform: translateY(-1px);
  }
  .seatres-btn--closed::after { content: '→'; font-size: 16px; }
  .seatres-cta__note {
    font-size: 12px;
    color: var(--ink-dim, #6b7785);
  }

  .seatres-preview {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #fafbfd;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px -28px rgba(15, 30, 50, 0.18);
  }
  .seatres-preview__frame {
    position: relative;
    aspect-ratio: 745 / 725;
    overflow: hidden;
  }
  .seatres-preview__frame img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 12px;
    filter: saturate(0.95);
  }
  .seatres-preview__veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,30,50,0) 60%, rgba(15,30,50,0.12) 100%);
    pointer-events: none;
  }
  .seatres-preview__stamp {
    position: absolute;
    top: 18px; left: 18px;
    background: rgba(255,255,255,0.94);
    color: var(--navy, #143c62);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    border: 1px solid var(--line);
  }

  @media (max-width: 980px) {
    .seatres-grid { grid-template-columns: 1fr; gap: 32px; }
    .seatres-preview { order: -1; }
  }

  /* ============ APP SHOWCASE ============ */
  .app-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
  }
  .app-content h2 { text-align: left; }
  .app-features {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .app-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .app-feat-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-bg);
    color: var(--navy);
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .app-feat-text strong {
    display: block;
    font-size: 16px;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 4px;
  }
  .app-feat-text span {
    font-size: 14px;
    color: var(--ink-dim);
    line-height: 1.6;
  }
  .app-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .phone-frame {
    width: 300px;
    aspect-ratio: 2 / 3;
    border-radius: 28px;
    background: #1a1a1a;
    padding: 10px;
    box-shadow: var(--shadow-lg);
  }
  .phone-frame img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
    object-position: top center;
    background: #fff;
  }
  .phone-frame.back {
    transform: rotate(-4deg) translateX(-16px);
    opacity: 0.85;
    z-index: 0;
  }
  .phone-frame.front {
    transform: rotate(4deg) translateX(16px);
    z-index: 1;
  }

  /* ============ WEEKLY MENTORING ============ */
  .mentor-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
  }
  .mentor-side {
    position: sticky;
    top: 100px;
  }
  .mentor-meta {
    background: linear-gradient(155deg, var(--navy) 0%, #1a4870 100%);
    color: #fff;
    padding: 36px 32px;
    border-radius: 18px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
  }
  .mentor-meta::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,169,60,0.18) 0%, transparent 65%);
  }
  .mentor-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #f0a93c;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .mentor-meta h3 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .mentor-meta p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
  }
  .mentor-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mentor-bullets li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    color: var(--ink-2);
    display: flex;
    gap: 8px;
    align-items: baseline;
  }
  .mentor-bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f0a93c;
    flex-shrink: 0;
    transform: translateY(-2px);
  }
  .mentor-bullets li strong {
    color: var(--ink);
    font-weight: 700;
    margin-right: 6px;
  }
  .mentor-flow {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mentor-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 28px;
    transition: all 0.3s;
  }
  .mentor-step:hover {
    border-color: var(--gold);
    transform: translateX(4px);
    box-shadow: 0 12px 28px -16px rgba(20, 60, 98, 0.18);
  }
  .step-num {
    font-size: 20px;
    font-weight: 800;
    color: #f0a93c;
    letter-spacing: 0.04em;
    line-height: 1;
    padding-top: 4px;
  }
  .step-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }
  .step-body p {
    font-size: 14px;
    color: var(--ink-dim);
    line-height: 1.7;
  }
  .step-body p strong {
    color: var(--ink);
    font-weight: 700;
  }

  /* ============ SYSTEM FLOW ============ */
  .system-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    counter-reset: step;
  }
  .system-step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    position: relative;
    counter-increment: step;
  }
  .system-step::before {
    content: counter(step, decimal-leading-zero);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
  }
  .system-step h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 12px 0 8px;
    letter-spacing: -0.02em;
  }
  .system-step p {
    font-size: 14px;
    color: var(--ink-dim);
    line-height: 1.65;
  }

  /* ============ DIRECTOR ============ */
  .director-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  .director-photo {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    background-image: linear-gradient(135deg, #1c4474, #143c62), url('../OAP_0110.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  .director-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../OAP_0110.jpg') center/cover;
    border-radius: 16px;
    opacity: 1;
  }
  .director-content h2 { text-align: left; }
  .director-quote {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin: 24px 0 32px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
  }
  .director-creds {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    background: var(--bg-soft);
    padding: 24px;
    border-radius: 14px;
  }
  .director-cred {
    display: flex;
    flex-direction: column;
  }
  .director-cred .cred-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
  }
  .director-cred .cred-label {
    font-size: 13px;
    color: var(--ink-dim);
    margin-top: 4px;
  }

  /* ============ CAFÉ ============ */
  .cafe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .cafe-content h2 { text-align: left; }
  .cafe-callout {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 14px 20px;
    border-radius: 14px;
    margin-top: 28px;
    box-shadow: var(--shadow-sm);
  }
  .cafe-callout .big {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .cafe-callout .big .unit { color: var(--gold); font-size: 18px; margin-left: 2px; }
  .cafe-callout .desc {
    font-size: 13px;
    color: var(--ink-dim);
    line-height: 1.5;
  }
  .cafe-callout .desc strong { color: var(--ink); font-weight: 700; display: block; margin-bottom: 2px; }

  .cafe-credit {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 28px;
    padding: 16px 18px;
    background: var(--bg-soft);
    border-radius: 12px;
  }
  .cafe-credit .badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .cafe-credit .text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-dim);
  }
  .cafe-credit .text strong {
    color: var(--ink);
    font-weight: 700;
  }

  .menu-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    position: relative;
  }
  .menu-card::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 14px;
  }
  .menu-header {
    text-align: center;
    margin-bottom: 24px;
  }
  .menu-header .label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
  }
  .menu-header .title {
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-top: 8px;
  }
  .menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
  }
  .menu-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .menu-list li:last-child { border-bottom: none; }
  .menu-list .num {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    min-width: 24px;
  }
  .menu-list .name { flex: 1; }
  .menu-list .tag {
    font-size: 11px;
    color: var(--ink-dim);
    background: var(--bg-soft);
    padding: 3px 8px;
    border-radius: 999px;
  }
  .menu-footer {
    text-align: center;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--ink-dim);
    letter-spacing: 0.05em;
  }
  .menu-footer strong {
    color: var(--gold);
    font-weight: 700;
  }

  /* ============ BY THE NUMBERS — ALL 1's ============ */
  .ones-block {
    margin-bottom: 40px;
  }
  .ones-subhead {
    text-align: center;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-dim);
    letter-spacing: 0.05em;
  }
  .ones-subhead strong {
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  .ones-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .one-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 40px 32px 36px;
    color: var(--ink);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
      border-color 0.3s ease,
      box-shadow 0.3s ease;
  }
  .one-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
  }
  .one-card.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .one-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .one-card.in-view::before { opacity: 1; }
  .one-card .one-stamp {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 10px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    z-index: 2;
  }
  .one-card .one-num {
    font-size: 92px;
    font-weight: 800;
    color: #f0a93c;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: baseline;
    gap: 4px;
    position: relative;
    z-index: 2;
  }
  .one-card .one-num .grade {
    font-size: 24px;
    color: var(--ink-dim);
    font-weight: 700;
    margin-left: 2px;
    opacity: 1;
  }
  .one-card .one-label {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    color: var(--navy);
    position: relative;
    z-index: 2;
  }
  .one-card .one-sub {
    font-size: 13px;
    color: var(--ink-dim);
    line-height: 1.55;
    position: relative;
    z-index: 2;
  }
  .ones-divider {
    text-align: center;
    margin: 0 0 24px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-dim);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .ones-divider::before, .ones-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
  }

  /* ============ BY THE NUMBERS ============ */
  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .num-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      border-color 0.3s ease,
      box-shadow 0.3s ease;
  }
  .num-card.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .num-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
  }
  .num-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  }
  .num-card.in-view::before { width: 100%; }
  .num-card .label-top {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.18em;
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  .num-card .big {
    font-size: 56px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-variant-numeric: tabular-nums;
  }
  .num-card .big .unit {
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .num-card .desc {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .num-card .sub {
    font-size: 13px;
    color: var(--ink-dim);
    line-height: 1.55;
  }

  /* ============ SCHOOL CHIPS ============ */
  .chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 56px;
  }
  .chip {
    background: #fff;
    border: 1.5px solid var(--line);
    color: var(--navy);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .chip.gold { background: var(--navy); color: #fff; border-color: var(--navy); }

  /* ============ STORIES ============ */
  .story-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .story-img {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    background-image: url('../home-8.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
  }
  .story-quote {
    position: relative;
    font-size: 24px;
    line-height: 1.6;
    color: var(--ink-2);
    font-weight: 500;
    letter-spacing: -0.018em;
    margin-bottom: 28px;
    padding: 4px 0 4px 24px;
    border-left: 3px solid var(--gold);
    word-break: keep-all;
  }
  .story-quote::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: 14px;
    color: var(--gold);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    opacity: 0.14;
    pointer-events: none;
  }
  .story-quote .accent { color: var(--gold); font-weight: 700; }
  .story-quote .accent { color: var(--gold); }
  .story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0a93c 0%, #d68a1e 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px -8px rgba(214, 138, 30, 0.45);
  }
  .story-badge strong { font-weight: 800; }
  .story-meta {
    font-size: 14px;
    color: var(--ink-dim);
    margin-bottom: 32px;
  }
  .story-meta strong {
    color: var(--ink);
    font-weight: 700;
  }
  .story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 24px;
    background: var(--bg-soft);
    border-radius: 14px;
  }
  .story-stat { text-align: center; }
  .story-stat .num {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
  }
  .story-stat .label {
    font-size: 12px;
    color: var(--ink-dim);
    margin-top: 4px;
  }

  .alumni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
  }
  .alumni-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all 0.3s;
  }
  .alumni-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -20px rgba(20, 60, 98, 0.18);
    border-color: rgba(240, 169, 60, 0.4);
  }
  .alumni-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .alumni-univ {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .alumni-year {
    font-size: 11px;
    color: var(--ink-dim);
    background: var(--bg-soft);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.04em;
  }
  .alumni-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
  }
  .alumni-name .dept {
    font-size: 14px;
    color: var(--ink-dim);
    font-weight: 500;
    margin-left: 8px;
  }
  .alumni-quote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-2);
    border-left: 2px solid var(--gold);
    padding-left: 16px;
    margin: 4px 0 8px;
  }
  .alumni-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .alumni-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .alumni-stat .v {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
  }
  .alumni-stat .l {
    font-size: 11px;
    color: var(--ink-dim);
    letter-spacing: 0.02em;
  }
  .alumni-stat + .alumni-stat {
    padding-left: 12px;
    border-left: 1px solid var(--line);
  }
  .alumni-card-more {
    background: var(--bg-soft);
    border: 1px dashed var(--line);
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    transition: all 0.3s;
  }
  .alumni-card-more:hover {
    border-color: var(--gold);
    background: #fff;
    transform: translateY(-3px);
  }
  .more-dots {
    font-size: 56px;
    line-height: 0.6;
    color: var(--gold);
    letter-spacing: 0.08em;
    font-weight: 800;
  }
  .more-text {
    font-size: 15px;
    color: var(--ink-dim);
    line-height: 1.6;
  }
  .more-text strong {
    color: var(--ink);
    font-weight: 700;
  }

  .big-il .il {
    color: #f0a93c;
    font-size: 1.4em;
    font-weight: 900;
    line-height: 0.9;
    display: inline-block;
    transform: translateY(0.06em);
    letter-spacing: -0.04em;
  }
  .big-il { color: var(--ink); }

  /* ============ TESTIMONIALS ============ */
  .testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
  }
  .testimonial-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    max-width: 380px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
  }
  .testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
  }
  .testimonial-card.featured {
    flex: 1 1 calc(66.666% - 12px);
    max-width: 800px;
    background: linear-gradient(135deg, #fff 0%, var(--bg-soft) 100%);
    border-color: var(--gold);
  }
  .testimonial-card.featured blockquote {
    font-size: 16px;
    line-height: 1.75;
  }
  .repeat-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    letter-spacing: 0.05em;
  }
  .reviews-cta {
    text-align: center;
    margin-top: 48px;
    font-size: 14px;
    color: var(--ink-dim);
  }
  .reviews-cta a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .reviews-cta a:hover { color: var(--gold); }
  .testimonial-source {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .testimonial-source::before {
    content: 'N';
    width: 18px;
    height: 18px;
    background: #03c75a;
    color: #fff;
    border-radius: 4px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
  }
  .stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-2);
    margin-bottom: 18px;
    flex: 1;
  }
  .review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
  }
  .review-tag {
    font-size: 11px;
    color: var(--ink-2);
    background: var(--bg-soft);
    padding: 4px 10px;
    border-radius: 999px;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 700;
  }
  .author-name { font-size: 14px; font-weight: 700; color: var(--ink); }
  .author-role { font-size: 12px; color: var(--ink-dim); margin-top: 2px; }

  /* ============ LOCATION ============ */
  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: stretch;
  }
  .location-info {
    padding: 12px 0;
  }
  .location-info h2 { text-align: left; }
  .location-detail {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
  }
  .loc-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
  .loc-item:last-child { border-bottom: none; }
  .loc-label {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.1em;
    padding-top: 4px;
  }
  .loc-content {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.65;
  }
  .loc-content strong {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .loc-content span {
    font-size: 13px;
    color: var(--ink-dim);
  }
  .map-placeholder {
    background: var(--bg-soft);
    border-radius: 16px;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    display: block;
    border: 1px solid var(--line);
  }
  .map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .map-placeholder a {
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  .map-pin {
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(20, 60, 98, 0.4);
    position: relative;
  }
  .map-pin::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid var(--navy);
  }
  .map-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--ink);
    font-weight: 600;
  }

  /* ============ FAQ ============ */
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    transition: color 0.2s;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    color: var(--gold);
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item summary:hover { color: var(--navy); }
  .faq-answer {
    padding: 0 0 24px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-dim);
  }

  /* ============ CTA / CONTACT ============ */
  .cta-section {
    background: var(--bg-section);
    padding: 100px 0;
  }
  .cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .cta-section h2 .accent { color: var(--gold); }
  .cta-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .cta-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.6;
  }
  .cta-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
  }

  .form-card {
    background: #fff;
    color: var(--ink);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
  }
  .form-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .form-card .form-sub {
    font-size: 14px;
    color: var(--ink-dim);
    margin-bottom: 28px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
  .form-field { display: flex; flex-direction: column; }
  .form-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 6px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 12px 14px;
    font-size: 15px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    color: var(--ink);
    transition: border-color 0.2s;
    background: #fff;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--navy);
  }
  .form-field.full { grid-column: span 2; margin-bottom: 12px; }
  .form-submit {
    width: 100%;
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.2s;
    font-family: inherit;
  }
  .form-submit:hover { background: var(--navy-hover); }
  .form-note {
    font-size: 12px;
    color: var(--ink-dim);
    text-align: center;
    margin-top: 16px;
  }

  /* ============ FOOTER ============ */
  footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 64px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-col h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ink);
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-col a {
    font-size: 14px;
    color: var(--ink-dim);
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--navy); }
  .footer-brand p {
    font-size: 14px;
    color: var(--ink-dim);
    line-height: 1.6;
    margin-top: 12px;
    max-width: 360px;
  }
  .footer-tagline {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gold);
    font-style: italic;
  }
  .footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--ink-dim);
    flex-wrap: wrap;
    gap: 12px;
  }

  /* ============ FULLY BOOKED — MINIMAL FLOATING PILL ============ */
  .fully-booked {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border: 1px solid var(--line);
    box-shadow: 0 12px 40px -12px rgba(15, 30, 50, 0.18);
    border-radius: 999px;
    padding: 10px 10px 10px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: calc(100vw - 32px);
  }
  .fb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1fa971;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 0 1px rgba(31, 169, 113, 0.25), 0 0 12px rgba(31, 169, 113, 0.45);
  }
  .fb-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #1fa971;
    opacity: 0.3;
    animation: fb-pulse 2s ease-out infinite;
  }
  @keyframes fb-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
  }
  .fb-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    white-space: nowrap;
  }
  .fb-text strong {
    font-weight: 700;
    color: var(--ink);
  }
  .fb-sep {
    width: 1px;
    height: 14px;
    background: var(--line);
  }
  .fb-btn {
    background: var(--navy);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .fb-btn:hover { background: var(--navy-hover); }
  body { padding-bottom: 90px; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 960px) {
    .container, .container-wide { padding: 0 24px; }
    .topnav-inner { padding: 14px 24px; }
    .nav-links { display: none; }
    .nav-link { display: none; }
    .hero { grid-template-columns: 1fr; padding: 56px 24px 80px; gap: 48px; }
    h1 { font-size: 38px; }
    h2 { font-size: 30px; }
    section { padding: 80px 0; }
    .pillars-grid, .programs-grid, .specs-grid { grid-template-columns: 1fr; }
    .programs-featured { grid-template-columns: 1fr; gap: 14px; }
    .program-featured { padding: 28px 24px; }
    .program-featured h3 { font-size: 24px; }
    .programs-pull { padding: 22px 20px; margin-bottom: 32px; }
    .programs-pull .quote { font-size: 18px; }
    .dday-panel { padding: 28px 20px; }
    .dday-clock { gap: 12px; }
    .num-text { font-size: 38px; }
    .dday-label { font-size: 9px; margin-top: 8px; padding-top: 8px; letter-spacing: 0.15em; }
    .dday-header { margin-bottom: 20px; padding-bottom: 16px; gap: 8px; }
    .dday-title { font-size: 12px; }
    .dday-footer { font-size: 11px; margin-top: 20px; padding-top: 16px; }
    .dday-benefits { grid-template-columns: 1fr; gap: 8px; margin-top: 24px; }
    .benefit-pill { padding: 12px 16px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 200px 200px 200px 200px; }
    .gallery-grid .g-1, .gallery-grid .g-2, .gallery-grid .g-5, .gallery-grid .g-6 { grid-column: span 2; }
    .gallery-grid .g-3, .gallery-grid .g-4 { grid-column: span 1; }
    .system-flow { grid-template-columns: repeat(2, 1fr); }
    .mentor-grid { grid-template-columns: 1fr; gap: 32px; }
    .mentor-side { position: static; }
    .mentor-meta h3 { font-size: 22px; }
    .mentor-step { grid-template-columns: 48px 1fr; padding: 20px; }
    .alumni-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .alumni-card { padding: 24px; gap: 14px; }
    .alumni-name { font-size: 18px; }
    .alumni-name .dept { display: block; margin-left: 0; margin-top: 4px; font-size: 13px; }
    .alumni-quote { font-size: 14px; line-height: 1.65; padding-left: 12px; }
    .alumni-univ { font-size: 11px; }
    .alumni-stats { padding-top: 12px; gap: 8px; }
    .alumni-stat .v { font-size: 14px; }
    .alumni-stat .l { font-size: 10px; }
    .more-dots { font-size: 44px; }
    .more-text { font-size: 13px; }
    .story-feature, .cta-grid, .philosophy-grid, .app-grid, .director-grid, .location-grid, .cafe-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .menu-card { padding: 28px 24px; }
    .numbers-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .num-card { padding: 24px 20px; }
    .num-card .big { font-size: 40px; }
    .num-card .big .unit { font-size: 16px; }
    .ones-row { grid-template-columns: 1fr; gap: 12px; }
    .one-card { padding: 32px 24px; }
    .one-card .one-num { font-size: 68px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .floating-card { left: 0; bottom: -24px; width: 240px; }
    .hero-inset { top: auto; bottom: -32px; right: -12px; width: 130px; border-width: 3px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-field.full { grid-column: span 1; }
    .trust-stats { gap: 24px; }
    .philosophy-headline { font-size: 28px; }
    .philosophy-points { grid-template-columns: 1fr; }
    .director-creds { grid-template-columns: 1fr; }
    .app-mockup { gap: 12px; }
    .phone-frame { width: 220px; }
    .specs-grid { gap: 16px; }
    .exams-grid { grid-template-columns: 1fr; }
    .books-marquee { margin: 0 -24px; }
    .book-card { flex-basis: 150px; padding: 14px; }
    .be-subhead { font-size: 18px; }
    .be-subhead::before, .be-subhead::after { flex-basis: 24px; }
    .preview-grid { grid-template-columns: 1fr; gap: 12px; }
    .preview-card.tall { aspect-ratio: 16/11; }
    .expansion-features { grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px; }
    .ex-feat:nth-child(2) { border-right: none; }
    .ex-feat { padding: 8px; }
    .fully-booked { padding: 8px 8px 8px 16px; gap: 10px; bottom: 16px; }
    .fb-text { font-size: 12px; }
    .fb-btn { padding: 7px 12px; font-size: 12px; }
    body { padding-bottom: 70px; }
  }
  @media (max-width: 540px) {
    .alumni-grid { grid-template-columns: 1fr; }
    .alumni-card { padding: 22px; }
    .alumni-quote { font-size: 14.5px; }
  }

  /* ============ 5F 사전예약 팝업 ============ */
  .resv-popup-backdrop {
    position: fixed; inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
    animation: resvPopupFade 0.35s ease-out;
  }
  .resv-popup-backdrop.hidden { display: none; }
  @keyframes resvPopupFade { from { opacity: 0; } to { opacity: 1; } }

  .resv-popup-card {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    padding: 40px 32px 28px;
    text-align: center;
    animation: resvPopupCardIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  @keyframes resvPopupCardIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  .resv-popup-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    border: none; background: transparent;
    color: #8a96a3;
    font-size: 17px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .resv-popup-close:hover { background: #f0f2f5; color: #143c62; }

  .resv-popup-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: #c69337;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 14px;
    border: 1px solid #c69337;
    border-radius: 100px;
    margin-bottom: 16px;
  }

  .resv-popup-title {
    font-size: 26px;
    font-weight: 700;
    color: #143c62;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .resv-popup-tagline {
    font-size: 15px;
    font-weight: 600;
    color: #5a6878;
    line-height: 1.4;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }

  .resv-popup-desc {
    font-size: 13px;
    color: #5a6878;
    line-height: 1.5;
    margin-bottom: 24px;
    opacity: 0.7;
  }
  .resv-popup-desc strong { color: #d4af37; font-weight: 600; opacity: 1; }

  .resv-popup-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 28px;
    padding: 4px 0;
  }
  .resv-popup-countdown > div {
    text-align: center;
    padding: 6px 0;
    position: relative;
  }
  .resv-popup-countdown > div + div::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: #e8ebee;
  }
  .resv-popup-countdown strong {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: #d4af37;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
  }
  .resv-popup-countdown span {
    display: block;
    font-size: 10px;
    color: #b1b8c1;
    margin-top: 10px;
    letter-spacing: 0.14em;
    font-weight: 500;
  }

  .resv-popup-cta {
    display: block;
    width: 100%;
    background: #143c62;
    color: white;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.15s, transform 0.15s;
    margin-bottom: 16px;
  }
  .resv-popup-cta:hover { background: #1d4f7a; transform: translateY(-1px); }
  .resv-popup-cta:active { transform: translateY(0); }

  .resv-popup-dismiss {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8a96a3;
    cursor: pointer;
    user-select: none;
  }
  .resv-popup-dismiss input { cursor: pointer; accent-color: #143c62; }

  @media (max-width: 480px) {
    .resv-popup-backdrop {
      padding: 12px;
      align-items: flex-end;
      padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
    .resv-popup-card {
      max-width: 100%;
      padding: 32px 24px 24px;
      border-radius: 20px;
      animation: resvPopupSheetIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    @keyframes resvPopupSheetIn {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .resv-popup-close { width: 44px; height: 44px; top: 6px; right: 6px; font-size: 18px; }
    .resv-popup-title { font-size: 22px; }
    .resv-popup-tagline { font-size: 14px; margin-bottom: 4px; }
    .resv-popup-desc { font-size: 12px; margin-bottom: 20px; }
    .resv-popup-countdown { margin-bottom: 22px; }
    .resv-popup-countdown > div { padding: 4px 0; }
    .resv-popup-countdown strong { font-size: 26px; letter-spacing: -0.03em; }
    .resv-popup-countdown span { font-size: 9px; margin-top: 8px; letter-spacing: 0.12em; }
    .resv-popup-cta { padding: 16px; font-size: 14px; margin-bottom: 12px; }
  }
