        :root {
            --brand-green: #85B746;
            --text-main: #1f2937;
            --text-soft: #4b5563;
            --surface: #ffffff;
            --divider: #f6f8fb;
            --border-soft: #e8edf3;
            --section-side-pad: clamp(18px, 6vw, 72px);
            --content-max-width: 1200px;
        }

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

        html,
        body {
            overflow-x: hidden;
        }

        body {
            font-family: 'Manrope', sans-serif;
            color: var(--text-main);
            background: #ffffff;
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        p, a, li, button, input, select, textarea, label, span {
            font-family: 'Manrope', sans-serif;
        }

        .page-shell {
            min-height: 100vh;
        }

        .navbar-wrap {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #ffffff;
            border-bottom: 1px solid rgba(229, 231, 235, 0.7);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
            padding: 14px var(--section-side-pad);
        }

        .navbar {
            display: flex;
            align-items: center;
            gap: 34px;
        }

        .brand img {
            width: 180px;
            display: block;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
            margin-left: auto;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-main);
            font-size: 16px;
            font-weight: 600;
            transition: color 0.25s ease;
        }

        .nav-links a:hover,
        .nav-links a.is-active {
            color: var(--brand-green);
        }

        .service-hero {
            padding: 56px var(--section-side-pad) 48px;
            background: #0f172a;
            text-align: center;
        }

        .service-hero-kicker {
            color: #a8d86a;
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .service-hero h1 {
            color: #ffffff;
            font-size: clamp(38px, 4.8vw, 58px);
            line-height: 1.08;
            letter-spacing: -0.4px;
            max-width: 900px;
            margin: 0 auto 16px;
        }

        .service-hero p {
            max-width: 820px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.82);
            font-size: 18px;
            line-height: 1.6;
            font-weight: 500;
        }

        .service-detail-section {
            padding: 72px var(--section-side-pad) 90px;
            background: #ffffff;
        }

        .service-detail-wrap {
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 380px;
            gap: 36px;
            align-items: start;
        }

        .service-content {
            display: grid;
            gap: 36px;
        }

        .service-feature-image {
            margin: 0;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-soft);
            background: #f3f6f9;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
        }

        .service-feature-image img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .service-intro p {
            color: var(--text-soft);
            font-size: 17px;
            line-height: 1.65;
            font-weight: 500;
            margin-bottom: 14px;
        }

        .service-intro p:last-child {
            margin-bottom: 0;
        }

        .service-block h2 {
            color: #0f172a;
            font-size: clamp(30px, 3vw, 40px);
            line-height: 1.12;
            margin-bottom: 16px;
        }

        .service-list {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .service-list li {
            position: relative;
            padding-left: 22px;
            color: #374151;
            font-size: 16px;
            line-height: 1.55;
            font-weight: 500;
        }

        .service-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.62em;
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--brand-green);
            transform: translateY(-50%);
        }

        .service-checklist li::before {
            content: "✔";
            width: auto;
            height: auto;
            background: none;
            color: var(--brand-green);
            font-size: 15px;
            font-weight: 700;
            top: 0;
            transform: none;
        }

        .service-checklist li {
            padding-left: 26px;
        }

        .enquiry-panel {
            position: sticky;
            top: 96px;
            background: #ffffff;
            border: 1px solid var(--border-soft);
            border-radius: 16px;
            padding: 26px;
            box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
        }

        .enquiry-kicker {
            color: var(--brand-green);
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .enquiry-panel h2 {
            color: #0f172a;
            font-size: clamp(28px, 2.8vw, 36px);
            line-height: 1.1;
            margin-bottom: 8px;
        }

        .enquiry-copy {
            color: var(--text-soft);
            font-size: 15px;
            line-height: 1.55;
            margin-bottom: 18px;
        }

        .enquiry-form {
            display: grid;
            gap: 12px;
        }

        .enquiry-form label {
            display: inline-block;
            margin-bottom: 6px;
            color: #374151;
            font-size: 14px;
            font-weight: 600;
        }

        .enquiry-input,
        .enquiry-select,
        .enquiry-textarea {
            width: 100%;
            border: 1px solid #d9dee7;
            border-radius: 12px;
            background: #ffffff;
            color: #111827;
            font-size: 15px;
            padding: 12px;
            outline: none;
        }

        .enquiry-input:focus,
        .enquiry-select:focus,
        .enquiry-textarea:focus {
            border-color: #a8cc7a;
            box-shadow: 0 0 0 3px rgba(133, 183, 70, 0.1);
        }

        .enquiry-textarea {
            min-height: 110px;
            resize: vertical;
        }

        .enquiry-note {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.45;
        }

        .enquiry-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 0;
            border-radius: 12px;
            background: var(--brand-green);
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            padding: 13px 18px;
            cursor: pointer;
        }

        .site-footer {
            background: #0f172a;
            color: #ffffff;
            padding: 48px var(--section-side-pad) 36px;
        }

        .footer-grid {
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1.1fr;
            gap: 28px;
            width: 100%;
        }

        .footer-brand-logo {
            width: 170px;
            margin-bottom: 14px;
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.78);
            font-size: 15px;
            line-height: 1.55;
            max-width: 360px;
        }

        .footer-text a {
            color: #a8d86a;
            text-decoration: none;
        }

        .footer-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            margin-bottom: 12px;
        }

        .footer-links {
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.78);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        @media (max-width: 960px) {
            .service-detail-wrap {
                grid-template-columns: 1fr;
            }

            .enquiry-panel {
                position: static;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .navbar {
                flex-wrap: wrap;
                justify-content: center;
                gap: 16px;
            }

            .nav-links {
                margin-left: 0;
                flex-wrap: wrap;
                justify-content: center;
                gap: 14px 20px;
            }
        }

        @media (max-width: 720px) {
            .navbar {
                flex-direction: column;
                gap: 14px;
            }

            .nav-links {
                gap: 12px 16px;
            }

            .service-hero {
                padding: 44px var(--section-side-pad) 40px;
            }

            .service-hero p {
                font-size: 16px;
            }

            .service-detail-section {
                padding: 56px var(--section-side-pad) 72px;
            }
        }

        @media (min-width: 1280px) {
            .navbar,
            .service-detail-wrap,
            .footer-grid {
                max-width: var(--content-max-width);
                margin-left: auto;
                margin-right: auto;
                width: 100%;
            }
        }
