
        :root {
            --color-black: #0A0A0A;
            --color-white: #FAFAFA;
            --color-grey-dark: #1A1A1A;
            --color-grey-mid: #2A2A2A;
            --color-grey-light: #B0B0B0;
            --color-grey-border: #333333;
            --color-accent: #E85A2B;
            --color-accent-hover: #D14A1E;
            --color-urban: #3B82F6;
            --color-urban-bg: #0F1A2E;
            --color-gravel: #A16207;
            --color-gravel-bg: #1A1408;
            --color-adaptive: #059669;
            --color-adaptive-bg: #081A14;
            --font-display: 'Space Grotesk', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

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

        body {
            font-family: var(--font-body);
            background: var(--color-black);
            color: var(--color-white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--color-grey-border);
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--color-white);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .nav-logo span {
            color: var(--color-accent);
        }

        .nav-toggle {
            display: none;
        }

        .nav-toggle-label {
            display: none;
            cursor: pointer;
            padding: 8px;
        }

        .nav-toggle-label span,
        .nav-toggle-label span::before,
        .nav-toggle-label span::after {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--color-white);
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-toggle-label span::before,
        .nav-toggle-label span::after {
            content: '';
            position: absolute;
        }

        .nav-toggle-label span::before {
            top: -7px;
        }

        .nav-toggle-label span::after {
            top: 7px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--color-grey-light);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--color-white);
        }

        .nav-links a.nav-cta {
            background: var(--color-accent);
            color: var(--color-white);
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            transition: background 0.2s;
        }

        .nav-links a.nav-cta:hover {
            background: var(--color-accent-hover);
        }

        /* Hero */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-gradient {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.85) 100%);
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 24px 80px;
        }

        .hero-tag {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--color-accent);
            margin-bottom: 24px;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--color-grey-light);
            max-width: 600px;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--color-accent);
            color: var(--color-white);
        }

        .btn-primary:hover {
            background: var(--color-accent-hover);
            transform: translateY(-1px);
        }

        .btn-outline {
            background: transparent;
            color: var(--color-white);
            border: 2px solid var(--color-grey-border);
        }

        .btn-outline:hover {
            border-color: var(--color-white);
            transform: translateY(-1px);
        }

        /* Brand Lines */
        .lines {
            padding: 120px 24px;
        }

        .lines-header {
            max-width: 1200px;
            margin: 0 auto 64px;
            text-align: center;
        }

        .lines-header h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .lines-header p {
            color: var(--color-grey-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .lines-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .line-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            min-height: 520px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            border: 1px solid var(--color-grey-border);
            transition: transform 0.3s, border-color 0.3s;
        }

        .line-card:hover {
            transform: translateY(-4px);
        }

        .line-card-urban { background: var(--color-urban-bg); }
        .line-card-urban:hover { border-color: var(--color-urban); }

        .line-card-gravel { background: var(--color-gravel-bg); }
        .line-card-gravel:hover { border-color: var(--color-gravel); }

        .line-card-adaptive { background: var(--color-adaptive-bg); }
        .line-card-adaptive:hover { border-color: var(--color-adaptive); }

        .line-card-image {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .line-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            transition: opacity 0.3s;
        }

        .line-card:hover .line-card-image img {
            opacity: 0.55;
        }

        .line-card-content {
            position: relative;
            z-index: 2;
            padding: 40px 32px;
            background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
        }

        .line-card-emoji {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .line-card-label {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .line-card-urban .line-card-label { color: var(--color-urban); }
        .line-card-gravel .line-card-label { color: var(--color-gravel); }
        .line-card-adaptive .line-card-label { color: var(--color-adaptive); }

        .line-card h3 {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .line-card p {
            color: var(--color-grey-light);
            font-size: 0.95rem;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .line-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: gap 0.2s;
        }

        .line-card-urban .line-card-link { color: var(--color-urban); }
        .line-card-gravel .line-card-link { color: var(--color-gravel); }
        .line-card-adaptive .line-card-link { color: var(--color-adaptive); }

        .line-card-link:hover {
            gap: 12px;
        }

        /* Story Section */
        .story {
            padding: 120px 24px;
            border-top: 1px solid var(--color-grey-border);
        }

        .story-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .story-image {
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 4/3;
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .story-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .story-content p {
            color: var(--color-grey-light);
            font-size: 1.05rem;
            margin-bottom: 16px;
            line-height: 1.7;
        }

        .story-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid var(--color-grey-border);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--color-accent);
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--color-grey-light);
            margin-top: 4px;
        }

        /* Adaptive Spotlight */
        .spotlight {
            padding: 120px 24px;
            background: var(--color-adaptive-bg);
            border-top: 1px solid var(--color-grey-border);
            border-bottom: 1px solid var(--color-grey-border);
        }

        .spotlight-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .spotlight-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .spotlight-content p {
            color: var(--color-grey-light);
            font-size: 1.05rem;
            margin-bottom: 16px;
            line-height: 1.7;
        }

        .spotlight-list {
            list-style: none;
            margin: 24px 0 32px;
        }

        .spotlight-list li {
            padding: 8px 0;
            color: var(--color-grey-light);
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .spotlight-list li span {
            color: var(--color-adaptive);
            font-size: 1.2rem;
        }

        .spotlight-image {
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 4/3;
        }

        .spotlight-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Enquiry Section */
        .enquiry {
            padding: 120px 24px;
        }

        .enquiry-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .enquiry-inner h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .enquiry-inner > p {
            color: var(--color-grey-light);
            font-size: 1.1rem;
            margin-bottom: 48px;
        }

        .enquiry-paths {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 48px;
        }

        .enquiry-path {
            background: var(--color-grey-dark);
            border: 1px solid var(--color-grey-border);
            border-radius: 12px;
            padding: 32px 24px;
            text-align: center;
            transition: border-color 0.2s, transform 0.2s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .enquiry-path:hover {
            transform: translateY(-2px);
        }

        .enquiry-path-urban:hover { border-color: var(--color-urban); }
        .enquiry-path-gravel:hover { border-color: var(--color-gravel); }
        .enquiry-path-adaptive:hover { border-color: var(--color-adaptive); }

        .enquiry-path-emoji {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .enquiry-path h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .enquiry-path p {
            color: var(--color-grey-light);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .enquiry-general {
            padding-top: 48px;
            border-top: 1px solid var(--color-grey-border);
        }

        .enquiry-general p {
            color: var(--color-grey-light);
            font-size: 1rem;
            margin-bottom: 24px;
        }

        /* EP Email contact form placeholder */
        .ep-placeholder {
            background: var(--color-grey-mid);
            border: 2px dashed var(--color-grey-border);
            border-radius: 12px;
            padding: 48px 24px;
            color: var(--color-grey-light);
            font-size: 0.95rem;
            text-align: center;
        }

        /* Newsletter */
        .newsletter {
            padding: 80px 24px;
            background: var(--color-grey-dark);
            border-top: 1px solid var(--color-grey-border);
        }

        .newsletter-inner {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-inner h2 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .newsletter-inner p {
            color: var(--color-grey-light);
            font-size: 1rem;
            margin-bottom: 32px;
        }

        /* Footer */
        .footer {
            padding: 48px 24px;
            border-top: 1px solid var(--color-grey-border);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-brand {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.1rem;
        }

        .footer-brand span {
            color: var(--color-accent);
        }

        .footer-links {
            display: flex;
            gap: 24px;
            list-style: none;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--color-grey-light);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--color-white);
        }

        .footer-copy {
            width: 100%;
            text-align: center;
            color: var(--color-grey-light);
            font-size: 0.8rem;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--color-grey-border);
        }

        /* Mobile */
        @media (max-width: 768px) {
            .nav-toggle-label {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 24px;
                gap: 16px;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                pointer-events: none;
                border-bottom: 1px solid var(--color-grey-border);
            }

            .nav-toggle:checked ~ .nav-links {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .nav-toggle:checked ~ .nav-toggle-label span {
                background: transparent;
            }

            .nav-toggle:checked ~ .nav-toggle-label span::before {
                top: 0;
                transform: rotate(45deg);
            }

            .nav-toggle:checked ~ .nav-toggle-label span::after {
                top: 0;
                transform: rotate(-45deg);
            }

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

            .line-card {
                min-height: 400px;
            }

            .story-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .spotlight-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .spotlight-image {
                order: -1;
            }

            .enquiry-paths {
                grid-template-columns: 1fr;
            }

            .story-stats {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .footer-inner {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }
        }
    
/* ========================================
   PAGE TEMPLATE STYLES
   ======================================== */

.template-page .content-section {
    padding: 4rem 0;
}

.template-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.template-page .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.template-page .page-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.template-page .page-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
}

.template-page .page-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.template-page .page-content p {
    margin-bottom: 1.25rem;
}

.template-page .page-content a {
    color: var(--color-primary, var(--blue, #0088FF));
    text-decoration: none;
}

.template-page .page-content a:hover {
    text-decoration: underline;
}

.template-error .content-section {
    padding: 6rem 0;
    text-align: center;
}

/* Contact form on pages */
.ep-contact-form-wrapper {
    max-width: 600px;
    margin: 2rem auto;
}

.ep-contact-form input[type="text"],
.ep-contact-form input[type="email"],
.ep-contact-form textarea {
    background: var(--color-card, var(--card-bg, #16213E));
    color: var(--color-text, var(--grey-text, #B0B0C0));
    border: 1px solid var(--color-border, #2A2A4A);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.ep-contact-form input:focus,
.ep-contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary, var(--blue, #0088FF));
}

.ep-contact-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.ep-contact-form .form-field {
    margin-bottom: 1.5rem;
}

.ep-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.ep-contact-form button,
.ep-contact-form input[type="submit"] {
    background: var(--color-primary, var(--blue, #0088FF));
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.ep-contact-form button:hover {
    background: var(--color-primary-hover, #0077E6);
}

.site-footer {
    position: relative;
    z-index: 1;
}
/* Button styles */
.button, a.button {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    line-height: 1.4;
}
.button:not([class*="outline"]):not([class*="secondary"]) {
    background: var(--color-primary, var(--accent, #2196f3));
    color: #fff;
    border: 2px solid var(--color-primary, var(--accent, #2196f3));
}
.button:not([class*="outline"]):not([class*="secondary"]):hover { opacity: 0.9; }
.button[class*="outline"] {
    background: transparent;
    border: 2px solid currentColor;
}
.button[class*="outline"]:hover { opacity: 0.8; }
a[class*="btn"], a[class*="cta"] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

/* Fix: container padding */
.container, .section-inner, [class*="-inner"] {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
}
section, [class*="section"] {
    overflow-x: hidden;
}

