/**
 * Lumina — Premium Dry Cleaning & Laundry Template
 * ---------------------------------------------------------------------------
 * BRAND COLORS: Edit the values in :root below.
 *   --color-navy   → Primary brand / headings / buttons
 *   --color-slate  → Accent / labels / highlights
 *   --color-bg     → Page background
 * FONTS: Change --font-main and --font-accent, then update the Google Fonts
 * link in index.html to match.
 */

:root {
    --color-bg: #F8F9F7;
            --color-navy: #1B263B;
            --color-slate: #4682B4;
            --color-linen: #E5E5E5;
            --color-dusty: #607D8B;
            --color-white: #FFFFFF;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-accent: 'Playfair Display', serif;
            --container-max: 1200px;
            --radius: 8px;
            --shadow-subtle: 0 4px 12px rgba(27, 38, 59, 0.05);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --stitch-color: rgba(27, 38, 59, 0.15);
        }

        /* --- Accessibility utility --- */
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--color-bg);
            color: var(--color-navy);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            position: relative;
            overflow-x: hidden;
            /* Added to prevent horizontal scroll from large BG text */
        }

        /* --- Texture Overlay --- */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* --- Global Artisanal Elements --- */
        .stitch-box {
            position: relative;
            padding: 1px;
        }

        .stitch-box::after {
            content: '';
            position: absolute;
            top: 6px;
            left: 6px;
            right: 6px;
            bottom: 6px;
            border: 1px dashed var(--stitch-color);
            border-radius: calc(var(--radius) - 2px);
            pointer-events: none;
            z-index: 5;
        }

        /* ==========================================================================
           HEADER & NAVIGATION
           ========================================================================== */
        header {
            background: var(--color-white);
            border-bottom: 1px solid var(--color-linen);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            text-decoration: none;
            color: inherit;
        }

        .brand--wordmark-only .wordmark {
            font-size: 1.15rem;
            letter-spacing: 0.14em;
        }

        /* Optional image logo — add .brand-logo img in HTML; hidden when empty */
        .brand-logo {
            height: 36px;
            width: auto;
            display: block;
        }

        .brand-logo[src=""],
        .brand-logo:not([src]) {
            display: none;
        }

        /* Default typographic mark (no image file required) */
        .brand-mark {
            flex-shrink: 0;
            width: 2.25rem;
            height: 2.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1.5px solid var(--color-navy);
            border-radius: 50%;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            color: var(--color-navy);
            line-height: 1;
        }

        .wordmark {
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.1em;
            color: var(--color-navy);
            text-transform: uppercase;
        }

        nav ul {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        nav a {
            text-decoration: none;
            color: var(--color-dusty);
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--color-navy);
        }

        .cta-pill {
            background: var(--color-navy);
            color: var(--color-white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: var(--transition);
        }

        .cta-pill:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(27, 38, 59, 0.1);
        }

        /* ==========================================================================
           HERO SECTION
           ========================================================================== */
        .hero {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            grid-template-areas:
                "text image"
                "status image";
            gap: 4rem;
            padding: 6rem 2rem;
            max-width: var(--container-max);
            margin: 0 auto;
            min-height: 90vh;
            position: relative;
            /* overflow: hidden; Removed to allow pods to bleed safely */
            align-items: start;
        }

        .typography-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100vw;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bg-typography {
            font-family: var(--font-accent);
            font-size: clamp(6rem, 13vw, 15rem);
            /* Fluid sizing that stays within bounds */
            font-weight: 500;
            color: var(--color-navy);
            opacity: 0.05;
            white-space: nowrap;
            pointer-events: none;
            z-index: 1;
            letter-spacing: 0.02em;
            transform: rotate(-5deg);
            width: 100%;
            text-align: center;
            mix-blend-mode: multiply;
        }

        .hero-content {
            grid-area: text;
            position: relative;
            z-index: 10;
            padding-top: 2rem;
        }

        .hero-status {
            grid-area: status;
            background: var(--color-white);
            padding: 1.5rem 2rem;
            border-radius: var(--radius);
            display: inline-flex;
            align-items: center;
            gap: 1.2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px dashed var(--stitch-color);
            position: relative;
            z-index: 10;
            margin-top: -2rem;
            align-self: end;
            max-width: fit-content;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #27ae60;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0px rgba(39, 174, 96, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
            }

            100% {
                box-shadow: 0 0 0 0px rgba(39, 174, 96, 0);
            }
        }

        .hero-image-container {
            grid-area: image;
            position: relative;
            padding: 20px;
        }

        .main-hero-frame {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 20px 40px 80px rgba(0, 0, 0, 0.1);
            background: var(--color-white);
            aspect-ratio: 4/6;
        }

        .main-hero-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }



        /* --- Spotlight logic --- */
        .detail-pod {
            position: absolute;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--color-white);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            z-index: 20;
            background: var(--color-white);
        }

        .pod-stain {
            bottom: 20px;
            left: -60px;
        }

        .pod-badge {
            top: 20px;
            right: -20px;
            width: 150px;
            height: 150px;
            /* Ensure perfect circle */
            aspect-ratio: 1/1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .detail-pod img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        h1 {
            font-size: 5rem;
            line-height: 0.9;
            margin-bottom: 2rem;
            font-weight: 700;
            letter-spacing: -0.05em;
        }

        .hero p {
            font-size: 1.35rem;
            color: var(--color-dusty);
            margin-bottom: 3rem;
            max-width: 520px;
            font-weight: 400;
        }

        .hero-ctas {
            display: flex;
            gap: 1.5rem;
        }

        /* --- Fancy Buttons --- */
        .fancy {
            background-color: transparent;
            border: 2px solid var(--color-navy);
            border-radius: 0;
            box-sizing: border-box;
            color: var(--color-white);
            cursor: pointer;
            display: inline-flex;
            font-weight: 700;
            letter-spacing: 0.05em;
            margin: 0;
            outline: none;
            overflow: visible;
            padding: 1.25em 2em;
            position: relative;
            text-align: center;
            text-decoration: none;
            text-transform: none;
            transition: all 0.3s ease-in-out;
            user-select: none;
            font-size: 13px;
            align-items: center;
        }

        .fancy::before {
            content: " ";
            width: 1.5625rem;
            height: 2px;
            background: var(--color-navy);
            top: 50%;
            left: 1.5em;
            position: absolute;
            transform: translateY(-50%);
            transform-origin: center;
            transition: background 0.3s linear, width 0.3s linear;
        }

        .fancy .text {
            font-size: 1.125em;
            line-height: 1.33333em;
            padding-left: 2em;
            display: block;
            text-align: left;
            transition: all 0.3s ease-in-out;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--color-navy);
        }

        .fancy .top-key {
            height: 2px;
            width: 1.5625rem;
            top: -2px;
            left: 0.625rem;
            position: absolute;
            background: var(--color-bg);
            transition: width 0.5s ease-out, left 0.3s ease-out;
        }

        .fancy .bottom-key-1 {
            height: 2px;
            width: 1.5625rem;
            right: 1.875rem;
            bottom: -2px;
            position: absolute;
            background: var(--color-bg);
            transition: width 0.5s ease-out, right 0.3s ease-out;
        }

        .fancy .bottom-key-2 {
            height: 2px;
            width: 0.625rem;
            right: 0.625rem;
            bottom: -2px;
            position: absolute;
            background: var(--color-bg);
            transition: width 0.5s ease-out, right 0.3s ease-out;
        }

        .fancy:hover {
            color: var(--color-white);
            background: var(--color-navy);
        }

        .fancy:hover::before {
            width: 0.9375rem;
            background: var(--color-white);
        }

        .fancy:hover .text {
            color: var(--color-white);
            padding-left: 1.5em;
        }

        .fancy:hover .top-key {
            left: -2px;
            width: 0px;
        }

        .fancy:hover .bottom-key-1,
        .fancy:hover .bottom-key-2 {
            right: 0;
            width: 0;
        }

        /* ==========================================================================
           SERVICES & RESTORATION SPOTLIGHT
           ========================================================================== */
        .comparison-section {
            padding: 100px 0;
            background: #050a14;
            /* Darker for focus */
            overflow: hidden;
            position: relative;
        }

        .section-title.light {
            color: var(--color-white);
            text-align: center;
            margin-bottom: 60px;
            font-weight: 300;
        }

        .spotlight-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            height: 700px;
            cursor: none;
            /* Hide default cursor */
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
            background: #000;
        }

        .spotlight-base,
        .spotlight-reveal {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            pointer-events: none;
        }

        .spotlight-base {
            background-image: url('../assets/silk_stained_macro.png');
            z-index: 1;
            filter: brightness(0.7);
        }

        .spotlight-reveal {
            background-image: url('../assets/silk_restored_macro.jpg');
            z-index: 2;
            clip-path: circle(0% at 0% 0%);
            /* Hidden by default */
            will-change: clip-path;
        }

        .spotlight-lens {
            position: absolute;
            top: 0;
            left: 0;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 80px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(255, 255, 255, 0.1);
            z-index: 10;
            pointer-events: none;
            display: none;
            will-change: transform;
            /* Shown on hover */
        }

        .spotlight-status {
            position: absolute;
            top: 30px;
            left: 30px;
            background: rgba(10, 20, 41, 0.8);
            backdrop-filter: blur(20px);
            padding: 8px 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            color: var(--color-white);
            font-size: 9px;
            letter-spacing: 3px;
            text-transform: uppercase;
            z-index: 20;
            pointer-events: none;
        }

        .spotlight-info {
            position: absolute;
            bottom: 30px;
            right: 30px;
            text-align: right;
            z-index: 20;
            pointer-events: none;
        }

        .spotlight-info h4 {
            color: var(--color-white);
            font-size: 14px;
            font-weight: 300;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .spotlight-info p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 10px;
            letter-spacing: 1px;
        }

        .label-after {
            left: 30px;
        }

        /* --- Trust Bar --- */
        .trust-bar {
            background: var(--color-white);
            padding: 4rem 2rem;
            border-top: 1px solid var(--color-linen);
            border-bottom: 1px solid var(--color-linen);
            display: flex;
            justify-content: center;
            gap: 6rem;
            align-items: center;
        }

        .trust-item {
            text-align: center;
        }

        .trust-item strong {
            display: block;
            font-size: 1rem;
            margin-top: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.7;
        }

        .stars {
            color: #F7B731;
            font-size: 1.4rem;
            letter-spacing: 2px;
        }

        /* ==========================================================================
           STUDIO 360° SECTION
           ========================================================================== */
        .categories {
            background: var(--color-white);
            color: var(--color-navy);
            padding: 6rem 2rem 8rem;
            /* Reduced padding */
            position: relative;
            overflow: hidden;
            perspective: 2000px;
        }

        .categories .wordmark-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 28vw;
            font-weight: 950;
            color: rgba(0, 0, 0, 0.01);
            white-space: nowrap;
            pointer-events: none;
            z-index: 1;
        }

        .couture-grid {
            display: grid;
            grid-template-columns: 1fr 1.8fr 1fr;
            /* Balanced columns */
            align-items: center;
            gap: 2rem;
            max-width: 1400px;
            /* More standard width */
            margin: 0 auto;
            position: relative;
            z-index: 2;
            transform-style: preserve-3d;
        }

        .xray-container {
            position: relative;
            background: transparent;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform-style: preserve-3d;
            transition: transform 0.1s ease-out;
            will-change: transform;
            min-height: 650px;
            /* Smaller height to fit screens */
        }

        .xray-container img {
            width: 100%;
            /* Fits container */
            height: auto;
            display: block;
            pointer-events: none;
            filter: drop-shadow(0 40px 100px rgba(0, 0, 0, 0.1));
            transform: translateZ(100px);
            animation: coat-float-dynamic 12s ease-in-out infinite;
        }

        @keyframes coat-float-dynamic {

            0%,
            100% {
                transform: translateZ(100px) translateY(0) rotate(0deg);
            }

            50% {
                transform: translateZ(100px) translateY(-20px) rotate(1deg);
            }
        }

        /* Pure Kawaii Slider (As provided) */
        .rotation-controls {
            margin-top: 3rem;
            width: 100%;
            display: flex;
            justify-content: center;
            transform: translateZ(50px);
            z-index: 200;
        }

        [type="range"].kawaii {
            --base: var(--color-navy);
            /* Adjusted for brand but kept structure */
            --light: color-mix(in sRGB, var(--base) 60%, #fff);
            --lighter: color-mix(in sRGB, var(--base) 30%, #fff);
            --dark: color-mix(in sRGB, var(--base) 95%, #000);
            --transparent: color-mix(in sRGB, var(--base) 0%, #0000);
            appearance: none;
            font-size: 1em;
            width: 20em;
            height: 2em;
            border: 0.5em solid #fff;
            border-radius: 2em;
            box-shadow: 0 0 1em #0001, 0 0.25em 0.5em #0001;
            overflow: hidden;
            cursor: pointer;
        }

        [type="range"].kawaii::-webkit-slider-runnable-track {
            background:
                radial-gradient(circle at 0.75em 0.6em, var(--light) calc(0.2em - 1px), #0000 0.2em),
                radial-gradient(circle at 1.25em 0.6em, var(--light) calc(0.2em - 1px), #0000 0.2em),
                radial-gradient(circle at 5em 0.6em, var(--light) calc(0.2em - 1px), #0000 0.2em),
                linear-gradient(var(--light) 0 0) 1.25em 0.4em / 3.75em calc(0.4em - 0.5px) no-repeat,
                linear-gradient(90deg, var(--base), var(--transparent) 1em),
                linear-gradient(#0000 70%, var(--dark) 80%),
                var(--base);
            border-radius: 2em;
            height: 100%;
            overflow: hidden;
        }

        [type="range"].kawaii::-webkit-slider-thumb {
            appearance: none;
            height: 2em;
            width: 2em;
            color: var(--lighter);
            background:
                radial-gradient(circle at 0.75em 0.6em, var(--light) calc(0.2em - 1px), #0000 0.2em),
                linear-gradient(90deg, #0000 0.75em, var(--base) 0) 0 0 / 100% 50% no-repeat;
            border-radius: 50%;
            box-shadow:
                inset -0.5em 0 0.5em -0.25em var(--base),
                1em 0 0 0.25em, 2em 0 0 0.25em, 3em 0 0 0.25em, 4em 0 0 0.25em, 5em 0 0 0.25em,
                6em 0 0 0.25em, 7em 0 0 0.25em, 8em 0 0 0.25em, 9em 0 0 0.25em, 10em 0 0 0.25em,
                11em 0 0 0.25em, 12em 0 0 0.25em, 13em 0 0 0.25em, 14em 0 0 0.25em, 15em 0 0 0.25em,
                16em 0 0 0.25em, 17em 0 0 0.25em, 18em 0 0 0.25em, 19em 0 0 0.25em;
        }

        /* Cinematic Hotspots */
        .hotspot-360 {
            position: absolute;
            width: 28px;
            height: 28px;
            background: var(--color-white);
            border: 1px solid var(--color-navy);
            border-radius: 50%;
            z-index: 150;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            transform: translateZ(102px) scale(0);
            /* Close to image Z for parallax fix */
            opacity: 0;
        }

        .hotspot-360.visible {
            transform: translateZ(102px) scale(1);
            /* Close to image Z for parallax fix */
            opacity: 1;
        }

        .hotspot-360::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 1px solid var(--color-navy);
            animation: pulse-aura-cinematic 4s infinite;
        }

        @keyframes pulse-aura-cinematic {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }

            100% {
                transform: scale(3.5);
                opacity: 0;
            }
        }

        .hotspot-360 .hotspot-label {
            position: absolute;
            left: 45px;
            background: var(--color-white);
            color: var(--color-navy);
            padding: 1.2rem 1.8rem;
            white-space: nowrap;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border-left: 3px solid var(--color-navy);
            opacity: 0;
            transform: translateX(25px);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            pointer-events: none;
            backdrop-filter: blur(10px);
        }

        .hotspot-360:hover .hotspot-label {
            opacity: 1;
            transform: translateX(0);
        }

        .detail-column {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            transform-style: preserve-3d;
        }

        .detail-item {
            padding: 2rem;
            background: transparent;
            border-left: 2px solid rgba(0, 0, 0, 0.03);
            transition: var(--transition);
            transform: translateZ(30px);
        }

        .detail-item:hover {
            border-left-color: var(--color-navy);
            transform: translateZ(60px) translateX(10px);
        }

        .detail-item.right:hover {
            transform: translateZ(60px) translateX(-10px);
        }

        .detail-item h4 {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            margin-bottom: 1rem;
            color: var(--color-slate);
            font-weight: 800;
        }

        .detail-item p {
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
            color: var(--color-navy);
            opacity: 0.6;
        }

        /* 360 Rotation Loader Hide (optional) */
        .rotation-frames {
            display: none;
        }

        @media (max-width: 1100px) {
            .couture-grid {
                grid-template-columns: 1fr;
                gap: 5rem;
            }

            .xray-container {
                max-width: 450px;
                margin: 0 auto;
            }

            .detail-item {
                text-align: center;
                border-left: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
        }

        /* ==========================================================================
           FOOTER
           ========================================================================== */
        footer {
            background: var(--color-navy);
            color: var(--color-white);
            padding: 8rem 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 6rem;
            max-width: var(--container-max);
            margin: 0 auto;
        }

        /* --- Top Bar --- */
        .top-bar {
            background: #F0F1EF;
            /* Slightly darker than bg for depth */
            height: 36px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--color-dusty);
            border-bottom: 1px solid var(--color-linen);
            position: relative;
            z-index: 1100;
        }

        .top-bar-links {
            display: flex;
            align-items: center;
        }

        .lang-selector {
            position: relative;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .lang-selector:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--color-white);
            border: 1px solid var(--color-linen);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border-radius: 4px;
            margin-top: 8px;
            display: none;
            z-index: 9999;
            min-width: 120px;
            overflow: hidden;
        }

        .lang-dropdown.active {
            display: block;
            animation: fadeInScale 0.2s ease-out;
        }

        .lang-item {
            padding: 8px 16px;
            transition: background 0.2s;
            color: var(--color-navy);
            text-transform: none;
            letter-spacing: normal;
            font-size: 0.8rem;
        }

        .lang-item:hover {
            background: var(--color-linen);
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(-10px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* ==========================================================================
           ABOUT / STORY
           ========================================================================== */
        .legend-section {
            padding: 8rem 2rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .legend-section h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

        .legend-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--color-dusty);
            line-height: 1.8;
        }

        /* ==========================================================================
           HOURS & CONTACT
           ========================================================================== */
        .schedule-section {
            background: var(--color-white);
            padding: 8rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: var(--container-max);
            margin: 0 auto;
            align-items: center;
        }

        .schedule-card {
            padding: 3rem;
            border: 1px dashed var(--stitch-color);
            border-radius: var(--radius);
        }

        .schedule-row {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid var(--color-linen);
        }

        .schedule-row:last-child {
            border-bottom: none;
        }

        /* --- Global Grid for Services --- */
        .services-simple-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .service-mini-card {
            text-align: center;
            padding: 2rem;
        }

        .service-mini-card h3 {
            margin-top: 1rem;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }

        @media (max-width: 900px) {
            .hero {
                display: flex;
                flex-direction: column;
                text-align: center;
                padding: 4rem 1.5rem;
                gap: 4rem;
            }

            .hero-content {
                order: 1;
                padding-top: 0;
            }

            .hero-status {
                order: 2;
                margin-top: 0;
                align-self: center;
            }

            .hero-image-container {
                order: 3;
                max-width: 400px;
                width: 100%;
                margin: 0 auto;
            }

            .top-bar {
                display: none;
                /* Hide top bar on mobile for space */
            }

            .schedule-section {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .services-simple-grid {
                grid-template-columns: 1fr;
            }
        }
