/* Link Plastic Surgery — Extracted from prototype-final.html */
        /* Self-hosted Outfit (variable font, latin + latin-ext) */
        @font-face { font-family: 'Outfit'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('/fonts/outfit-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
        @font-face { font-family: 'Outfit'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('/fonts/outfit-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
        html { -webkit-text-size-adjust: 100%; -moz-text-size-adjust: 100%; text-size-adjust: 100%; }

        /* ===== SPLASH ===== */
        .splash {
            position: fixed; inset: 0; z-index: 9999;
            background: #fff;
            display: flex; align-items: center; justify-content: center;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }
        .splash.hide {
            opacity: 0; visibility: hidden;
        }
        .splash-inner {
            text-align: center;
            animation: splashFadeIn 1s ease-out;
        }
        .splash-name {
            font-family: var(--heading); font-size: 1.3rem; font-weight: 600;
            letter-spacing: 0.18em; color: #3f3f46;
            margin-bottom: 10px;
        }
        .splash-tagline {
            font-family: var(--heading); font-size: 0.82rem; font-weight: 300;
            letter-spacing: 0.15em; color: var(--accent);
            opacity: 0; animation: splashTagline 1s 0.5s ease-out forwards;
        }
        @keyframes splashFadeIn {
            0% { opacity: 0; transform: translateY(12px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes splashTagline {
            0% { opacity: 0; transform: translateY(6px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        :root {
            --bg: #ffffff;
            --bg-card: #ffffff;
            --bg-elevated: #f8f8f6;
            --accent: #c9a96e;
            --accent-light: #b8944f;
            --text: #3f3f46;
            --text-muted: #71717a;
            --text-dim: #a1a1aa;
            --border: #e4e4e7;
            --white: #18181b;
            --heading: 'Outfit', sans-serif;
            --body: 'Outfit', sans-serif;
            --max-w: 1320px;
        }
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; overflow-x: clip; }
        body {
            background: var(--bg);
            color: var(--text);
            font-family: var(--body);
            overflow-x: clip;
        }

        /* ===== SCROLL PROGRESS ===== */
        .scroll-progress {
            position: fixed; top: 0; left: 0; height: 2px; z-index: 300;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            width: 0%;
        }

        /* ===== NAV ===== */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 200;
            padding: 0 clamp(20px, 4vw, 48px);
            transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
        }
        .nav.scrolled, .nav:hover { background: rgba(255,255,255,0.92); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); }
        .nav.hidden { transform: translateY(-100%); }
        .nav-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .nav-logo { display: flex; align-items: center; gap: 10px; }
        .nav-logo img { height: 42px; width: auto; filter: brightness(10); transition: filter 0.4s; }
        .nav.scrolled .nav-logo img, .nav:hover .nav-logo img { filter: brightness(0.3); }
        .nav-logo-text { font-family: var(--heading); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.12em; color: var(--white); }
        .nav-logo-text b { color: var(--accent); }
        .nav-links { display: flex; gap: 32px; list-style: none; align-self: stretch; }
        .nav-links a { font-family: var(--heading); font-size: 1rem; font-weight: 600; color: #fff; text-decoration: none; text-shadow: 0 1px 6px rgba(0,0,0,0.4); transition: color 0.4s, text-shadow 0.4s; }
        .nav.scrolled .nav-links a, .nav:hover .nav-links a { color: #2d2d2d; text-shadow: none; }
        .nav-links a:hover, .nav.scrolled .nav-links a:hover, .nav:hover .nav-links a:hover { color: var(--accent); }
        .nav-links li { position: static; align-self: stretch; display: flex; align-items: center; }
        .nav-panel {
            position: absolute; top: 72px; left: 0; right: 0;
            background: rgba(29,29,31,0.98); backdrop-filter: saturate(180%) blur(20px);
            opacity: 0; visibility: hidden; pointer-events: none;
            transform: translateY(-6px);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        }
        .nav-links li.hovered .nav-panel {
            opacity: 1; visibility: visible; pointer-events: auto;
            transform: translateY(0);
        }
        .nav-panel-inner {
            max-width: 680px; margin: 0 auto; padding: 36px 48px 44px;
            display: flex; gap: 48px;
        }
        .nav-links li.hovered .nav-panel-inner { transform: translateY(0); opacity: 1; }
        .nav-panel-main { flex-shrink: 0; }
        .nav-panel-main > a {
            font-size: 1.5rem !important; font-weight: 600 !important; color: #fff !important;
            text-shadow: none !important; display: block; margin-bottom: 8px;
        }
        .nav-panel-main p { font-size: 0.78rem; color: rgba(255,255,255,0.4); max-width: 180px; line-height: 1.5; }
        .nav-panel-links {
            display: flex; flex-direction: column; gap: 2px; padding-top: 4px;
            border-left: 1px solid rgba(255,255,255,0.1); padding-left: 48px;
        }
        .nav-panel-links a {
            font-size: 0.88rem !important; font-weight: 400 !important;
            color: rgba(255,255,255,0.7) !important; text-shadow: none !important;
            padding: 6px 0; transition: color 0.2s;
        }
        .nav-panel-links a:hover { color: #fff !important; }
        .has-dropdown::after { content: ''; display: inline-block; width: 5px; height: 5px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-left: 6px; margin-bottom: 2px; transition: transform 0.3s; }
        .nav-links li:hover .has-dropdown::after,
        .nav-links li.hovered .has-dropdown::after { transform: rotate(-135deg); }
        .nav-cta {
            font-family: var(--heading); font-size: 0.95rem; font-weight: 600;
            color: #fff; background: var(--accent); padding: 8px 20px;
            border-radius: 6px; text-decoration: none;
            transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
        }
        .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,169,110,0.2); }
        /* Hamburger */
        .nav-hamburger {
            display: none; background: none; border: none; cursor: pointer;
            width: 36px; height: 36px; position: relative; z-index: 310;
        }
        .nav-hamburger span {
            display: block; width: 22px; height: 1.5px; background: #fff;
            position: absolute; left: 7px;
            transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s, top 0.4s cubic-bezier(0.16,1,0.3,1), background 0.4s;
        }
        .nav-hamburger span:nth-child(1) { top: 11px; }
        .nav-hamburger span:nth-child(2) { top: 17px; }
        .nav-hamburger span:nth-child(3) { top: 23px; }
        .nav-hamburger.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
        .nav-hamburger.active span:nth-child(2) { opacity: 0; }
        .nav-hamburger.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }
        .nav.scrolled .nav-hamburger span, .nav:hover .nav-hamburger span { background: var(--text-heading, #18181b); }

        /* Mobile drawer */
        .nav-drawer-overlay {
            position: fixed; inset: 0; z-index: 290;
            background: rgba(0,0,0,0.3); opacity: 0; pointer-events: none; transition: opacity 0.4s;
        }
        .nav-drawer-overlay.active { opacity: 1; pointer-events: auto; }
        .nav-drawer {
            position: fixed; top: 0; left: 0; bottom: 0; z-index: 300;
            width: 300px; max-width: 85vw; background: #fff;
            border-right: 1px solid #e4e4e7;
            transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
            overflow-y: auto; display: flex; flex-direction: column;
        }
        .nav-drawer.active { transform: translateX(0); }
        .nav-drawer-header {
            display: flex; align-items: center; justify-content: space-between;
            padding: 20px 24px; border-bottom: 1px solid #e4e4e7;
        }
        .nav-drawer-close {
            background: none; border: none; cursor: pointer; width: 32px; height: 32px;
            display: flex; align-items: center; justify-content: center;
        }
        .nav-drawer-close svg { width: 20px; height: 20px; stroke: #71717a; fill: none; stroke-width: 1.5; }
        .nav-drawer-close:hover svg { stroke: #18181b; }
        .nav-drawer-links { list-style: none; padding: 12px 0; flex: 1; }
        .nav-drawer-links li { border-bottom: 1px solid #f0f0ec; }
        .nav-drawer-links a {
            display: block; padding: 14px 24px; font-family: var(--heading); font-size: 0.95rem;
            color: #3f3f46; text-decoration: none; transition: background 0.2s, color 0.2s, padding-left 0.3s;
        }
        .nav-drawer-links a:hover { background: #f8f8f6; color: #c9a96e; padding-left: 28px; }
        .nav-drawer-sub { list-style: none; padding: 0; display: none; }
        .nav-drawer-sub.open { display: block; }
        .nav-drawer-sub a { padding: 10px 24px 10px 40px; font-size: 0.85rem; color: #71717a; }
        .nav-drawer-sub a:hover { color: #c9a96e; }
        .nav-drawer-toggle {
            display: flex; align-items: center; justify-content: space-between; width: 100%;
            background: none; border: none; cursor: pointer; padding: 14px 24px;
            font-family: var(--heading); font-size: 0.95rem; color: #3f3f46; text-align: left; transition: background 0.2s;
        }
        .nav-drawer-toggle:hover { background: #f8f8f6; }
        .nav-drawer-toggle svg { width: 16px; height: 16px; stroke: #a1a1aa; fill: none; stroke-width: 1.5; transition: transform 0.3s; }
        .nav-drawer-toggle.open svg { transform: rotate(180deg); }
        .nav-drawer-cta {
            margin: 16px 24px 24px; display: block; text-align: center;
            font-family: var(--heading); font-size: 0.9rem; font-weight: 500;
            color: #2c1f10; background: #c9a96e; padding: 14px; border-radius: 8px; text-decoration: none;
        }
        .nav-drawer-cta:hover { background: #b8944f; }
        .nav-drawer-info { padding: 20px 24px 28px; border-top: 1px solid rgba(201,169,110,0.3); margin-top: 8px; background: rgba(201,169,110,0.08); }
        .nav-drawer-info-block { margin-bottom: 18px; }
        .nav-drawer-info-block:last-child { margin-bottom: 0; }
        .nav-drawer-info-title {
            font-family: var(--heading); font-size: 0.7rem; font-weight: 600;
            color: #a1a1aa; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
        }
        .nav-drawer-info-row {
            display: flex; justify-content: space-between; align-items: baseline;
            font-size: 0.82rem; color: #52525b; padding: 4px 0; font-variant-numeric: tabular-nums;
        }
        .nav-drawer-info-row span:first-child { color: #71717a; }
        .nav-drawer-info-addr { font-size: 0.82rem; color: #52525b; line-height: 1.6; }

        @media (max-width: 768px) { .nav-links { display: none; } .nav-hamburger { display: block; } }

        /* ===== HERO: FULL-SCREEN CINEMATIC ===== */
        .hero {
            position: relative;
            min-height: 100dvh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, #f8f8f6 0%, #ffffff 40%, #faf9f7 100%);
        }
        /* Animated gradient orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
            will-change: transform;
        }
        .hero-orb-1 {
            width: 600px; height: 600px;
            top: -10%; right: -5%;
            background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
            animation: orbFloat1 12s ease-in-out infinite;
        }
        .hero-orb-2 {
            width: 400px; height: 400px;
            bottom: -5%; left: 10%;
            background: radial-gradient(circle, rgba(201,169,110,0.03) 0%, transparent 70%);
            animation: orbFloat2 10s ease-in-out infinite;
        }
        @keyframes orbFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,-30px) scale(1.1); } }
        @keyframes orbFloat2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-20px); } }

        /* Grid lines overlay */
        .hero-grid {
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            position: relative; z-index: 2;
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 48px);
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            align-items: center;
            gap: 60px;
            width: 100%;
        }
        .hero-text { padding-top: 72px; }
        .hero-label {
            font-family: var(--heading); font-size: 0.75rem; font-weight: 500;
            color: var(--accent); letter-spacing: 0.2em; text-transform: uppercase;
            margin-bottom: 20px;
            opacity: 0; animation: fadeSlideUp 0.8s 0.3s forwards;
        }
        .hero-title {
            font-family: var(--heading);
            font-size: clamp(2.6rem, 5vw, 4.2rem);
            font-weight: 700; line-height: 1.05; letter-spacing: -0.03em;
            color: var(--white); margin-bottom: 28px;
        }
        .hero-title .line {
            display: block; overflow: hidden;
        }
        .hero-title .line-inner {
            display: block;
            transform: translateY(110%);
            animation: lineReveal 1s cubic-bezier(0.16,1,0.3,1) forwards;
        }
        .hero-title .line:nth-child(1) .line-inner { animation-delay: 0.4s; }
        .hero-title .line:nth-child(2) .line-inner { animation-delay: 0.55s; }
        .hero-title em { font-style: normal; color: var(--accent); }

        /* Text scramble for subtitle */
        .hero-scramble {
            font-family: var(--heading); font-size: 1.05rem; font-weight: 300;
            color: var(--text-muted); margin-bottom: 40px; max-width: 48ch;
            line-height: 1.7; min-height: 3.4em;
        }

        .hero-actions {
            display: flex; gap: 16px; align-items: center;
            opacity: 0; animation: fadeSlideUp 0.8s 0.9s forwards;
        }

        /* Magnetic button */
        .btn-magnetic {
            font-family: var(--heading); font-size: 0.9rem; font-weight: 500;
            color: #fff; background: var(--accent); padding: 15px 34px;
            border: none; border-radius: 8px; cursor: pointer; text-decoration: none;
            display: inline-block; position: relative;
            transition: box-shadow 0.3s;
            will-change: transform;
        }
        .btn-magnetic:hover { box-shadow: 0 12px 40px rgba(201,169,110,0.3); }
        .btn-magnetic:active { transform: scale(0.97) !important; }

        .btn-outline {
            font-family: var(--heading); font-size: 0.9rem; font-weight: 400;
            color: var(--text-muted); background: transparent;
            padding: 15px 30px; border: 1px solid var(--border); border-radius: 8px;
            cursor: pointer; text-decoration: none;
            transition: border-color 0.3s, color 0.3s;
        }
        .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

        /* Hero 3D image with tilt */
        .hero-visual {
            perspective: 1200px;
            padding-top: 72px;
        }
        .hero-card-3d {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 65vh; min-height: 450px;
            transform-style: preserve-3d;
            will-change: transform;
            transition: transform 0.1s ease-out;
            border: 1px solid var(--border);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        .hero-card-3d-inner {
            width: 100%; height: 100%;
            background: var(--bg-elevated);
        }
        .hero-card-3d-inner img {
            width: 100%; height: 100%; object-fit: cover;
        }
        /* Shine overlay that follows mouse */
        .hero-card-shine {
            position: absolute; inset: 0;
            background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%), rgba(201,169,110,0.08), transparent 60%);
            pointer-events: none;
        }
        /* Reflection edge */
        .hero-card-3d::after {
            content: '';
            position: absolute; inset: 0;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.04);
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .hero-content { grid-template-columns: 1fr; padding-top: 100px; }
            .hero-text { padding-top: 0; }
            .hero-visual { display: none; }
        }

        /* ===== TRUST COUNTER ===== */
        .trust {
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 56px clamp(20px, 4vw, 48px);
            position: relative;
            overflow: hidden;
        }
        .trust::before {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(90deg, transparent, rgba(201,169,110,0.03), transparent);
            pointer-events: none;
        }
        .trust-inner {
            max-width: var(--max-w); margin: 0 auto;
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
        }
        .trust-item { opacity: 0; transform: translateY(20px); }
        .trust-item.visible {
            opacity: 1; transform: translateY(0);
            transition: opacity 0.6s, transform 0.6s cubic-bezier(0.16,1,0.3,1);
        }
        .trust-num {
            font-family: var(--heading); font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 700; color: var(--accent); letter-spacing: -0.03em;
        }
        .trust-label { font-size: 0.8rem; color: var(--text-dim); margin-top: 6px; }
        @media (max-width: 768px) { .trust-inner { grid-template-columns: repeat(2,1fr); } }

        /* ===== SECTION COMMON ===== */
        .sec {
            max-width: var(--max-w); margin: 0 auto;
            padding: clamp(80px,10vw,140px) clamp(20px,4vw,48px);
        }
        .sec-label {
            font-family: var(--heading); font-size: 0.73rem; font-weight: 500;
            color: var(--accent); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 14px;
            text-align: center;
        }
        .sec-title {
            font-family: var(--heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 600; line-height: 1.12; letter-spacing: -0.02em;
            color: var(--white); margin-bottom: 16px;
            text-align: center;
        }
        .sec-desc { font-size: 1rem; color: var(--text-muted); max-width: 55ch; line-height: 1.8; margin: 0 auto; text-align: center; }

        /* ===== WHY LINK PS ===== */
        .why-section {
            padding: clamp(80px,10vw,140px) 0;
            background: #f5f3ef;
        }
        .why-inner {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 clamp(20px,4vw,48px);
        }
        .why-header { margin-bottom: 56px; }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        @media (max-width: 1024px) {
            .why-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .why-grid { grid-template-columns: 1fr; }
        }
        .why-card {
            padding: 36px 32px;
            border: 1px solid #ede8df;
            border-radius: 16px;
            background: #fff;
            transition: border-color 0.2s;
        }
        .why-card:hover { border-color: var(--accent); }
        .why-icon {
            width: 44px; height: 44px;
            color: var(--accent);
            margin-bottom: 20px;
        }
        .why-title {
            font-family: var(--heading);
            font-size: 1.05rem; font-weight: 600;
            color: #18181b; margin-bottom: 10px;
        }
        .why-text {
            font-size: 0.88rem; line-height: 1.8;
            color: #71717a;
        }
        @media (max-width: 640px) {
            .why-grid { grid-template-columns: 1fr; }
        }

        /* ===== CLINIC INTERIOR: PERSPECTIVE SCROLL ===== */
        .clinic-wrap {
            padding: clamp(80px,10vw,140px) 0;
        }
        .clinic-header {
            max-width: var(--max-w); margin: 0 auto 48px;
            padding: 0 clamp(20px,4vw,48px);
        }

        /* Bento Grid */
        .clinic-bento {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 clamp(20px,4vw,48px);
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: 320px 220px 220px 220px;
            gap: 10px;
        }
        .bento-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            background: #f0ede8;
        }
        .bento-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
            display: block;
        }
        .bento-item:hover img { transform: scale(1.04); }
        .bento-label {
            position: absolute; bottom: 12px; left: 14px;
            font-family: var(--heading); font-size: 0.7rem; font-weight: 500;
            letter-spacing: 0.06em;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(8px);
            padding: 4px 10px; border-radius: 20px;
            color: #18181b;
        }
        /* Main item: col 1-2, row 1-2 */
        .bento-main {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
        }

        @media (max-width: 768px) {
            .clinic-bento {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
                gap: 6px;
                padding: 0 clamp(16px,4vw,32px);
            }
            .bento-main {
                grid-column: 1 / 3;
                grid-row: auto;
                aspect-ratio: 4/3;
            }
            .bento-item { aspect-ratio: 1/1; }
            .bento-label { font-size: 0.65rem; padding: 3px 8px; bottom: 8px; left: 8px; }
        }

        /* ===== DOCTORS: ZIGZAG ===== */
        .doctors-section {
            padding: clamp(80px,10vw,140px) 0;
            max-width: var(--max-w);
            margin: 0 auto;
        }
        .doctors-section-header {
            margin: 0 auto 72px;
            padding: 0 clamp(20px,4vw,48px);
        }
        .doctors-grid { display: flex; flex-direction: column; }

        .doctor-card {
            display: flex;
            align-items: stretch;
            border-top: 1px solid #ebebeb;
        }
        .doctor-card:last-child { border-bottom: 1px solid #ebebeb; }
        .doctor-card:nth-child(even) { flex-direction: row-reverse; }

        .doctor-photo-col {
            flex: 0 0 48%;
            background: #fff;
            display: flex; align-items: center; justify-content: center;
            min-height: 500px;
            overflow: hidden;
            border-right: 1px solid #ebebeb;
        }
        .doctor-card:nth-child(even) .doctor-photo-col {
            border-right: none;
            border-left: 1px solid #ebebeb;
        }
        .doctor-photo-col img {
            width: auto; max-width: 88%;
            max-height: 100%;
            object-fit: contain; object-position: bottom center;
            display: block;
        }

        .doctor-info {
            flex: 1;
            padding: clamp(48px,7vw,96px) clamp(32px,5vw,80px);
            display: flex; flex-direction: column; justify-content: center;
            background: #f7f5f1;
            position: relative;
            overflow: hidden;
        }
        /* Large decorative number */
        .doctor-info::after {
            content: attr(data-num);
            position: absolute;
            right: -0.05em; bottom: -0.2em;
            font-family: var(--heading); font-size: clamp(120px,16vw,200px);
            font-weight: 800; line-height: 1;
            color: rgba(0,0,0,0.04);
            pointer-events: none; user-select: none;
        }
        .doctor-num {
            font-family: var(--heading); font-size: 0.65rem; font-weight: 500;
            letter-spacing: 0.28em; text-transform: uppercase;
            color: var(--accent); margin-bottom: 20px;
        }
        .doctor-name {
            font-family: var(--heading); font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 700; color: #111; line-height: 1.05;
            margin-bottom: 10px; letter-spacing: -0.02em;
        }
        .doctor-title {
            font-size: 0.75rem; color: #a1a1aa;
            margin-bottom: 28px; line-height: 1.6; letter-spacing: 0.02em;
        }
        .doctor-bio {
            font-size: 0.95rem; color: #52525b; line-height: 1.9;
            max-width: 40ch; margin-bottom: 40px;
        }
        .doctor-link {
            display: inline-flex; align-items: center; gap: 8px;
            font-family: var(--heading); font-size: 0.72rem; font-weight: 600;
            letter-spacing: 0.14em; text-transform: uppercase;
            color: var(--accent); text-decoration: none; transition: gap 0.2s;
            padding: 12px 0; min-height: 44px;
        }
        .doctor-link:hover { gap: 14px; }

        @media (max-width: 768px) {
            .doctor-card,
            .doctor-card:nth-child(even) { flex-direction: column; }
            .doctor-card + .doctor-card { margin-top: 48px; }
            .doctor-photo-col { flex: none; width: 100%; min-height: 360px; }
            .doctor-bio { max-width: none; }
        }

        /* ===== HORIZONTAL SCROLL GALLERY ===== */
        .gallery-section {
            padding: clamp(80px,10vw,140px) 0;
            max-width: var(--max-w);
            margin: 0 auto;
        }
        .gallery-wrap {
            position: relative;
        }
        .gallery-header {
            margin: 0 auto 40px;
            padding: 0 clamp(20px,4vw,48px);
            text-align: center;
        }
        .gallery-swiper {
            padding: 8px 0 20px;
            touch-action: pan-y;
            -webkit-mask-image: linear-gradient(to right, black 0%, black 82%, transparent 100%);
            mask-image: linear-gradient(to right, black 0%, black 82%, transparent 100%);
        }
        .gallery-nav {
            display: flex; gap: 12px;
            justify-content: center;
            margin-top: 28px;
        }
        @media (max-width: 768px) {
            .gallery-swiper { padding-bottom: 4px; }
            .gallery-nav { margin-top: 16px; }
        }
        .gallery-btn {
            width: 44px; height: 44px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: #fff;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            color: var(--text);
            transition: background 0.2s, border-color 0.2s;
        }
        .gallery-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
        .gallery-btn:disabled { opacity: 0.3; cursor: default; }
        .gallery-card {
            width: 300px;
            border-radius: 14px;
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid var(--border);
            transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
        }
        .gallery-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 48px rgba(0,0,0,0.1);
        }
        .gallery-img {
            width: 100%; aspect-ratio: 1/1;
            position: relative; overflow: hidden;
            display: flex;
        }
        .ba-img {
            object-fit: cover; object-position: center center;
            pointer-events: none;
            -webkit-user-drag: none;
            -webkit-touch-callout: none;
            background: #e8e8e8;
        }

        /* Horizontal split (left/right) — 코, 리프팅 등 */
        .gallery-card[data-split="h"] .gallery-img { flex-direction: row; }
        .gallery-card[data-split="h"] .ba-img { width: 50%; height: 100%; }
        .gallery-card[data-split="h"] .gallery-img::after {
            content: ''; pointer-events: none;
            position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
            background: #fff; opacity: 0.75; transform: translateX(-50%);
        }
        .gallery-card[data-split="h"] .ba-label-l { left: 8px; top: 10px; }
        .gallery-card[data-split="h"] .ba-label-r { right: 8px; top: 10px; left: auto; bottom: auto; }

        /* Vertical split (top/bottom) — 눈, 배꼽 등 */
        .gallery-card[data-split="v"] .gallery-img { flex-direction: column; }
        .gallery-card[data-split="v"] .ba-img { width: 100%; height: 50%; }
        .gallery-card[data-split="v"] .gallery-img::after {
            content: ''; pointer-events: none;
            position: absolute; top: 50%; left: 0; right: 0; height: 2px;
            background: #fff; opacity: 0.75; transform: translateY(-50%);
        }
        .gallery-card[data-split="v"] .ba-label-l { left: 8px; top: 8px; right: auto; bottom: auto; }
        .gallery-card[data-split="v"] .ba-label-r { left: 8px; bottom: 8px; top: auto; right: auto; }

        .ba-label-l, .ba-label-r {
            position: absolute;
            font-family: var(--heading); font-size: 0.65rem; font-weight: 600;
            letter-spacing: 0.1em; text-transform: uppercase;
            padding: 3px 8px; border-radius: 4px;
            background: rgba(0,0,0,0.55); color: #fff;
            pointer-events: none;
        }
        .gallery-body { padding: 18px; }
        .gallery-body-title { font-family: var(--heading); font-size: 0.9rem; font-weight: 500; color: var(--white); }
        .gallery-body-sub { font-size: 0.75rem; color: var(--text-dim); margin-top: 3px; }

        /* ===== TESTIMONIAL ===== */
        .testimonial {
            text-align: center;
            padding: clamp(80px,10vw,140px) clamp(20px,4vw,48px);
            max-width: 800px; margin: 0 auto;
            position: relative;
        }
        .testimonial::before {
            content: '\201C';
            position: absolute; top: clamp(60px,8vw,120px); left: 50%;
            transform: translateX(-50%);
            font-family: var(--heading); font-size: 10rem; line-height: 1;
            color: rgba(201,169,110,0.08); pointer-events: none;
        }
        .testimonial-quote {
            font-family: var(--heading); font-size: clamp(1.15rem, 2.2vw, 1.5rem);
            font-weight: 300; line-height: 1.65; color: var(--white);
            font-style: italic; margin-bottom: 24px;
        }
        .testimonial-author { font-size: 0.85rem; color: var(--text-dim); }
        .testimonial-author strong { color: var(--accent); font-weight: 500; }

        /* ===== GOOGLE REVIEWS SLIDER ===== */
        .reviews-section {
            padding: clamp(80px,10vw,140px) 0;
            background: #faf7f3;
        }
        .reviews-header {
            text-align: center;
            padding: 0 clamp(20px,4vw,48px);
            margin-bottom: 56px;
        }
        .google-badge {
            display: inline-flex; align-items: center; gap: 8px;
            margin-top: 16px; padding: 10px 20px;
            border: 1px solid #e4e0d8;
            border-radius: 100px; text-decoration: none;
            transition: border-color 0.2s;
        }
        .google-badge:hover { border-color: var(--accent); }
        .google-badge-score { font-size: 1.1rem; font-weight: 700; color: #18181b; }
        .google-badge-stars { color: #fbbc04; font-size: 0.9rem; letter-spacing: 1px; }
        .google-badge-count { font-size: 0.75rem; color: #71717a; font-family: var(--heading); }

        .review-slider-wrap {
            position: relative;
            max-width: 780px;
            margin: 0 auto;
            padding: 0 clamp(20px,4vw,80px);
        }
        .review-slider { overflow: hidden; }
        .review-slide { display: block; height: auto; background: transparent; }
        .review-dots { margin-top: 24px; text-align: center; }
        .review-dots .swiper-pagination-bullet { width: 8px; height: 8px; background: #d4c9b8; opacity: 1; }
        .review-dots .swiper-pagination-bullet-active { background: var(--accent); }
        .review-slide-inner {
            padding: 44px 44px 36px;
            border: 1px solid rgba(201,169,110,0.3);
            border-radius: 20px;
            background: #ffffff;
            box-shadow: none;
            position: relative;
            overflow: hidden;
        }
        .review-slide-inner::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent) 0%, rgba(201,169,110,0.15) 100%);
        }
        .review-quote-mark {
            font-family: Georgia, serif;
            font-size: 4rem; line-height: 0.8;
            color: var(--accent); opacity: 0.5;
            margin-bottom: 12px;
            display: block;
        }
        .review-slide-stars { color: #fbbc04; font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 16px; }
        .review-slide-text {
            font-size: clamp(0.95rem,1.7vw,1.08rem);
            line-height: 1.9;
            color: #3f3f46;
            font-style: italic;
            margin-bottom: 28px;
        }
        .review-slide-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.06); }
        .review-avatar {
            width: 46px; height: 46px; border-radius: 50%;
            background: linear-gradient(135deg, var(--accent) 0%, #b8903a 100%);
            color: #fff;
            display: flex; align-items: center; justify-content: center;
            font-family: var(--heading); font-size: 1rem; font-weight: 600;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(201,169,110,0.35);
        }
        .review-name { font-size: 0.9rem; font-weight: 600; color: #18181b; }
        .review-proc { font-size: 0.72rem; color: #71717a; margin-top: 3px; }
        .review-gicon { margin-left: auto; opacity: 0.45; flex-shrink: 0; }

        /* CTA slide */
        .review-cta-inner {
            text-align: center;
            padding: 72px 48px !important;
        }
        .review-cta-score {
            font-family: var(--heading); font-size: 3rem; font-weight: 700;
            color: #18181b; margin-bottom: 8px;
        }
        .review-cta-score span { color: #fbbc04; font-size: 1.4rem; letter-spacing: 3px; }
        .review-cta-count { font-size: 0.85rem; color: #71717a; margin-bottom: 36px; }
        .review-cta-btn {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--accent); color: #fff;
            font-family: var(--heading); font-size: 0.9rem; font-weight: 600;
            letter-spacing: 0.06em; padding: 16px 36px;
            border-radius: 2px; text-decoration: none;
            transition: opacity 0.2s;
        }
        .review-cta-btn:hover { opacity: 0.88; }
        .review-cta-sub { font-size: 0.72rem; color: #71717a; margin-top: 14px; }

        /* Nav buttons */
        .review-prev, .review-next {
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 48px; height: 48px; border-radius: 50%;
            border: 1px solid #d4cfc6;
            background: #fff; color: #18181b;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: border-color 0.2s, box-shadow 0.2s;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .review-prev:hover, .review-next:hover {
            border-color: var(--accent); box-shadow: 0 4px 16px rgba(201,169,110,0.2);
        }
        .review-prev { left: 0; }
        .review-next { right: 0; }
        .review-prev svg, .review-next svg { width: 18px; height: 18px; }

        /* Dots */
        .review-dots {
            display: flex; justify-content: center; gap: 8px;
            margin-top: 28px;
        }
        .review-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: #d4cfc6; border: none; padding: 0; cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }
        .review-dot.active { background: var(--accent); transform: scale(1.4); }

        @media (max-width: 600px) {
            .review-slide-inner { padding: 32px 24px 28px; }
            .review-prev, .review-next { display: none; }
            .gallery-card { width: 75vw; }
        }

        /* ===== FAQ ===== */
        .faq-section { padding: clamp(80px,10vw,140px) 0; }
        .faq-inner { max-width: 780px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }
        .faq-header { text-align: center; margin-bottom: 48px; }
        .faq-list { border-top: 1px solid var(--border); }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-q {
            width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
            padding: 22px 0; background: none; border: none; cursor: pointer;
            font-family: var(--heading); font-size: 1rem; font-weight: 500; color: var(--text);
            text-align: left;
        }
        .faq-q:hover { color: var(--accent); }
        .faq-icon { flex-shrink: 0; transition: transform 0.3s; }
        .faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
        .faq-a {
            max-height: 0; overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
        }
        .faq-a p { padding-bottom: 20px; font-size: 0.9rem; line-height: 1.8; color: var(--text-muted); }

        /* ===== CTA ===== */
        .cta-section {
            max-width: var(--max-w); margin: 0 auto clamp(80px,10vw,140px);
            padding: 0 clamp(20px,4vw,48px);
        }
        .cta-box {
            position: relative;
            background: #faf9f7;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: clamp(48px,6vw,80px);
            text-align: center;
            overflow: hidden;
        }
        .cta-box::before {
            content: '';
            position: absolute; top: -40%; right: -10%;
            width: 500px; height: 500px; border-radius: 50%;
            background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 60%);
            filter: blur(40px); pointer-events: none;
        }
        .cta-actions { display: flex; gap: 16px; justify-content: center; margin-top: 32px; }

        /* ===== FOOTER ===== */
        .footer {
            border-top: 1px solid var(--border);
            padding: 48px clamp(20px,4vw,48px);
            position: relative; z-index: 1;
        }
        .footer-inner {
            max-width: var(--max-w); margin: 0 auto;
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
        }
        .footer-brand { font-family: var(--heading); font-size: 1rem; font-weight: 600; letter-spacing: 0.1em; color: var(--white); margin-bottom: 12px; }
        .footer-brand b { color: var(--accent); }
        .footer-addr { font-size: 0.8rem; color: var(--text-dim); line-height: 1.8; }
        .footer-map-btns { display: flex; gap: 6px; margin-top: 2px; flex-wrap: wrap; }
        .footer-map-btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 5px;
            width: 120px; padding: 5px 0; border-radius: 6px;
            font-size: 0.72rem; font-weight: 500; color: #fff; text-decoration: none;
            transition: opacity 0.2s, transform 0.2s;
        }
        .footer-map-btn:hover { opacity: 0.85; transform: translateY(-1px); }
        .footer-map-btn.google { background: #4285F4; }
        .footer-map-btn.naver  { background: #03C75A; }
        .footer-map-btn svg { flex-shrink: 0; width: 11px; height: 11px; }
        .footer-col-title { font-family: var(--heading); font-size: 0.75rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 8px; }
        .footer-links a { font-size: 0.83rem; color: var(--text-dim); text-decoration: none; transition: color 0.3s, padding-left 0.3s; }
        .footer-links a:hover { color: var(--accent); padding-left: 4px; }
        .footer-bottom {
            max-width: var(--max-w); margin: 28px auto 0; padding: 20px 0 72px;
            border-top: 1px solid var(--border);
            display: flex; justify-content: space-between; font-size: 0.73rem; color: var(--text-dim);
        }
        .footer-bottom a { color: inherit; text-decoration: none; }
        .footer-bottom a:hover { color: var(--accent); }
        @media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }

        /* ===== REVEAL ===== */
        .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
        .reveal.v { opacity: 1; transform: none; }
        .reveal-s { opacity: 0; transform: scale(0.94); transition: opacity 0.8s, transform 0.8s cubic-bezier(0.16,1,0.3,1); }
        .reveal-s.v { opacity: 1; transform: none; }

        /* ===== DOCTOR VIDEO BUTTON ===== */
        .doctor-video-btn {
            display: inline-flex; align-items: center; gap: 8px;
            margin-top: 14px; padding: 8px 16px;
            background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.2);
            border-radius: 8px; cursor: pointer; text-decoration: none;
            font-family: var(--heading); font-size: 0.78rem; color: var(--accent);
            transition: background 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.16,1,0.3,1);
        }
        .doctor-video-btn:hover { background: rgba(201,169,110,0.15); border-color: var(--accent); transform: translateY(-1px); }
        .doctor-video-btn svg { width: 14px; height: 14px; fill: var(--accent); }

        /* ===== VIDEO GALLERY ===== */
        .video-section { padding: clamp(80px,10vw,140px) 0; overflow: hidden; }
        .video-header { max-width: var(--max-w); margin: 0 auto 48px; padding: 0 clamp(20px,4vw,48px); }
        .video-grid {
            max-width: var(--max-w); margin: 0 auto;
            padding: 0 clamp(20px,4vw,48px);
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
        }
        .video-card {
            position: relative; border-radius: 14px; overflow: hidden;
            background: var(--bg-card); border: 1px solid var(--border);
            cursor: pointer;
            transition: border-color 0.3s, box-shadow 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
        }
        .video-card:hover {
            border-color: rgba(201,169,110,0.3);
            box-shadow: 0 16px 40px rgba(0,0,0,0.08);
            transform: translateY(-4px);
        }
        .video-thumb {
            position: relative; width: 100%; aspect-ratio: 16/9;
            background: var(--bg-elevated); overflow: hidden;
        }
        .video-thumb img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
        }
        .video-card:hover .video-thumb img { transform: scale(1.05); }
        /* Play button overlay */
        .video-play {
            position: absolute; inset: 0;
            display: flex; align-items: center; justify-content: center;
            background: rgba(0,0,0,0.15);
            transition: background 0.3s;
        }
        .video-card:hover .video-play { background: rgba(0,0,0,0.05); }
        .video-play-icon {
            width: 56px; height: 56px; border-radius: 50%;
            background: rgba(201,169,110,0.9); display: flex; align-items: center; justify-content: center;
            transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
        }
        .video-card:hover .video-play-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(201,169,110,0.4);
        }
        .video-play-icon svg { width: 22px; height: 22px; fill: #fff; margin-left: 2px; }
        .video-card-body { padding: 16px 20px; }
        .video-card-title { font-family: var(--heading); font-size: 0.9rem; font-weight: 500; color: var(--white); line-height: 1.4; }
        .video-card-sub { font-size: 0.75rem; color: var(--text-dim); margin-top: 4px; }

        @media (max-width: 768px) {
            .video-grid { grid-template-columns: 1fr; }
        }

        /* ===== LIGHTBOX ===== */
        .lightbox {
            position: fixed; inset: 0; z-index: 500;
            background: rgba(0,0,0,0.85); backdrop-filter: blur(12px);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none;
            transition: opacity 0.4s;
        }
        .lightbox.active { opacity: 1; pointer-events: auto; }
        .lightbox-inner {
            width: 90%; max-width: 900px; aspect-ratio: 16/9;
            border-radius: 12px; overflow: hidden;
            transform: scale(0.92);
            transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
            box-shadow: 0 40px 80px rgba(0,0,0,0.5);
        }
        .lightbox.active .lightbox-inner { transform: scale(1); }
        .lightbox-inner iframe { width: 100%; height: 100%; border: none; }
        .lightbox-close {
            position: absolute; top: 20px; right: 24px;
            width: 44px; height: 44px; border-radius: 50%;
            background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            transition: background 0.3s, transform 0.3s;
        }
        .lightbox-close:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }
        .lightbox-close svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }

        /* ===== KEYFRAMES ===== */
        @keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes lineReveal { from { transform: translateY(110%); } to { transform: translateY(0); } }

        /* ===== FAB: CONTACT ===== */
        .fab-container { position: fixed; bottom: 28px; right: 28px; z-index: 150; transform: translateZ(0); pointer-events: none; display: flex; flex-direction: column-reverse; align-items: flex-end; gap: 12px; }
        .fab-main {
            width: 56px; height: 56px; border-radius: 16px; background: var(--accent); border: none; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 8px 32px rgba(201,169,110,0.3); position: relative; pointer-events: auto;
            transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-radius 0.3s;
        }
        .fab-main:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(201,169,110,0.4); }
        .fab-main:active { transform: scale(0.95); }
        .fab-main.open { border-radius: 50%; }
        .fab-main svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; position: absolute; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s; }
        .fab-main .icon-chat { opacity: 1; transform: rotate(0deg); }
        .fab-main .icon-close { opacity: 0; transform: rotate(-90deg); }
        .fab-main.open .icon-chat { opacity: 0; transform: rotate(90deg); }
        .fab-main.open .icon-close { opacity: 1; transform: rotate(0deg); }
        .fab-main { animation: fabPulse 2.5s ease-in-out infinite; }
        .fab-main.open { animation: none; }
        @keyframes fabPulse { 0% { box-shadow: 0 8px 32px rgba(201,169,110,0.3), 0 0 0 0 rgba(201,169,110,0.8); } 70% { box-shadow: 0 8px 32px rgba(201,169,110,0.3), 0 0 0 20px rgba(201,169,110,0); } 100% { box-shadow: 0 8px 32px rgba(201,169,110,0.3), 0 0 0 0 rgba(201,169,110,0); } }
        .fab-menu { display: flex; flex-direction: column-reverse; gap: 8px; align-items: flex-end; pointer-events: none; }
        .fab-item {
            display: flex; align-items: center; gap: 10px; text-decoration: none;
            opacity: 0; transform: translateY(16px) scale(0.9); pointer-events: none;
            transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1), transform 0.3s cubic-bezier(0.16,1,0.3,1);
        }
        .fab-container.open .fab-item { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
        .fab-container.open .fab-item:nth-child(1) { transition-delay: 0.04s; }
        .fab-container.open .fab-item:nth-child(2) { transition-delay: 0.08s; }
        .fab-container.open .fab-item:nth-child(3) { transition-delay: 0.12s; }
        .fab-container.open .fab-item:nth-child(4) { transition-delay: 0.16s; }
        .fab-container.open .fab-item:nth-child(5) { transition-delay: 0.20s; }
        .fab-container.open .fab-item:nth-child(6) { transition-delay: 0.24s; }
        .fab-container.open .fab-item:nth-child(8) { transition-delay: 0.28s; }
        .fab-container.open .fab-item:nth-child(9) { transition-delay: 0.32s; }
        .fab-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 6px 0; opacity: 0; transition: opacity 0.3s 0.26s; }
        .fab-container.open .fab-divider { opacity: 1; }
        .fab-label { background: none; border: none; border-radius: 0; padding: 0 8px; font-family: var(--heading); font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.85); white-space: nowrap; box-shadow: none; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
        .fab-item:hover .fab-label { color: #fff; }
        .fab-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); cursor: pointer; }
        .fab-item:hover .fab-icon { transform: scale(1.08); }
        .fab-icon.phone { background: #2563eb; color: #fff; }
        .fab-icon.whatsapp { background: #25d366; color: #fff; }
        .fab-icon.telegram { background: #0088cc; color: #fff; }
        .fab-icon.messenger { background: #0084ff; color: #fff; }
        .fab-icon.kakaotalk { background: #fee500; color: #3c1e1e; }
        .fab-icon.line { background: #06c755; color: #fff; }
        .fab-icon.googlemaps { background: #4285F4; color: #fff; }
        .fab-icon.navermaps { background: #03C75A; color: #fff; }
        .fab-icon.wechat { background: #07C160; color: #fff; }
        .fab-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 140; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
        .fab-backdrop.visible { opacity: 1; pointer-events: auto; }
        .fab-hint {
            position: absolute; bottom: 18px; padding: 0;
            background: none; border: none; box-shadow: none;
            font-family: var(--heading); font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.7); white-space: nowrap;
            text-shadow: 0 1px 4px rgba(0,0,0,0.3);
            opacity: 1; transition: opacity 0.5s;
            animation: fabHintFade 7s forwards;
            pointer-events: none;
        }
        .fab-hint-right { right: 64px; }
        .fab-hint-left { left: 52px; }
        @keyframes fabHintFade { 0%, 71% { opacity: 1; } 100% { opacity: 0; } }
        @media (max-width: 768px) {
            .fab-hint { font-size: 0.72rem; animation: fabHintFade 7s forwards; }
        }

        /* ===== FAB: LANGUAGE ===== */
        .lang-fab-container { position: fixed; bottom: 28px; left: 28px; z-index: 150; transform: translateZ(0); pointer-events: none; display: flex; flex-direction: column-reverse; align-items: flex-start; gap: 12px; }
        .lang-fab-main {
            width: 48px; height: 48px; border-radius: 14px; background: var(--bg-card); border: 1px solid var(--border);
            cursor: pointer; display: flex; align-items: center; justify-content: center; pointer-events: auto;
            transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        .lang-fab-main:hover { transform: scale(1.05); border-color: var(--accent); }
        .lang-fab-main svg { width: 20px; height: 20px; stroke: var(--text-muted); fill: none; stroke-width: 1.5; }
        .lang-fab-menu { display: flex; flex-direction: column-reverse; gap: 6px; align-items: flex-start; pointer-events: none; }
        .lang-fab-item {
            display: flex; align-items: center; gap: 8px; cursor: pointer;
            opacity: 0; transform: translateY(12px) scale(0.9); pointer-events: none;
            transition: opacity 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.25s cubic-bezier(0.16,1,0.3,1);
        }
        .lang-fab-container.open .lang-fab-item { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
        .lang-fab-container.open .lang-fab-item:nth-child(1) { transition-delay: 0.03s; }
        .lang-fab-container.open .lang-fab-item:nth-child(2) { transition-delay: 0.06s; }
        .lang-fab-container.open .lang-fab-item:nth-child(3) { transition-delay: 0.09s; }
        .lang-fab-container.open .lang-fab-item:nth-child(4) { transition-delay: 0.12s; }
        .lang-fab-container.open .lang-fab-item:nth-child(5) { transition-delay: 0.15s; }
        .lang-fab-container.open .lang-fab-item:nth-child(6) { transition-delay: 0.18s; }
        .lang-fab-container.open .lang-fab-item:nth-child(7) { transition-delay: 0.21s; }
        .lang-fab-container.open .lang-fab-item:nth-child(8) { transition-delay: 0.24s; }
        .lang-fab-flag { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--heading); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.02em; color: var(--text-muted); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
        .lang-fab-item:hover .lang-fab-flag { transform: scale(1.1); border-color: var(--accent); }
        .lang-fab-item.active .lang-fab-flag { border-color: var(--accent); background: var(--bg-elevated); }
        .lang-fab-name { background: none; border: none; border-radius: 0; padding: 0 8px; font-family: var(--heading); font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.85); white-space: nowrap; box-shadow: none; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
        .lang-fab-item.active .lang-fab-name { color: #fff; }

        @media (max-width: 768px) {
            .fab-container { bottom: 20px; right: 20px; }
            .lang-fab-container { bottom: 20px; left: 20px; }
            .fab-main { width: 52px; height: 52px; }
            .lang-fab-main { width: 44px; height: 44px; }
            .fab-label { font-size: 0.75rem; padding: 6px 10px; }
            .lang-fab-name { font-size: 0.72rem; padding: 5px 10px; }
        }

        @media (prefers-reduced-motion: reduce) {
            .fab-main { animation: fabPulse 2.5s ease-in-out infinite !important; }
            .fab-main.open { animation: none !important; }
            .fab-hint { animation: fabHintFade 5s forwards !important; }
        }
    

.scroll-line-track { width: 2px; height: 48px; background: rgba(255,255,255,0.1); margin: 8px auto 0; position: relative; overflow: hidden; border-radius: 1px; }
.scroll-line-bar { position: absolute; top: -100%; left: 0; width: 2px; height: 50%; background: linear-gradient(to bottom, transparent, var(--accent)); border-radius: 1px; animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { top: -100%; } 100% { top: 100%; } }
@media (prefers-reduced-motion: reduce) {
    .scroll-line-bar { animation: scrollLine 2s ease-in-out infinite !important; }
}

/* Hero background */
#heroBg img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover; }

