/* ==========================================================================
   더샵 송도그란테르 — Design System (ported from colors_and_type.css)
   ========================================================================== */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.css");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Lexend:wght@300;400;500;600;700&family=Marcellus&family=Dancing+Script:wght@400;600;700&display=swap");

:root {
  --brand-ink: #000000;
  --brand-ink-2: #0a0a0a;
  --brand-navy: #000c42;
  --brand-navy-2: #001141;
  --brand-navy-3: #003c66;
  --brand-paper: #ffffff;
  --brand-paper-2: #fafafa;
  --brand-paper-3: #f4f4f4;

  --brand-earth: #614332;
  --brand-earth-2: #3a1d1d;
  --brand-gold: #F7E600;
  --brand-sky: #c7d8e8;

  --fg-1: #000000;
  --fg-2: #333333;
  --fg-3: #7e7e7e;
  --fg-4: #bcbcbc;
  --fg-inv-1: #ffffff;
  --fg-inv-2: rgba(255,255,255,0.7);
  --fg-inv-3: rgba(255,255,255,0.3);

  --bg-1: #ffffff;
  --bg-2: #f4f4f4;
  --bg-3: #ececec;
  --bg-inv-1: #000000;
  --bg-inv-2: #0a0a0a;

  --border-1: rgba(0,0,0,0.1);
  --border-2: rgba(0,0,0,0.2);
  --border-inv-1: rgba(255,255,255,0.2);
  --border-inv-2: rgba(255,255,255,0.3);

  --shadow-scrim-dark: 0 0 5px rgba(0,0,0,0.7), 0 0 5px rgba(0,0,0,0.7);
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-strong: 0 20px 60px rgba(0,0,0,0.4);

  --font-kr: "Pretendard Variable", "Pretendard", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: "Lexend", "Pretendard Variable", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Cinzel", "Marcellus", "Cormorant Garamond", "Times New Roman", serif;
  --font-serif-body: "Cormorant Garamond", "Marcellus", Georgia, serif;
  --font-script: "Dancing Script", "Brush Script MT", cursive;

  --radius-0: 0;
  --radius-1: 2px;
  --radius-2: 4px;
  --radius-pill: 5rem;
  --radius-full: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.3s;
  --dur-base: 0.8s;
  --dur-slow: 1.2s;
}

/* ==========================================================================
   Base
   ========================================================================== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-1); color: var(--fg-1); font-family: var(--font-kr); scroll-behavior: smooth; }
body { overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
section { position: relative; overflow: hidden; }
h1, h2, h3, h4, p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

.chev { width: 8px; height: 8px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(-45deg); display: inline-block; }

/* fade-up scroll animation */
.fade-up { opacity: 0; transform: translateY(2.5rem); transition: opacity 1s var(--ease-out), transform 1.2s var(--ease-out); }
.fade-up.on { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Fixed elements — Header / Scroll rail / Float CTA
   ========================================================================== */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 20px 24px 40px; pointer-events: none;
}
/* 제목(로고)은 blend 해제 — 항상 흰색 고정 렌더링으로 배경 텍스트와 겹쳐 보이는 현상 방지 */
#site-header .brand { pointer-events: auto; display: flex; align-items: center; gap: 12px; }
#site-header .brand img { height: 24px; filter: invert(1) brightness(1.4) drop-shadow(0 1px 4px rgba(0,0,0,.55)); }
/* 메뉴 버튼만 상시 mix-blend-mode 유지 + 우측으로 이동 */
#menu-toggle {
  pointer-events: auto; width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.6); color: #fff; background: transparent;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer; transition: transform .35s var(--ease-out);
  mix-blend-mode: difference;
  margin-right: -4px;
}
#menu-toggle .ham-bar { width: 18px; height: 1px; background: #fff; }
#menu-toggle .ham-label { font-family: var(--font-sans); font-size: 9px; letter-spacing: .24em; text-transform: uppercase; margin-top: 4px; }

