/* ============================================================
   뮤직홈 오케스트라 — Premium Design System
   Theme: Noir Gold (Black + Cream + 24K Gold)
   ============================================================ */

:root {
  --bg: #0a0a0f;
  --bg-2: #11111a;
  --bg-3: #16161f;
  --surface: #1c1c27;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(200,164,92,0.22);
  --ink: #f4efe6;
  --ink-2: #c8c2b4;
  --ink-3: #8b8579;
  --gold: #c8a45c;
  --gold-2: #e2c280;
  --gold-3: #8a6c2f;
  --cream: #f4efe6;
  --accent: #b91c1c;
  --ok: #16a34a;
  --warn: #f59e0b;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  --shadow-gold: 0 20px 60px -15px rgba(200,164,92,0.35);
  --container: 1280px;
  --header-h: 78px;
  --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  --font-serif: 'Noto Serif KR', 'Cormorant Garamond', serif;
  --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01","tnum";
  overflow-x: hidden;
  word-break: keep-all;        /* Korean: don't split mid-word */
  overflow-wrap: break-word;
  line-break: strict;
}
h1, h2, h3, h4, h5, h6, p, blockquote, li, dt, dd, span, a, button {
  word-break: keep-all;
  overflow-wrap: break-word;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.skip { position:absolute; left:-9999px; }
.skip:focus { left:16px; top:16px; padding:8px 14px; background:var(--gold); color:#000; z-index:9999; border-radius:6px; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(10,10,15,0.62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 1000;
  transition: all .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(10,10,15,0.92);
  height: 66px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.hdr-inner {
  max-width: 1440px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 0 28px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { height: 42px; width: auto; max-width: 220px; transition: filter .3s var(--ease); }
.site-header.scrolled .brand-logo { height: 36px; }
@media (max-width: 640px) { .brand-logo { height: 34px; max-width: 170px; } }

.primary-nav { display: flex; flex: 1; justify-content: center; }
.nav-list { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-trigger {
  background: none; border: 0; color: var(--ink);
  padding: 10px 16px; font-size: 14.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  border-radius: 8px;
  transition: all .2s var(--ease);
}
.nav-trigger .caret { font-size: 10px; opacity: .6; }
.nav-item:hover .nav-trigger { color: var(--gold); background: rgba(200,164,92,0.08); }
.megamenu {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(-8px);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: 12px;
  min-width: 240px; padding: 10px;
  opacity: 0; visibility: hidden; pointer-events: none;
  box-shadow: var(--shadow);
  transition: all .25s var(--ease);
}
.nav-item:hover .megamenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.megamenu ul { list-style:none; margin:0; padding:0; }
.megamenu a {
  display: block; padding: 10px 14px; font-size: 14px;
  border-radius: 8px; color: var(--ink-2); transition: all .15s var(--ease);
}
.megamenu a:hover { background: rgba(200,164,92,0.12); color: var(--gold); transform: translateX(4px); }
.megamenu a.active { color: var(--gold); background: rgba(200,164,92,0.06); }

.hdr-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cta-tel { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--ink); }
.cta-tel:hover { color: var(--gold); }
.cta-btn {
  display: inline-flex; align-items: center; padding: 11px 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #1a1a1a; font-weight: 700; font-size: 14px;
  border-radius: 999px; letter-spacing: -.01em;
  box-shadow: 0 6px 20px -6px rgba(200,164,92,0.6);
  transition: all .25s var(--ease);
}
.cta-btn:hover { color: #1a1a1a; transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgba(200,164,92,0.8); }

.hamburger { display: none; background: none; border: 0; padding: 8px; }
.hamburger span { display:block; width:26px; height:2px; background: var(--ink); margin: 5px 0; transition: all .3s var(--ease); }

/* ===== Mobile nav ===== */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 90vw);
  background: var(--bg-2); z-index: 1100;
  transform: translateX(100%); transition: transform .35s var(--ease);
  overflow-y: auto;
  border-left: 1px solid var(--line-2);
}
.mobile-nav.open { transform: translateX(0); }
.mn-inner { padding: 24px; }
.mn-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.mn-brand { font-weight: 800; font-size: 17px; }
.mn-close { background: none; border: 0; color: var(--ink); font-size: 32px; line-height: 1; }
.mn-group { border-bottom: 1px solid var(--line); padding: 8px 0; }
.mn-group summary { padding: 12px 0; font-weight: 700; cursor: pointer; list-style: none; color: var(--gold); }
.mn-group summary::-webkit-details-marker { display: none; }
.mn-group ul { list-style: none; margin: 0; padding: 0 0 12px 12px; }
.mn-group li a { display: block; padding: 8px 4px; color: var(--ink-2); font-size: 14.5px; }
.mn-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mn-cta .cta-btn { justify-content: center; padding: 14px 24px; }
.mn-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1050; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mn-overlay.open { opacity: 1; pointer-events: auto; }

@media (max-width: 1100px) {
  .primary-nav { display: none; }
  .hdr-cta .cta-tel { display: none; }
  .hamburger { display: block; }
}
@media (max-width: 640px) {
  .brand-sub { display: none; }
  .hdr-cta .cta-btn { padding: 9px 16px; font-size: 13px; }
}

main { padding-top: var(--header-h); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #000;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100vh; min-width: 177.77vh;
  transform: translate(-50%,-50%);
  border: 0; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%),
    linear-gradient(180deg, rgba(10,10,15,0.4) 0%, rgba(10,10,15,0.2) 50%, rgba(10,10,15,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; max-width: 1100px; padding: 120px 24px 100px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border: 1px solid var(--gold);
  border-radius: 999px; color: var(--gold);
  font-size: 12px; font-weight: 600; letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  background: rgba(200,164,92,0.08);
  animation: fadeIn 1s var(--ease) both;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 8.5vw, 128px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  background: linear-gradient(180deg, #f8f3e9 0%, #c8a45c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(200,164,92,0.25);
  animation: heroIn 1.2s var(--ease) .15s both;
}
.hero h2 {
  font-size: clamp(17px, 2.4vw, 30px);
  font-weight: 400;
  color: var(--ink-2);
  margin: 0 0 12px;
  letter-spacing: -.02em;
  line-height: 1.45;
  animation: heroIn 1.2s var(--ease) .35s both;
}
.hero-tag {
  font-size: clamp(13px, 1.6vw, 18px);
  color: var(--gold);
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.55;
  animation: heroIn 1.2s var(--ease) .55s both;
}
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(34px, 9vw, 48px); letter-spacing: -.025em; }
  .hero h2 { font-size: 16px; line-height: 1.45; }
  .hero-tag { font-size: 13px; letter-spacing: 0; line-height: 1.6; padding: 0 8px; }
  .hero-content { padding: 100px 18px 80px; }
  .hero-actions .btn { padding: 13px 22px; font-size: 13.5px; width: 100%; max-width: 320px; }
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: heroIn 1.2s var(--ease) .75s both; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; font-size: 15px; font-weight: 700;
  border: 1.5px solid transparent; border-radius: 999px;
  letter-spacing: -.01em;
  transition: all .3s var(--ease);
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1a1a;
  box-shadow: 0 12px 32px -10px rgba(200,164,92,0.6);
}
.btn-gold:hover { color: #1a1a1a; transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(200,164,92,0.85); }
.btn-ghost {
  background: rgba(255,255,255,0.06); color: var(--ink);
  border: 1.5px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); color: var(--gold); }
.btn-dark { background: #18181c; color: var(--ink); border: 1.5px solid var(--line); }
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--ink-2); font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bounce 2s infinite;
}
.hero-scroll::after { content:""; width:1px; height:30px; background: linear-gradient(to bottom, var(--gold), transparent); }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0);} 50% {transform: translateX(-50%) translateY(8px);} }

