@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.css");

@font-face {
  font-family: "Paperlogy";
  src: url("fonts/Paperlogy-7Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --navy: #142c45;
  --navy-d: #0b1929;
  --navy-l: #2b4d70;
  --navy-xl: #4a7396;

  --teal: #17645e;
  --teal-d: #0e443f;
  --teal-l: #2a8a82;

  --sand: #f4ecdd;
  --sand-2: #e7d9bc;
  --sand-3: #d3bf9b;
  --sand-soft: #faf5ec;

  --red: #7a1026;

  --ink: #1c2029;
  --ink-2: #4a515e;
  --muted: #8b8f99;
  --line: rgba(20, 44, 69, .12);
  --line-d: rgba(255, 255, 255, .15);
  --white: #fff;

  --ff: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Malgun Gothic", sans-serif;
  --ft: "Paperlogy", "Pretendard Variable", Pretendard, sans-serif;

  --wrap: 1180px;
  --pad: clamp(18px, 4vw, 40px);
  --sec-y: clamp(72px, 9vw, 130px);
  --nav-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 70px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: -.02em;
  overflow-x: hidden;
  word-break: keep-all;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
br.mo { display: none; }
.sec { padding: var(--sec-y) 0; position: relative; overflow: hidden; }
.sec.sand { background: var(--sand); }
.sec.mint { background: #eaf1ec; }
.sec.tight-top { padding-top: clamp(44px, 5vw, 72px); }
.sec.dark { background: var(--navy); color: #fff; }
.sec.teal { background: linear-gradient(165deg, var(--teal-d), var(--teal) 62%, var(--teal-l)); color: #fff; }
.on-dark { color: #fff; }

/* ============ typography ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .2em;
  color: var(--teal); text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 0; height: 2px; background: currentColor; opacity: .9;
  transition: width .9s var(--ease-out) .1s;
}
.in .eyebrow::before, .eyebrow.on::before { width: 34px; }
.dark .eyebrow, .teal .eyebrow { color: var(--sand-2); }

h2.tit {
  font-family: var(--ft);
  font-size: clamp(26px, 4vw, 45px);
  line-height: 1.26; letter-spacing: -.045em; font-weight: 700;
  color: var(--navy);
}
.dark h2.tit, .teal h2.tit { color: #fff; }
h3.sub {
  font-size: clamp(16px, 1.8vw, 19px); font-weight: 700; color: var(--teal);
  margin-top: 14px; letter-spacing: -.035em;
}
.dark h3.sub, .teal h3.sub { color: var(--sand-2); }
.lede { margin-top: 20px; font-size: clamp(15px, 1.5vw, 17px); line-height: 1.88; color: var(--ink-2); max-width: 760px; }
.dark .lede, .teal .lede { color: rgba(255, 255, 255, .8); }
.note { margin-top: 18px; font-size: 13px; line-height: 1.75; color: var(--muted); }
.dark .note, .teal .note { color: rgba(255, 255, 255, .55); }

.sec-head { max-width: 820px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head.center .lede { margin-left: auto; margin-right: auto; }
.sec-head.center .eyebrow::before { display: none; }

/* ============ reveal ============ */
.rv { opacity: 0; transform: translateY(32px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.rv.in { opacity: 1; transform: none; }
.rv-l { opacity: 0; transform: translateX(-38px); transition: opacity .95s var(--ease-out), transform .95s var(--ease-out); }
.rv-l.in { opacity: 1; transform: none; }
.rv-r { opacity: 0; transform: translateX(38px); transition: opacity .95s var(--ease-out), transform .95s var(--ease-out); }
.rv-r.in { opacity: 1; transform: none; }
.rv-s { opacity: 0; transform: scale(.94); transition: opacity .85s var(--ease-out), transform 1.05s var(--ease-out); }
.rv-s.in { opacity: 1; transform: none; }
[data-d="1"] { transition-delay: .08s; }
[data-d="2"] { transition-delay: .16s; }
[data-d="3"] { transition-delay: .24s; }
[data-d="4"] { transition-delay: .32s; }
[data-d="5"] { transition-delay: .40s; }
[data-d="6"] { transition-delay: .48s; }
[data-d="7"] { transition-delay: .56s; }

.wordline { display: block; overflow: hidden; }
.wordline > span { display: block; transform: translateY(115%) rotate(2deg); transition: transform 1s var(--ease-out); }
.in .wordline > span { transform: none; }
.wordline:nth-child(2) > span { transition-delay: .08s; }
.wordline:nth-child(3) > span { transition-delay: .16s; }

/* ============ header ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .5s var(--ease), height .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.solid { background: rgba(255, 255, 255, .94); backdrop-filter: blur(16px); height: 64px; border-color: var(--line); box-shadow: 0 6px 30px rgba(20, 44, 69, .08); }
.nav .wrap { display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 36px; width: auto; transition: height .4s var(--ease); }
.nav.solid .brand img { height: 31px; }
.brand .ld { display: none; }
.nav.solid .brand .lw { display: none; }
.nav.solid .brand .ld { display: block; }

.menu { display: flex; align-items: center; gap: clamp(4px, 1.4vw, 20px); margin-left: auto; }
.menu a {
  position: relative; font-size: 14.5px; font-weight: 600; color: rgba(255, 255, 255, .84);
  padding: 8px 4px; letter-spacing: -.03em; transition: color .3s; white-space: nowrap;
}
.nav.solid .menu a { color: var(--ink-2); }
.menu a::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; width: 0; height: 2px;
  background: var(--sand-2); transform: translateX(-50%); transition: width .38s var(--ease-out);
}
.nav.solid .menu a::after { background: var(--teal); }
.menu a:hover, .menu a.active { color: #fff; }
.nav.solid .menu a:hover, .nav.solid .menu a.active { color: var(--teal); }
.menu a:hover::after, .menu a.active::after { width: calc(100% - 8px); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px;
  font-size: 13.5px; font-weight: 800; background: var(--navy); color: #fff;
  border: 1px solid rgba(255, 255, 255, .26);
  transition: transform .35s var(--ease-out), background .35s, box-shadow .35s, border-color .35s;
  box-shadow: 0 8px 22px rgba(11, 25, 41, .28);
}
.nav.solid .nav-cta { border-color: transparent; }
.nav-cta:hover { transform: translateY(-2px); background: var(--navy-l); box-shadow: 0 12px 28px rgba(11, 25, 41, .34); }
.nav-bar { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: linear-gradient(90deg, var(--teal), var(--teal-l)); }

.burger { display: none; width: 42px; height: 42px; border-radius: 12px; position: relative; margin-left: auto; }
.burger span { position: absolute; left: 11px; width: 20px; height: 2px; background: #fff; transition: .35s var(--ease); }
.nav.solid .burger span { background: var(--navy); }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; width: 14px; }
.burger span:nth-child(3) { top: 27px; }
body.menu-open .burger span { background: #fff; }
body.menu-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 85; background: linear-gradient(165deg, var(--navy-d), var(--navy));
  display: flex; flex-direction: column; justify-content: center; padding: 90px var(--pad) 40px;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
body.menu-open .drawer { opacity: 1; visibility: visible; }
.drawer a {
  font-family: var(--ft); font-size: clamp(24px, 7vw, 34px); color: #fff; padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12); letter-spacing: -.04em;
  opacity: 0; transform: translateY(20px); transition: .6s var(--ease-out);
}
body.menu-open .drawer a { opacity: 1; transform: none; }
.drawer a span { font-family: var(--ff); font-size: 12px; letter-spacing: .16em; color: var(--sand-2); display: block; font-weight: 700; }

/* ============ hero ============ */
.hero { position: relative; min-height: min(100svh, 820px); display: flex; align-items: flex-end; overflow: hidden; background: var(--navy-d); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease); }
.hero-slide.on { opacity: 1; }
.hero-slide i {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.08); transition: transform 4s linear;
}
.hero-slide.on i { transform: scale(1); }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 25, 41, .66) 0%, rgba(11, 25, 41, .2) 30%, rgba(11, 25, 41, .74) 76%, rgba(11, 25, 41, .94) 100%),
    linear-gradient(100deg, rgba(11, 25, 41, .78) 0%, rgba(11, 25, 41, .12) 64%);
}
.hero-grain { position: absolute; inset: 0; opacity: .3; background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 7px); }

.hero-inner { position: relative; z-index: 3; width: 100%; padding-bottom: clamp(40px, 6vw, 70px); padding-top: calc(var(--nav-h) + 24px); }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px; font-size: 11.5px; font-weight: 800; letter-spacing: .22em;
  color: var(--sand-2); padding: 8px 16px; border: 1px solid rgba(231, 217, 188, .4); border-radius: 999px;
  backdrop-filter: blur(6px); background: rgba(11, 25, 41, .3);
}
.hero-kicker b { width: 6px; height: 6px; border-radius: 50%; background: var(--sand-2); animation: blink 2.2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }

.hero h1 {
  font-family: var(--ft); font-weight: 700; color: #fff; margin-top: 24px;
  font-size: clamp(32px, 6.1vw, 66px); line-height: 1.2; letter-spacing: -.05em;
}
.hero h1 em { font-style: normal; color: var(--sand-2); }
.hero-lead { margin-top: 26px; max-width: 620px; font-size: clamp(14.5px, 1.5vw, 17px); line-height: 1.85; color: rgba(255, 255, 255, .84); }
.hero-acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; border-radius: 6px;
  font-size: 14.5px; font-weight: 700; letter-spacing: -.02em; position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), color .35s, background .35s, border-color .35s;
  border: 1px solid transparent;
}
.btn svg { width: 17px; height: 17px; transition: transform .4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-beige { background: var(--sand-2); color: var(--navy); box-shadow: 0 12px 30px rgba(11, 25, 41, .28); }
.btn-beige:hover { transform: translateY(-3px); background: #fff; box-shadow: 0 18px 36px rgba(11, 25, 41, .34); }
.btn-ghost { border-color: rgba(255, 255, 255, .45); color: #fff; background: rgba(255, 255, 255, .08); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: #fff; color: var(--navy); transform: translateY(-3px); border-color: #fff; }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 12px 30px rgba(20, 44, 69, .26); }
.btn-navy:hover { transform: translateY(-3px); background: var(--navy-l); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 12px 30px rgba(23, 100, 94, .28); }
.btn-teal:hover { transform: translateY(-3px); background: var(--teal-l); }
.btn-line { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-line:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn-kakao { background: #fee500; color: #3c1e1e; }
.btn-kakao:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(254, 229, 0, .34); }

/* hero side rail */
.hero-rail {
  position: absolute; right: clamp(14px, 3vw, 44px); top: 50%; transform: translateY(-50%); z-index: 4;
  display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
}
.rail-btn { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .5); font-size: 11px; font-weight: 800; letter-spacing: .12em; transition: color .35s; }
.rail-btn .track { position: relative; width: 3px; height: 34px; background: rgba(255, 255, 255, .26); border-radius: 3px; overflow: hidden; }
.rail-btn .track i { position: absolute; left: 0; right: 0; top: 0; height: 0; background: var(--sand-2); border-radius: 3px; }
.rail-btn.on { color: #fff; }
.rail-btn.on .track { height: 54px; }
.rail-btn.on .track i { animation: railfill 3s linear forwards; }
@keyframes railfill { from { height: 0; } to { height: 100%; } }
.rail-play { margin-top: 6px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .38); display: grid; place-items: center; color: #fff; transition: .35s var(--ease-out); }
.rail-play:hover { background: var(--sand-2); color: var(--navy); border-color: var(--sand-2); transform: scale(1.08); }
.rail-play svg { width: 11px; height: 11px; }

.hero-tags { position: relative; z-index: 3; display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .18); }
.hero-tags span { font-size: 12.5px; font-weight: 700; color: rgba(255, 255, 255, .74); display: flex; align-items: center; gap: 8px; }
.hero-tags span::before { content: ""; width: 5px; height: 5px; background: var(--sand-2); transform: rotate(45deg); }

/* ============ marquee ============ */
.marquee { background: var(--teal); color: #fff; padding: 18px 0; overflow: hidden; line-height: 1.55; }
.marquee-track { display: flex; width: max-content; animation: marq 34s linear infinite; }
.marquee-track span {
  font-family: var(--ft); font-size: 15px; letter-spacing: .1em; white-space: nowrap;
  display: flex; align-items: center; gap: 44px; padding-right: 44px; opacity: .95;
}
.marquee-track span::after { content: "◆"; font-size: 8px; color: var(--sand-2); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ============ stat strip ============ */
.statwrap { background: var(--sand); padding: clamp(44px, 5.5vw, 70px) 0; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.4vw, 16px); }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(22px, 2.6vw, 30px) 16px; text-align: center; position: relative; overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.stat::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0); transition: transform .5s var(--ease-out);
}
.stat:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(20, 44, 69, .1); }
.stat:hover::after { transform: scaleX(1); }
.stat .ic { margin: 0 auto 14px; width: 38px; height: 38px; }
.stat em { display: block; font-style: normal; font-size: 10.5px; font-weight: 800; letter-spacing: .14em; color: var(--teal); }
.stat b { display: block; font-family: var(--ft); font-size: clamp(15px, 1.9vw, 21px); color: var(--navy); margin-top: 9px; letter-spacing: -.04em; white-space: nowrap; }
.stat b small { font-family: var(--ff); font-size: 11.5px; font-weight: 600; color: var(--muted); letter-spacing: 0; margin-left: 3px; }

/* ============ cards ============ */
.grid { display: grid; gap: clamp(14px, 1.6vw, 22px); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g5 { grid-template-columns: repeat(5, 1fr); }
.g6 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(22px, 2.4vw, 32px); overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; z-index: 5;
  background: linear-gradient(90deg, var(--navy), var(--teal)); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.card:hover { transform: translateY(-7px); box-shadow: 0 22px 50px rgba(20, 44, 69, .12); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card h4 { font-size: clamp(16px, 1.8vw, 19px); font-weight: 800; color: var(--navy); letter-spacing: -.04em; margin-top: 18px; }
.card p { margin-top: 10px; font-size: 14.5px; line-height: 1.8; color: var(--ink-2); }
.card .no { position: absolute; right: 20px; top: 14px; font-family: var(--ft); font-size: 32px; color: rgba(20, 44, 69, .08); z-index: 2; }

.card.has-img { padding: 0; }
.card.has-img .photo { border-radius: 0; aspect-ratio: 4/3; }
.card.has-img .cbody { padding: clamp(20px, 2.2vw, 28px); position: relative; }
.card.has-img .cbody h4 { margin-top: 14px; }

.dark .card.solid, .teal .card.solid { background: #fff; border-color: var(--line); backdrop-filter: none; }
.dark .card.solid h4, .teal .card.solid h4 { color: var(--navy); }
.dark .card.solid p, .teal .card.solid p { color: var(--ink-2); }
.dark .card.solid:hover, .teal .card.solid:hover { background: #fff; box-shadow: 0 22px 50px rgba(0, 0, 0, .22); }
.dark .card.solid::after, .teal .card.solid::after { background: linear-gradient(90deg, var(--navy), var(--teal)); }

.dark .card, .teal .card { background: rgba(255, 255, 255, .07); border-color: var(--line-d); backdrop-filter: blur(8px); }
.dark .card h4, .teal .card h4 { color: #fff; }
.dark .card p, .teal .card p { color: rgba(255, 255, 255, .74); }
.dark .card:hover, .teal .card:hover { background: rgba(255, 255, 255, .12); box-shadow: 0 22px 50px rgba(0, 0, 0, .26); }
.dark .card .no, .teal .card .no { color: rgba(255, 255, 255, .14); }
.dark .card::after, .teal .card::after { background: linear-gradient(90deg, var(--sand-2), #fff); }

/* glass icons */
.ic { width: 54px; height: 54px; display: block; }
.ic-sm { width: 42px; height: 42px; }
.ic-xs { width: 26px; height: 26px; }

/* ============ photo / zoom ============ */
.photo { position: relative; overflow: hidden; border-radius: 16px; background: var(--sand-2); cursor: zoom-in; }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.photo:hover img { transform: scale(1.06); }
.photo::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent 46%, rgba(11, 25, 41, .7));
}
.photo figcaption {
  position: absolute; z-index: 3; left: 18px; right: 62px; bottom: 15px;
  font-size: 12.5px; font-weight: 600; color: rgba(255, 255, 255, .92); letter-spacing: -.02em; line-height: 1.6;
}
.photo.nocap::before { opacity: 0; transition: opacity .5s; }
.photo.nocap:hover::before { opacity: 1; }
.zb {
  position: absolute; z-index: 4; right: 13px; bottom: 13px; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; color: #fff;
  background: rgba(11, 25, 41, .46); border: 1px solid rgba(255, 255, 255, .36); backdrop-filter: blur(8px);
  transition: .45s var(--ease-out);
}
.zb svg { width: 16px; height: 16px; }
.photo:hover .zb { background: var(--teal); border-color: var(--teal); transform: rotate(90deg) scale(1.06); border-radius: 50%; }
.photo.tall { aspect-ratio: 3/4; }
.photo.wide { aspect-ratio: 16/9; }
.photo.sq { aspect-ratio: 1/1; }
.photo.box { aspect-ratio: 4/3; }
.photo.fill { aspect-ratio: auto; height: 100%; min-height: 320px; }

.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.split.rev > *:first-child { order: 2; }
.split.stretch { align-items: stretch; }
.split.stretch > div { display: flex; flex-direction: column; justify-content: center; }

/* photo card */
.pcard .photo { aspect-ratio: 4/3; border-radius: 14px; }
.pcard.wide2 { grid-column: span 2; }
.pcard .duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 1.6vw, 22px); }
.pcard b { display: block; margin-top: 15px; font-size: 15.5px; font-weight: 800; color: var(--navy); letter-spacing: -.035em; }
.pcard p { margin-top: 6px; font-size: 13.5px; line-height: 1.72; color: var(--ink-2); }
.pcard em { font-style: normal; display: block; font-size: 10.5px; font-weight: 800; letter-spacing: .15em; color: var(--teal); margin-top: 14px; }
.pcard em + b { margin-top: 5px; }
.dark .pcard b, .teal .pcard b { color: #fff; }
.dark .pcard p, .teal .pcard p { color: rgba(255, 255, 255, .72); }
.dark .pcard em, .teal .pcard em { color: var(--sand-2); }

/* ============ highlight block ============ */
.hl { text-align: center; max-width: 840px; margin: clamp(40px, 5vw, 66px) auto 0; padding: clamp(30px, 4vw, 46px) 12px; position: relative; }
.hl::before, .hl::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: min(100%, 620px); height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hl::before { top: 0; } .hl::after { bottom: 0; }
.dark .hl::before, .dark .hl::after, .teal .hl::before, .teal .hl::after { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent); }
.hl .mark { display: inline-flex; gap: 6px; margin-bottom: 16px; }
.hl .mark i { width: 6px; height: 6px; background: var(--teal); transform: rotate(45deg); }
.dark .hl .mark i, .teal .hl .mark i { background: var(--sand-2); }
.hl-num { display: block; font-family: var(--ft); font-size: clamp(56px, 10vw, 108px); line-height: .95; letter-spacing: -.05em; color: transparent; -webkit-text-stroke: 2px var(--teal); }
.teal .hl-num, .dark .hl-num { -webkit-text-stroke-color: var(--sand-2); }
.hl-num i { font-style: normal; -webkit-text-stroke: 0; color: var(--teal); font-size: .34em; vertical-align: .65em; margin-left: 8px; }
.teal .hl-num i, .dark .hl-num i { color: var(--sand-2); }
.hl h3 { font-family: var(--ft); font-size: clamp(22px, 3.4vw, 36px); color: var(--navy); letter-spacing: -.045em; margin-top: 16px; }
.dark .hl h3, .teal .hl h3 { color: #fff; }
.hl p { margin-top: 13px; font-size: clamp(14px, 1.5vw, 16.5px); line-height: 1.85; color: var(--ink-2); }
.dark .hl p, .teal .hl p { color: rgba(255, 255, 255, .78); }

/* one-line counter headline */
.hl-line { display: flex; align-items: baseline; justify-content: center; flex-wrap: wrap; gap: 4px 14px; margin-top: 6px; }
.hl .hl-line { font-size: clamp(22px, 3.4vw, 36px); }
.cntw { display: inline-flex; align-items: baseline; font-family: var(--ft); line-height: .95; }
.cnt { font-size: clamp(50px, 8.4vw, 96px); letter-spacing: -.05em; color: transparent; -webkit-text-stroke: 2px var(--teal); }
.cntw em { font-style: normal; font-size: clamp(26px, 4vw, 46px); color: var(--teal); letter-spacing: -.04em; margin-left: 2px; }
.dark .cnt, .teal .cnt { -webkit-text-stroke-color: var(--sand-2); }
.dark .cntw em, .teal .cntw em { color: var(--sand-2); }

/* photo with overlay text (bottom aligned) */
.photo.overlay::before { background: linear-gradient(180deg, transparent 34%, rgba(11, 25, 41, .48) 60%, rgba(11, 25, 41, .9) 100%); }
.photo.overlay .po { position: absolute; inset: auto 0 0 0; z-index: 3; text-align: left; padding: clamp(22px, 3vw, 36px); padding-right: clamp(70px, 8vw, 90px); }
.photo.overlay .po h3 { font-family: var(--ft); font-size: clamp(19px, 2.6vw, 30px); color: #fff; letter-spacing: -.045em; line-height: 1.32; }
.photo.overlay .po p { margin-top: 9px; font-size: clamp(12.5px, 1.4vw, 15px); color: rgba(255, 255, 255, .84); line-height: 1.7; }

/* stacked rows */
.stack { display: grid; gap: clamp(12px, 1.6vw, 18px); margin-top: clamp(36px, 4.5vw, 56px); }
.srow { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(18px, 3vw, 44px); align-items: start; padding: clamp(24px, 3vw, 34px); border-radius: 16px; background: #fff; border: 1px solid var(--line); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.sec:not(.sand) .srow { background: var(--sand-soft); }
.srow:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(20, 44, 69, .1); }
.srow .sh { display: flex; gap: 14px; align-items: flex-start; }
.srow .sn2 { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-family: var(--ft); font-size: 13px; color: #fff; background: var(--teal); }
.srow:nth-child(2) .sn2 { background: var(--navy); }
.srow h3 { font-family: var(--ft); font-size: clamp(18px, 2.3vw, 25px); color: var(--navy); letter-spacing: -.045em; line-height: 1.35; }
.srow p { font-size: clamp(14px, 1.5vw, 16px); line-height: 1.85; color: var(--ink-2); }

/* ============ lists ============ */
.flist { margin-top: 26px; display: grid; gap: 2px; }
.flist li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px dashed var(--line); font-size: 15px; line-height: 1.75; color: var(--ink-2); }
.dark .flist li, .teal .flist li { border-color: var(--line-d); color: rgba(255, 255, 255, .76); }
.flist li b { color: var(--navy); font-weight: 800; display: block; margin-bottom: 2px; letter-spacing: -.03em; }
.dark .flist li b, .teal .flist li b { color: #fff; }
.flist .dot { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-size: 10px; font-weight: 900; margin-top: 4px; }
.dark .flist .dot, .teal .flist .dot { background: rgba(255, 255, 255, .18); color: #fff; }

.adv { display: grid; gap: 10px; margin-top: 28px; }
.adv li {
  display: flex; gap: 16px; align-items: center; padding: 15px 20px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line); font-size: 15px; line-height: 1.7; color: var(--ink-2);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.adv li:hover { transform: translateX(6px); box-shadow: 0 14px 32px rgba(20, 44, 69, .09); }
.adv .n {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-content: center; text-align: center; font-family: var(--ft); font-size: 15px; letter-spacing: -.02em; line-height: 1;
}
.adv .n em { font-family: var(--ff); font-style: normal; display: block; font-size: 8.5px; font-weight: 800; letter-spacing: .1em; opacity: .7; margin-bottom: 3px; }
.adv li:nth-child(2) .n { background: var(--teal); }
.adv li:nth-child(4) .n { background: var(--teal); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tags span { font-size: 12.5px; font-weight: 700; padding: 8px 15px; border-radius: 999px; background: rgba(20, 44, 69, .07); color: var(--navy); letter-spacing: -.02em; transition: transform .35s var(--ease-out), background .35s, color .35s; }
.tags span:hover { transform: translateY(-3px); background: var(--navy); color: #fff; }
.dark .tags span, .teal .tags span { background: rgba(255, 255, 255, .14); color: #fff; }
.dark .tags span:hover, .teal .tags span:hover { background: var(--sand-2); color: var(--navy); }

/* ============ recruit table ============ */
.tbl-wrap { margin-top: clamp(30px, 4vw, 46px); border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: 0 18px 46px rgba(20, 44, 69, .08); }
.tbl-scroll { overflow-x: auto; }
table.rt { width: 100%; border-collapse: collapse; min-width: 760px; }
table.rt thead th { background: var(--navy); color: #fff; font-size: 13.5px; font-weight: 700; padding: 17px 14px; white-space: nowrap; }
table.rt thead th:first-child { text-align: left; padding-left: 26px; }
table.rt tbody tr { border-top: 1px solid var(--line); transition: background .35s; }
table.rt tbody tr:nth-child(even) { background: var(--sand-soft); }
table.rt tbody tr:hover { background: rgba(23, 100, 94, .08); }
table.rt td { padding: 18px 14px; font-size: 14px; text-align: center; color: var(--ink-2); vertical-align: middle; }
table.rt td.prog { text-align: left; padding-left: 26px; }
table.rt td.prog b { display: block; font-size: 15.5px; font-weight: 800; color: var(--navy); letter-spacing: -.035em; }
table.rt td.prog em { font-style: normal; font-size: 11.5px; font-weight: 800; color: var(--teal); letter-spacing: .08em; }
table.rt td .pill { display: inline-block; padding: 5px 12px; border-radius: 999px; background: var(--sand-2); font-size: 12.5px; font-weight: 700; color: var(--navy); }
table.rt td .cost { font-family: var(--ft); font-size: 19px; color: var(--red); letter-spacing: -.03em; }
table.rt td .cost small { font-family: var(--ff); font-size: 11.5px; color: var(--muted); font-weight: 600; display: block; letter-spacing: 0; }
.tbl-foot { padding: 14px 20px; background: var(--sand-soft); border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); }

/* ============ faq accordion ============ */
.acc { max-width: 880px; margin: clamp(32px, 4vw, 48px) auto 0; border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q {
  width: 100%; display: flex; align-items: center; gap: 15px; padding: 21px 6px; text-align: left;
  font-size: clamp(14.5px, 1.6vw, 16.5px); font-weight: 700; color: var(--navy); letter-spacing: -.035em; line-height: 1.5;
  transition: color .3s;
}
.acc-q:hover { color: var(--teal); }
.acc-q .qi { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 8px; background: rgba(23, 100, 94, .1); color: var(--teal); display: grid; place-items: center; font-size: 11.5px; font-weight: 900; transition: background .35s, color .35s; }
.acc-item.open .acc-q .qi { background: var(--teal); color: #fff; }
.acc-q .arw { margin-left: auto; flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; color: var(--muted); transition: transform .45s var(--ease-out), color .3s; }
.acc-q .arw svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.acc-item.open .acc-q .arw { transform: rotate(180deg); color: var(--teal); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out); }
.acc-a p { padding: 0 6px 24px 49px; font-size: 14.5px; line-height: 1.9; color: var(--ink-2); }

/* ============ facility · clark bento ============ */
.fac-bento {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, clamp(180px, 19vw, 250px));
  gap: clamp(12px, 1.4vw, 18px); margin-top: clamp(32px, 4vw, 52px);
}
.fac-bento .photo { height: 100%; }
.fb-big { grid-column: 1 / 3; grid-row: 1 / 3; }
.fb-wide { grid-column: 3 / 5; grid-row: 1; }
.fb-sm { grid-column: 3; grid-row: 2; }
.fb-info {
  grid-column: 4; grid-row: 2; border-radius: 16px; padding: clamp(18px, 2vw, 26px);
  background: linear-gradient(150deg, var(--teal-d), var(--teal)); color: #fff;
  display: flex; flex-direction: column; justify-content: space-between; gap: 12px;
}
.fb-info .li { width: 28px; height: 28px; color: var(--sand-2); }
.fb-info em { display: block; font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: .16em; color: var(--sand-2); }
.fb-info b { display: block; font-family: var(--ft); font-size: clamp(17px, 1.9vw, 21px); letter-spacing: -.04em; margin-top: 6px; }
.fb-info p { font-size: 12.5px; line-height: 1.7; color: rgba(255, 255, 255, .8); margin-top: 8px; }
.fac-tag {
  position: absolute; z-index: 3; left: 14px; top: 14px; padding: 5px 11px; border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: .14em; color: var(--navy); background: rgba(255, 255, 255, .88); backdrop-filter: blur(6px);
}
#clark-stay .wk-head h4 { color: var(--navy); }

/* ============ facility · base zones ============ */
.zones { margin-top: clamp(32px, 4vw, 52px); }
.zone-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.zone-tab {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px 11px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; font-size: 13.5px; font-weight: 700; color: var(--ink-2);
  transition: .4s var(--ease-out);
}
.zone-tab i { font-style: normal; font-family: var(--ft); font-size: 11px; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: rgba(20, 44, 69, .07); color: var(--navy); transition: .4s var(--ease-out); }
.zone-tab:hover { border-color: var(--teal); color: var(--teal); }
.zone-tab.on { background: var(--navy); border-color: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(20, 44, 69, .22); }
.zone-tab.on i { background: var(--sand-2); color: var(--navy); }

.zone-stage { margin-top: clamp(22px, 2.6vw, 30px); }
.zone { display: none; grid-template-columns: .78fr 2.22fr; gap: clamp(18px, 2.4vw, 30px); align-items: center; }
.zone.on { display: grid; animation: zoneIn .6s var(--ease-out); }
@keyframes zoneIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.zone-text .zn { font-size: 10.5px; font-weight: 800; letter-spacing: .16em; color: var(--teal); }
.zone-text h4 { font-family: var(--ft); font-size: clamp(19px, 2.3vw, 25px); color: var(--navy); letter-spacing: -.045em; line-height: 1.35; margin-top: 10px; }
.zone-text p { margin-top: 12px; font-size: 14px; line-height: 1.85; color: var(--ink-2); }
.zone-pics { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.4vw, 16px); }
.zone-pics .photo { aspect-ratio: 4/3; }
.zone-pics.one { grid-template-columns: 1fr; }
.zone-pics.one .photo { aspect-ratio: 8/3; }

.safe-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px clamp(18px, 3vw, 36px);
  margin-top: clamp(30px, 3.6vw, 44px); padding: 18px 20px; border-radius: 14px; background: var(--sand-soft); border: 1px solid var(--line);
}
.safe-row li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--navy); letter-spacing: -.03em; }
.safe-row .li { width: 20px; height: 20px; color: var(--teal); }

/* ============ tengong period note ============ */
.tengong-period {
  margin-top: clamp(18px, 2.2vw, 26px); background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(20px, 2.4vw, 26px) clamp(22px, 2.6vw, 30px);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(18px, 3vw, 34px); align-items: center;
}
.tengong-period h4 { display: flex; align-items: center; gap: 10px; font-family: var(--ft); font-size: clamp(15px, 1.8vw, 17px); color: var(--navy); letter-spacing: -.04em; white-space: nowrap; }
.tengong-period h4 .li { width: 22px; height: 22px; color: var(--teal); }
.tengong-period p { font-size: 14px; line-height: 2; color: var(--ink-2); }
.tengong-period b { display: inline-block; min-width: 34px; font-weight: 800; color: var(--teal); }
.tengong-period i { font-style: normal; color: var(--muted); font-size: 12.5px; margin: 0 4px; }

/* ============ program picker ============ */
.pick-wrap { margin-top: clamp(44px, 6vw, 72px); }
.pick-wrap > .eyebrow { margin-bottom: 14px; }
.pick { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(20px, 2.6vw, 34px); align-items: stretch; }
.pick-date { margin-top: 18px; font-family: var(--ft); font-size: clamp(16px, 2vw, 21px); color: var(--navy); letter-spacing: -.035em; }
.pick-sub { margin-top: 6px; font-size: 14px; color: var(--ink-2); }
.pick .cal-tabs { margin-top: 24px; }
.pick .cals { margin-top: 22px; }
.pick .cal-legend { margin-top: 20px; }
.pick .note { margin-top: 12px; }

.fee-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(24px, 2.8vw, 34px); box-shadow: 0 20px 48px rgba(20, 44, 69, .08);
  display: flex; flex-direction: column;
}
.fee-bottom { margin-top: auto; padding-top: 24px; }
.fee-card > em { font-style: normal; font-size: 10.5px; font-weight: 800; letter-spacing: .15em; color: var(--teal); }
.fee { display: flex; align-items: baseline; gap: 7px; margin-top: 12px; }
.fee b { font-family: var(--ft); font-size: clamp(38px, 5vw, 56px); line-height: 1; color: var(--navy); letter-spacing: -.05em; }
.fee b.sm { font-size: clamp(22px, 2.8vw, 30px); }
.fee span { font-size: clamp(14px, 1.6vw, 17px); font-weight: 700; color: var(--navy); }
.fee-early { margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--red); }
.fee-early:empty { display: none; }

.fee-list { margin-top: 24px; border-top: 1px solid var(--line); }
.fee-list > div { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.fee-list dt { flex: 0 0 auto; font-size: 13px; color: var(--muted); font-weight: 600; }
.fee-list dd { font-size: 13.5px; font-weight: 700; color: var(--navy); text-align: right; line-height: 1.6; letter-spacing: -.03em; }
.fee-card .btn { width: 100%; justify-content: center; }
.pick-wrap .cal-legend { margin-top: 22px; }
.fee-foot { margin-top: 14px; font-size: 12.5px; line-height: 1.7; color: var(--muted); }

/* ============ calendar ============ */
.cal-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.cal-tab { padding: 11px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 700; letter-spacing: -.02em; border: 1px solid var(--line); color: var(--ink-2); background: #fff; transition: .4s var(--ease-out); }
.cal-tab:hover { border-color: var(--teal); color: var(--teal); }
.cal-tab.on { background: var(--navy); border-color: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(20, 44, 69, .24); transform: translateY(-2px); }

.cals { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 26px); margin-top: 24px; }
.cal { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(18px, 2vw, 26px); }
.cal h5 { font-family: var(--ft); font-size: 19px; color: var(--navy); letter-spacing: -.04em; margin-bottom: 16px; display: flex; align-items: center; gap: 9px; }
.cal h5 span { font-family: var(--ff); font-size: 11px; font-weight: 800; letter-spacing: .14em; color: var(--teal); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-grid .dw { font-size: 11px; font-weight: 800; color: var(--muted); text-align: center; padding-bottom: 6px; letter-spacing: .04em; }
.cal-grid .dw:first-child { color: var(--red); }
.cal-grid .dw:last-child { color: var(--navy-l); }
.cal-grid .d {
  aspect-ratio: 1/1; display: grid; place-items: center; font-size: 13px; font-weight: 600; color: var(--ink-2);
  border-radius: 9px; transition: background .45s var(--ease), color .45s, transform .45s var(--ease-out), opacity .45s;
  opacity: 0; transform: scale(.6);
}
.cal.shown .d { opacity: 1; transform: none; }
.cal-grid .d.mute { color: #cfcabf; }
.cal-grid .d.range2 { background: rgba(20, 44, 69, .07); color: #9aa0a8; font-weight: 600; }
.cal-grid .d.range { background: #f7dfe4; color: var(--red); font-weight: 800; }
.cal-grid .d.edge { background: var(--red); color: #fff; font-weight: 800; box-shadow: 0 8px 18px rgba(122, 16, 38, .3); }
.cal-legend { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; font-size: 12.5px; color: var(--muted); }
.cal-legend i { display: inline-block; width: 13px; height: 13px; border-radius: 4px; margin-right: 7px; vertical-align: -2px; }

/* ============ schedule ============ */
.sched { margin-top: clamp(28px, 3.5vw, 44px); }
.sched-box { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.dark .sched-box, .teal .sched-box { background: rgba(255, 255, 255, .06); border-color: var(--line-d); }
.sched-rows { display: grid; grid-template-columns: 1fr 1fr; }
.sched-rows.one { grid-template-columns: 1fr; }
.sched-row { display: grid; grid-template-columns: 24px 110px 1fr; gap: 16px; align-items: center; padding: 15px 24px; border-top: 1px solid var(--line); position: relative; transition: background .35s; }
.sched-row:first-child { border-top: 0; }
.sched-rows:not(.one) .sched-row:nth-child(even) { border-left: 1px solid var(--line); }
.sched-row .li { width: 24px; height: 24px; color: var(--teal); transition: color .35s, transform .45s var(--ease-out); }
.sched-row:hover .li { transform: scale(1.12); }
.dark .sched-row .li, .teal .sched-row .li { color: var(--sand-2); }
.dark .sched-row, .teal .sched-row { border-color: var(--line-d); }
.sched-row:hover { background: var(--sand-soft); }
.dark .sched-row:hover, .teal .sched-row:hover { background: rgba(255, 255, 255, .06); }
.sched-row .tm { font-family: var(--ft); font-size: 14px; color: var(--teal); letter-spacing: -.02em; white-space: nowrap; padding-top: 1px; }
.dark .sched-row .tm, .teal .sched-row .tm { color: var(--sand-2); }
.sched-row .ct b { display: block; font-size: 15px; font-weight: 800; color: var(--navy); letter-spacing: -.035em; }
.dark .sched-row .ct b, .teal .sched-row .ct b { color: #fff; }
.sched-row .ct p { font-size: 13.5px; color: var(--ink-2); margin-top: 3px; line-height: 1.65; }
.dark .sched-row .ct p, .teal .sched-row .ct p { color: rgba(255, 255, 255, .68); }
.sched-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--teal); transform: scaleY(0); transform-origin: top; transition: transform .5s var(--ease-out); }
.sched-row:hover::before { transform: scaleY(1); }

.wk-head { display: flex; align-items: center; gap: 14px; margin: clamp(34px, 4vw, 50px) 0 20px; }
.wk-head h4 { font-family: var(--ft); font-size: clamp(19px, 2.4vw, 26px); color: var(--navy); letter-spacing: -.04em; white-space: nowrap; }
.dark .wk-head h4, .teal .wk-head h4 { color: #fff; }
.wk-head span { font-size: 11px; font-weight: 800; letter-spacing: .16em; color: var(--teal); }
.dark .wk-head span, .teal .wk-head span { color: var(--sand-2); }
.wk-head i { flex: 1; height: 1px; background: var(--line); }
.dark .wk-head i, .teal .wk-head i { background: var(--line-d); }

/* include / exclude */
.incl { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 2vw, 22px); margin-top: clamp(28px, 3.4vw, 40px); }
.incl-box { border-radius: 16px; padding: clamp(22px, 2.6vw, 30px); border: 1px solid var(--line); background: #fff; }
.incl-box.no { background: var(--sand-soft); }
.dark .incl-box, .teal .incl-box { background: rgba(255, 255, 255, .07); border-color: var(--line-d); }
.incl-box h5 { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: -.04em; }
.dark .incl-box h5, .teal .incl-box h5 { color: #fff; }
.incl-box p { margin-top: 14px; font-size: 14px; line-height: 1.85; color: var(--ink-2); }
.dark .incl-box p, .teal .incl-box p { color: rgba(255, 255, 255, .72); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.6vw, 20px); margin-top: clamp(30px, 4vw, 48px); }
.step { position: relative; padding: clamp(22px, 2.4vw, 30px); border-radius: 16px; background: #fff; border: 1px solid var(--line); transition: .5s var(--ease-out); }
.dark .step, .teal .step { background: rgba(255, 255, 255, .07); border-color: var(--line-d); }
.step:hover { transform: translateY(-7px); box-shadow: 0 20px 44px rgba(20, 44, 69, .1); }
.step .sn { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-family: var(--ft); font-size: 15px; color: #fff; background: linear-gradient(140deg, var(--navy), var(--teal)); margin-bottom: 16px; box-shadow: 0 8px 18px rgba(20, 44, 69, .24); }
.step h4 { font-size: 16.5px; font-weight: 800; color: var(--navy); letter-spacing: -.04em; }
.dark .step h4, .teal .step h4 { color: #fff; }
.step p { margin-top: 9px; font-size: 14px; line-height: 1.78; color: var(--ink-2); }
.dark .step p, .teal .step p { color: rgba(255, 255, 255, .72); }

/* ============ films ============ */
.films { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); margin-top: clamp(30px, 4vw, 48px); }
.film { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; background: var(--navy); aspect-ratio: 16/10; }
.film img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform 1.1s var(--ease-out), opacity .5s; }
.film:hover img { transform: scale(1.07); opacity: .6; }
.film-in { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; background: linear-gradient(180deg, transparent 35%, rgba(11, 25, 41, .86)); }
.film-in em { font-style: normal; font-size: 10.5px; font-weight: 800; letter-spacing: .18em; color: var(--sand-2); }
.film-in b { font-size: clamp(15px, 1.7vw, 17.5px); font-weight: 800; color: #fff; letter-spacing: -.035em; margin-top: 6px; line-height: 1.5; }
.film-in p { font-size: 12.5px; color: rgba(255, 255, 255, .64); margin-top: 6px; }
.play { position: absolute; z-index: 3; left: 50%; top: 46%; transform: translate(-50%, -50%); width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .15); border: 1px solid rgba(255, 255, 255, .5); backdrop-filter: blur(6px); transition: .5s var(--ease-out); color: #fff; }
.play svg { width: 17px; height: 17px; margin-left: 3px; }
.play::after { content: ""; position: absolute; inset: -9px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3); animation: ring 2.6s ease-out infinite; }
@keyframes ring { 0% { transform: scale(.85); opacity: .8; } 100% { transform: scale(1.25); opacity: 0; } }
.film:hover .play { background: var(--teal); border-color: var(--teal); transform: translate(-50%, -50%) scale(1.1); }
.film-tag { position: absolute; z-index: 3; left: 18px; top: 18px; font-size: 10.5px; font-weight: 800; letter-spacing: .12em; padding: 6px 12px; border-radius: 999px; background: rgba(11, 25, 41, .55); border: 1px solid rgba(255, 255, 255, .3); color: #fff; backdrop-filter: blur(6px); }

.film-feature { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(24px, 4vw, 60px); align-items: center; }
.film-feature .film { aspect-ratio: 16/9; }

/* ============ join / notice ============ */
.notice {
  max-width: 860px; margin: clamp(26px, 3.2vw, 36px) auto 0; background: #fff;
  border: 1px solid var(--line); border-radius: 13px; padding: 15px 24px;
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; text-align: left;
  box-shadow: 0 10px 26px rgba(20, 44, 69, .05);
}
.notice .nh { display: flex; align-items: center; gap: 9px; }
.notice .nh .ic { width: 24px; height: 24px; }
.notice h4 { font-family: var(--ft); font-size: 14px; color: var(--navy); letter-spacing: -.04em; white-space: nowrap; }
.notice p { font-size: 12.5px; line-height: 1.75; color: var(--ink-2); }

.join { text-align: center; }
.join .eyebrow::before { display: none; }
.join .tit { font-size: clamp(26px, 4.2vw, 46px); }
.join-meta { margin-top: 20px; font-size: clamp(13.5px, 1.5vw, 16px); line-height: 1.9; color: var(--ink-2); }
.join-acts { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: clamp(26px, 3.2vw, 38px); }

/* ============ floating ============ */
.float { position: fixed; right: 18px; top: 50%; transform: translateY(-50%) translateX(120px); z-index: 80; display: flex; flex-direction: column; gap: 10px; opacity: 0; transition: .7s var(--ease-out); }
.float.on { transform: translateY(-50%); opacity: 1; }
.fbtn { width: 78px; padding: 14px 8px; border-radius: 18px; display: grid; justify-items: center; gap: 7px; font-size: 11.5px; font-weight: 800; letter-spacing: -.03em; text-align: center; line-height: 1.35; transition: .45s var(--ease-out); position: relative; box-shadow: 0 14px 30px rgba(20, 44, 69, .18); }
.fbtn svg { width: 24px; height: 24px; }
.fbtn.kakao { background: #fee500; color: #3c1e1e; }
.fbtn.call { background: linear-gradient(150deg, var(--teal-l), var(--teal-d)); color: #fff; }
.fbtn.top { background: #fff; color: var(--navy); border: 1px solid var(--line); padding: 12px 8px; }
.fbtn:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 20px 38px rgba(20, 44, 69, .26); }
.fbtn.kakao::after { content: ""; position: absolute; inset: 0; border-radius: 18px; border: 2px solid #fee500; animation: pulse 2.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.18); opacity: 0; } }

.mbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -8px 26px rgba(20, 44, 69, .1); }
.mbar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 8px; font-size: 14px; font-weight: 800; letter-spacing: -.03em; }
.mbar a svg { width: 18px; height: 18px; }
.mbar .k { background: #fee500; color: #3c1e1e; }
.mbar .c { background: var(--teal); color: #fff; }

/* ============ lightbox ============ */
.lb { position: fixed; inset: 0; z-index: 120; background: rgba(8, 16, 26, .94); backdrop-filter: blur(10px); display: none; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 60px); }
.lb.on { display: flex; animation: lbin .4s var(--ease-out); }
@keyframes lbin { from { opacity: 0; } to { opacity: 1; } }
.lb-box { width: 100%; max-width: 1060px; position: relative; animation: lbup .5s var(--ease-out); }
@keyframes lbup { from { transform: translateY(26px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.lb-box img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: 10px; }
.lb-box .vwrap { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; background: #000; }
.lb-box .vwrap.vertical { aspect-ratio: 9/16; width: auto; height: min(80vh, 760px); max-width: 100%; margin: 0 auto; }
.lb-box .vwrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lb-cap { margin-top: 14px; text-align: center; font-size: 13.5px; color: rgba(255, 255, 255, .7); }
.lb-close { position: absolute; right: -6px; top: -52px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .32); color: #fff; display: grid; place-items: center; transition: .35s var(--ease-out); }
.lb-close:hover { background: var(--teal); border-color: var(--teal); transform: rotate(90deg); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3); color: #fff; display: none; place-items: center; transition: .35s var(--ease-out); z-index: 5; }
.lb-nav:hover { background: var(--teal); border-color: var(--teal); }
.lb-prev { left: -66px; }
.lb-next { right: -66px; }
.lb-count { position: absolute; left: 50%; transform: translateX(-50%); bottom: -44px; font-size: 12.5px; font-weight: 700; color: rgba(255, 255, 255, .7); letter-spacing: .08em; }
.lb-soon { padding: clamp(40px, 8vw, 90px) 20px; text-align: center; border: 1px dashed rgba(255, 255, 255, .3); border-radius: 12px; color: rgba(255, 255, 255, .82); }
.lb-soon b { display: block; font-family: var(--ft); font-size: clamp(20px, 3vw, 28px); margin-bottom: 10px; color: #fff; }

/* ============ footer ============ */
.foot { background: var(--navy-d); color: rgba(255, 255, 255, .62); padding: clamp(40px, 5vw, 60px) 0 calc(clamp(40px, 5vw, 60px) + env(safe-area-inset-bottom)); font-size: 13px; }
.foot .fr { display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: center; justify-content: space-between; }
.foot img { height: 34px; }
.foot .fl { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.foot .fl a { font-weight: 600; color: rgba(255, 255, 255, .82); transition: color .3s; }
.foot .fl a:hover { color: var(--sand-2); }
.foot .cp { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14); line-height: 1.8; font-size: 12.5px; color: rgba(255, 255, 255, .48); }

/* ============ responsive ============ */
@media (max-width: 1080px) {
  .menu { display: none; }
  .burger { display: block; }
  .nav .wrap { gap: 14px; }
  .nav-cta { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .films { grid-template-columns: 1fr 1fr; }
  .g4, .g5 { grid-template-columns: repeat(2, 1fr); }
  .sched-rows { grid-template-columns: 1fr; }
  .sched-rows .sched-row:nth-child(even) { border-left: 0; }
  .srow { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 860px) {
  :root { --nav-h: 64px; }
  .split, .film-feature, .incl, .cals, .pick { grid-template-columns: 1fr; }
  .notice, .tengong-period { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .fee-card { position: static; }
  .fac-bento { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .fac-bento .photo { height: auto; aspect-ratio: 4/3; }
  .fb-big { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16/10 !important; }
  .fb-wide { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16/9 !important; }
  .fb-sm, .fb-info { grid-column: auto; grid-row: auto; }
  .zone { grid-template-columns: 1fr; }
  .zone-tabs { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 6px; margin: 0 calc(var(--pad) * -1); padding-left: var(--pad); padding-right: var(--pad); scrollbar-width: none; }
  .zone-tabs::-webkit-scrollbar { display: none; }
  .zone-tab { flex: 0 0 auto; }
  .split.rev > *:first-child { order: 0; }
  .g3, .g6 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-rail { right: 12px; gap: 10px; }
  .float { display: none; }
  .mbar { display: flex; }
  body { padding-bottom: 56px; }
  .foot { padding-bottom: 96px; }
  .films { grid-template-columns: 1fr; }
  .photo.fill { min-height: 260px; aspect-ratio: 4/3; height: auto; }
}

@media (max-width: 600px) {
  br.mo { display: inline; }
  .g2, .g3, .g4, .g5, .g6, .steps { grid-template-columns: 1fr; }
  .pcard.wide2 { grid-column: auto; }
  .zone-pics { gap: 10px; }
  .zone-pics.one .photo { aspect-ratio: 16/9; }
  .acc-a p { padding-left: 6px; }
  .safe-row { justify-content: flex-start; }
  .pcard .duo { gap: 10px; }
  .hero-tags { gap: 8px 16px; }
  .hero-tags span { font-size: 11.5px; }
  .sched-row { grid-template-columns: 22px 78px 1fr; gap: 10px; padding: 14px 16px; }
  .sched-row .li { width: 22px; height: 22px; }
  .cal-grid .d { font-size: 12px; border-radius: 7px; }
  .adv li { padding: 14px 16px; gap: 13px; align-items: flex-start; }
  .adv .n { width: 46px; height: 46px; font-size: 13px; }
  .stats { grid-template-columns: 1fr; }
  .lb-close { top: -50px; right: 0; }
  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
  .lb-nav { width: 40px; height: 40px; background: rgba(11, 25, 41, .45); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
