    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --bg: #08080d;
      --bg2: #0c0c14;
      --bg3: #10101a;
      --bg-card: rgba(255,255,255,0.02);
      --bg-card-hover: rgba(255,255,255,0.05);
      --text: #f5f0e8;
      --text2: #b8b0a4;
      --dim: #3e3e50;
      --accent: #d4a843;
      --glow: #e8c860;
      --gold: #f0dca0;
      --gold-bright: #f5d060;
      --blue: #2a4a8f;
      --blue-light: #4a7dff;
      --border: rgba(255,255,255,0.05);
      --border-hover: rgba(240,220,160,0.25);
      --fs-hero: clamp(42px, 9.5vw, 180px);
      --fs-display: clamp(34px, 5vw, 72px);
      --fs-h1: clamp(30px, 3.8vw, 58px);
      --fs-h2: clamp(24px, 3vw, 44px);
      --fs-h3: clamp(19px, 1.8vw, 26px);
      --fs-body: clamp(15px, 1.05vw, 17px);
      --fs-body-lg: clamp(16px, 1.15vw, 19px);
      --fs-small: clamp(12px, 0.85vw, 14px);
      --fs-caption: clamp(10px, 0.7vw, 12px);
      --fs-label: clamp(11px, 0.78vw, 13px);
      --lh-tight: 1.15;
      --lh-heading: 1.3;
      --lh-body: 1.8;
      --lh-relaxed: 2;
      --ls-tight: -0.02em;
      --ls-normal: 0em;
      --ls-wide: 0.06em;
      --ls-wider: 0.12em;
      --ls-widest: 0.2em;
      --space-xs: 8px;
      --space-sm: 16px;
      --space-md: 24px;
      --space-lg: 48px;
      --space-xl: 80px;
      --space-2xl: 120px;
      --space-3xl: 160px;
      --page-gutter: 20px;
      --section-py: 80px;
      --max-w: 1280px;
      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --safe-top: env(safe-area-inset-top, 0px);
      --safe-bottom: env(safe-area-inset-bottom, 0px);
      --section-gap: clamp(80px, 10vw, 160px);
      --shadow-sm: 0 1px 2px rgba(0,0,0,0.3), 0 2px 6px rgba(0,0,0,0.15);
      --shadow-md: 0 4px 12px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.2);
      --shadow-lg: 0 8px 30px rgba(0,0,0,0.5), 0 16px 60px rgba(0,0,0,0.25);
      --shadow-glow: 0 0 20px rgba(232,213,160,0.12), 0 0 60px rgba(232,213,160,0.06);
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-xl: 16px;
      --radius-full: 100px;
      --transition-fast: 0.2s;
      --transition-normal: 0.35s;
      --transition-slow: 0.6s;
    }
    @media (min-width: 768px) { :root { --page-gutter: 48px; --section-py: 120px; } }
    @media (min-width: 1200px) { :root { --page-gutter: 64px; --section-py: 140px; } }

    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
    body {
      background: var(--bg); color: var(--text);
      font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: var(--fs-body); line-height: var(--lh-body);
      overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
      word-break: keep-all; overflow-wrap: break-word;
      font-feature-settings: 'kern' 1; text-rendering: optimizeLegibility; letter-spacing: 0.01em;
    }
    .skip-link { position: fixed; top: -100%; left: 50%; transform: translateX(-50%); z-index: 100000; background: var(--gold); color: var(--bg); padding: 12px 24px; font-weight: 700; font-size: 14px; border-radius: 0 0 8px 8px; text-decoration: none; transition: top 0.3s; }
    .skip-link:focus { top: 0; }
    :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
    :focus:not(:focus-visible) { outline: none; }

    /* === PRELOADER === */
    .preloader { position: fixed; inset: 0; background: #050508; z-index: 99999; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: opacity 0.8s ease, visibility 0.8s ease; }
    .preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
    .preloader-logo { font-family: 'Noto Sans KR', sans-serif; font-weight: 900; font-size: 24px; letter-spacing: 0.18em; color: var(--dim); animation: preGlow 1.5s ease-in-out forwards; }
    .preloader-bar { width: 100px; height: 1px; background: var(--dim); margin-top: 20px; position: relative; overflow: hidden; }
    .preloader-bar::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--gold); animation: preFill 1.2s 0.3s ease-out forwards; box-shadow: 0 0 10px var(--gold-bright); }
    @keyframes preGlow { 0% { color: var(--dim); } 50% { color: var(--gold); text-shadow: 0 0 30px rgba(232,213,160,0.5); } 100% { color: var(--text); text-shadow: 0 0 60px rgba(232,213,160,0.2); } }
    @keyframes preFill { to { width: 100%; } }

    /* === SCROLL PROGRESS === */
    .scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--gold-bright), var(--gold)); z-index: 10001; width: 0%; will-change: width; box-shadow: 0 0 10px rgba(240,220,160,0.3); }

    /* === FILM GRAIN === */
    body::after { content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 10000; opacity: 0.015; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 128px 128px; }

    /* === SPARKLES === */
    .sparkles { position: fixed; inset: 0; pointer-events: none; z-index: 3; overflow: hidden; }
    .spark { position: absolute; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; opacity: 0; animation: sparkFloat linear infinite; will-change: transform, opacity; }
    .spark::after { content: ''; position: absolute; inset: -3px; background: radial-gradient(circle, rgba(232,213,160,0.4), transparent 70%); border-radius: 50%; }
    @keyframes sparkFloat { 0% { opacity: 0; transform: translateY(100vh) scale(0); } 10% { opacity: 0.8; transform: translateY(90vh) scale(1); } 90% { opacity: 0.3; transform: translateY(5vh) scale(0.4); } 100% { opacity: 0; transform: translateY(-5vh) scale(0); } }
    .spark:nth-child(1) { left: 8%; animation-duration: 14s; animation-delay: 0s; width: 2px; height: 2px; }
    .spark:nth-child(2) { left: 22%; animation-duration: 18s; animation-delay: 2s; }
    .spark:nth-child(3) { left: 35%; animation-duration: 12s; animation-delay: 5s; width: 2px; height: 2px; }
    .spark:nth-child(4) { left: 50%; animation-duration: 20s; animation-delay: 1s; width: 4px; height: 4px; }
    .spark:nth-child(5) { left: 65%; animation-duration: 16s; animation-delay: 4s; width: 2px; height: 2px; }
    .spark:nth-child(6) { left: 78%; animation-duration: 13s; animation-delay: 7s; }
    .spark:nth-child(7) { left: 90%; animation-duration: 17s; animation-delay: 3s; width: 2px; height: 2px; }
    .spark:nth-child(8) { left: 15%; animation-duration: 22s; animation-delay: 6s; width: 2px; height: 2px; }
    .spark:nth-child(9) { left: 42%; animation-duration: 15s; animation-delay: 9s; }
    .spark:nth-child(10) { left: 72%; animation-duration: 19s; animation-delay: 8s; width: 2px; height: 2px; }

    /* === GEO SHAPES === */
    .geo-shapes { position: fixed; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }
    .geo { position: absolute; border: 1px solid rgba(232,213,160,0.04); opacity: 0; animation: geoFloat linear infinite; will-change: transform, opacity; }
    .geo-hex { width: 60px; height: 60px; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); background: rgba(232,213,160,0.015); border: none; }
    .geo-diamond { width: 40px; height: 40px; transform: rotate(45deg); background: rgba(201,168,76,0.01); border: none; }
    .geo-ring { width: 80px; height: 80px; border-radius: 50%; border: 1px solid rgba(232,213,160,0.03); }
    @keyframes geoFloat { 0% { opacity: 0; transform: translateY(110vh) rotate(0deg); } 5% { opacity: 0.5; } 95% { opacity: 0.3; } 100% { opacity: 0; transform: translateY(-10vh) rotate(360deg); } }
    .geo:nth-child(1) { left: 10%; animation-duration: 30s; animation-delay: 0s; }
    .geo:nth-child(2) { left: 45%; animation-duration: 40s; animation-delay: 5s; }
    .geo:nth-child(3) { left: 75%; animation-duration: 35s; animation-delay: 12s; }
    .geo:nth-child(4) { left: 30%; animation-duration: 45s; animation-delay: 8s; }
    .geo:nth-child(5) { left: 85%; animation-duration: 38s; animation-delay: 18s; }

    /* === CURSOR GLOW === */
    .cursor-glow { position: fixed; width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,213,160,0.03), rgba(201,168,76,0.015) 40%, transparent 70%); border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 1; will-change: left, top; }
    .page-line { position: fixed; left: 32px; top: 0; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent 5%, var(--accent) 15%, var(--accent) 85%, transparent 95%); opacity: 0.05; z-index: 5; pointer-events: none; }

    /* === SHIMMER === */
    .shimmer { position: relative; display: inline-block; }
    .shimmer::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(232,213,160,0.08), rgba(255,255,255,0.1), rgba(232,213,160,0.08), transparent); animation: shimmerSlide 5s ease-in-out infinite; pointer-events: none; }
    @keyframes shimmerSlide { 0% { left: -50%; } 100% { left: 120%; } }

    /* === PAGE TRANSITION === */
    .page-transition-overlay { position: fixed; inset: 0; z-index: 99990; pointer-events: none; }
    .page-transition-overlay .pt-slice { position: absolute; left: 0; right: 0; background: var(--bg2); transform: scaleY(0); }
    .page-transitioning .pt-slice { animation: ptSliceIn 0.5s var(--ease-out-expo) forwards; }
    .page-transitioning-out .pt-slice { animation: ptSliceOut 0.4s var(--ease-out-expo) forwards; }
    @keyframes ptSliceIn { from { transform: scaleY(0); } to { transform: scaleY(1); } }
    @keyframes ptSliceOut { from { transform: scaleY(1); } to { transform: scaleY(0); } }

    /* === SKELETON LOADING === */
    .skeleton { background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%); background-size: 200% 100%; animation: skeletonShimmer 1.5s ease-in-out infinite; border-radius: var(--radius-md); }
    @keyframes skeletonShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
    .skeleton-text { height: 16px; margin-bottom: 12px; width: 80%; }
    .skeleton-title { height: 32px; margin-bottom: 16px; width: 60%; }
    .skeleton-card { height: 280px; border-radius: var(--radius-lg); }

    /* === NAVIGATION === */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px var(--page-gutter); padding-top: calc(20px + var(--safe-top)); display: flex; justify-content: space-between; align-items: center; transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s; }
    nav.scrolled { background: rgba(8,8,13,0.95); backdrop-filter: blur(30px) saturate(1.2); -webkit-backdrop-filter: blur(30px) saturate(1.2); padding: 14px var(--page-gutter); padding-top: calc(14px + var(--safe-top)); border-bottom: 1px solid rgba(240,220,160,0.06); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
    .nav-logo { font-family: 'Noto Sans KR', sans-serif; font-weight: 900; font-size: 18px; letter-spacing: 0.14em; color: var(--gold); text-shadow: 0 2px 20px rgba(240,220,160,0.15); cursor: pointer; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
    .nav-logo:hover { color: var(--gold-bright); text-shadow: 0 2px 30px rgba(240,220,160,0.3); }
    .nav-links { display: flex; gap: clamp(18px, 2.5vw, 32px); list-style: none; align-items: center; }
    .nav-links a { font-family: 'Syne', sans-serif; font-size: var(--fs-label); font-weight: 500; letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--text2); text-decoration: none; transition: color var(--transition-fast); position: relative; padding: 8px 0; }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease-out-expo); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-links a:hover, .nav-links a.active { color: var(--text); }
    .nav-links a.active::after { transform: scaleX(1); }
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; margin: -10px; z-index: 1001; -webkit-tap-highlight-color: transparent; }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: all 0.3s var(--ease-out-expo); border-radius: 1px; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu { display: none; position: fixed; inset: 0; background: rgba(10,10,15,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); z-index: 999; flex-direction: column; justify-content: center; align-items: center; gap: 24px; opacity: 0; transition: opacity 0.4s; padding: var(--safe-top) 0 var(--safe-bottom); }
    .mobile-menu.open { display: flex; opacity: 1; }
    .mobile-menu a { font-family: 'Syne', sans-serif; font-size: clamp(22px, 5.5vw, 30px); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text2); text-decoration: none; transition: color 0.3s; padding: 10px 24px; -webkit-tap-highlight-color: transparent; }
    .mobile-menu a:hover, .mobile-menu a:active { color: var(--gold); }

    /* Nav CTA */
    .nav-cta { font-family: 'Noto Sans KR', sans-serif !important; font-size: 12px !important; font-weight: 700 !important; letter-spacing: 0.06em !important; color: var(--bg) !important; background: linear-gradient(135deg, var(--accent), var(--glow)); padding: 9px 22px !important; border-radius: var(--radius-md); transition: all 0.4s var(--ease-out-expo) !important; white-space: nowrap; }
    .nav-cta:hover { background: linear-gradient(135deg, var(--gold), var(--gold-bright)) !important; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,213,160,0.25); color: var(--bg) !important; }
    .nav-links a.nav-cta::after { display: none; }
    .nav-links a.nav-cta.active::after { display: none; }
    .mobile-cta { display: inline-flex !important; align-items: center; justify-content: center; margin-top: 20px !important; padding: 14px 40px !important; font-family: 'Noto Sans KR', sans-serif !important; font-size: 16px !important; font-weight: 700 !important; letter-spacing: 0.06em !important; color: var(--bg) !important; background: linear-gradient(135deg, var(--accent), var(--glow)); border-radius: var(--radius-md); }
    .mobile-cta:hover { background: linear-gradient(135deg, var(--gold), var(--gold-bright)) !important; }

    /* === BREADCRUMB === */
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-family: 'Syne', sans-serif; font-size: var(--fs-caption); letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--dim); margin-bottom: clamp(24px, 4vw, 40px); flex-wrap: wrap; }
    .breadcrumb a { color: var(--text2); text-decoration: none; transition: color var(--transition-fast); }
    .breadcrumb a:hover { color: var(--gold); }
    .breadcrumb .bc-sep { opacity: 0.4; }
    .breadcrumb .bc-current { color: var(--gold); }

    /* === SECTION CUE === */
    .cue { font-family: 'Syne', sans-serif; font-size: var(--fs-label); font-weight: 700; letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--gold-bright); margin-bottom: clamp(20px, 3vw, 40px); display: flex; align-items: center; gap: 16px; }
    .cue::after { content: ''; display: block; width: 80px; height: 1px; background: linear-gradient(90deg, var(--gold-bright), transparent); opacity: 0.5; transform: scaleX(0); transform-origin: left; transition: transform 0.8s var(--ease-out-expo); }
    .cue.vis::after, .vis .cue::after { transform: scaleX(1); }
    .divider { width: 100%; height: 1px; position: relative; overflow: hidden; }
    .divider::after { content: ''; position: absolute; top: 0; left: -40%; width: 40%; height: 100%; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: dividerBeam 5s ease-in-out infinite; }
    .divider::before { content: ''; position: absolute; top: 0; right: -40%; width: 40%; height: 100%; background: linear-gradient(90deg, transparent, rgba(232,213,160,0.3), transparent); animation: dividerBeamReverse 7s ease-in-out infinite; }
    @keyframes dividerBeam { 0% { left: -40%; } 100% { left: 100%; } }
    @keyframes dividerBeamReverse { 0% { right: -40%; } 100% { right: 100%; } }

    /* === SECTION HEADING STANDARD === */
    .section-heading { font-family: 'Syne', sans-serif; font-weight: 800; font-size: var(--fs-display); letter-spacing: var(--ls-tight); text-transform: uppercase; margin-bottom: clamp(32px, 5vw, 64px); line-height: var(--lh-tight); position: relative; display: inline-block; padding-bottom: clamp(12px, 1.5vw, 18px); }
    .section-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 80px; height: 2px; background: linear-gradient(90deg, var(--gold-bright), var(--accent), transparent); border-radius: 1px; box-shadow: 0 0 12px rgba(240,220,160,0.15); }
    .section-subheading { font-size: var(--fs-body-lg); color: var(--text2); max-width: 52ch; line-height: var(--lh-body); margin-bottom: clamp(32px, 5vw, 56px); word-break: keep-all; overflow-wrap: break-word; }

    /* === BUTTONS (Design System) === */
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 700; letter-spacing: var(--ls-wider); text-transform: uppercase; border: none; cursor: pointer; transition: all 0.4s var(--ease-out-expo); text-decoration: none; -webkit-tap-highlight-color: transparent; position: relative; overflow: hidden; }
    .btn svg { width: 14px; height: 14px; fill: currentColor; transition: transform 0.3s; }
    .btn:hover svg { transform: translateX(3px); }

    .btn-primary { font-size: var(--fs-small); color: var(--bg); background: linear-gradient(135deg, var(--accent), var(--glow)); padding: 16px 40px; border-radius: var(--radius-md); min-height: 48px; position: relative; overflow: hidden; }
    .btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%); transform: translateX(-100%); transition: transform 0.6s; }
    .btn-primary:hover::before { transform: translateX(100%); }
    .btn-primary:hover { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); transform: translateY(-3px); box-shadow: 0 12px 48px rgba(240,220,160,0.3), 0 0 20px rgba(240,220,160,0.1); }
    .btn-primary:active { transform: translateY(0); }

    .btn-secondary { font-size: var(--fs-small); color: var(--gold); background: rgba(232,213,160,0.06); border: 1px solid rgba(232,213,160,0.25); padding: 14px 32px; border-radius: var(--radius-full); }
    .btn-secondary:hover { background: rgba(232,213,160,0.1); border-color: var(--gold); box-shadow: 0 0 24px rgba(232,213,160,0.1); transform: translateY(-2px); }

    .btn-ghost { font-size: var(--fs-caption); color: var(--text2); background: none; border: 1px solid var(--border); padding: 12px 24px; min-height: 44px; border-radius: var(--radius-full); }
    .btn-ghost:hover { color: var(--gold); border-color: var(--border-hover); }

    /* === TAG === */
    .tag { font-family: 'Syne', sans-serif; font-size: var(--fs-caption); font-weight: 600; letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--gold); opacity: 0.8; display: inline-block; }

    /* === PAGE WRAPPER === */
    #app { min-height: 100vh; }
    .page-content { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease; }
    .page-content.page-entering { opacity: 0; transform: translateY(16px); }
    .page-content.page-visible { opacity: 1; transform: translateY(0); }

    /* === HERO === */
    .hero { height: 100vh; height: 100dvh; min-height: 580px; display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative; overflow: hidden; padding: 0 var(--page-gutter); }
    .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(8,8,13,0.45) 0%, rgba(8,8,13,0.8) 60%, var(--bg) 100%); pointer-events: none; z-index: 0; }
    .hero-slides { position: absolute; inset: 0; z-index: -1; }
    .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; background-size: cover; background-position: center; filter: contrast(1.1) saturate(0.92) brightness(0.96); }
    .hero-slide.active { opacity: 0.62; }
    .hero-caption { position: absolute; bottom: clamp(80px, 10vh, 120px); left: var(--page-gutter); z-index: 2; font-family: 'Syne', sans-serif; font-size: var(--fs-caption); font-weight: 600; letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--gold); opacity: 0; transition: opacity 0.5s 0.2s; }
    .hero-caption.active { opacity: 0.6; }
    .hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 250px; background: linear-gradient(to top, var(--bg), transparent); pointer-events: none; z-index: 1; }

    .hero-beam { position: absolute; top: -60%; left: 50%; width: 250px; height: 220%; background: linear-gradient(90deg, transparent, rgba(232,213,160,0.02), rgba(232,213,160,0.08), rgba(255,255,255,0.05), rgba(232,213,160,0.08), rgba(232,213,160,0.02), transparent); animation: beamSway 8s ease-in-out infinite; pointer-events: none; }
    .hero-beam2 { position: absolute; top: -60%; left: 30%; width: 160px; height: 220%; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.03), rgba(201,168,76,0.06), rgba(201,168,76,0.03), transparent); animation: beamSway2 12s ease-in-out infinite; pointer-events: none; }
    .hero-beam3 { position: absolute; top: -60%; left: 68%; width: 120px; height: 220%; background: linear-gradient(90deg, transparent, rgba(42,74,143,0.03), rgba(42,74,143,0.06), rgba(42,74,143,0.03), transparent); animation: beamSway3 15s ease-in-out infinite; pointer-events: none; }
    .hero-beam4 { position: absolute; top: -60%; left: 15%; width: 100px; height: 220%; background: linear-gradient(90deg, transparent, rgba(232,213,160,0.015), rgba(232,213,160,0.04), rgba(232,213,160,0.015), transparent); animation: beamSway4 18s ease-in-out infinite; pointer-events: none; }
    .hero-beam5 { position: absolute; top: -60%; left: 82%; width: 90px; height: 220%; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.02), rgba(201,168,76,0.04), rgba(201,168,76,0.02), transparent); animation: beamSway5 20s ease-in-out infinite; pointer-events: none; }
    @keyframes beamSway { 0% { transform: translateX(-50%) rotate(-6deg); opacity: 0.7; } 30% { transform: translateX(-30%) rotate(-1deg); opacity: 1; } 60% { transform: translateX(-70%) rotate(4deg); opacity: 0.8; } 100% { transform: translateX(-50%) rotate(-6deg); opacity: 0.7; } }
    @keyframes beamSway2 { 0% { transform: translateX(0%) rotate(4deg); opacity: 0.3; } 50% { transform: translateX(-60%) rotate(-3deg); opacity: 0.7; } 100% { transform: translateX(0%) rotate(4deg); opacity: 0.3; } }
    @keyframes beamSway3 { 0% { transform: translateX(0%) rotate(-2deg); opacity: 0.3; } 40% { transform: translateX(-40%) rotate(3deg); opacity: 0.6; } 100% { transform: translateX(0%) rotate(-2deg); opacity: 0.3; } }
    @keyframes beamSway4 { 0% { transform: translateX(0%) rotate(3deg); opacity: 0.2; } 50% { transform: translateX(40%) rotate(-4deg); opacity: 0.5; } 100% { transform: translateX(0%) rotate(3deg); opacity: 0.2; } }
    @keyframes beamSway5 { 0% { transform: translateX(0%) rotate(-3deg); opacity: 0.2; } 60% { transform: translateX(-30%) rotate(2deg); opacity: 0.4; } 100% { transform: translateX(0%) rotate(-3deg); opacity: 0.2; } }

    .hero-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: var(--fs-hero); line-height: 1.1; letter-spacing: 0.06em; position: relative; z-index: 2; text-align: center; display: flex; flex-wrap: wrap; justify-content: center; gap: 0 0.25em; }
    .hero-word { display: inline-flex; white-space: nowrap; }
    .hero-title .char { display: inline-block; opacity: 0; transform: translateY(40px) scale(0.92); animation: charReveal 0.9s var(--ease-out-expo) forwards; color: #c0c0c0; }
    /* STAGE: chars 1-5 inside first .hero-word */
    .hero-word:first-child .char:nth-child(1) { animation-delay: 1.5s; }
    .hero-word:first-child .char:nth-child(2) { animation-delay: 1.6s; }
    .hero-word:first-child .char:nth-child(3) { animation-delay: 1.7s; }
    .hero-word:first-child .char:nth-child(4) { animation-delay: 1.8s; }
    .hero-word:first-child .char:nth-child(5) { animation-delay: 1.9s; }
    /* WORKS: chars 1-5 inside second .hero-word */
    .hero-word:last-child .char:nth-child(1) { animation-delay: 2.1s; }
    .hero-word:last-child .char:nth-child(2) { animation-delay: 2.2s; }
    .hero-word:last-child .char:nth-child(3) { animation-delay: 2.3s; }
    .hero-word:last-child .char:nth-child(4) { animation-delay: 2.4s; }
    .hero-word:last-child .char:nth-child(5) { animation-delay: 2.5s; }
    @keyframes charReveal { to { opacity: 1; transform: translateY(0) scale(1); } }

    /* O spotlight */
    .hero-o { position: relative; display: inline-block; }
    .hero-o-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 22%; height: 22%; border-radius: 50%; background: #fff; opacity: 0; animation: oDotReveal 0.6s 2.8s var(--ease-out-expo) forwards; }
    .hero-o-ray-h { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); height: 6%; width: 0%; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0.5) 45%, #fff 50%, rgba(255,255,255,0.5) 55%, rgba(255,255,255,0.2) 80%, transparent 100%); opacity: 0; animation: oRayExpandH 0.8s 2.9s var(--ease-out-expo) forwards; }
    .hero-o-ray-v { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 6%; height: 0%; background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0.5) 45%, #fff 50%, rgba(255,255,255,0.5) 55%, rgba(255,255,255,0.2) 80%, transparent 100%); opacity: 0; animation: oRayExpandV 0.8s 2.9s var(--ease-out-expo) forwards; }
    @keyframes oDotReveal { 0% { opacity: 0; transform: translate(-50%,-50%) scale(0); } 60% { opacity: 1; transform: translate(-50%,-50%) scale(1.6); box-shadow: 0 0 40px rgba(255,255,255,0.8), 0 0 100px rgba(255,255,255,0.3); } 100% { opacity: 1; transform: translate(-50%,-50%) scale(1); box-shadow: 0 0 12px rgba(255,255,255,0.4), 0 0 40px rgba(255,255,255,0.1); } }
    @keyframes oRayExpandH { 0% { opacity: 0; width: 0%; } 30% { opacity: 1; } 100% { opacity: 1; width: 160%; } }
    @keyframes oRayExpandV { 0% { opacity: 0; height: 0%; } 30% { opacity: 1; } 100% { opacity: 1; height: 160%; } }
    .hero-o-dot.pulsing { animation: oPulse 4s ease-in-out infinite; }
    @keyframes oPulse { 0%, 100% { box-shadow: 0 0 10px rgba(255,255,255,0.3), 0 0 30px rgba(255,255,255,0.08); transform: translate(-50%,-50%) scale(1); } 50% { box-shadow: 0 0 20px rgba(255,255,255,0.6), 0 0 60px rgba(255,255,255,0.2), 0 0 100px rgba(255,255,255,0.05); transform: translate(-50%,-50%) scale(1.15); } }

    .hero-sub { font-family: 'Noto Sans KR', sans-serif; font-weight: 700; font-size: clamp(11px, 1.6vw, 20px); letter-spacing: 0.14em; color: var(--dim); margin-top: clamp(12px, 1.5vw, 24px); z-index: 2; opacity: 0; animation: fadeUp 0.8s 3.1s var(--ease-out-expo) forwards; }
    .hero-line { width: clamp(80px, 16vw, 240px); height: 1px; background: linear-gradient(90deg, transparent, rgba(192,192,192,0.3), transparent); margin-top: clamp(8px, 1vw, 16px); z-index: 2; opacity: 0; animation: fadeUp 0.6s 3.0s var(--ease-out-expo) forwards; }
    .hero-tag { font-weight: 400; font-size: clamp(12px, 1.1vw, 17px); color: var(--text2); margin-top: clamp(8px, 1vw, 14px); letter-spacing: 0.04em; z-index: 2; opacity: 0; animation: fadeUp 0.8s 3.3s var(--ease-out-expo) forwards; }
    .hero-cta { z-index: 2; margin-top: clamp(20px, 3vw, 40px); opacity: 0; animation: fadeUp 0.8s 3.5s var(--ease-out-expo) forwards; }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    .hero-cta { display: inline-flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-size: var(--fs-small); font-weight: 600; letter-spacing: var(--ls-wider); text-transform: uppercase; color: #c0c0c0; text-decoration: none; padding: 14px 32px; background: rgba(192,192,192,0.05); border: 1px solid rgba(192,192,192,0.25); border-radius: var(--radius-full); transition: all 0.4s var(--ease-out-expo); -webkit-tap-highlight-color: transparent; }
    .hero-cta:hover { background: rgba(192,192,192,0.1); border-color: #c0c0c0; box-shadow: 0 0 40px rgba(255,255,255,0.1), 0 8px 30px rgba(0,0,0,0.2); transform: translateY(-3px); }
    .hero-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.3s; }
    .hero-cta:hover svg { transform: translateX(3px); }
    .hero-scroll { position: absolute; bottom: clamp(20px, 4vh, 36px); left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
    .hero-scroll span { font-family: 'Syne', sans-serif; font-size: 9px; letter-spacing: var(--ls-widest); text-transform: uppercase; color: var(--text2); opacity: 0.4; }
    .hero-scroll .tick { width: 1px; height: 28px; background: linear-gradient(to bottom, var(--gold), transparent); animation: tickPulse 2s ease-in-out infinite; }
    @keyframes tickPulse { 0%, 100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 0.8; transform: scaleY(1.1); } }

    /* === MARQUEE === */
    .marquee-wrap { overflow: hidden; padding: clamp(14px,1.8vw,22px) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); margin-top: clamp(0px, 1vw, 8px); }
    .marquee-track { display: flex; gap: clamp(28px,3.5vw,52px); animation: marqueeScroll 30s linear infinite; width: max-content; }
    .marquee-track span { font-family: 'Syne', sans-serif; font-size: var(--fs-small); font-weight: 600; letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--dim); white-space: nowrap; }
    .marquee-track span.dot { color: var(--gold); opacity: 0.3; }
    @keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* === ABOUT SECTION === */
    .about { padding: var(--section-py) var(--page-gutter); max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; position: relative; }
    .about::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 50% at 20% 80%, rgba(201,168,76,0.02) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 80% 20%, rgba(232,213,160,0.015) 0%, transparent 70%); }
    .about-left { position: relative; }
    .about-left h2 { font-weight: 900; font-size: var(--fs-display); line-height: var(--lh-heading); letter-spacing: -0.03em; }
    .about-left h2 em { font-style: normal; color: var(--gold-bright); text-shadow: 0 0 30px rgba(240,220,160,0.12); }
    .about-img { display: block; margin-top: clamp(24px, 3.5vw, 40px); width: 100%; height: clamp(200px, 28vw, 300px); object-fit: cover; border-radius: var(--radius-lg); border: 1px solid rgba(240,220,160,0.08); box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 20px rgba(240,220,160,0.03); transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s; }
    .about-img:hover { transform: scale(1.02); box-shadow: 0 12px 50px rgba(0,0,0,0.5), 0 0 30px rgba(240,220,160,0.05); }
    .about-right { padding-top: 0; }
    .about-right p { font-size: var(--fs-body-lg); line-height: 2; color: var(--text2); font-weight: 400; word-break: keep-all; overflow-wrap: break-word; max-width: 52ch; }
    .trust-line { font-size: var(--fs-small) !important; color: var(--dim) !important; margin-top: 16px; letter-spacing: 0.04em; }
    .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); margin-top: var(--space-lg); padding-top: var(--space-lg); border-top: 1px solid rgba(255,255,255,0.06); }
    .stat b { font-family: 'Syne', sans-serif; font-size: clamp(32px, 4vw, 48px); font-weight: 800; display: block; color: var(--gold); position: relative; text-shadow: 0 0 30px rgba(240,220,160,0.15); }
    .stat b::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 24px; height: 2px; background: linear-gradient(90deg, var(--gold-bright), transparent); opacity: 0.4; border-radius: 1px; }
    .stat small { font-size: var(--fs-small); color: var(--text2); margin-top: 4px; display: block; letter-spacing: 0.02em; }

    /* === SERVICES / CHANNELS === */
    .services { padding: var(--section-py) var(--page-gutter); background: var(--bg2); position: relative; }
    .services::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(232,213,160,0.015) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 20% 20%, rgba(201,168,76,0.01) 0%, transparent 60%); }
    .services-in { max-width: var(--max-w); margin: 0 auto; }
    .channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; }
    .ch { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.03); border-radius: var(--radius-md); padding: clamp(24px, 3.5vw, 40px) clamp(14px, 1.8vw, 22px) clamp(20px, 2.5vw, 32px); text-align: center; position: relative; transition: all 0.5s var(--ease-out-expo); cursor: pointer; overflow: hidden; }
    .ch::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: radial-gradient(circle, rgba(232,213,160,0.1), transparent 70%); border-radius: 50%; transform: translate(-50%, -50%); transition: all 0.6s var(--ease-out-expo); z-index: 0; }
    .ch:hover::after { width: 300px; height: 300px; }
    .ch::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--gold)); transform: scaleX(0); transition: transform 0.5s var(--ease-out-expo); }
    .ch:hover::before { transform: scaleX(1); }
    .ch:hover { background: rgba(212,168,67,0.04); border-color: rgba(212,168,67,0.15); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px rgba(240,220,160,0.05); }
    .ch-num { font-family: 'Syne', sans-serif; font-size: var(--fs-caption); font-weight: 600; letter-spacing: var(--ls-wider); color: var(--dim); margin-bottom: clamp(14px, 2vw, 24px); transition: color 0.5s; position: relative; z-index: 1; }
    .ch:hover .ch-num { color: var(--gold); }
    .ch-icon { width: clamp(32px, 4.5vw, 44px); height: clamp(32px, 4.5vw, 44px); margin: 0 auto clamp(12px, 1.8vw, 20px); color: var(--text2); opacity: 0.65; transition: all 0.5s; position: relative; z-index: 1; }
    .ch:hover .ch-icon { opacity: 1; color: var(--gold); filter: drop-shadow(0 0 8px rgba(232,213,160,0.4)); transform: scale(1.08); }
    .ch-ko { font-weight: 700; font-size: clamp(15px, 1.4vw, 19px); margin-bottom: 4px; transition: all 0.5s; position: relative; z-index: 1; }
    .ch:hover .ch-ko { color: var(--text); }
    .ch-en { font-family: 'Syne', sans-serif; font-size: var(--fs-caption); letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.3); transition: color 0.5s; position: relative; z-index: 1; }
    .ch:hover .ch-en { color: var(--text2); }
    .ch-desc { font-size: var(--fs-caption); color: var(--dim); margin-top: 8px; line-height: 1.6; position: relative; z-index: 1; transition: color 0.5s; word-break: keep-all; overflow-wrap: break-word; }
    .ch:hover .ch-desc { color: var(--text2); }
    .ch-hint { font-size: var(--fs-caption); color: var(--dim); margin-top: 8px; opacity: 0; transition: opacity 0.4s, transform 0.4s; transform: translateY(4px); position: relative; z-index: 1; letter-spacing: 0.04em; }
    .ch:hover .ch-hint { opacity: 0.6; transform: translateY(0); }
    .fader { width: 2px; height: clamp(32px, 4.5vw, 48px); background: var(--dim); margin: clamp(16px, 2vw, 24px) auto 0; position: relative; transition: background 0.5s; z-index: 1; }
    .fader::after { content: ''; position: absolute; bottom: 15%; left: 50%; transform: translateX(-50%); width: 12px; height: 4px; background: var(--dim); border-radius: 1px; transition: all 0.6s var(--ease-out-expo); }
    .ch:hover .fader { background: linear-gradient(to top, var(--gold), var(--dim)); }
    .ch:hover .fader::after { background: var(--gold); bottom: 72%; box-shadow: 0 0 14px rgba(232,213,160,0.5); }

    /* === PORTFOLIO === */
    .portfolio { padding: var(--section-py) var(--page-gutter); background: var(--bg2); position: relative; }
    .portfolio::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 50% at 80% 70%, rgba(232,213,160,0.012) 0%, transparent 65%), radial-gradient(ellipse 50% 50% at 10% 30%, rgba(201,168,76,0.01) 0%, transparent 60%); }
    .portfolio-in { max-width: var(--max-w); margin: 0 auto; }
    .portfolio-grid { display: grid; grid-template-columns: 1fr; gap: clamp(12px, 1.8vw, 20px); }
    .portfolio-card { border-radius: var(--radius-lg); position: relative; overflow: hidden; cursor: pointer; transition: all 0.5s var(--ease-out-expo); will-change: transform; border: 1px solid var(--border); }
    .portfolio-card:hover { border-color: rgba(240,220,160,0.2); transform: translateY(-8px) scale(1.01); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(240,220,160,0.06); }
    .portfolio-card .card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
    .portfolio-card .card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo); }
    .portfolio-card:hover .card-img { transform: scale(1.05); }
    .portfolio-card .card-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,10,15,0.85) 100%); transition: opacity 0.4s; }
    .portfolio-card .card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(18px, 2.5vw, 32px); z-index: 1; }
    .portfolio-card .card-tag { font-family: 'Syne', sans-serif; font-size: var(--fs-caption); font-weight: 600; letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--gold); opacity: 0.75; margin-bottom: 6px; }
    .portfolio-card .card-title { font-weight: 700; font-size: clamp(17px, 1.8vw, 24px); word-break: keep-all; }
    .portfolio-card .card-desc { font-size: var(--fs-small); color: var(--text2); margin-top: 5px; opacity: 0; transform: translateY(6px); transition: all 0.4s var(--ease-out-expo); word-break: keep-all; overflow-wrap: break-word; }
    .portfolio-card:hover .card-desc { opacity: 0.75; transform: translateY(0); }

    /* === LIGHTBOX === */
    .lightbox { position: fixed; inset: 0; z-index: 99998; background: rgba(0,0,0,0.96); backdrop-filter: blur(30px) saturate(0.8); -webkit-backdrop-filter: blur(30px) saturate(0.8); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; }
    .lightbox.open { opacity: 1; visibility: visible; }
    .lightbox-close { position: absolute; top: 20px; right: 20px; background: none; border: 1px solid rgba(255,255,255,0.15); color: var(--text); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center; z-index: 2; transition: all 0.3s; }
    .lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
    .lightbox-content { max-width: 1100px; width: 90%; max-height: 90vh; overflow-y: auto; padding: 20px; }
    .lightbox-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: var(--fs-h3); margin-bottom: 8px; }
    .lightbox-desc { font-size: var(--fs-small); color: var(--text2); margin-bottom: 20px; }
    .lightbox-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .lightbox-gallery img, .lightbox-gallery video { width: 100%; border-radius: var(--radius-md); object-fit: cover; aspect-ratio: 16/10; cursor: pointer; transition: transform 0.3s; border: 1px solid var(--border); }
    .lightbox-gallery img:hover, .lightbox-gallery video:hover { transform: scale(1.02); }
    .lightbox-gallery .lb-full { grid-column: span 2; }
    .lightbox-gallery video { background: #000; }

    /* === FULLSCREEN GALLERY VIEWER === */
    .gallery-viewer { position: fixed; inset: 0; z-index: 99999; background: rgba(0,0,0,0.98); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
    .gallery-viewer.open { opacity: 1; visibility: visible; }
    .gallery-viewer img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius-md); }
    .gallery-viewer-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: var(--text); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 22px; display: flex; align-items: center; justify-content: center; z-index: 2; transition: all 0.3s; }
    .gallery-viewer-close:hover { border-color: var(--gold); color: var(--gold); }
    .gallery-viewer-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: var(--text); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
    .gallery-viewer-nav:hover { border-color: var(--gold); color: var(--gold); background: rgba(232,213,160,0.08); }
    .gallery-viewer-prev { left: 16px; }
    .gallery-viewer-next { right: 16px; }
    .gallery-viewer-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-family: 'Syne', sans-serif; font-size: var(--fs-small); color: var(--text2); letter-spacing: var(--ls-wider); }

    /* === TEAM === */
    .team { padding: var(--section-py) var(--page-gutter); padding-top: calc(var(--section-py) + 20px); max-width: var(--max-w); margin: 0 auto; position: relative; }
    .team::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 50% at 80% 80%, rgba(201,168,76,0.02) 0%, transparent 70%), radial-gradient(ellipse 70% 40% at 10% 20%, rgba(42,74,143,0.015) 0%, transparent 70%); }
    .modules { display: grid; grid-template-columns: 1fr; gap: 8px; }
    .mod { border: 1px solid rgba(255,255,255,0.03); border-radius: var(--radius-md); padding: clamp(28px, 3.5vw, 48px) clamp(18px, 2.5vw, 28px); position: relative; transition: all 0.5s var(--ease-out-expo); cursor: default; overflow: hidden; background: radial-gradient(circle at 90% 90%, rgba(232,213,160,0.015) 0%, transparent 50%); }
    .mod::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at bottom, rgba(232,213,160,0.04), transparent 70%); opacity: 0; transition: opacity 0.5s; }
    .mod:hover::after { opacity: 1; }
    .mod:hover { transform: translateY(-5px); box-shadow: 0 8px 36px rgba(0,0,0,0.3), 0 0 20px rgba(240,220,160,0.04); background: radial-gradient(circle at 90% 90%, rgba(240,220,160,0.05) 0%, transparent 50%), rgba(255,255,255,0.012); }
    .mod-ix { font-family: 'Syne', sans-serif; font-size: var(--fs-caption); font-weight: 600; letter-spacing: 0.16em; color: rgba(255,255,255,0.25); margin-bottom: 12px; position: relative; z-index: 1; }
    .mod-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: var(--fs-h3); letter-spacing: var(--ls-wide); text-transform: uppercase; position: relative; z-index: 1; transition: all 0.5s; }
    .mod:hover .mod-name { color: var(--gold); text-shadow: 0 0 24px rgba(232,213,160,0.3); }
    .mod-person { font-weight: 700; font-size: var(--fs-body-lg); color: var(--text2); margin-top: 12px; position: relative; z-index: 1; transition: all 0.5s; }
    .mod:hover .mod-person { color: var(--gold); }
    .mod-role { font-size: var(--fs-small); color: var(--dim); margin-top: 6px; position: relative; z-index: 1; transition: color 0.5s; letter-spacing: 0.02em; word-break: keep-all; overflow-wrap: break-word; }
    .mod:hover .mod-role { color: var(--text2); }

    /* === MID CTA === */
    .mid-cta { padding: clamp(80px, 10vw, 140px) var(--page-gutter); text-align: center; position: relative; background: linear-gradient(180deg, rgba(8,8,13,0.65) 0%, rgba(8,8,13,0.88) 100%), url('/assets/dominick/rig.webp') center/cover no-repeat; border-top: 1px solid rgba(240,220,160,0.08); border-bottom: 1px solid rgba(240,220,160,0.08); overflow: hidden; }
    .mid-cta p { font-size: var(--fs-h2); font-weight: 700; margin-bottom: clamp(18px, 2.5vw, 28px); word-break: keep-all; }
    .mid-cta .btn-primary { display: inline-flex; width: auto; }

    /* === CONTACT === */
    .contact { padding: var(--section-py) var(--page-gutter); padding-top: calc(var(--section-py) + 20px); max-width: 900px; margin: 0 auto; text-align: center; position: relative; }
    .contact::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(232,213,160,0.025) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.018) 0%, transparent 55%), radial-gradient(ellipse 40% 30% at 30% 60%, rgba(240,197,109,0.01) 0%, transparent 50%); }
    .contact h2 { font-weight: 900; font-size: var(--fs-h1); line-height: 1.35; margin-bottom: var(--space-md); word-break: keep-all; overflow-wrap: break-word; }
    .contact > .rv > p, .contact .contact-subtitle { font-size: var(--fs-body-lg); color: var(--text2); margin-bottom: clamp(28px, 4vw, 48px); }
    .contact-form { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: var(--space-md); text-align: left; }
    .form-group { position: relative; }
    .form-label { display: block; font-size: var(--fs-small); color: var(--text2); margin-bottom: 6px; font-weight: 500; }
    .form-group.full { grid-column: 1 / -1; }
    .form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); padding: 16px 20px; color: var(--text); font-family: 'Noto Sans KR', sans-serif; font-size: 15px; line-height: 1.5; outline: none; transition: all 0.4s; border-radius: var(--radius-lg); -webkit-appearance: none; appearance: none; }
    .form-group textarea { resize: vertical; min-height: 130px; }
    .form-group input::placeholder, .form-group textarea::placeholder { color: var(--dim); font-weight: 400; }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 20px rgba(240,220,160,0.1), inset 0 0 16px rgba(240,220,160,0.02); background: rgba(240,220,160,0.02); }
    .form-group input:not(:placeholder-shown):valid { border-color: rgba(232,213,160,0.2); }
    .form-group .floating-label { position: absolute; left: 20px; top: 16px; font-size: 14px; color: var(--dim); pointer-events: none; transition: all 0.3s var(--ease-out-expo); }
    .form-group input:focus + .floating-label,
    .form-group input:not(:placeholder-shown) + .floating-label,
    .form-group textarea:focus + .floating-label,
    .form-group textarea:not(:placeholder-shown) + .floating-label { top: -8px; left: 12px; font-size: 10px; color: var(--gold); background: var(--bg); padding: 0 4px; letter-spacing: 0.06em; }

    /* Service checkboxes */
    .service-checkboxes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
    .service-checkboxes label { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-small); color: var(--text2); cursor: pointer; padding: 10px 16px; min-height: 44px; border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-full); transition: all 0.3s; background: rgba(255,255,255,0.015); }
    .service-checkboxes label:hover { border-color: rgba(232,213,160,0.2); color: var(--text); }
    .service-checkboxes input[type="checkbox"] { width: 14px; height: 14px; accent-color: var(--gold); }
    .service-checkboxes input[type="checkbox"]:checked + span { color: var(--gold); }

    .contact .btn-primary { letter-spacing: 0.1em; width: auto; display: inline-flex; grid-column: 1 / -1; justify-self: center; margin-top: clamp(20px, 3vw, 40px); }

    /* === FORM SUCCESS === */
    .form-success { display: none; text-align: center; padding: 40px 20px; }
    .form-success.show { display: block; }
    .form-success .check-circle { width: 60px; height: 60px; border: 2px solid var(--gold); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; animation: successPop 0.5s var(--ease-out-expo); }
    .form-success .check-circle svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 2.5; }
    .form-success p { font-size: var(--fs-body-lg); color: var(--text); margin-bottom: 8px; }
    .form-success small { font-size: var(--fs-small); color: var(--text2); }
    @keyframes successPop { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
    .btn-primary.loading { pointer-events: none; opacity: 0.7; }
    .btn-primary.loading::after { content: ''; width: 16px; height: 16px; border: 2px solid transparent; border-top-color: currentColor; border-radius: 50%; animation: spin 0.6s linear infinite; margin-left: 8px; }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* === PRODUCT MODAL === */
    .product-modal { position: fixed; inset: 0; z-index: 99998; background: rgba(0,0,0,0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); display: flex; align-items: flex-start; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .product-modal.open { opacity: 1; visibility: visible; }
    .product-modal-close { position: fixed; top: 20px; right: 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); color: var(--text); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 24px; display: flex; align-items: center; justify-content: center; z-index: 10; transition: all 0.3s; }
    .product-modal-close:hover { border-color: var(--gold); color: var(--gold); background: rgba(232,213,160,0.06); }
    .product-modal-content { width: 100%; max-width: 1100px; padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 48px) clamp(40px, 6vw, 80px); }
    .pm-header { margin-bottom: clamp(28px, 4vw, 48px); }
    .pm-category-icon { font-size: 32px; margin-bottom: 10px; }
    .pm-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: var(--fs-h2); text-transform: uppercase; letter-spacing: var(--ls-tight); margin-bottom: 6px; }
    .pm-subtitle { font-size: var(--fs-body); color: var(--text2); }
    .pm-grid { display: grid; grid-template-columns: 1fr; gap: clamp(12px, 1.8vw, 18px); }
    @media (min-width: 580px) { .pm-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 960px) { .pm-grid { grid-template-columns: repeat(3, 1fr); } }
    .pm-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(18px, 2.2vw, 26px); cursor: pointer; transition: all 0.4s var(--ease-out-expo); position: relative; overflow: hidden; }
    .pm-card.has-image { padding: 0; }
    .pm-card.has-image .pm-card-body { padding: clamp(14px, 1.8vw, 22px); }
    .pm-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-out-expo); z-index: 1; }
    .pm-card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .pm-card:hover::before { transform: scaleX(1); }
    .pm-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .pm-card-icon { font-size: 26px; margin-bottom: 12px; opacity: 0.75; }
    .pm-card:hover .pm-card-icon { opacity: 1; }
    .pm-card-name { font-weight: 700; font-size: clamp(14px, 1.2vw, 17px); margin-bottom: 6px; transition: color 0.3s; }
    .pm-card:hover .pm-card-name { color: var(--gold); }
    .pm-card-desc { font-size: var(--fs-small); color: var(--text2); line-height: 1.6; margin-bottom: 12px; word-break: keep-all; overflow-wrap: break-word; }
    .pm-card-prices { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
    .pm-card-price { font-family: 'Syne', sans-serif; font-size: clamp(15px, 1.4vw, 19px); font-weight: 700; letter-spacing: var(--ls-wider); color: var(--accent); }
    .pm-card-price-original { font-family: 'Syne', sans-serif; font-size: var(--fs-small); color: var(--text2); text-decoration: line-through; opacity: 0.5; }
    .pm-card-btn { display: inline-flex; align-items: center; gap: 6px; font-family: 'Syne', sans-serif; font-size: var(--fs-caption); font-weight: 600; letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--gold); background: rgba(232,213,160,0.05); border: 1px solid rgba(232,213,160,0.18); padding: 7px 16px; border-radius: var(--radius-full); cursor: pointer; transition: all 0.3s; text-decoration: none; }
    .pm-card-btn:hover { background: rgba(232,213,160,0.1); border-color: var(--gold); }

    /* Product Detail */
    .pm-detail { animation: pmDetailIn 0.4s var(--ease-out-expo); }
    @keyframes pmDetailIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
    .pm-detail-back { display: inline-flex; align-items: center; gap: 8px; font-family: 'Syne', sans-serif; font-size: var(--fs-small); font-weight: 600; letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--text2); background: none; border: 1px solid rgba(255,255,255,0.08); padding: 10px 20px; border-radius: var(--radius-full); cursor: pointer; transition: all 0.3s; margin-bottom: clamp(20px, 3.5vw, 36px); }
    .pm-detail-back:hover { color: var(--gold); border-color: rgba(232,213,160,0.25); }
    .pm-detail-icon { font-size: 44px; margin-bottom: 14px; }
    .pm-detail-img { width: 100%; max-width: 520px; border-radius: var(--radius-lg); margin-bottom: 24px; box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
    .pm-detail-name { font-weight: 800; font-size: var(--fs-h2); margin-bottom: 10px; }
    .pm-detail-desc { font-size: var(--fs-body-lg); color: var(--text2); line-height: 2; margin-bottom: 20px; max-width: 52ch; white-space: pre-line; word-break: keep-all; overflow-wrap: break-word; }
    .pm-detail-pricing { display: flex; align-items: baseline; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
    .pm-detail-price { font-family: 'Syne', sans-serif; font-size: clamp(20px, 2.2vw, 30px); font-weight: 700; letter-spacing: var(--ls-wider); color: var(--accent); }
    .pm-detail-price-original { font-family: 'Syne', sans-serif; font-size: var(--fs-body); color: var(--text2); text-decoration: line-through; opacity: 0.5; }
    .pm-detail-discount { font-family: 'Syne', sans-serif; font-size: var(--fs-small); font-weight: 700; color: var(--gold); background: rgba(232,213,160,0.08); border: 1px solid rgba(232,213,160,0.15); padding: 4px 12px; border-radius: var(--radius-full); }
    .pm-detail-specs { margin-bottom: 28px; max-width: 60ch; }
    .pm-detail-specs-title { font-family: 'Syne', sans-serif; font-size: var(--fs-caption); font-weight: 700; letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .pm-detail-specs ul { list-style: none; padding: 0; margin: 0; }
    .pm-detail-specs li { position: relative; padding: 9px 0 9px 20px; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: var(--fs-small); color: var(--text2); line-height: 1.6; }
    .pm-detail-specs li::before { content: '\203A'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
    .pm-detail-cta { display: inline-flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-size: var(--fs-small); font-weight: 700; letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--bg); background: linear-gradient(135deg, var(--accent), var(--glow)); padding: 14px 36px; border: none; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.4s var(--ease-out-expo); text-decoration: none; }
    .pm-detail-cta:hover { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(232,213,160,0.25); }

    /* === FOOTER === */
    footer { padding: clamp(56px, 6.5vw, 80px) var(--page-gutter); padding-bottom: calc(clamp(56px, 6.5vw, 80px) + var(--safe-bottom)); border-top: none; display: flex; flex-direction: column; align-items: center; gap: 12px; position: relative; }
    footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), var(--gold), var(--accent), transparent); background-size: 200% 100%; animation: footerGradientBorder 6s ease-in-out infinite; }
    @keyframes footerGradientBorder { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
    .footer-company { font-family: 'Noto Sans KR', sans-serif; font-size: clamp(16px, 1.4vw, 20px); font-weight: 900; letter-spacing: 0.14em; color: var(--gold); opacity: 0.7; cursor: pointer; transition: opacity 0.3s; }
    .footer-company:hover { opacity: 1; }
    .footer-subtitle { font-size: var(--fs-caption); color: var(--dim); letter-spacing: 0.06em; margin-top: -4px; }
    .footer-phone { font-family: 'Syne', sans-serif; font-size: var(--fs-body); color: var(--text2); opacity: 0.6; letter-spacing: 0.05em; margin-top: 4px; }
    .footer-phone a { color: var(--text2); text-decoration: none; transition: color 0.3s; }
    .footer-phone a:hover { color: var(--gold); }
    .footer-bottom { display: flex; gap: 20px; align-items: center; }
    .footer-bottom span { font-family: 'Syne', sans-serif; font-size: var(--fs-caption); letter-spacing: 0.1em; color: var(--text2); opacity: 0.35; }
    .footer-nav { display: flex; gap: 20px; margin-top: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 8px; }
    .footer-nav a { font-family: 'Syne', sans-serif; font-size: var(--fs-caption); letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--dim); text-decoration: none; transition: color 0.3s; }
    .footer-nav a:hover { color: var(--gold); }

    /* === STICKY CTA === */
    .sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; padding: 10px var(--page-gutter); padding-bottom: calc(10px + var(--safe-bottom)); background: rgba(10,10,15,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid var(--border); transform: translateY(100%); transition: transform 0.4s var(--ease-out-expo); gap: 8px; }
    .sticky-cta.show { transform: translateY(0); display: flex; }
    .sticky-cta .cta-sm { display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1; font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 14px 22px; border-radius: var(--radius-lg); cursor: pointer; -webkit-tap-highlight-color: transparent; text-decoration: none; position: relative; overflow: hidden; }
    .sticky-cta .cta-sm-primary { color: var(--bg); background: linear-gradient(135deg, var(--accent), var(--glow)); border: none; }
    .sticky-cta .cta-sm svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

    /* === BACK TO TOP === */
    .back-to-top { position: fixed; bottom: 72px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(240,220,160,0.06); border: 1px solid rgba(240,220,160,0.2); color: var(--gold); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 997; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.4s var(--ease-out-expo); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
    .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { background: rgba(240,220,160,0.12); border-color: var(--gold); box-shadow: 0 0 20px rgba(240,220,160,0.12); }
    .back-to-top svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

    /* === 404 PAGE === */
    .page-404 { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 70vh; text-align: center; padding: var(--section-py) var(--page-gutter); }
    .page-404 .error-code { font-family: 'Syne', sans-serif; font-size: clamp(80px, 20vw, 200px); font-weight: 800; color: var(--dim); opacity: 0.15; line-height: 1; }
    .page-404 h2 { font-size: var(--fs-h2); margin-bottom: 16px; }
    .page-404 p { font-size: var(--fs-body); color: var(--text2); margin-bottom: 32px; }

    /* === ABOUT PAGE (full) === */
    .about-page { padding: calc(var(--section-py) + 60px) var(--page-gutter) var(--section-py); max-width: var(--max-w); margin: 0 auto; }
    .about-page .about-hero { margin-bottom: var(--space-2xl); }
    .about-page .about-hero h1 { font-weight: 900; font-size: var(--fs-h1); line-height: var(--lh-heading); margin-bottom: var(--space-md); }
    .about-page .about-hero h1 em { font-style: normal; color: var(--accent); }
    .about-page .about-hero p { font-size: var(--fs-body-lg); color: var(--text2); max-width: 52ch; line-height: 2; word-break: keep-all; overflow-wrap: break-word; }
    .about-values { display: grid; grid-template-columns: 1fr; gap: 24px; margin: var(--space-xl) 0; }
    .about-value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); transition: all 0.4s var(--ease-out-expo); position: relative; overflow: hidden; }
    .about-value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold-bright), var(--accent), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out-expo); }
    .about-value-card:hover::before { transform: scaleX(1); }
    .about-value-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(240,220,160,0.04); }
    .about-value-card h3 { font-family: 'Syne', sans-serif; font-size: var(--fs-h3); font-weight: 700; margin-bottom: 12px; }
    .about-value-card p { font-size: var(--fs-body); color: var(--text2); line-height: var(--lh-body); word-break: keep-all; overflow-wrap: break-word; }
    .timeline { position: relative; padding-left: 28px; margin: var(--space-xl) 0; }
    .timeline::before { content: ''; position: absolute; left: 4px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--accent), var(--gold), transparent); }
    .timeline-item { position: relative; margin-bottom: 36px; }
    .timeline-item::before { content: ''; position: absolute; left: -28px; top: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px rgba(232,213,160,0.3); }
    .timeline-year { font-family: 'Syne', sans-serif; font-size: var(--fs-small); font-weight: 700; color: var(--gold); letter-spacing: var(--ls-wider); margin-bottom: 6px; }
    .timeline-text { font-size: var(--fs-body); color: var(--text2); word-break: keep-all; overflow-wrap: break-word; }

    /* === SERVICE DETAIL PAGE === */
    .service-detail-page { padding: calc(var(--section-py) + 60px) var(--page-gutter) var(--section-py); max-width: var(--max-w); margin: 0 auto; }

    /* === PORTFOLIO PAGE (full) === */
    .portfolio-page { padding: calc(var(--section-py) + 60px) var(--page-gutter) var(--section-py); max-width: var(--max-w); margin: 0 auto; }
    .portfolio-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(24px, 4vw, 48px); }
    .portfolio-filter-btn { font-family: 'Syne', sans-serif; font-size: var(--fs-caption); font-weight: 600; letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--text2); background: var(--bg-card); border: 1px solid var(--border); padding: 10px 18px; min-height: 44px; border-radius: var(--radius-full); cursor: pointer; transition: all 0.3s; }
    .portfolio-filter-btn:hover { border-color: var(--border-hover); color: var(--text); }
    .portfolio-filter-btn.active { color: var(--gold); border-color: var(--gold); background: rgba(232,213,160,0.06); }

    /* === PORTFOLIO DETAIL PAGE === */
    .portfolio-detail-page { padding: calc(var(--section-py) + 60px) var(--page-gutter) var(--section-py); max-width: var(--max-w); margin: 0 auto; }
    .portfolio-detail-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
    .portfolio-detail-meta .meta-item { font-size: var(--fs-small); color: var(--text2); }
    .portfolio-detail-meta .meta-item strong { color: var(--text); font-weight: 600; }
    .portfolio-detail-gallery { display: grid; grid-template-columns: 1fr; gap: 12px; margin: var(--space-lg) 0; }
    .portfolio-detail-gallery img, .portfolio-detail-gallery video { width: 100%; border-radius: var(--radius-md); border: 1px solid var(--border); cursor: pointer; transition: transform 0.3s; object-fit: cover; }
    .portfolio-detail-gallery img:hover { transform: scale(1.01); }
    .portfolio-detail-gallery .gallery-full { grid-column: 1 / -1; }
    .portfolio-detail-gallery video { background: #000; }
    .portfolio-nav { display: flex; justify-content: space-between; margin-top: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid var(--border); }
    .portfolio-nav a { font-family: 'Syne', sans-serif; font-size: var(--fs-small); font-weight: 600; letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--text2); text-decoration: none; transition: color 0.3s; }
    .portfolio-nav a:hover { color: var(--gold); }

    /* === TEAM PAGE (full) === */
    .team-page { padding: calc(var(--section-py) + 60px) var(--page-gutter) var(--section-py); max-width: var(--max-w); margin: 0 auto; }
    .team-org { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: var(--space-lg); }
    .team-org-group h3 { font-family: 'Syne', sans-serif; font-size: var(--fs-h3); font-weight: 700; margin-bottom: 16px; color: var(--gold); }

    /* === CONTACT PAGE (full) === */
    .contact-page { padding: calc(var(--section-py) + 60px) var(--page-gutter) var(--section-py); max-width: 900px; margin: 0 auto; text-align: center; }
    .faq-section { text-align: left; margin-top: var(--space-xl); }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-question { width: 100%; background: none; border: none; color: var(--text); font-family: 'Noto Sans KR', sans-serif; font-size: var(--fs-body); font-weight: 600; padding: 18px 0; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
    .faq-question:hover { color: var(--gold); }
    .faq-question .faq-toggle { font-size: 20px; color: var(--dim); transition: transform 0.3s, color 0.3s; }
    .faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--gold); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .faq-answer-inner { padding: 0 0 18px; font-size: var(--fs-small); color: var(--text2); line-height: var(--lh-body); word-break: keep-all; overflow-wrap: break-word; }

    /* === SCROLL REVEALS === */
    .rv { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-smooth), transform 0.8s var(--ease-out-expo); }
    .rv.vis { opacity: 1; transform: translateY(0); }
    .rv-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s var(--ease-smooth), transform 0.8s var(--ease-out-expo); }
    .rv-left.vis { opacity: 1; transform: translateX(0); }
    .rv-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s var(--ease-smooth), transform 0.8s var(--ease-out-expo); }
    .rv-right.vis { opacity: 1; transform: translateX(0); }
    .rv-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.7s var(--ease-smooth), transform 0.8s var(--ease-out-expo); }
    .rv-scale.vis { opacity: 1; transform: scale(1); }
    .d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; } .d5 { transition-delay: 0.40s; }

    section[id] { scroll-margin-top: 80px; }
    ::selection { background: rgba(232,213,160,0.2); color: var(--text); }
    input, textarea, button, select { border-radius: 0; -webkit-appearance: none; }

    /* === RESPONSIVE === */
    @media (min-width: 480px) {
      .channels { grid-template-columns: repeat(2, 1fr); }
      .contact-form { grid-template-columns: 1fr 1fr; }
      .about-values { grid-template-columns: repeat(2, 1fr); }
      .portfolio-detail-gallery { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 640px) {
      .modules { grid-template-columns: repeat(2, 1fr); }
      .portfolio-grid { grid-template-columns: 1fr 1fr; }
      .lightbox-gallery { grid-template-columns: repeat(3, 1fr); }
      .team-org { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 768px) {
      .nav-toggle { display: none; }
      .nav-links { display: flex; }
      .sticky-cta { display: none !important; }
      .about { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
      .about-right { padding-top: 56px; }
      .channels { grid-template-columns: repeat(3, 1fr); }
      .modules { grid-template-columns: repeat(3, 1fr); }
      .btn-primary { width: auto; }
      .back-to-top { bottom: 32px; right: 32px; }
      .about-values { grid-template-columns: repeat(3, 1fr); }
      .portfolio-detail-gallery { grid-template-columns: repeat(3, 1fr); }
    }
    @media (min-width: 1024px) {
      .channels { grid-template-columns: repeat(3, 1fr); }
      .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
      .hero { min-height: 100vh; }
      .hero-title { font-size: clamp(48px, 9vw, 100px); }
      .about { gap: 40px; }
    }
    @media (max-height: 500px) and (orientation: landscape) {
      .hero { min-height: 100vh; padding-top: 60px; }
      .hero-title { font-size: clamp(28px, 7vh, 56px); }
      .hero-sub { font-size: clamp(9px, 1.5vh, 13px); margin-top: 8px; }
      .hero-line { display: none; }
      .hero-tag { font-size: clamp(9px, 1.2vh, 12px); margin-top: 4px; }
      .hero-cta { margin-top: 10px; padding: 8px 20px; font-size: 10px; }
      .hero-scroll { display: none; }
    }
    @media (max-width: 767px) {
      .nav-links { display: none; }
      .nav-toggle { display: block; }
      .page-line { display: none; }
      .cursor-glow { display: none; }
      .geo-shapes { display: none; }
      .sticky-cta { display: block; }
      footer { padding-bottom: calc(72px + var(--safe-bottom)); }
      .portfolio-grid { gap: 10px; }
      .hero-title { font-size: clamp(36px, 12vw, 56px); letter-spacing: 0.04em; gap: 0; }
      .hero-word { display: block; text-align: center; }
      .hero-sub { font-size: clamp(10px, 3vw, 14px); margin-top: 10px; }
      .hero-line { width: clamp(60px, 20vw, 120px); margin-top: 6px; }
      .hero-tag { font-size: clamp(11px, 3vw, 14px); margin-top: 6px; }
      .hero-cta { margin-top: 20px; padding: 12px 28px; font-size: 11px; }
      .mid-cta { padding: clamp(64px, 9vw, 120px) var(--page-gutter); }
      .about-img { min-height: 220px; }
      .lightbox-gallery { grid-template-columns: 1fr; }
      .lightbox-gallery .lb-full { grid-column: span 1; }
      .gallery-viewer-nav { width: 40px; height: 40px; font-size: 16px; }
      .gallery-viewer-prev { left: 8px; }
      .gallery-viewer-next { right: 8px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
      .preloader { display: none !important; }
      .hero-title .char { opacity: 1 !important; transform: none !important; animation: none !important; }
      .hero-sub, .hero-tag, .hero-cta, .hero-line { opacity: 1 !important; animation: none !important; }
      .hero-o-dot { opacity: 1 !important; box-shadow: 0 0 10px rgba(255,255,255,0.3) !important; animation: none !important; }
      .hero-o-ray-h { opacity: 1 !important; width: 160% !important; animation: none !important; }
      .hero-o-ray-v { opacity: 1 !important; height: 160% !important; animation: none !important; }
    }
    @media (forced-colors: active) {
      .btn-primary { border: 2px solid ButtonText; }
      .nav-links a.active::after { background: Highlight; }
    }
    .hero-cta:active, .btn-primary:active, .ch:active, .mod:active, .mobile-menu a:active, .sticky-cta .cta-sm:active { transform: scale(0.97); transition-duration: 0.1s; }
    .services, .portfolio, .team, .contact, .about-page, .service-detail-page, .portfolio-page { content-visibility: auto; contain-intrinsic-size: auto 600px; }

    /* === CINEMATIC FILTER === */
    .portfolio-card .card-img, .portfolio-detail-gallery img, .lightbox-gallery img, .about-img, .pm-card-img, .pm-detail-img { filter: contrast(1.1) saturate(0.92) brightness(0.96); }

    /* 3D tilt on cards */
    .tilt-card { transition: transform 0.4s var(--ease-out-expo); transform-style: preserve-3d; perspective: 1000px; }

    /* Lazy loading images */
    img[loading="lazy"] { opacity: 0; transition: opacity 0.5s ease; }
    img[loading="lazy"].loaded { opacity: 1; }
    img.img-fallback { opacity: 1 !important; }