#scroll-rail {
  position: fixed; top: 0; bottom: 0; right: 28px; z-index: 40;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; pointer-events: none;
  mix-blend-mode: difference; color: #fff;
}
#scroll-rail .rail-dot { width: 6px; height: 6px; border-radius: 50%; border: 1px solid #fff; background: transparent; pointer-events: auto; transition: all .3s var(--ease-out); cursor: pointer; }
#scroll-rail .rail-dot.on { background: #fff; transform: scale(1.4); }
#scroll-rail .rail-label { writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--font-sans); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; margin-top: 12px; opacity: .7; }

#float-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: 45;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 112px; height: 112px; border-radius: 50%;
  background: var(--brand-gold); color: var(--brand-earth-2);
  font-family: var(--font-kr); font-size: 12px; font-weight: 600; letter-spacing: -.01em;
  box-shadow: 0 12px 40px rgba(0,0,0,.25); cursor: pointer;
  text-align: center; line-height: 1.35; border: none;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
#float-cta:hover { transform: scale(1.06); box-shadow: 0 16px 50px rgba(247,230,0,.35); }
#float-cta .cta-b { font-family: var(--font-serif); font-size: 15px; font-weight: 600; letter-spacing: .14em; margin-bottom: 4px; text-transform: uppercase; }
#float-cta .cta-kr { font-size: 13px; font-weight: 700; }

/* ==========================================================================
   01 Hero
   ========================================================================== */
#hero {
  position: relative; width: 100%; min-height: 100vh;
  background: #000 url("/static/assets/main_bg.jpg") center/cover no-repeat;
  color: #fff; display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
}
#hero .star-layer {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,.7), transparent 50%),
    radial-gradient(1px 1px at 82% 18%, rgba(255,255,255,.5), transparent 50%),
    radial-gradient(1px 1px at 55% 12%, rgba(255,255,255,.6), transparent 50%),
    radial-gradient(1px 1px at 22% 8%, rgba(255,255,255,.4), transparent 50%);
  animation: twinkle 4s ease-in-out infinite;
}
#hero .scrim {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%),
              linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%);
}
#hero .hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 900px; }
#hero .hero-eyebrow { font-family: var(--font-kr); font-weight: 400; font-size: 15px; letter-spacing: .04em; margin: 0 0 40px; opacity: .95; }
#hero .hero-eyebrow b { font-weight: 700; }
#hero .hero-latin { font-family: var(--font-serif); font-weight: 500; font-size: 22px; letter-spacing: .32em; text-transform: lowercase; margin: 48px 0 8px; opacity: .9; }
#hero .hero-brush { display: block; margin: 0 auto; max-width: 520px; opacity: .95; filter: invert(1); width: 100%; }
.hero-title { font-family: var(--font-kr); font-weight: 800; font-size: 40px; letter-spacing: -.02em; margin: 20px 0 48px; }
.hero-kinetic-main { font-family: var(--font-kr); font-weight: 700; font-size: 22px; line-height: 1.5; letter-spacing: -.01em; display: flex; flex-direction: column; gap: 6px; align-items: center; color: #fff; margin: 0 0 20px; }
#hero .hero-kinetic-sub { font-family: var(--font-kr); font-weight: 400; font-size: 15px; line-height: 1.5; letter-spacing: -.005em; display: flex; flex-direction: column; gap: 6px; align-items: center; color: rgba(255,255,255,.85); margin: 0 0 20px; }
.kinetic-line { display: flex; justify-content: center; flex-wrap: wrap; }
.kinetic-char { display: inline-block; overflow: hidden; }
.kinetic-char i { display: inline-block; font-style: normal; animation: rise .8s var(--ease-out) forwards; transform: translateY(120%); opacity: 0; }
.kinetic-space { display: inline-block; padding-right: .35em; }

#hero .hero-scroll {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.7); font-family: var(--font-sans); font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
}
#hero .scroll-line { width: 1px; height: 46px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
#hero .scroll-line-fill { position: absolute; top: 0; left: 0; width: 1px; height: 20px; background: #fff; animation: scrollFall 1.8s var(--ease-in-out) infinite; }