/* ===== Page heros (sub pages) ===== */
.page-hero {
  position: relative; padding: 140px 0 90px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,164,92,0.18), transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 0 24px; }
.page-hero .crumbs { font-size: 12px; color: var(--gold); letter-spacing: .25em; text-transform: uppercase; margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--font-serif); font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700; line-height: 1.1; margin: 0 0 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #f8f3e9 0%, #c8a45c 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p { font-size: clamp(15px, 1.6vw, 18px); color: var(--ink-2); margin: 0; }

/* ===== Section ===== */
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 70px 0; }
.section-dark { background: var(--bg-2); }
.section-cream { background: linear-gradient(180deg, #f8f4ec 0%, #efe7d4 100%); color: #1a1a1a; }
.section-cream a { color: #6b4f1a; }
.section-cream .sec-title { color: #1a1a1a; }
.section-cream .sec-eyebrow { color: var(--gold-3); }

.sec-head { text-align: center; max-width: 820px; margin: 0 auto 60px; padding: 0 24px; }
.sec-eyebrow { display: inline-block; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 16px; }
.sec-title {
  font-family: var(--font-serif); font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700; line-height: 1.18; letter-spacing: -.02em; margin: 0 0 18px;
}
.sec-subtitle { font-size: clamp(15px, 1.5vw, 18px); color: var(--ink-2); margin: 0; }

/* ===== Stat marquee ===== */
.stats-band {
  background: linear-gradient(135deg, #0a0a0f 0%, #16161f 100%);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
}
.stat-label { color: var(--ink-2); font-size: 14px; letter-spacing: .05em; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; } }

/* ===== CEO Card ===== */
.ceo-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  background: linear-gradient(135deg, #14141d 0%, #1c1c27 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ceo-card::before {
  content:""; position: absolute; top:-50%; right:-20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(200,164,92,0.16), transparent 60%);
  pointer-events: none;
}
.ceo-text { position: relative; z-index: 1; }
.ceo-title { color: var(--gold); font-size: 13px; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.ceo-name { font-family: var(--font-serif); font-size: clamp(32px, 3.6vw, 44px); font-weight: 700; margin: 0 0 14px; }
.ceo-name small { display: inline-block; font-size: 16px; color: var(--gold); margin-left: 12px; vertical-align: middle; font-weight: 500; }
.ceo-bio { color: var(--ink-2); font-size: 16px; line-height: 1.85; margin-bottom: 28px; }
.ceo-quote {
  font-family: var(--font-serif); font-size: 19px; font-style: italic;
  color: var(--gold-2); line-height: 1.65; padding-left: 22px; border-left: 3px solid var(--gold); margin-bottom: 32px;
}
.ceo-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.ceo-portrait {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #2a2a35, #16161f);
  box-shadow: var(--shadow);
}
.ceo-portrait::after {
  content: "010-8183-7777"; position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(10,10,15,0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--gold); border-radius: 12px;
  padding: 14px; text-align: center;
  font-weight: 700; font-size: 18px; color: var(--gold-2);
  letter-spacing: .05em;
}
.ceo-portrait img { width:100%; height:100%; object-fit: cover; }
@media (max-width: 900px) { .ceo-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; } }

/* ===== Feature/Pillar cards ===== */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 0 24px; max-width: var(--container); margin: 0 auto; }
.pillar {
  background: linear-gradient(160deg, #16161f 0%, #1c1c27 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all .35s var(--ease);
  position: relative; overflow: hidden;
}
.pillar::before {
  content:""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .35s;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow-gold); }
.pillar:hover::before { opacity: 1; }
.pillar-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #1a1a1a; font-size: 22px; font-weight: 800;
  margin-bottom: 22px;
}
.pillar h3 { font-size: 19px; margin: 0 0 12px; font-weight: 700; }
.pillar p { color: var(--ink-2); font-size: 14.5px; margin: 0; line-height: 1.7; }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } }

/* ===== Page cards (link to subpages) ===== */
.page-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 0 24px; max-width: var(--container); margin: 0 auto; }
.pcard {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-3);
  display: block;
  isolation: isolate;
}
.pcard img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.pcard:hover img { transform: scale(1.08); }
.pcard::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.95) 100%);
  z-index: 1;
}
.pcard-text { position: absolute; left: 28px; right: 28px; bottom: 28px; z-index: 2; color: #fff; }
.pcard-tag { font-size: 11px; color: var(--gold); letter-spacing: .25em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.pcard h3 { font-family: var(--font-serif); font-size: 26px; margin: 0 0 8px; font-weight: 700; line-height: 1.2; color: #fff; }
.pcard p { font-size: 14px; color: rgba(255,255,255,0.8); margin: 0 0 14px; }
.pcard .arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-2); font-size: 13px; font-weight: 600; }
@media (max-width: 940px) { .page-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .page-cards { grid-template-columns: 1fr; } }

/* ===== Two-col content ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.two-col.reverse > :first-child { order: 2; }
.two-col h2 { font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 42px); margin: 0 0 20px; font-weight: 700; line-height: 1.2; }
.two-col .eyebrow { color: var(--gold); font-size: 12px; letter-spacing: .3em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.two-col p { color: var(--ink-2); font-size: 16px; line-height: 1.85; margin: 0 0 16px; }
.two-col .media { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.two-col .media img { width: 100%; height: 100%; object-fit: cover; }
.two-col ul { padding-left: 22px; color: var(--ink-2); }
.two-col li { margin-bottom: 8px; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 32px; } .two-col.reverse > :first-child { order: 0; } }

/* ===== Gallery grids ===== */
.masonry {
  columns: 4 280px; column-gap: 16px;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.masonry .item { break-inside: avoid; margin-bottom: 16px; border-radius: 12px; overflow: hidden; cursor: zoom-in; background: #111; }
.masonry img { transition: transform .8s var(--ease); }
.masonry .item:hover img { transform: scale(1.04); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.grid-3 .gitem, .grid-4 .gitem { aspect-ratio: 4/5; overflow: hidden; border-radius: 12px; background: #111; cursor: zoom-in; }
.grid-3 img, .grid-4 img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.grid-3 .gitem:hover img, .grid-4 .gitem:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }

/* ===== Video grid ===== */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.video-grid video { width: 100%; aspect-ratio: 16/9; border-radius: 12px; background: #000; object-fit: cover; }
@media (max-width: 720px) { .video-grid { grid-template-columns: 1fr; } }

/* ===== Timeline ===== */
.timeline { max-width: 880px; margin: 0 auto; padding: 0 24px; position: relative; }
.timeline::before { content:""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); }
.tl-item { position: relative; width: 50%; padding: 24px 36px; }
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; }
.tl-dot { position: absolute; top: 36px; width: 14px; height: 14px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 4px rgba(200,164,92,0.2); }
.tl-item:nth-child(odd) .tl-dot { right: -7px; }
.tl-item:nth-child(even) .tl-dot { left: -7px; }
.tl-year { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--gold-2); margin-bottom: 4px; }
.tl-title { font-weight: 700; margin-bottom: 6px; font-size: 17px; }
.tl-text { color: var(--ink-2); font-size: 14.5px; line-height: 1.7; }
@media (max-width: 720px) {
  .timeline::before { left: 14px; }
  .tl-item, .tl-item:nth-child(odd), .tl-item:nth-child(even) { width: 100%; left: 0; padding: 16px 0 16px 40px; text-align: left; }
  .tl-item:nth-child(odd) .tl-dot, .tl-item:nth-child(even) .tl-dot { left: 8px; right: auto; }
}

/* ===== Numbered steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.step { background: var(--bg-3); padding: 36px 28px; border-radius: var(--radius); border: 1px solid var(--line); position: relative; }
.step-num { font-family: var(--font-serif); font-size: 56px; font-weight: 700; color: var(--gold); line-height: 1; opacity: .9; margin-bottom: 14px; }
.step h3 { margin: 0 0 10px; font-size: 18px; }
.step p { color: var(--ink-2); font-size: 14px; line-height: 1.7; margin: 0; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* ===== Quote/Testimonial ===== */
.quote-block {
  max-width: 880px; margin: 0 auto; text-align: center; padding: 0 24px;
}
.quote-block blockquote {
  font-family: var(--font-serif); font-size: clamp(22px, 3vw, 34px);
  line-height: 1.5; font-style: italic;
  margin: 0 0 24px;
  color: var(--ink);
}
.quote-block blockquote::before, .quote-block blockquote::after { color: var(--gold); font-size: 1.2em; }
.quote-block blockquote::before { content: "“"; margin-right: 6px; }
.quote-block blockquote::after { content: "”"; margin-left: 6px; }
.quote-author { color: var(--gold); font-size: 14px; letter-spacing: .12em; }

/* ===== Logo wall (orgs/cert) ===== */
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.logo-wall .gitem { aspect-ratio: 1; }
@media (max-width: 900px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } }

/* ===== CTA strip ===== */
.cta-strip {
  background: linear-gradient(135deg, #1a1a25 0%, #0a0a0f 100%);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 70px 0;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(200,164,92,0.18), transparent 50%);
}
.cta-strip .container {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
}
.cta-strip-text h2 { font-family: var(--font-serif); font-size: clamp(24px, 3vw, 36px); margin: 0 0 8px; }
.cta-strip-text p { color: var(--ink-2); margin: 0; }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Form ===== */
.form-card {
  max-width: 720px; margin: 0 auto; padding: 0 24px;
}
.form-card form {
  background: linear-gradient(160deg, #14141d 0%, #1c1c27 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 22px; }
.form-row.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; color: var(--gold); margin-bottom: 8px; letter-spacing: .05em; }
.form-row label .req { color: var(--accent); margin-left: 4px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink); font-family: inherit; font-size: 15px;
  transition: all .2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-row select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.form-row select option { background: #1c1c27; color: var(--ink); padding: 8px; }
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(244,239,230,0.35); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(200,164,92,0.05);
  box-shadow: 0 0 0 3px rgba(200,164,92,0.18);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.consent {
  background: rgba(0,0,0,0.3); border: 1px solid var(--line);
  border-radius: 10px; padding: 18px;
  margin-bottom: 24px;
}
.consent details summary { cursor: pointer; color: var(--ink-2); font-size: 13px; padding: 6px 0; }
.consent .privacy-text { color: var(--ink-3); font-size: 12.5px; padding: 12px 0; line-height: 1.7; }
.consent label.check { display: flex; gap: 10px; align-items: flex-start; margin-top: 12px; cursor: pointer; }
.consent input[type=checkbox] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); }
.consent label.check span { font-size: 14px; color: var(--ink); }

.form-submit { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-submit .btn { padding: 16px 36px; font-size: 16px; }
.form-note { color: var(--ink-3); font-size: 13px; }

.alert { padding: 16px 20px; border-radius: 10px; margin-bottom: 22px; font-size: 14.5px; }
.alert-ok { background: rgba(22,163,74,0.12); border: 1px solid rgba(22,163,74,0.4); color: #86efac; }
.alert-err { background: rgba(185,28,28,0.12); border: 1px solid rgba(185,28,28,0.4); color: #fca5a5; }

/* ===== Accordion (FAQ) ===== */
.faq-list { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-weight: 700; font-size: 17px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 26px; color: var(--gold); transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 0 24px; color: var(--ink-2); line-height: 1.85; font-size: 15px; }

/* ===== Footer ===== */
.site-footer { background: #08080d; border-top: 1px solid var(--line); padding-top: 70px; }
.ft-grid { display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 36px; padding-bottom: 50px; }
.ft-brand img { margin-bottom: 16px; }
.ft-brand h3 { margin: 0 0 6px; font-family: var(--font-serif); font-size: 22px; }
.ft-tag { color: var(--gold); font-size: 13px; margin-bottom: 18px; }
.ft-info { color: var(--ink-2); font-size: 13.5px; line-height: 1.85; }
.ft-info a { color: var(--gold-2); }
.ft-col h4 { font-size: 13px; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px; font-weight: 700; }
.ft-col ul { list-style: none; margin: 0; padding: 0; }
.ft-col li { margin-bottom: 10px; }
.ft-col a { color: var(--ink-2); font-size: 13.5px; }
.ft-col a:hover { color: var(--gold); }
.ft-bottom { border-top: 1px solid var(--line); padding: 22px 0; background: #050508; }
.ft-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ft-legal { display: flex; gap: 8px; color: var(--ink-3); font-size: 13px; }
.ft-legal span { color: var(--ink-3); }
.ft-copy { color: var(--ink-3); font-size: 12.5px; }
@media (max-width: 1080px) { .ft-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 700px) { .ft-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* ===== Back to top ===== */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: #1a1a1a; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0; pointer-events: none; transform: translateY(20px);
  transition: all .3s var(--ease);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ===== Misc ===== */
.center { text-align: center; }
.muted { color: var(--ink-2); }
.gold { color: var(--gold); }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); border: 0; margin: 60px 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 96vw; max-height: 92vh; border-radius: 8px; }
.lightbox .lb-close { position: absolute; top: 18px; right: 22px; background: none; border: 0; color: #fff; font-size: 36px; }

/* Tables */
.cert-table { width: 100%; border-collapse: collapse; max-width: 900px; margin: 0 auto; }
.cert-table th, .cert-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.cert-table th { color: var(--gold); font-weight: 600; background: rgba(200,164,92,0.05); }

/* ===== Blog ===== */
.cat-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; justify-content: center; }
.cat-filter a {
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; color: var(--ink-2); background: var(--bg-3);
}
.cat-filter a.on { color: var(--gold); border-color: var(--gold); background: rgba(200,164,92,0.08); }
.cat-filter a span { margin-left: 6px; opacity: .6; font-size: 12px; }

.post-feature {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  margin-bottom: 50px; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, #14141d 0%, #1c1c27 100%);
  border: 1px solid var(--line);
  transition: all .35s var(--ease);
}
.post-feature:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow-gold); }
.post-feature .pf-img { aspect-ratio: 16/10; overflow: hidden; }
.post-feature .pf-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-feature:hover .pf-img img { transform: scale(1.05); }
.post-feature .pf-text { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.post-feature .pf-cat { color: var(--gold); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.post-feature h2 { font-family: var(--font-serif); font-size: clamp(24px, 2.8vw, 36px); margin: 0 0 16px; line-height: 1.25; font-weight: 700; }
.post-feature p { color: var(--ink-2); font-size: 15px; margin: 0 0 20px; line-height: 1.75; }
.post-feature .arrow { color: var(--gold); font-size: 14px; font-weight: 600; }
@media (max-width: 800px) { .post-feature { grid-template-columns: 1fr; } .post-feature .pf-text { padding: 32px 24px; } }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: all .3s var(--ease);
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow-gold); }
.post-card .pc-img { aspect-ratio: 16/10; overflow: hidden; background: #111; }
.post-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover .pc-img img { transform: scale(1.06); }
.post-card .pc-text { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card .pc-cat { color: var(--gold); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; font-weight: 700; }
.post-card h3 { font-family: var(--font-serif); font-size: 19px; margin: 0 0 10px; line-height: 1.35; font-weight: 700; }
.post-card p { color: var(--ink-2); font-size: 13.5px; line-height: 1.65; margin: 0 0 16px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-card .pc-meta { color: var(--ink-3); font-size: 12px; }
@media (max-width: 940px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }

/* Single post */
.single-post { padding-bottom: 60px; }
.single-hero {
  min-height: 60vh; min-height: 60svh;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  padding: 100px 0 60px; position: relative;
}
.single-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; width: 100%; text-align: center; }
.single-hero .sh-cat { color: var(--gold); letter-spacing: .15em; text-transform: uppercase; font-size: 12.5px; font-weight: 700; margin-bottom: 14px; }
.single-hero h1 { font-family: var(--font-serif); font-size: clamp(30px, 4.5vw, 56px); line-height: 1.2; margin: 0 0 18px; font-weight: 700; letter-spacing: -.01em; }
.single-hero .sh-excerpt { color: var(--ink-2); font-size: clamp(15px, 1.6vw, 18px); max-width: 720px; margin: 0 auto; line-height: 1.7; }
.single-body { max-width: 760px; margin: 0 auto; padding: 60px 24px 0; }
.single-img { margin: 0 0 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.single-img img { width: 100%; height: auto; }
.single-content { font-size: 17px; line-height: 1.95; color: var(--ink-2); }
.single-content p { margin: 0 0 22px; }
.single-content h2 { font-family: var(--font-serif); font-size: clamp(22px, 2.6vw, 28px); margin: 44px 0 18px; color: var(--ink); font-weight: 700; line-height: 1.3; }
.single-content strong { color: var(--gold-2); font-weight: 700; }
.single-content em { font-style: italic; color: var(--ink); }
.single-tags { margin: 36px 0 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.single-tags .tag { padding: 6px 12px; background: rgba(200,164,92,0.08); border: 1px solid var(--line-2); border-radius: 6px; color: var(--gold); font-size: 12.5px; }
.single-share { padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.single-share span { color: var(--ink-3); font-size: 13px; }
.single-share button, .single-share a { padding: 8px 14px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 6px; color: var(--ink-2); font-size: 13px; cursor: pointer; }
.single-share a:hover, .single-share button:hover { color: var(--gold); border-color: var(--gold); }
.single-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.single-nav a { padding: 18px 22px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px; }
.single-nav a:hover { border-color: var(--gold); }
.single-nav .next { text-align: right; }
.single-nav span { display: block; color: var(--gold); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }
.single-nav strong { display: block; font-size: 14px; font-weight: 600; line-height: 1.4; }
@media (max-width: 600px) { .single-nav { grid-template-columns: 1fr; } .single-nav .next { text-align: left; } }

/* ===== Home enhancements ===== */
.split-marquee {
  overflow: hidden; padding: 24px 0;
  background: linear-gradient(90deg, rgba(200,164,92,0.04), transparent, rgba(200,164,92,0.04));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex; gap: 40px; animation: scroll-x 35s linear infinite;
  white-space: nowrap; will-change: transform;
}
.marquee-track span {
  font-family: var(--font-serif); font-size: clamp(18px, 2vw, 28px);
  color: var(--ink-2); font-style: italic;
}
.marquee-track .dot { color: var(--gold); }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* CEO horizontal showcase */
.ceo-strip {
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: linear-gradient(135deg, #08080d 0%, #16161f 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
.ceo-strip::before {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,164,92,0.16), transparent 60%);
  pointer-events: none;
}
.ceo-strip .container { max-width: 1400px; position: relative; z-index: 1; }
.ceo-strip-head { text-align: center; margin-bottom: 60px; }
.ceo-strip-head .eyebrow { color: var(--gold); font-size: 12px; letter-spacing: .3em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; display: inline-block; }
.ceo-strip-head h2 { font-family: var(--font-serif); font-size: clamp(34px, 5vw, 60px); margin: 0 0 20px; line-height: 1.15; font-weight: 700; }
.ceo-strip-head h2 em { font-style: italic; color: var(--gold-2); }
.ceo-strip-head p { color: var(--ink-2); font-size: clamp(16px, 1.6vw, 19px); max-width: 720px; margin: 0 auto; line-height: 1.75; }
.ceo-rail {
  display: flex; gap: 18px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 24px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.ceo-rail::-webkit-scrollbar { height: 6px; }
.ceo-rail::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.ceo-rail-item {
  flex: 0 0 320px; scroll-snap-align: start;
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; background: #111; position: relative;
  box-shadow: var(--shadow);
}
.ceo-rail-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.ceo-rail-item:hover img { transform: scale(1.05); }
.ceo-rail-item::after {
  content: attr(data-cap); position: absolute; left: 18px; right: 18px; bottom: 18px;
  background: rgba(10,10,15,0.78); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2); border-radius: 8px;
  padding: 10px 14px; color: var(--gold); font-size: 12.5px; font-weight: 600;
  text-align: center; letter-spacing: .03em;
}
@media (max-width: 600px) { .ceo-rail-item { flex-basis: 78vw; } }

/* Photo wall masonry */
.photo-wall {
  columns: 5 220px; column-gap: 8px;
  max-width: 100%; padding: 0 12px;
}
.photo-wall .item { break-inside: avoid; margin-bottom: 8px; border-radius: 6px; overflow: hidden; cursor: zoom-in; background: #111; }
.photo-wall img { width: 100%; transition: opacity .4s, transform 1s var(--ease); }
.photo-wall .item:hover img { transform: scale(1.04); }

/* Big quote interlude */
.big-quote {
  padding: 140px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(200,164,92,0.14), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.big-quote::before {
  content: "“"; font-family: var(--font-serif); font-size: 220px;
  color: var(--gold); opacity: .14; line-height: 1;
  position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
}
.big-quote blockquote {
  font-family: var(--font-serif); font-size: clamp(26px, 4vw, 48px);
  font-weight: 500; line-height: 1.4; max-width: 1000px; margin: 0 auto 30px;
  color: var(--ink); position: relative; z-index: 1;
}
.big-quote blockquote em { font-style: italic; color: var(--gold-2); }
.big-quote .by { color: var(--gold); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; }

/* Press logos / social proof */
.press-strip { padding: 60px 0; border-top: 1px solid var(--line); }
.press-strip .container { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 50px; opacity: .85; }
.press-strip .pl {
  font-family: var(--font-serif); color: var(--ink-2); font-size: 18px;
  padding: 0 14px; border-right: 1px solid var(--line); height: 28px; line-height: 28px;
}
.press-strip .pl:last-child { border: 0; }

/* CTA huge */
.cta-huge {
  padding: 130px 24px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1a25 0%, #0a0a0f 100%);
}
.cta-huge::before {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,164,92,0.22), transparent 60%);
}
.cta-huge .inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.cta-huge h2 {
  font-family: var(--font-serif); font-size: clamp(32px, 5vw, 64px);
  margin: 0 0 16px; line-height: 1.15; font-weight: 700;
  background: linear-gradient(180deg, #f8f3e9 0%, #c8a45c 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-huge p { color: var(--ink-2); font-size: 17px; margin: 0 0 36px; line-height: 1.7; }
.cta-huge .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Compact post teaser on home */
.posts-teaser { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.pt-card { background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: all .3s var(--ease); }
.pt-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.pt-card .ptimg { aspect-ratio: 4/3; overflow: hidden; background: #111; }
.pt-card .ptimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pt-card:hover .ptimg img { transform: scale(1.06); }
.pt-card .pttx { padding: 16px 18px 20px; }
.pt-card .pttx span { font-size: 11px; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.pt-card .pttx h4 { margin: 8px 0 0; font-size: 14.5px; font-weight: 700; line-height: 1.45; }
@media (max-width: 940px) { .posts-teaser { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .posts-teaser { grid-template-columns: 1fr; } }

/* Cinematic split */
.cinematic-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh;
}
.cinematic-split .cs-pane {
  position: relative; overflow: hidden; padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
}
.cinematic-split .cs-pane::before {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%);
}
.cinematic-split .cs-pane > * { position: relative; z-index: 1; }
.cinematic-split .cs-pane .ttl { font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 44px); margin: 0 0 16px; line-height: 1.15; font-weight: 700; }
.cinematic-split .cs-pane .desc { color: rgba(255,255,255,0.85); margin: 0 0 24px; font-size: 16px; line-height: 1.7; }
.cinematic-split .cs-pane .lnk { color: var(--gold-2); font-weight: 700; font-size: 14px; }
@media (max-width: 880px) { .cinematic-split { grid-template-columns: 1fr; } .cinematic-split .cs-pane { padding: 60px 30px; min-height: 50vh; } }

/* ===== Achievements grid (luxury) ===== */
.achievements {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: linear-gradient(135deg, #06060a 0%, #14141d 100%);
}
.ach-cell {
  padding: 70px 50px; text-align: center;
  border-right: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: background .4s var(--ease);
}
.ach-cell:last-child { border-right: 0; }
.ach-cell::before {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(200,164,92,0.18), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.ach-cell:hover::before { opacity: 1; }
.ach-cell .num { font-family: var(--font-serif); font-size: clamp(56px,7vw,96px); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 14px; position: relative; z-index: 1; }
.ach-cell .lab { color: var(--ink); font-size: 16px; font-weight: 600; letter-spacing: -.01em; position: relative; z-index: 1; }
.ach-cell .desc { color: var(--ink-3); font-size: 13px; margin-top: 8px; position: relative; z-index: 1; }
@media (max-width: 800px) { .achievements { grid-template-columns: 1fr; } .ach-cell { border-right: 0; border-bottom: 1px solid var(--line); padding: 50px 30px; } .ach-cell:last-child { border-bottom: 0; } }

/* ===== Parallax block ===== */
.parallax-section {
  min-height: 80vh; position: relative;
  background-attachment: fixed; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.parallax-section::before {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,0.65) 0%, rgba(10,10,15,0.85) 100%);
}
.parallax-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; padding: 60px 24px; }
.parallax-inner .eyebrow { display:inline-block; color: var(--gold); font-size: 12px; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.parallax-inner h2 {
  font-family: var(--font-serif); font-size: clamp(32px, 5.5vw, 64px); margin: 0 0 24px;
  line-height: 1.15; font-weight: 700; color: #fff;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
}
.parallax-inner p { color: rgba(255,255,255,0.92); font-size: clamp(16px, 1.7vw, 19px); line-height: 1.8; margin-bottom: 36px; }
@media (max-width: 768px) { .parallax-section { background-attachment: scroll; } }

/* ===== Mini-timeline (horizontal, luxury) ===== */
.timeline-h {
  display: flex; gap: 0; overflow-x: auto;
  padding: 30px 24px 50px; scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.timeline-h::-webkit-scrollbar { height: 4px; }
.timeline-h::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.tlh-item {
  flex: 0 0 280px; scroll-snap-align: start;
  padding: 0 24px; position: relative;
  border-left: 2px solid var(--line);
}
.tlh-item:first-child { border-left: 2px solid var(--gold); }
.tlh-item .tlh-year { font-family: var(--font-serif); font-size: 32px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.tlh-item .tlh-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.tlh-item .tlh-desc { color: var(--ink-2); font-size: 13.5px; line-height: 1.6; }

/* ===== Numbered editorial pillars ===== */
.editorial {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px 80px;
}
.ed-item {}
.ed-item .ednum { font-family: var(--font-serif); font-size: 48px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 14px; opacity: .9; }
.ed-item h3 { font-family: var(--font-serif); font-size: 26px; margin: 0 0 12px; font-weight: 700; line-height: 1.25; }
.ed-item p { color: var(--ink-2); font-size: 15.5px; line-height: 1.85; margin: 0; }
@media (max-width: 800px) { .editorial { grid-template-columns: 1fr; gap: 40px; } }

/* ===== CEO grand portrait (full bleed split) ===== */
.ceo-grand {
  display: grid; grid-template-columns: 1.05fr 1fr;
  background: linear-gradient(135deg, #08080d 0%, #1c1c27 100%);
  align-items: stretch; min-height: 90vh;
}
.ceo-grand .left {
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.ceo-grand .left::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, #08080d 100%);
}
.ceo-grand .right { display: flex; align-items: center; padding: 80px 60px; }
.ceo-grand .right-inner { max-width: 540px; }
.ceo-grand .eyebrow { color: var(--gold); font-size: 12px; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 22px; font-weight: 700; }
.ceo-grand h2 {
  font-family: var(--font-serif); font-size: clamp(36px, 4.8vw, 60px);
  margin: 0 0 20px; line-height: 1.1; font-weight: 700;
  background: linear-gradient(180deg, #f8f3e9 0%, #c8a45c 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ceo-grand h2 small { display:block; font-family: var(--font-sans); font-size: 14px; color: var(--ink-2); letter-spacing: .25em; text-transform: uppercase; margin-top: 14px; -webkit-text-fill-color: var(--ink-2); font-weight: 500; }
.ceo-grand p { color: var(--ink-2); font-size: 16px; line-height: 1.85; margin-bottom: 22px; }
.ceo-grand .ceo-grand-quote {
  font-family: var(--font-serif); font-style: italic; font-size: 22px;
  border-left: 3px solid var(--gold); padding-left: 22px; color: var(--gold-2);
  margin: 30px 0;
}
.ceo-grand .actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .ceo-grand { grid-template-columns: 1fr; min-height: auto; }
  .ceo-grand .left { min-height: 60vh; }
  .ceo-grand .left::after { background: linear-gradient(180deg, transparent 60%, #08080d 100%); }
  .ceo-grand .right { padding: 50px 30px; }
}

/* ============================================================
   MOBILE TYPOGRAPHY — Korean readability tuning
   ============================================================ */
@media (max-width: 640px) {
  body { font-size: 14.5px; line-height: 1.7; }
  .container { padding: 0 18px; }
  .section { padding: 70px 0; }
  .section-sm { padding: 48px 0; }

  /* Section headings */
  .sec-head { margin-bottom: 40px; padding: 0 18px; }
  .sec-eyebrow { font-size: 11px; letter-spacing: .25em; margin-bottom: 14px; }
  .sec-title { font-size: 26px; line-height: 1.25; letter-spacing: -.015em; margin-bottom: 14px; }
  .sec-subtitle { font-size: 14.5px; line-height: 1.7; }

  /* Page hero (sub pages) */
  .page-hero { padding: 110px 0 60px; }
  .page-hero h1 { font-size: 30px; line-height: 1.2; letter-spacing: -.015em; }
  .page-hero p { font-size: 14.5px; line-height: 1.7; }
  .page-hero .crumbs { font-size: 11px; letter-spacing: .18em; }

  .page-hero-img { min-height: 38vh; }
  .page-hero-img h1 { font-size: 30px; line-height: 1.2; }
  .page-hero-img p { font-size: 14px; line-height: 1.7; }
  .page-hero-img .inner { padding: 40px 18px; }

  /* Pillars / cards */
  .pillar { padding: 28px 22px; }
  .pillar h3 { font-size: 17px; line-height: 1.35; }
  .pillar p { font-size: 13.5px; line-height: 1.7; }

  /* Page cards */
  .pcard h3 { font-size: 22px; line-height: 1.25; }
  .pcard p { font-size: 13px; line-height: 1.55; }
  .pcard .pcard-tag { font-size: 10.5px; letter-spacing: .2em; }
  .pcard-text { left: 22px; right: 22px; bottom: 22px; }

  /* Two-column */
  .two-col { gap: 28px; padding: 0 18px; }
  .two-col h2 { font-size: 24px; line-height: 1.25; margin-bottom: 14px; }
  .two-col p { font-size: 14.5px; line-height: 1.75; margin-bottom: 12px; }
  .two-col ul { font-size: 14.5px; line-height: 1.75; }
  .two-col .eyebrow { font-size: 11px; letter-spacing: .22em; margin-bottom: 12px; }

  /* Stats */
  .stats-band { padding: 40px 0; }
  .stat-num { font-size: 40px; line-height: 1; margin-bottom: 8px; }
  .stat-label { font-size: 12.5px; }

  /* CEO card */
  .ceo-card { padding: 32px 22px; gap: 24px; border-radius: 18px; }
  .ceo-name { font-size: 26px; }
  .ceo-name small { font-size: 13px; margin-left: 8px; display: inline-block; }
  .ceo-title { font-size: 11px; letter-spacing: .22em; margin-bottom: 14px; }
  .ceo-bio { font-size: 14.5px; line-height: 1.85; }
  .ceo-quote { font-size: 16px; padding-left: 16px; line-height: 1.65; }
  .ceo-cta .btn { width: 100%; max-width: 100%; }

  /* CEO grand */
  .ceo-grand .right { padding: 40px 22px; }
  .ceo-grand h2 { font-size: 28px; line-height: 1.18; }
  .ceo-grand h2 small { font-size: 12px; margin-top: 10px; letter-spacing: .18em; }
  .ceo-grand p { font-size: 14.5px; line-height: 1.8; }
  .ceo-grand-quote { font-size: 16.5px; }

  /* Achievements */
  .ach-cell { padding: 40px 24px; }
  .ach-cell .num { font-size: 48px; }
  .ach-cell .lab { font-size: 15px; }
  .ach-cell .desc { font-size: 12.5px; }

  /* Steps */
  .step { padding: 26px 22px; }
  .step-num { font-size: 44px; margin-bottom: 10px; }
  .step h3 { font-size: 16px; }
  .step p { font-size: 13.5px; line-height: 1.65; }

  /* Timeline horizontal */
  .timeline-h { padding: 20px 18px 40px; }
  .tlh-item { flex-basis: 220px; padding: 0 18px; }
  .tlh-item .tlh-year { font-size: 26px; }
  .tlh-item .tlh-title { font-size: 14.5px; line-height: 1.35; }
  .tlh-item .tlh-desc { font-size: 12.5px; line-height: 1.55; }

  /* Editorial */
  .ed-item .ednum { font-size: 38px; margin-bottom: 10px; }
  .ed-item h3 { font-size: 21px; line-height: 1.25; margin-bottom: 10px; }
  .ed-item p { font-size: 14px; line-height: 1.8; }

  /* Big quote */
  .big-quote { padding: 80px 18px; }
  .big-quote::before { font-size: 140px; top: 20px; }
  .big-quote blockquote { font-size: 22px; line-height: 1.45; margin-bottom: 22px; }
  .big-quote .by { font-size: 11.5px; letter-spacing: .15em; }

  /* Quote block */
  .quote-block { padding: 0 18px; }
  .quote-block blockquote { font-size: 18px; line-height: 1.55; margin-bottom: 18px; }
  .quote-author { font-size: 12px; letter-spacing: .08em; }

  /* Parallax */
  .parallax-section { min-height: 60vh; }
  .parallax-inner { padding: 50px 18px; }
  .parallax-inner h2 { font-size: 26px; line-height: 1.22; margin-bottom: 18px; }
  .parallax-inner p { font-size: 14.5px; line-height: 1.75; margin-bottom: 26px; }
  .parallax-inner .eyebrow { font-size: 11px; letter-spacing: .22em; margin-bottom: 16px; }

  /* CTA huge */
  .cta-huge { padding: 80px 18px; }
  .cta-huge h2 { font-size: 28px; line-height: 1.2; margin-bottom: 14px; }
  .cta-huge p { font-size: 14.5px; line-height: 1.7; margin-bottom: 26px; }
  .cta-huge .actions .btn { width: 100%; max-width: 320px; }

  /* CTA strip */
  .cta-strip { padding: 50px 0; }
  .cta-strip-text h2 { font-size: 22px; line-height: 1.25; }
  .cta-strip-text p { font-size: 14px; }
  .cta-strip .container { gap: 18px; }
  .cta-strip-actions { flex-direction: column; gap: 10px; width: 100%; }
  .cta-strip-actions .btn { width: 100%; }

  /* Marquee */
  .marquee-track span { font-size: 16px; }

  /* Cinematic split */
  .cinematic-split .cs-pane { padding: 50px 22px; min-height: 42vh; }
  .cinematic-split .cs-pane .ttl { font-size: 24px; line-height: 1.2; }
  .cinematic-split .cs-pane .desc { font-size: 14px; line-height: 1.7; }

  /* Cards / page-cards / posts */
  .pcard { aspect-ratio: 5/6; }
  .post-feature .pf-text { padding: 28px 22px; }
  .post-feature h2 { font-size: 22px; line-height: 1.25; }
  .post-feature p { font-size: 14px; line-height: 1.7; }

  /* Single post */
  .single-hero { min-height: 50vh; padding: 90px 0 40px; }
  .single-hero h1 { font-size: 26px; line-height: 1.25; }
  .single-hero .sh-cat { font-size: 11px; letter-spacing: .12em; }
  .single-hero .sh-excerpt { font-size: 14.5px; line-height: 1.7; }
  .single-body { padding: 40px 18px 0; }
  .single-content { font-size: 15.5px; line-height: 1.95; }
  .single-content h2 { font-size: 20px; line-height: 1.3; margin: 32px 0 14px; }

  /* Form */
  .form-card { padding: 0 18px; }
  .form-card form { padding: 32px 24px; border-radius: 18px; }
  .form-row label { font-size: 12.5px; }
  .form-row.cols { grid-template-columns: 1fr; gap: 0; }
  .form-row.cols > div { margin-bottom: 18px; }
  .form-row input, .form-row select, .form-row textarea { font-size: 16px; padding: 13px 14px; } /* 16px to prevent iOS zoom */
  .form-submit { flex-direction: column; align-items: stretch; gap: 12px; }
  .form-submit .btn { width: 100%; padding: 15px; }
  .form-note { font-size: 12px; text-align: center; }

  /* FAQ */
  .faq-list { padding: 0 18px; }
  .faq-item summary { font-size: 15px; padding: 20px 0; }
  .faq-item .faq-body { font-size: 14px; line-height: 1.85; }

  /* Press / footer */
  .press-strip .pl { font-size: 14.5px; padding: 0 10px; height: 22px; line-height: 22px; }
  .ft-grid { padding-bottom: 36px; }
  .ft-info { font-size: 13px; line-height: 1.85; }
  .ft-col h4 { font-size: 11.5px; letter-spacing: .1em; margin-bottom: 12px; }
  .ft-col li { margin-bottom: 8px; }
  .ft-col a { font-size: 13px; }
  .ft-bottom .container { flex-direction: column; gap: 8px; text-align: center; }

  /* Buttons */
  .btn { padding: 13px 22px; font-size: 14px; }

  /* Sitemap */
  .sm-section { margin-bottom: 50px; }
  .sm-title { font-size: 22px; }
  .sm-text h3 { font-size: 14.5px; line-height: 1.35; }
  .sm-text p { font-size: 12px; }
  .qa-card { padding: 18px; gap: 14px; }
  .qa-card .qa-icon { font-size: 28px; }
  .qa-card strong { font-size: 14.5px; }
  .qa-card span { font-size: 12px; }

  /* Tables */
  .cert-table th, .cert-table td { padding: 10px 12px; font-size: 13px; }
}

@media (max-width: 380px) {
  .sec-title { font-size: 22px; }
  .hero h1 { font-size: 30px; }
  .ceo-grand h2 { font-size: 24px; }
  .parallax-inner h2 { font-size: 22px; }
  .cta-huge h2 { font-size: 24px; }
  .single-hero h1 { font-size: 22px; }
}

/* ===== Sitemap page ===== */
.sm-section { margin-bottom: 80px; }
.sm-title {
  font-family: var(--font-serif); font-size: clamp(24px, 3vw, 34px);
  font-weight: 700; margin: 0 0 28px;
  padding-bottom: 14px; border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.sm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sm-card {
  display: block; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden; transition: all .3s var(--ease);
}
.sm-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.sm-thumb { aspect-ratio: 16/10; overflow: hidden; background: #111; }
.sm-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.sm-card:hover .sm-thumb img { transform: scale(1.06); }
.sm-thumb-empty { display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--font-serif); font-size: 22px; background: linear-gradient(135deg, #1c1c27, #14141d); }
.sm-text { padding: 16px 18px 20px; }
.sm-text h3 { font-size: 15.5px; margin: 0 0 6px; font-weight: 700; line-height: 1.4; }
.sm-text p { font-size: 12.5px; color: var(--ink-2); margin: 0; line-height: 1.6; }
@media (max-width: 980px) { .sm-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .sm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .sm-grid { grid-template-columns: 1fr; } }

.sm-quick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.qa-card {
  display: flex; align-items: center; gap: 18px;
  padding: 24px; background: var(--bg-3);
  border: 1px solid var(--line-2); border-radius: 14px;
  transition: all .3s var(--ease);
}
.qa-card:hover { transform: translateY(-3px); background: rgba(200,164,92,0.06); border-color: var(--gold); }
.qa-card .qa-icon { font-size: 36px; flex-shrink: 0; color: var(--gold); }
.qa-card div { display: flex; flex-direction: column; }
.qa-card strong { color: var(--ink); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.qa-card span { color: var(--ink-2); font-size: 13px; }
@media (max-width: 700px) { .sm-quick { grid-template-columns: 1fr; } }

/* ===== Page hero with image (for text-heavy pages) ===== */
.page-hero-img {
  padding: 0; min-height: 50vh; display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.page-hero-img::before {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.4) 0%, rgba(10,10,15,0.95) 100%);
}
.page-hero-img .inner {
  position: relative; z-index: 1; max-width: 900px; margin: 0 auto;
  padding: 60px 24px; text-align: center; width: 100%;
}
.page-hero-img .crumbs { font-size: 12px; color: var(--gold); letter-spacing: .25em; text-transform: uppercase; margin-bottom: 18px; }
.page-hero-img h1 {
  font-family: var(--font-serif); font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700; line-height: 1.1; margin: 0 0 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #f8f3e9 0%, #c8a45c 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero-img p { font-size: clamp(15px, 1.6vw, 18px); color: var(--ink-2); margin: 0; max-width: 700px; margin-left:auto; margin-right:auto; }

/* ===== Map showcase (artistic nationwide view) ===== */
.map-showcase {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(200,164,92,0.12), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(200,164,92,0.10), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative; overflow: hidden;
}
.map-grid {
  max-width: 1200px; margin: 50px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.map-canvas {
  position: relative; aspect-ratio: 4/5;
  background: linear-gradient(160deg, #14141d, #0a0a0f);
  border: 1px solid var(--line-2);
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow);
}
.map-canvas svg { width: 100%; height: 100%; display: block; }
.map-canvas .map-pin { animation: pulse-pin 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.map-canvas .map-pin:nth-child(2) { animation-delay: .4s; }
.map-canvas .map-pin:nth-child(3) { animation-delay: .8s; }
.map-canvas .map-pin:nth-child(4) { animation-delay: 1.2s; }
.map-canvas .map-pin:nth-child(5) { animation-delay: 1.6s; }
.map-canvas .map-pin:nth-child(6) { animation-delay: 2.0s; }
.map-canvas .map-pin:nth-child(7) { animation-delay: 2.4s; }
@keyframes pulse-pin { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .65; transform: scale(1.15); } }
.map-text h2 { font-family: var(--font-serif); font-size: clamp(28px,3.6vw,40px); margin: 0 0 16px; line-height: 1.2; }
.map-text p { color: var(--ink-2); font-size: 16px; line-height: 1.85; margin-bottom: 14px; }
.map-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.map-stat { text-align: center; padding: 18px; background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 12px; }
.map-stat strong { display: block; font-family: var(--font-serif); font-size: 28px; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.map-stat span { font-size: 12px; color: var(--ink-2); }
@media (max-width: 880px) { .map-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== Infinite scroll showcase ribbon ===== */
.scroll-ribbon {
  padding: 60px 0; overflow: hidden;
  background: linear-gradient(135deg, #08080d 0%, #14141d 100%);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.ribbon-track {
  display: flex; gap: 18px;
  animation: scroll-ribbon 50s linear infinite;
  width: max-content;
}
.ribbon-track:hover { animation-play-state: paused; }
.ribbon-card {
  flex: 0 0 auto; width: 320px; aspect-ratio: 4/3;
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.ribbon-card img { width: 100%; height: 100%; object-fit: cover; }
.ribbon-card::after {
  content: attr(data-cap); position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: var(--gold-2); font-size: 13px; font-weight: 600;
}
@keyframes scroll-ribbon { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Hover reveal grid (spectacular interactive) ===== */
.reveal-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; gap: 8px;
  max-width: 1400px; margin: 0 auto; padding: 0 12px;
}
.reveal-grid .rg-cell {
  position: relative; overflow: hidden; border-radius: 10px;
  background: #111; cursor: pointer;
}
.reveal-grid .rg-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .4s; }
.reveal-grid .rg-cell::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,15,0.95));
  color: var(--gold); font-size: 13px; font-weight: 700;
  display: flex; align-items: flex-end; padding: 14px;
  opacity: 0; transition: opacity .3s var(--ease);
  letter-spacing: -.01em;
}
.reveal-grid .rg-cell:hover::after { opacity: 1; }
.reveal-grid .rg-cell:hover img { transform: scale(1.08); }
.reveal-grid .rg-big { grid-column: span 3; grid-row: span 2; }
.reveal-grid .rg-tall { grid-row: span 2; }
.reveal-grid .rg-wide { grid-column: span 2; }
@media (max-width: 880px) {
  .reveal-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 130px; }
  .reveal-grid .rg-big { grid-column: span 3; grid-row: span 2; }
  .reveal-grid .rg-tall { grid-row: span 1; }
  .reveal-grid .rg-wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .reveal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; }
  .reveal-grid .rg-big { grid-column: span 2; grid-row: span 2; }
  .reveal-grid .rg-tall { grid-row: span 1; }
  .reveal-grid .rg-wide { grid-column: span 2; }
  .reveal-grid .rg-cell::after { opacity: 1; background: linear-gradient(180deg, transparent 60%, rgba(10,10,15,0.9)); font-size: 11px; }
}

/* ===== Big number ribbon ===== */
.num-ribbon {
  padding: 90px 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200,164,92,0.15), transparent 60%),
    linear-gradient(135deg, #08080d 0%, #14141d 100%);
  text-align: center;
}
.num-ribbon-grid {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.num-cell { padding: 30px 18px; }
.num-cell .nc-num {
  display: block; font-family: var(--font-serif);
  font-size: clamp(48px, 6.5vw, 88px); line-height: 1; font-weight: 700;
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 12px;
}
.num-cell .nc-lab { color: var(--ink); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.num-cell .nc-sub { color: var(--ink-3); font-size: 12px; }
@media (max-width: 720px) { .num-ribbon-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } .num-cell { padding: 18px 12px; } }

/* Featured video block (showcased) */
.video-showcase { background: #000; padding: 0; position: relative; overflow: hidden; }
.video-showcase .vs-inner { position: relative; aspect-ratio: 21/9; max-height: 70vh; }
.video-showcase video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.video-showcase .vs-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 60px;
}
.video-showcase h2 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 56px); margin: 0 0 12px; color: #fff; }
.video-showcase p { color: rgba(255,255,255,0.85); font-size: 16px; margin: 0; max-width: 640px; }
@media (max-width: 700px) { .video-showcase .vs-overlay { padding: 30px; } }

