:root {
            --accent: #dca81e;
            --brand-gold: #dca81e;
            --accent-hover: #c4951a;
            --accent-tint: rgba(220, 168, 30, 0.15);
            --dark-base: #111111;
            --canvas: #ffffff;
            --surface: #f4f4f4;
            --text-primary: #111111;
            --text-secondary: rgba(17, 17, 17, 0.8);
            --text-tertiary: rgba(17, 17, 17, 0.6);
            --border: #111111;
            --shadow: 8px 8px 0 #111111;
            
            --space-4: 4px;
            --space-8: 8px;
            --space-12: 12px;
            --space-16: 16px;
            --space-24: 24px;
            --space-32: 32px;
            --space-48: 48px;
            --space-64: 64px;
            --space-96: 96px;
            --space-128: 128px;
            
            --container-max: 1280px;
            --content-max: 720px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 100%; }
        body {
            background-color: var(--canvas);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, .display-font {
            font-family: 'DM Serif Display', serif;
            font-weight: 400;
            color: var(--dark-base);
            text-transform: uppercase;
        }
        h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; letter-spacing: -0.02em; }
        h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.15; letter-spacing: -0.01em; margin-bottom: var(--space-24); }
        h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); line-height: 1.2; margin-bottom: var(--space-16); }
        p { font-size: 1.0625rem; margin-bottom: var(--space-24); max-width: 65ch; }
        p.small { font-size: 0.875rem; color: var(--text-secondary); }
        
        a { color: var(--text-primary); text-decoration: none; transition: color 0.2s ease; }
        a:hover { color: var(--accent); }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 800;
            line-height: 1;
            letter-spacing: 0.04em;
            text-decoration: none;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 0;
            transition: all 0.2s ease;
            min-height: 44px;
            border: 3px solid var(--border);
            box-shadow: 4px 4px 0 #000000;
        }
        .btn-primary {
            background-color: var(--accent);
            color: #000000;
            border-color: #000000;
        }
        .btn-primary:hover, .btn-primary:focus-visible {
            background-color: var(--accent-hover);
            color: #000000;
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 #000000;
        }
        .btn-secondary {
            background-color: var(--surface);
            color: var(--text-primary);
            border-color: var(--border);
        }
        .btn-secondary:hover, .btn-secondary:focus-visible {
            border-color: var(--accent);
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 #000000;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--space-24);
        }
        .section {
            padding: var(--space-32) 0;
        }
        .section-mobile-tight {
            padding: var(--space-24) 0;
        }
        .grid, .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: var(--space-32);
        }
        .grid-2 { grid-template-columns: 1fr; }
        .grid-3 { grid-template-columns: 1fr; }
        .grid-4 { grid-template-columns: 1fr; }
        
        @media (min-width: 768px) {
            .grid-2 { grid-template-columns: 1fr 1fr; gap: var(--space-64); }
            .grid-3 { grid-template-columns: repeat(3, 1fr); }
            .grid-4 { grid-template-columns: repeat(2, 1fr); }
            .section { padding: var(--space-24) 0; }
        }
        
        @media (min-width: 1024px) {
            .grid-4 { grid-template-columns: repeat(4, 1fr); }
        }

        .site-header {
            position: sticky;
            top: 0;
            background: var(--canvas);
            border-bottom: 3px solid var(--border);
            z-index: 100;
            padding: var(--space-16) 0;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            height: 40px;
        }
        .logo img {
            max-height: 100%;
            width: auto;
        }
        .nav-links {
            display: none;
            gap: var(--space-16);
            align-items: center;
        }
        .nav-links a {
            font-size: 0.875rem;
            font-weight: 500;
            white-space: nowrap;
        }
        .nav-toggle {
            display: block;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            padding: var(--space-8);
        }
        @media (min-width: 992px) {
            .nav-links { display: flex; }
            .nav-toggle { display: none; }
        }

        .hero {
            padding-top: var(--space-24);
            padding-bottom: var(--space-32);
        }
        .hero-content {
            max-width: 800px;
        }
        .hero h1 { margin-bottom: var(--space-24); }
        .hero-proof {
            display: flex;
            flex-direction: column;
            gap: var(--space-12);
            margin-bottom: var(--space-32);
            padding-left: var(--space-24);
        }
        .hero-proof-item {
            color: var(--text-secondary);
            font-size: 0.9375rem;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-16);
        }

        .card {
            padding: var(--space-32);
            border: 3px solid var(--border);
            background: var(--surface);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: var(--shadow);
            border-radius: 0;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .card p {
            flex-grow: 1;
        }
        .card:hover {
            transform: translate(-4px, -4px);
            border-color: var(--accent);
            box-shadow: 12px 12px 0 #000000;
        }
        .card-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--surface);
            border-radius: 50%;
            margin-bottom: var(--space-24);
        }

        .stats-band {
            background-color: var(--dark-base);
            color: var(--canvas);
            padding: var(--space-24) 0;
        }
        .stats-band h2, .stats-band h3, .stats-band p {
            color: var(--canvas);
        }
        .stat-number {
            font-family: 'DM Serif Display', serif;
            font-size: 3rem;
            line-height: 1;
            margin-bottom: var(--space-8);
        }
        .stat-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
        }

        .trust-bar {
            padding: var(--space-24) 0;
            border-bottom: 1px solid var(--border);
        }
        .trust-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--space-48);
            opacity: 0.5;
            filter: grayscale(100%);
        }
        .trust-grid img { height: 32px; width: auto; }

        .form-group {
            margin-bottom: var(--space-24);
        }
        .form-label {
            display: block;
            margin-bottom: var(--space-8);
            font-size: 0.875rem;
            font-weight: 500;
        }
        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            background: var(--surface);
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.2s ease;
        }
        .form-input:focus {
            outline: none;
            border-color: var(--accent);
        }
        textarea.form-input {
            min-height: 120px;
            resize: vertical;
        }

        .site-footer {
            background: var(--surface);
            border-top: 1px solid var(--border);
            padding: var(--space-32) 0 var(--space-16);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-48);
            margin-bottom: var(--space-48);
        }
        @media (min-width: 768px) {
            .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
        }
        .footer-heading {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: var(--space-24);
            color: var(--text-secondary);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li { margin-bottom: var(--space-12); }
        .footer-links a { color: var(--text-secondary); }
        .footer-links a:hover { color: var(--text-primary); }
        .copyright {
            padding-top: var(--space-32);
            border-top: 1px solid var(--border);
            color: var(--text-tertiary);
            font-size: 0.875rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: var(--space-16);
        }
        
        .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;
        }
        .surface-alt { background-color: var(--surface); }
        
        @media (prefers-reduced-motion: reduce) {
            *:not(.swiper-wrapper) { transition: none !important; scroll-behavior: auto !important; }
        }

        /* Swiper Carousel Styling */
        .swiper-container-wrapper {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-16);
        }
        @media (min-width: 768px) {
            .swiper-container-wrapper {
                padding: 0 var(--space-64);
            }
        }
        .swiper {
            width: 100%;
            padding-bottom: var(--space-48) !important;
        }
        .swiper-slide {
            height: auto;
            background: var(--canvas);
            border: 1px solid var(--border);
            padding: var(--space-32);
            border-radius: 8px;
            box-shadow: 0 4px 12px var(--shadow);
            display: flex;
            flex-direction: column;
        }
        .swiper-pagination-bullet {
            background: var(--text-tertiary);
        }
        .swiper-pagination-bullet-active {
            background: var(--accent);
        }
        .swiper-button-next, .swiper-button-prev {
            color: var(--accent);
            background: var(--canvas);
            border: 1px solid var(--border);
            border-radius: 50%;
            width: 48px;
            height: 48px;
            box-shadow: 0 4px 12px var(--shadow);
            top: 50%;
            transform: translateY(-50%);
            margin-top: -24px; /* Adjust for pagination space */
            z-index: 10;
        }
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.25rem;
            font-weight: bold;
        }
        .swiper-button-next { right: 0; }
        .swiper-button-prev { left: 0; }
        @media (min-width: 768px) {
            .swiper-button-next { right: 8px; }
            .swiper-button-prev { left: 8px; }
        }
        /* Hide arrows on mobile for better UX */
        @media (max-width: 767px) {
            .swiper-button-next, .swiper-button-prev {
                display: none !important;
            }
        }
.content-column { max-width: var(--content-max); margin: 0 auto; }

.hero-image-container { display: flex; align-items: center; justify-content: center; width: 100%; }
.hero-image { width: 100%; height: auto; object-fit: cover; border: 3px solid var(--border); box-shadow: var(--shadow); }
.service-list { list-style: disc; padding-left: 1.5rem; margin-bottom: var(--space-24); }
.service-list li { margin-bottom: var(--space-12); }