@keyframes scrollFall { 0% { transform: translateY(-100%); } 100% { transform: translateY(300%); } }
@keyframes twinkle { 0%,100% { opacity: .6; } 50% { opacity: 1; } }
@keyframes rise { to { transform: translateY(0); opacity: 1; } }
@keyframes pinPulse { 0%,100% { box-shadow: 0 0 0 10px rgba(247,230,0,.28), 0 0 0 20px rgba(247,230,0,.12); } 50% { box-shadow: 0 0 0 14px rgba(247,230,0,.35), 0 0 0 28px rgba(247,230,0,.15); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ==========================================================================
   02 Summary
   ========================================================================== */
#summary { background: #fff; color: #000; min-height: 100vh; padding: 120px 64px 96px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
#summary .sum-head { text-align: center; margin-bottom: 56px; }
.eyebrow { font-family: var(--font-sans); font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: #7e7e7e; margin: 0 0 20px; font-weight: 500; }
.section-h2 { font-family: var(--font-serif); font-weight: 500; font-size: 72px; letter-spacing: .18em; text-transform: uppercase; margin: 0; line-height: .95; }
.section-sub { font-family: var(--font-kr); font-size: 16px; color: #7e7e7e; margin: 20px 0 0; letter-spacing: -.005em; }

#summary .sum-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; max-width: 900px; width: 100%; }
#summary .sum-stat { text-align: center; padding: 0 16px; }
#summary .sum-stat-num { font-family: var(--font-serif); font-size: 64px; font-weight: 500; letter-spacing: .02em; margin: 0; line-height: 1; }
#summary .sum-stat-suffix { font-family: var(--font-kr); font-size: 20px; font-weight: 500; margin-left: 4px; }
#summary .sum-stat-lbl { font-family: var(--font-kr); font-size: 13px; color: #7e7e7e; margin: 14px 0 0; letter-spacing: -.005em; }

#summary .sum-tabs { display: flex; gap: 0; margin: 80px 0 48px; flex-wrap: wrap; justify-content: center; }
#summary .sum-tab { padding: 14px 26px; border: 1px solid #000; border-right: none; font-family: var(--font-sans); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; background: #fff; color: #000; transition: all .35s var(--ease-out); font-weight: 500; }
#summary .sum-tab:last-child { border-right: 1px solid #000; }
#summary .sum-tab.on { background: #000; color: #fff; }

#summary .sum-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1120px; width: 100%; border-top: 1px solid #000; border-bottom: 1px solid #000; }
#summary .sum-cell { padding: 36px 24px; border-right: 1px solid rgba(0,0,0,.15); text-align: center; }
#summary .sum-cell:last-child { border-right: 0; }
#summary .sum-cell-lbl { font-family: var(--font-sans); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: #7e7e7e; margin: 0 0 16px; font-weight: 500; }
#summary .sum-cell-val { font-family: var(--font-serif); font-size: 26px; font-weight: 500; letter-spacing: .02em; margin: 0; line-height: 1.3; }
#summary .sum-cell-val-kr { font-family: var(--font-kr); font-size: 15px; font-weight: 700; margin-left: 4px; }
#summary .sum-cell-small { font-family: var(--font-kr); font-size: 15px; font-weight: 600; letter-spacing: -.005em; margin: 0; line-height: 1.5; }
#summary .sum-disc { margin-top: 32px; font-family: var(--font-kr); font-size: 12px; color: #7e7e7e; text-align: left; max-width: 1120px; width: 100%; line-height: 1.8; }

/* ==========================================================================
   03 Symbolic Pride
   ========================================================================== */
#pride { background: #000; color: #fff; min-height: 100vh; display: flex; align-items: center; padding: 120px 64px; }
#pride .pride-bg1 { position: absolute; left: -100px; top: -60px; width: 420px; opacity: .28; filter: invert(1); }
#pride .pride-bg2 { position: absolute; right: -100px; bottom: -60px; width: 420px; opacity: .28; filter: invert(1); transform: rotate(180deg); }
#pride .pride-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center; }
.pride-h1 { font-family: var(--font-serif); font-weight: 500; font-size: 96px; letter-spacing: .14em; text-transform: uppercase; line-height: 1; margin: 0 0 48px; }
.pride-h1 span { color: rgba(255,255,255,.4); }
#pride .pride-h3 { font-family: var(--font-kr); font-weight: 700; font-size: 36px; line-height: 1.4; letter-spacing: -.02em; margin: 0 0 36px; }
#pride .pride-body { font-family: var(--font-kr); font-weight: 400; font-size: 17px; line-height: 2; color: rgba(255,255,255,.75); margin: 0; }
#pride .pride-divider { width: 1px; height: 60px; background: rgba(255,255,255,.3); margin: 48px auto 0; }

/* ==========================================================================
   04 Grand Scale
   ========================================================================== */
#grand {
  min-height: 100vh; position: relative; color: #fff;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 120px 64px;
  background: linear-gradient(180deg, rgba(0,17,65,.55), rgba(0,0,0,.75)), #001141 url("/static/assets/location_bg05.jpg") center/cover;
}
#grand .grand-eyebrow { font-family: var(--font-sans); font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,.65); margin: 0 0 28px; font-weight: 500; }
#grand .grand-intro { font-family: var(--font-kr); font-weight: 400; font-size: 15px; letter-spacing: .02em; margin: 0 0 48px; opacity: .85; text-align: center; max-width: 640px; }
.grand-title { font-family: var(--font-serif); font-weight: 500; font-size: 128px; line-height: 1; letter-spacing: .12em; text-transform: lowercase; margin: 0; text-align: center; display: flex; gap: 44px; flex-wrap: wrap; justify-content: center; }
#grand .grand-body { text-align: center; max-width: 720px; font-family: var(--font-kr); font-weight: 400; font-size: 17px; line-height: 2; color: rgba(255,255,255,.85); margin: 52px 0 0; }
.grand-stats { display: flex; gap: 0; margin-top: 72px; max-width: 900px; width: 100%; justify-content: center; }
.grand-stats .grand-stat { flex: 1; padding: 0 32px; border-right: 1px solid rgba(255,255,255,.2); text-align: center; }
.grand-stats .grand-stat:last-child { border-right: none; }
.grand-stats .grand-stat-num { font-family: var(--font-serif); font-size: 48px; font-weight: 500; letter-spacing: .04em; margin: 0; line-height: 1; }
.grand-stats .grand-stat-lbl { font-family: var(--font-kr); font-size: 13px; color: rgba(255,255,255,.65); margin: 14px 0 0; letter-spacing: -.005em; }

/* ==========================================================================
   05 Premium 5
   ========================================================================== */
#premium { min-height: 100vh; color: #fff; background: #000; display: flex; align-items: stretch; }
.premium-aside { width: 400px; padding: 96px 48px; display: flex; flex-direction: column; justify-content: center; gap: 40px; border-right: 1px solid rgba(255,255,255,.15); flex-shrink: 0; }
.premium-aside h2 { font-family: var(--font-serif); font-weight: 500; font-size: 60px; letter-spacing: .16em; text-transform: uppercase; margin: 0; line-height: 1; }
.premium-aside .p5-sub { font-family: var(--font-kr); font-size: 15px; color: rgba(255,255,255,.6); margin: 20px 0 0; letter-spacing: -.005em; }
.premium-aside .p5-desc { font-family: var(--font-kr); font-size: 15px; line-height: 1.9; color: rgba(255,255,255,.7); margin: 0; }
.p5-numbers { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.p5-num-chip { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.7); cursor: pointer; transition: all .3s var(--ease-out); background: transparent; }
.p5-num-chip.on { background: var(--brand-gold); color: #000; border-color: var(--brand-gold); font-weight: 700; }

.premium-main { flex: 1; position: relative; }
.premium-tabs { position: absolute; inset: 0; display: flex; }
.p5-tab { flex: 1; position: relative; border-left: 1px solid rgba(255,255,255,.1); cursor: pointer; padding: 96px 32px 48px; display: flex; flex-direction: column; justify-content: flex-end; transition: flex .6s var(--ease-out); overflow: hidden; background-size: cover; background-position: center; }
.p5-tab.active { flex: 3; }
.p5-tab .p5-tab-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.85) 100%); pointer-events: none; }
.p5-tab .p5-tab-index { position: relative; font-family: var(--font-sans); font-size: 12px; letter-spacing: .32em; color: rgba(255,255,255,.6); margin: 0 0 14px; font-weight: 500; }
.p5-tab .p5-tab-small { position: relative; font-family: var(--font-kr); font-size: 14px; color: rgba(255,255,255,.75); margin: 0 0 12px; letter-spacing: -.005em; }
.p5-tab .p5-tab-title { position: relative; font-family: var(--font-kr); font-weight: 700; font-size: 24px; line-height: 1.35; letter-spacing: -.02em; margin: 0; white-space: pre-line; }
.p5-tab .p5-active-border { position: absolute; left: 32px; right: 32px; bottom: 42px; height: 1px; background: var(--brand-gold); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease-out); }
.p5-tab.active .p5-active-border { transform: scaleX(1); }

