/* ===== Style A — Editorial =====
        body {
            font-family: 'Noto Sans TC', 'Inter', sans-serif;
            background: var(--bg-1); color: var(--text-b);
            line-height: 1.8; font-weight: 400; font-size: 16px;
            transition: background var(--transition-theme), color var(--transition-theme);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }

        /* ===== NAV ===== */
        .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--nav-bg); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px); border-bottom: 1px solid var(--line); transition: background var(--transition-theme), border-color var(--transition-theme); }
        .nav-in { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; }
        .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--text-h); letter-spacing: 1px; transition: color var(--transition-theme); }
        .nav-logo em { font-style: normal; opacity: 0.35; font-size: 0.8rem; margin-left: 10px; letter-spacing: 3px; font-family: 'Noto Sans TC', sans-serif; font-weight: 300; }
        .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
        .nav-links a { font-size: 0.8rem; color: var(--text-m); letter-spacing: 0.5px; transition: color 0.3s; position: relative; }
        .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--c1); transition: width 0.5s var(--ease-out-expo); }
        .nav-links a:hover { color: var(--text-h); }
        .nav-links a:hover::after { width: 100%; }

        /* Nav CTA — pill, border-only, fill on hover */
        .nav-cta {
            font-size: 0.78rem !important; letter-spacing: 1.5px !important;
            padding: 9px 28px !important; border-radius: 100px;
            border: 1.5px solid var(--text-h); color: var(--text-h) !important;
            position: relative; overflow: hidden; z-index: 1;
            transition: color 0.5s var(--ease-out-expo), border-color var(--transition-theme) !important;
        }
        .nav-cta::after { content: ''; position: absolute; inset: 0; background: var(--text-h); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out-expo); z-index: -1; }
        .nav-cta:hover { color: var(--bg-1) !important; }
        .nav-cta:hover::after { transform: scaleX(1); }

        .hamburger { display: none; flex-direction: column; gap: 6px; width: 24px; cursor: pointer; padding: 10px; min-height: 44px; min-width: 44px; justify-content: center; align-items: center; }
        .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text-h); transition: transform 0.3s var(--ease-out-expo), opacity 0.3s; }
        .hamburger.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-3.75px) rotate(-45deg); }
        .mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99; background: var(--bg-1); padding: 100px 40px 40px; opacity: 0; transition: opacity 0.3s var(--ease-out-expo), background var(--transition-theme); }
        .mobile-menu.open { display: flex; flex-direction: column; gap: 24px; opacity: 1; }
        .mobile-menu a { font-family: 'Noto Sans TC', 'Inter', sans-serif; font-size: 1.2rem; color: var(--text-h); letter-spacing: 1px; font-weight: 400; text-decoration: none; transition: color var(--transition-theme); }
        .mobile-menu a:hover { color: var(--c1); }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex; align-items: center; gap: 12px;
            font-size: 0.82rem; letter-spacing: 1.5px; font-weight: 500;
            padding: 16px 40px; border-radius: 100px;
            border: 1.5px solid var(--text-h); color: var(--text-h);
            position: relative; overflow: hidden; z-index: 1;
            transition: color 0.5s var(--ease-out-expo), letter-spacing 0.5s var(--ease-out-expo);
            text-transform: uppercase; font-family: 'Inter', sans-serif;
        }
        .btn::after {
            content: ''; position: absolute; inset: 0;
            background: var(--text-h); transform: scaleX(0);
            transform-origin: left; transition: transform 0.5s var(--ease-out-expo); z-index: -1;
        }
        .btn:hover { color: var(--bg-1); letter-spacing: 2.5px; }
        .btn:hover::after { transform: scaleX(1); }
        .btn-arrow-svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; transition: transform 0.4s var(--ease-out-expo); }
        .btn:hover .btn-arrow-svg { transform: translateX(4px); }

        .btn-ghost {
            display: inline-flex; align-items: center; gap: 10px;
            font-size: 0.82rem; letter-spacing: 1px; font-weight: 500;
            color: var(--text-h); position: relative; padding-bottom: 2px;
            font-family: 'Inter', sans-serif;
        }
        .btn-ghost::after {
            content: ''; position: absolute; bottom: 0; left: 0;
            width: 100%; height: 1px; background: var(--text-h);
            transform: scaleX(0); transform-origin: left;
            transition: transform 0.5s var(--ease-out-expo);
        }
        .btn-ghost:hover::after { transform: scaleX(1); }
        .btn-ghost:hover .btn-arrow-svg { transform: translateX(4px); }

        /* btn on dark backgrounds */
        .btn-on-dark { border-color: rgba(255,255,255,0.3); color: var(--text-d); }
        .btn-on-dark::after { background: var(--text-d); }
        .btn-on-dark:hover { color: var(--bg-dark); }

        /* ===== HERO ===== */
        .hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 160px 40px 80px; }
        .hero-in { max-width: 1200px; margin: 0 auto; width: 100%; }
        .hero-eyebrow { font-family: 'Inter', sans-serif; font-size: 0.68rem; letter-spacing: 6px; color: var(--c1); text-transform: uppercase; margin-bottom: 36px; font-weight: 500; display: flex; align-items: center; gap: 20px; }
        .hero-eyebrow::before { content: ''; width: 48px; height: 1px; background: var(--c1); }
        .hero-title {
            font-family: 'Noto Serif TC', 'Cormorant Garamond', serif;
            font-size: clamp(2.8rem, 6.5vw, 5rem); line-height: 1.2;
            font-weight: 400; color: var(--text-h);
            margin-bottom: 0; max-width: 880px; letter-spacing: 0.02em;
        }
        .hero-title em {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic; color: var(--c1); font-weight: 300;
            letter-spacing: -0.02em;
        }
        .hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 56px; gap: 48px; }
        .hero-desc { max-width: 400px; font-size: 0.92rem; color: var(--text-m); line-height: 1.95; font-weight: 300; }
        .hero-actions { display: flex; gap: 24px; align-items: center; flex-shrink: 0; }
        .hero-strip { margin-top: 80px; display: grid; grid-template-columns: 1.8fr 1fr 1.2fr; gap: 12px; height: 360px; }
        .hero-strip-img { border-radius: 4px; overflow: hidden; position: relative; }
        .hero-strip-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out-expo); }
        .hero-strip-img:hover img { transform: scale(1.03); }

        /* ===== TRUST ===== */
        .trust { padding: 52px 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: border-color var(--transition-theme); }
        .trust-in { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 72px; }
        .trust-item { text-align: center; }
        .trust-num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: var(--text-h); line-height: 1; letter-spacing: -0.02em; }
        .trust-label { font-size: 0.7rem; color: var(--text-m); margin-top: 8px; letter-spacing: 2px; font-family: 'Inter', sans-serif; }
        .trust-sep { width: 1px; background: var(--line); align-self: stretch; }

        /* ===== SECTION COMMON ===== */
        .sec-label { font-family: 'Inter', sans-serif; font-size: 0.65rem; letter-spacing: 6px; color: var(--c1); text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
        .sec-heading { font-family: 'Noto Serif TC', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; line-height: 1.35; color: var(--text-h); margin-bottom: 18px; letter-spacing: 0.03em; }
        .sec-desc { color: var(--text-m); max-width: 460px; line-height: 1.9; font-weight: 300; font-size: 0.9rem; }
        .sec-center { text-align: center; margin-bottom: 72px; }
        .sec-center .sec-desc { margin: 0 auto; }

        /* ===== ABOUT ===== */
        .about { padding: 160px 40px 120px; background: var(--bg-2); transition: background var(--transition-theme); }
        .about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 88px; align-items: center; }
        .about-imgs { position: relative; }
        .about-img-main { width: 100%; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; }
        .about-img-main img { width: 100%; height: 100%; object-fit: cover; }
        .about-img-sm { position: absolute; bottom: -28px; right: -28px; width: 50%; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; border: 5px solid var(--bg-2); box-shadow: 0 16px 48px rgba(0,0,0,0.08); transition: border-color var(--transition-theme); }
        .about-img-sm img { width: 100%; height: 100%; object-fit: cover; }
        .about-text .sec-desc { margin-bottom: 32px; }
        .about-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic; color: var(--c1); line-height: 1.75; padding-left: 20px; border-left: 2px solid var(--c1); margin-bottom: 40px; font-weight: 400; letter-spacing: 0.01em; }

        /* About features — vertical accent bar instead of icon boxes */
        .about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .about-feat { display: flex; gap: 14px; padding: 16px 18px; background: var(--bg-card); border-radius: 6px; border: 1px solid var(--line); transition: border-color 0.3s, background var(--transition-theme); }
        .about-feat:hover { border-color: var(--line-h); }
        .about-feat-bar { width: 3px; border-radius: 2px; background: var(--c1); flex-shrink: 0; align-self: stretch; opacity: 0.5; }
        .about-feat-title { font-size: 0.88rem; font-weight: 500; color: var(--text-h); margin-bottom: 2px; }
        .about-feat-sub { font-size: 0.75rem; color: var(--text-m); }

        /* ===== SERVICES — ZIGZAG, NO ICONS, BIG NUMBERS ===== */
        .services { padding: 140px 40px; transition: background var(--transition-theme); }
        .services-in { max-width: 1200px; margin: 0 auto; }
        .svc-list { display: flex; flex-direction: column; gap: 100px; margin-top: 72px; }
        .svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
        .svc-row:nth-child(even) .svc-img { order: 2; }
        .svc-row:nth-child(even) .svc-text { order: 1; }
        .svc-img { border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; }
        .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out-expo); }
        .svc-img:hover img { transform: scale(1.03); }
        .svc-num { font-family: 'Cormorant Garamond', serif; font-size: 5.5rem; font-weight: 300; color: rgba(var(--c1-rgb), 0.12); line-height: 1; margin-bottom: 8px; letter-spacing: -0.04em; }
        .svc-text h3 { font-family: 'Noto Serif TC', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 14px; letter-spacing: 0.04em; }
        .svc-text p { font-size: 0.88rem; color: var(--text-m); line-height: 1.9; max-width: 400px; }

        /* ===== BEFORE / AFTER ===== */
        .ba { padding: 140px 40px; background: var(--bg-dark); color: var(--text-d); transition: background var(--transition-theme); }
        .ba .sec-heading { color: var(--text-d); }
        .ba .sec-desc { color: var(--text-dm); }
        .ba-wrap { margin-top: 56px; }
        .ba-slider { position: relative; width: 100%; max-width: 800px; margin: 0 auto; aspect-ratio: 16/10; border-radius: 6px; overflow: hidden; cursor: ew-resize; user-select: none; }
        .ba-layer { position: absolute; inset: 0; }
        .ba-layer img { width: 100%; height: 100%; object-fit: cover; }
        .ba-after { clip-path: inset(0 0 0 50%); }
        .ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: rgba(255,255,255,0.8); transform: translateX(-50%); z-index: 2; pointer-events: none; }
        .ba-handle-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.25); display: flex; align-items: center; justify-content: center; }
        .ba-handle-dot svg { width: 16px; height: 16px; stroke: #333; fill: none; stroke-width: 2; }
        .ba-tag { position: absolute; top: 16px; padding: 5px 14px; font-family: 'Inter', sans-serif; font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase; background: rgba(0,0,0,0.4); backdrop-filter: blur(6px); color: rgba(255,255,255,0.8); border-radius: 3px; z-index: 1; pointer-events: none; }
        .ba-tag-bf { left: 16px; }
        .ba-tag-af { right: 16px; }
        .ba-info { text-align: center; margin-top: 28px; }
        .ba-info h4 { font-family: 'Noto Serif TC', serif; font-size: 1.05rem; color: var(--text-d); font-weight: 400; margin-bottom: 4px; }
        .ba-info p { font-size: 0.8rem; color: var(--text-dm); }
        .ba-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
        .ba-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); border: none; transition: all 0.4s var(--ease-out-expo); }
        .ba-dot.on { background: var(--c1); width: 24px; border-radius: 4px; }

        /* ===== PROCESS ===== */
        .process { padding: 120px 40px; transition: background var(--transition-theme); }
        .process-in { max-width: 1200px; margin: 0 auto; }
        .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; position: relative; }
        .process-grid::before { content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 1px; background: var(--line); }
        .step { text-align: center; position: relative; padding: 0 16px; }
        .step-n { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: var(--c1); line-height: 1; width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; background: var(--bg-1); position: relative; z-index: 1; transition: background var(--transition-theme), border-color var(--transition-theme); }
        .step h4 { font-family: 'Noto Serif TC', serif; font-size: 0.95rem; font-weight: 500; margin-bottom: 10px; letter-spacing: 0.05em; }
        .step p { font-size: 0.78rem; color: var(--text-m); line-height: 1.7; }

        /* ===== TEAM CAROUSEL ===== */
        .team { padding: 140px 40px; background: var(--bg-2); transition: background var(--transition-theme); }
        .team-in { max-width: 1200px; margin: 0 auto; }
        .team-carousel { overflow: hidden; }
        .team-track { display: flex; transition: transform 0.6s var(--ease-out-expo); }
        .team-slide { min-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
        .team-photo { aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; }
        .team-photo img { width: 100%; height: 100%; object-fit: cover; }
        .team-name { font-family: 'Noto Serif TC', serif; font-size: 2rem; font-weight: 400; color: var(--text-h); margin-bottom: 6px; letter-spacing: 0.05em; }
        .team-role { font-family: 'Inter', sans-serif; font-size: 0.72rem; color: var(--c1); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; }
        .team-bio { font-size: 0.9rem; color: var(--text-m); line-height: 1.9; margin-bottom: 28px; font-weight: 300; }
        .team-creds { list-style: none; }
        .team-creds li { font-size: 0.82rem; color: var(--text-b); padding: 10px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
        .team-creds li::before { content: ''; width: 16px; height: 1px; background: var(--c1); flex-shrink: 0; }
        .team-arrows { display: flex; gap: 8px; margin-top: 40px; }
        .team-arr { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: border-color 0.3s, background 0.3s; }
        .team-arr:hover { border-color: var(--text-h); background: var(--text-h); }
        .team-arr:hover svg { stroke: var(--bg-1); }
        .team-arr svg { width: 16px; height: 16px; stroke: var(--text-h); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }

        /* ===== TESTIMONIALS ===== */
        .testi { padding: 120px 40px; transition: background var(--transition-theme); }
        .testi-in { max-width: 1200px; margin: 0 auto; }
        .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
        .testi-card { padding: 36px 28px; background: var(--bg-card); border: 1px solid var(--line); border-radius: 8px; transition: border-color 0.3s, box-shadow 0.4s, background var(--transition-theme); }
        .testi-card:hover { border-color: var(--line-h); box-shadow: 0 8px 32px rgba(var(--c1-rgb), 0.06); }
        .testi-mark { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; line-height: 1; color: rgba(var(--c1-rgb), 0.15); margin-bottom: -4px; }
        .testi-body { font-size: 0.88rem; line-height: 1.9; color: var(--text-b); margin-bottom: 24px; font-weight: 300; }
        .testi-foot { display: flex; align-items: center; gap: 12px; }
        .testi-av { width: 36px; height: 36px; border-radius: 50%; background: rgba(var(--c1-rgb), 0.08); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 500; color: var(--c1); font-family: 'Inter', sans-serif; }
        .testi-who { font-size: 0.85rem; font-weight: 500; color: var(--text-h); }
        .testi-what { font-size: 0.7rem; color: var(--text-m); }
        .testi-stars { margin-left: auto; color: var(--c2); font-size: 0.7rem; letter-spacing: 2px; }

        /* ===== FAQ ===== */
        .faq { padding: 120px 40px; background: var(--bg-2); transition: background var(--transition-theme); }
        .faq-in { max-width: 1200px; margin: 0 auto; }
        .faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 88px; align-items: start; }
        .faq-list { display: flex; flex-direction: column; }
        .faq-item { border-bottom: 1px solid var(--line); }
        .faq-q { width: 100%; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.92rem; font-weight: 500; color: var(--text-h); text-align: left; transition: color 0.3s; }
        .faq-q:hover { color: var(--c1); }
        .faq-plus { width: 24px; height: 24px; position: relative; flex-shrink: 0; margin-left: 20px; }
        .faq-plus::before, .faq-plus::after { content: ''; position: absolute; background: var(--text-m); transition: transform 0.4s var(--ease-out-expo); }
        .faq-plus::before { width: 14px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
        .faq-plus::after { width: 1px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
        .faq-item.open .faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out-expo); }
        .faq-a-in { padding: 0 0 24px; font-size: 0.85rem; color: var(--text-m); line-height: 1.9; }

        /* ===== BOOKING ===== */
        .booking { padding: 140px 40px; background: var(--bg-dark); color: var(--text-d); transition: background var(--transition-theme); }
        .booking .sec-heading { color: var(--text-d); }
        .booking .sec-desc { color: var(--text-dm); }
        .booking-in { max-width: 1200px; margin: 0 auto; }
        .booking-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; margin-top: 56px; }
        .booking-form { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 44px; }
        .f-grid { display: flex; flex-direction: column; gap: 20px; }
        .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .f-field label { display: block; font-family: 'Inter', sans-serif; font-size: 0.68rem; color: var(--text-dm); letter-spacing: 1.5px; margin-bottom: 8px; text-transform: uppercase; }
        .f-field input, .f-field select, .f-field textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 14px 16px; color: var(--text-d); font-size: 0.88rem; border-radius: 4px; outline: none; transition: border-color 0.3s; font-family: 'Noto Sans TC', sans-serif; }
        .f-field input::placeholder, .f-field textarea::placeholder { color: rgba(255,255,255,0.2); }
        .f-field input:focus, .f-field select:focus, .f-field textarea:focus { border-color: var(--c1); }
        .f-field textarea { resize: vertical; min-height: 88px; }
        .f-field select { appearance: none; cursor: pointer; }
        .f-field select option { background: #222; }
        .f-submit { width: 100%; padding: 16px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.25); background: transparent; color: var(--text-d); font-size: 0.82rem; letter-spacing: 2px; font-weight: 500; font-family: 'Inter', sans-serif; margin-top: 8px; position: relative; overflow: hidden; z-index: 1; transition: color 0.5s var(--ease-out-expo); cursor: pointer; text-transform: uppercase; }
        .f-submit::after { content: ''; position: absolute; inset: 0; background: var(--text-d); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out-expo); z-index: -1; }
        .f-submit:hover { color: var(--bg-dark); }
        .f-submit:hover::after { transform: scaleX(1); }

        .booking-contact h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 28px; color: var(--text-d); }
        .contact-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
        .contact-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(var(--c1-rgb), 0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .contact-icon svg { width: 16px; height: 16px; stroke: var(--c1); fill: none; stroke-width: 1.5; }
        .contact-row h4 { font-size: 0.85rem; color: var(--text-d); margin-bottom: 2px; font-weight: 500; }
        .contact-row p { font-size: 0.8rem; color: var(--text-dm); line-height: 1.6; }
        .map-frame { margin-top: 24px; width: 100%; height: 180px; border-radius: 8px; overflow: hidden; border: none; }

        /* ===== FOOTER ===== */
        .footer { background: var(--bg-dark-2); color: var(--text-dm); padding: 56px 40px 28px; }
        .footer-in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
        .footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--text-d); margin-bottom: 12px; font-weight: 400; }
        .footer-brand p { font-size: 0.78rem; line-height: 1.75; max-width: 260px; }
        .footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.65rem; letter-spacing: 3px; color: var(--text-d); margin-bottom: 18px; text-transform: uppercase; }
        .footer-col a { display: block; font-size: 0.78rem; color: var(--text-dm); margin-bottom: 10px; transition: color 0.3s; }
        .footer-col a:hover { color: var(--c1); }
        .footer-end { max-width: 1200px; margin: 36px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
        .footer-end p { font-size: 0.68rem; }
        .footer-social { display: flex; gap: 10px; }
        .footer-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: border-color 0.3s; }
        .footer-social a:hover { border-color: var(--c1); }
        .footer-social a svg { width: 14px; height: 14px; stroke: var(--text-dm); fill: none; stroke-width: 1.5; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 968px) {
            .hero { padding: 120px 28px 60px; }
            .hero-strip { grid-template-columns: 1fr 1fr; height: 260px; }
            .hero-strip-img:last-child { display: none; }
            .hero-bottom { flex-direction: column; align-items: flex-start; }
            .about { padding: 100px 28px 80px; }
            .about-grid { grid-template-columns: 1fr; gap: 48px; }
            .about-img-sm { right: -12px; bottom: -12px; width: 40%; }
            .svc-row { grid-template-columns: 1fr; gap: 28px; }
            .svc-row:nth-child(even) .svc-img { order: 0; }
            .svc-row:nth-child(even) .svc-text { order: 0; }
            .process-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
            .process-grid::before { display: none; }
            .team-slide { grid-template-columns: 1fr; gap: 36px; }
            .testi-grid { grid-template-columns: 1fr; }
            .faq-layout { grid-template-columns: 1fr; gap: 40px; }
            .booking-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-in { grid-template-columns: 1fr 1fr; }
            .trust-in { gap: 36px; }
        }
        @media (max-width: 900px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
        }
        @media (max-width: 640px) {
            .nav-in { padding: 16px 20px; }
            .hero { padding: 100px 20px 48px; }
            .hero-strip { grid-template-columns: 1fr; height: 220px; }
            .hero-strip-img:nth-child(2) { display: none; }
            .hero-actions { flex-direction: column; align-items: flex-start; }
            .about-feats { grid-template-columns: 1fr; }
            .process-grid { grid-template-columns: 1fr; }
            .trust-in { flex-direction: column; gap: 20px; }
            .trust-sep { width: 40px; height: 1px; }
            .f-row { grid-template-columns: 1fr; }
            .footer-in { grid-template-columns: 1fr; gap: 28px; }
            .services, .ba, .testi, .process, .team, .faq, .booking { padding: 80px 20px; }
            .about { padding: 80px 20px 64px; }
            .booking-form { padding: 28px 20px; }

        }
