
        :root {
            --primary: #2b6cb0;
            --primary-dark: #274167;
            --accent: #d69e2e;
            --bg-light: #fdf7ec;
            --bg-soft: #f7fafc;
            --text-dark: #2d3748;
            --text-muted: #718096;
            --max-width: 1100px;
        }
        * { box-sizing: border-box; }
        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--text-dark);
            background-color: #ffffff;
            line-height: 1.6;
            padding-top: 70px;      /* space for fixed header */
            padding-bottom: 120px;  /* space for fixed footer on desktop */
        }
        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(255, 255, 255, 0.97);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
        }
        .nav-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary-dark);
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 1.25rem;
            margin: 0;
            padding: 0;
        }
        nav a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
        }
        nav a:hover { color: var(--primary); }
        .nav-cta {
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            background: var(--primary);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .nav-cta:hover { background: var(--primary-dark); }
        .nav-toggle {
            display: none;
            border: none;
            background: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .hero {
            background: radial-gradient(circle at top, #edf2ff, #ffffff);
            padding: 3.5rem 1rem 3rem;
        }
        .hero-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
            gap: 2.5rem;
            align-items: center;
        }
        .hero h1 {
            font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
            margin: 0 0 0.75rem;
            color: var(--primary-dark);
        }
        .hero .tagline {
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-size: 0.78rem;
            color: var(--accent);
            font-weight: 700;
        }
        .hero p {
            margin: 0 0 1.5rem;
            color: var(--text-muted);
            max-width: 32rem;
        }
        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
        }
        .btn-primary {
            padding: 0.7rem 1.5rem;
            border-radius: 999px;
            border: none;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
        }
        .btn-primary:hover { background: var(--primary-dark); }
        .btn-outline {
            padding: 0.7rem 1.2rem;
            border-radius: 999px;
            border: 1px solid var(--primary);
            background: transparent;
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
        }
        .btn-outline:hover { background: #ebf8ff; }
        .hero-meta {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .hero-card {
            background: #ffffff;
            border-radius: 1.25rem;
            padding: 1.5rem 1.75rem;
            box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
            border: 1px solid #e2e8f0;
        }
        .card-heading {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }
        .service-times {
            list-style: none;
            padding: 0;
            margin: 0 0 1rem;
            font-size: 0.95rem;
        }
        .service-times li {
            display: flex;
            justify-content: space-between;
            padding: 0.25rem 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        .service-times li:last-child { border-bottom: none; }
        .hero-card address {
            font-style: normal;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .hero-card .phone {
            margin-top: 0.35rem;
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 0.95rem;
        }

        section { padding: 3rem 1rem; }
        .section-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .section-title {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            color: var(--primary-dark);
        }
        .section-subtitle {
            margin-bottom: 2rem;
            color: var(--text-muted);
            max-width: 40rem;
        }

        .quick-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 1.5rem;
        }
        .quick-card {
            border-radius: 1rem;
            padding: 1.25rem;
            background: #ffffff;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
            border: 1px solid #edf2f7;
        }
        .quick-card h3 {
            margin-top: 0;
            margin-bottom: 0.4rem;
            font-size: 1.05rem;
            color: var(--primary-dark);
        }
        .quick-card p {
            margin: 0 0 0.7rem;
            font-size: 0.93rem;
            color: var(--text-muted);
        }

        /* 2x2 photo grid */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        .photo-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.75rem;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        }

        footer {
            background: #1a202c;
            color: #e2e8f0;
            padding: 1.75rem 1rem;
            position: fixed;   /* fixed on desktop */
            bottom: 0;
            left: 0;
            width: 100%;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
            font-size: 0.85rem;
        }
        .footer-inner a { color: #cbd5e0; }
        .footer-inner a:hover { color: #fff; }

        @media (max-width: 800px) {
            .hero-inner {
                grid-template-columns: 1fr;
            }
            .hero { padding-top: 2.5rem; }
            .hero-card { order: -1; }

            nav ul {
                position: absolute;
                top: 54px;
                right: 0;
                background: #ffffff;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.75rem 1rem;
                border-bottom-left-radius: 0.75rem;
                box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
                display: none;
            }
            nav ul.open { display: flex; }
            .nav-toggle { display: block; }
            .nav-cta { margin-top: 0.5rem; }

            /* 👇 On mobile: footer becomes normal, and body padding adjusts */
            footer {
                position: static;
            }
            body {
                padding-bottom: 1.5rem; /* small bottom spacing instead of 120px */
            }
        }