/* ==========================================================================
   06 Location
   ========================================================================== */
#location { min-height: 100vh; background: #fff; color: #000; padding: 120px 64px 96px; display: flex; flex-direction: column; align-items: center; }
#location .loc-head { text-align: center; margin-bottom: 64px; }
#location .loc-map-wrap { position: relative; width: 100%; max-width: 1200px; aspect-ratio: 16 / 8; border: 1px solid #000; overflow: hidden; background: var(--brand-sky); }
#location .loc-map-img { width: 100%; height: 100%; object-fit: cover; }
#location .loc-pin { position: absolute; left: 48%; top: 46%; transform: translate(-50%, -50%); width: 20px; height: 20px; border-radius: 50%; background: var(--brand-gold); box-shadow: 0 0 0 10px rgba(247,230,0,.28), 0 0 0 20px rgba(247,230,0,.12); animation: pinPulse 2s ease-in-out infinite; }
#location .loc-pin-lbl { position: absolute; left: 48%; top: 42%; transform: translate(-50%, -100%); background: #000; color: #fff; padding: 6px 14px; font-family: var(--font-kr); font-size: 12px; font-weight: 600; letter-spacing: -.005em; white-space: nowrap; }

.location-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 1200px; width: 100%; margin-top: 48px; border-top: 1px solid #000; border-bottom: 1px solid #000; }
.location-info > div { padding: 32px 28px; border-right: 1px solid rgba(0,0,0,.15); }
.location-info > div:last-child { border-right: 0; }
.location-info .loc-cell-lbl { font-family: var(--font-sans); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: #7e7e7e; margin: 0 0 14px; font-weight: 500; }
.location-info .loc-cell-val { font-family: var(--font-kr); font-size: 17px; font-weight: 600; letter-spacing: -.005em; margin: 0; line-height: 1.6; }
.location-info .loc-cell-sub { font-family: var(--font-kr); font-size: 13px; color: #7e7e7e; margin: 8px 0 0; }

#location .loc-landmarks { margin-top: 56px; max-width: 1200px; width: 100%; }
#location .loc-landmarks-title { font-family: var(--font-kr); font-size: 18px; font-weight: 700; letter-spacing: -.01em; margin: 0 0 24px; }
.landmark-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.landmark-item { border: 1px solid rgba(0,0,0,.15); padding: 20px 20px; transition: transform .35s var(--ease-out); cursor: default; position: relative; overflow: hidden; }
.landmark-item::before, .landmark-item::after { content: ''; position: absolute; background: #000; transition: all .5s var(--ease-out); }
.landmark-item::before { top: 0; left: 0; width: 0; height: 2px; }
.landmark-item::after { bottom: 0; right: 0; width: 2px; height: 0; }
.landmark-item:hover::before { width: 100%; }
.landmark-item:hover::after { height: 100%; }
.landmark-item:hover { transform: translateY(-2px); }
.landmark-item .li-num { font-family: var(--font-sans); font-size: 11px; letter-spacing: .24em; color: #7e7e7e; margin: 0 0 10px; font-weight: 500; }
.landmark-item .li-name { font-family: var(--font-kr); font-size: 15px; font-weight: 600; margin: 0 0 4px; letter-spacing: -.005em; }
.landmark-item .li-dist { font-family: var(--font-serif); font-size: 18px; font-weight: 500; letter-spacing: .02em; color: #000; margin: 0; }

/* ==========================================================================
   07 Contact
   ========================================================================== */
#contact { min-height: 100vh; background: #000; color: #fff; display: flex; padding: 120px 64px 96px; gap: 64px; align-items: center; }
#contact .contact-left { flex: 1; max-width: 560px; position: relative; z-index: 2; }
#contact .contact-h5 { font-family: var(--font-kr); font-size: 16px; color: rgba(255,255,255,.7); margin: 20px 0 48px; letter-spacing: -.005em; }
#contact .contact-block { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
#contact .contact-block-lbl { font-family: var(--font-sans); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.55); margin: 0 0 12px; font-weight: 500; }
#contact .contact-block-val { font-family: var(--font-kr); font-size: 17px; letter-spacing: -.005em; margin: 0; line-height: 1.6; }
#contact .contact-phone { font-family: var(--font-serif); font-size: 52px; font-weight: 500; letter-spacing: .08em; margin: 4px 0 0; color: var(--brand-gold); }

#contact .contact-right { flex: 1.1; position: relative; aspect-ratio: 4 / 5; max-height: 620px; border: 1px solid rgba(255,255,255,.2); overflow: hidden; }
#contact .contact-right img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(.6); }
#contact .contact-right-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.7) 100%); }
#contact .contact-right-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 36px; }
#contact .contact-right-head { font-family: var(--font-serif); font-size: 28px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 12px; }
#contact .contact-right-kr { font-family: var(--font-kr); font-size: 15px; letter-spacing: -.005em; color: rgba(255,255,255,.85); margin: 0; line-height: 1.6; }

.cta-row { display: flex; gap: 12px; margin-top: 44px; flex-wrap: wrap; }
.btn-outline, .btn-solid {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px; height: 54px; padding: 0 32px;
  border-radius: var(--radius-pill); font-size: 15px; font-weight: 500; cursor: pointer;
  transition: all .35s var(--ease-out); font-family: var(--font-kr); border: 1px solid rgba(255,255,255,.6);
  background: transparent; color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.08); }
.btn-solid { background: var(--brand-gold); color: var(--brand-earth-2); border: 1px solid var(--brand-gold); font-weight: 700; }
.btn-solid:hover { background: #ffee33; }

/* ==========================================================================
   08 Footer
   ========================================================================== */
#site-footer { background: #000; color: #fff; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 72px 64px 40px; border-top: 1px solid rgba(255,255,255,.1); gap: 28px; text-align: center; }
#site-footer .footer-logo { height: 36px; filter: invert(1) brightness(1.2); }
#site-footer .footer-nav { display: flex; gap: 32px; font-family: var(--font-sans); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.65); flex-wrap: wrap; justify-content: center; }
#site-footer .footer-nav a { cursor: pointer; transition: color .3s; }
#site-footer .footer-nav a:hover { color: #fff; }
#site-footer .footer-divider { width: 60px; height: 1px; background: rgba(255,255,255,.2); }
#site-footer .footer-meta { font-family: var(--font-kr); font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: -.005em; max-width: 780px; line-height: 1.85; margin: 0; }
#site-footer .footer-copy { font-family: var(--font-sans); font-size: 11px; letter-spacing: .18em; color: rgba(255,255,255,.35); text-transform: uppercase; margin: 0; }

/* ==========================================================================
   Menu overlay
   ========================================================================== */
#menu-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,.97); color: #fff; display: none; flex-direction: column; animation: fadeIn .35s var(--ease-out); }
#menu-overlay.open { display: flex; }
#menu-overlay .mo-header { display: flex; justify-content: space-between; align-items: center; padding: 24px 40px; }
#menu-overlay .mo-brand { font-family: var(--font-serif); font-size: 16px; letter-spacing: .24em; text-transform: uppercase; }
#menu-overlay .mo-close { width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); background: transparent; color: #fff; cursor: pointer; font-family: var(--font-sans); font-size: 11px; letter-spacing: .2em; }
#menu-overlay .mo-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0 64px; }
#menu-overlay .mo-list { display: grid; gap: 8px; }
#menu-overlay .mo-item { display: flex; align-items: baseline; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); cursor: pointer; transition: padding-left .35s var(--ease-out); }
#menu-overlay .mo-item:hover { padding-left: 24px; }
#menu-overlay .mo-item-num { font-family: var(--font-sans); font-size: 12px; letter-spacing: .24em; color: rgba(255,255,255,.4); width: 40px; }
#menu-overlay .mo-item-kr { font-family: var(--font-kr); font-size: 32px; font-weight: 700; letter-spacing: -.02em; }
#menu-overlay .mo-item-en { font-family: var(--font-serif); font-size: 14px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-left: auto; }
#menu-overlay .mo-foot { padding: 32px 40px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.1); }
#menu-overlay .mo-foot-label { font-family: var(--font-sans); font-size: 10px; letter-spacing: .28em; color: rgba(255,255,255,.5); margin-bottom: 6px; }
#menu-overlay .mo-foot-phone { font-family: var(--font-serif); font-size: 20px; letter-spacing: .08em; }
#menu-overlay .mo-foot-cta { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: var(--brand-gold); color: var(--brand-earth-2); font-family: var(--font-kr); font-weight: 700; font-size: 14px; border-radius: var(--radius-pill); cursor: pointer; border: none; }

/* ==========================================================================
   Register modal
   ========================================================================== */
#register-modal { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.75); display: none; align-items: center; justify-content: center; padding: 24px; animation: fadeIn .3s var(--ease-out); }
#register-modal.open { display: flex; }
#register-modal .rm-card { width: 100%; max-width: 560px; background: #fff; color: #000; padding: 56px 48px 44px; position: relative; animation: popIn .5s var(--ease-out); border: 1px solid #000; }
#register-modal .rm-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border: 1px solid rgba(0,0,0,.2); background: #fff; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; font-family: var(--font-sans); color: #000; }
#register-modal .rm-eyebrow { font-family: var(--font-sans); font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: #7e7e7e; margin: 0 0 14px; font-weight: 500; text-align: center; }
#register-modal .rm-h2 { font-family: var(--font-serif); font-weight: 500; font-size: 32px; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 12px; text-align: center; }
#register-modal .rm-h5 { font-family: var(--font-kr); font-size: 14px; color: #7e7e7e; margin: 0 0 36px; text-align: center; line-height: 1.6; }
#register-modal form { display: grid; gap: 16px; }
#register-modal .rm-field { display: grid; gap: 8px; }
#register-modal .rm-label { font-family: var(--font-sans); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: #7e7e7e; font-weight: 500; }
#register-modal .rm-input { width: 100%; height: 48px; padding: 0 14px; border: 1px solid rgba(0,0,0,.2); background: #fff; font-family: var(--font-kr); font-size: 15px; letter-spacing: -.005em; outline: none; transition: border-color .2s; }
#register-modal .rm-input:focus { border-color: #000; }
#register-modal .rm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#register-modal .rm-check { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-kr); font-size: 13px; color: #7e7e7e; line-height: 1.5; cursor: pointer; margin-top: 4px; }
#register-modal .rm-check input { margin-top: 3px; }
#register-modal .rm-submit { width: 100%; height: 56px; background: #000; color: #fff; border: 1px solid #000; font-family: var(--font-kr); font-size: 15px; font-weight: 600; cursor: pointer; letter-spacing: -.005em; margin-top: 20px; transition: all .35s var(--ease-out); display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
#register-modal .rm-submit:hover { background: #222; }
#register-modal .rm-submit.rm-close-btn { background: #fff; color: #000; border: 1px solid #000; margin-top: 32px; }
#register-modal .rm-submit.rm-close-btn:hover { background: #f4f4f4; }

#register-modal .rm-success { text-align: center; padding: 20px 0; display: none; }
#register-modal .rm-success.show { display: block; }
#register-modal .rm-form-wrap.hide { display: none; }
#register-modal .rm-success-icon { width: 64px; height: 64px; border-radius: 50%; border: 1px solid #000; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: var(--font-serif); font-size: 28px; }
#register-modal .rm-success-title { font-family: var(--font-kr); font-size: 22px; font-weight: 700; margin: 0 0 12px; letter-spacing: -.02em; }
#register-modal .rm-success-body { font-family: var(--font-kr); font-size: 14px; color: #7e7e7e; margin: 0; line-height: 1.7; }
#register-modal .rm-error { color: #b00020; font-size: 12px; font-family: var(--font-kr); margin-top: -4px; display: none; }
#register-modal .rm-error.show { display: block; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 32px !important; }
  .grand-title { font-size: 84px !important; gap: 24px !important; }
  .pride-h1 { font-size: 72px !important; }
  .premium-aside { width: 320px !important; padding: 72px 32px !important; }
  .premium-aside h2 { font-size: 44px !important; }
  .landmark-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .sum-grid { grid-template-columns: repeat(2, 1fr) !important; border-left: 1px solid rgba(0,0,0,.15); border-right: 1px solid rgba(0,0,0,.15); }
  .sum-grid > div { border-bottom: 1px solid rgba(0,0,0,.15); }
  .location-info { grid-template-columns: 1fr !important; }
  .location-info > div { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,.15); }
  .location-info > div:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  section, #site-footer { padding-left: 24px !important; padding-right: 24px !important; }
  .hero-title { font-size: 28px !important; margin: 16px 0 32px !important; }
  .hero-kinetic-main { font-size: 18px !important; }
  .pride-h1 { font-size: 52px !important; }
  .grand-title { font-size: 60px !important; gap: 16px !important; }
  .grand-stats { flex-direction: column; gap: 24px; }
  .grand-stats > div { border-right: none !important; padding: 24px 0 !important; border-bottom: 1px solid rgba(255,255,255,.15); }
  .grand-stats > div:last-child { border-bottom: none; }

  .sum-grid { grid-template-columns: 1fr !important; border-left: 1px solid rgba(0,0,0,.15); border-right: 1px solid rgba(0,0,0,.15); }
  .sum-grid > div { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,.15); padding: 24px 20px !important; }
  .sum-grid > div:last-child { border-bottom: none; }

  #premium { flex-direction: column !important; }
  .premium-aside { width: 100% !important; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.15); padding: 72px 24px 48px !important; }
  .premium-aside h2 { font-size: 40px !important; }
  .premium-main { min-height: 640px; }
  .premium-tabs { flex-direction: column !important; }
  .p5-tab { border-left: none !important; border-top: 1px solid rgba(255,255,255,.1); padding: 40px 24px !important; }

  #contact { flex-direction: column !important; gap: 40px !important; padding: 96px 24px !important; }
  .contact-right { width: 100%; max-height: 380px; }

  .landmark-grid { grid-template-columns: 1fr !important; }
  .section-h2 { font-size: 44px !important; letter-spacing: .14em !important; }

  #register-modal .rm-row { grid-template-columns: 1fr !important; }
  #register-modal .rm-card { padding: 40px 24px 32px; }
}
