        @font-face {
            font-family: 'Isidora';
            src: url('../Isidora-Regular.woff2') format('woff2'),
                 url('../Isidora-Regular.ttf') format('truetype');
            font-weight: 400;
        }
        @font-face {
            font-family: 'Isidora';
            src: url('../Isidora-SemiBold.woff2') format('woff2'),
                 url('../Isidora-SemiBold.ttf') format('truetype');
            font-weight: 600;
        }
        @font-face {
            font-family: 'Isidora';
            src: url('../Isidora-Bold.woff2') format('woff2'),
                 url('../Isidora-Bold.ttf') format('truetype');
            font-weight: 700;
        }

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

        :root {
            --green: #00A875;
            --green-light: #00C98D;
            --dark-green: #25423C;
            --black: #111111;
            --bright: #D2EEE6;
            --white: #FFFFFF;
            --green-glow: rgba(0, 168, 117, 0.25);
            --bg-deep: #FFFFFF;
            --bg-card: rgba(210, 238, 230, 0.3);
            --bg-card-hover: rgba(210, 238, 230, 0.5);
            --text-primary: #111111;
            --text-secondary: #3d5e56;
            --text-muted: #456b63;
            --green-text: #007A55;
            --error: #dc2626;
            --success: #059669;
        }

        :focus-visible {
            outline: 2px solid var(--green);
            outline-offset: 3px;
        }

        body {
            font-family: 'Isidora', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* ── Custom Scrollbar ── */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #f5faf8; }
        ::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--green-light); }

        .grid-bg {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(0, 168, 117, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 168, 117, 0.06) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        /* ── Animated Orbs ── */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(150px);
            pointer-events: none;
            z-index: 0;
        }
        .orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 168, 117, 0.1), transparent 70%);
            animation: orbFloat1 20s ease-in-out infinite;
        }
        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(210, 238, 230, 0.4), transparent 70%);
            animation: orbFloat2 25s ease-in-out infinite;
        }
        @keyframes orbFloat1 {
            0%, 100% { top: -10%; left: -5%; }
            25% { top: 20%; left: 60%; }
            50% { top: 50%; left: 30%; }
            75% { top: 10%; left: 70%; }
        }
        @keyframes orbFloat2 {
            0%, 100% { top: 60%; left: 70%; }
            25% { top: 30%; left: 10%; }
            50% { top: -5%; left: 50%; }
            75% { top: 40%; left: 20%; }
        }

        .grain {
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            opacity: 0.018;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 256px;
        }

        .content-layer {
            position: relative;
            z-index: 2;
        }

        /* ── Skip Link ── */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            background: var(--green);
            color: #FFFFFF;
            padding: 0.75rem 1.5rem;
            font-weight: 700;
            font-size: 0.95rem;
            z-index: 10001;
            border-radius: 0 0 8px 0;
        }

        .skip-link:focus {
            left: 0;
        }

        /* ── Navigation ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.25rem 2rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border-bottom: 1px solid rgba(0, 168, 117, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled {
            padding: 0.75rem 2rem;
            background: rgba(255, 255, 255, 0.95);
            border-bottom-color: rgba(0, 168, 117, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img { height: 36px; width: auto; }

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

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--green);
            box-shadow: 0 0 8px var(--green);
            transition: width 0.3s ease;
        }

        .nav-links a:hover, .nav-links a.active { color: var(--green-text); }
        .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

        .nav-cta {
            padding: 0.75rem 1.75rem;
            background: var(--green);
            border: none;
            border-radius: 50px;
            color: #FFFFFF;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .nav-cta:hover {
            background: var(--green-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--green-glow);
        }

        .mobile-nav-only { display: none; }

        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-secondary);
            margin: 5px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: var(--green);
        }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
            background: var(--green);
        }

        /* ── Page Content ── */
        .content {
            max-width: 600px;
            margin: 0 auto;
            padding: 8rem 2rem 4rem;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            text-align: center;
        }

        .subtitle {
            color: var(--text-muted);
            margin-bottom: 3rem;
            font-size: 1.1rem;
            text-align: center;
        }

        .contact-form {
            background: var(--bg-card);
            border: 1px solid rgba(0, 168, 117, 0.2);
            border-radius: 24px;
            padding: 2.5rem;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-green);
            font-size: 0.95rem;
        }

        .form-group label .required {
            color: var(--green);
        }

        .form-group input:not([type="checkbox"]):not([type="hidden"]),
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 168, 117, 0.15);
            border-radius: 12px;
            color: var(--text-primary);
            font-family: 'Isidora', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:not([type="checkbox"]):not([type="hidden"]):focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: 2px solid var(--green);
            outline-offset: -1px;
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(0, 168, 117, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

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

        /* ── Custom Dropdown ── */
        .custom-select { position: relative; }

        .custom-select-trigger {
            width: 100%;
            padding: 1rem 3rem 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 168, 117, 0.15);
            border-radius: 12px;
            color: var(--text-muted);
            font-family: 'Isidora', sans-serif;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .custom-select-trigger.has-value { color: var(--text-primary); }
        .custom-select-trigger:hover { border-color: rgba(0, 168, 117, 0.3); }

        .custom-select.open .custom-select-trigger {
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(0, 168, 117, 0.1);
        }

        .custom-select-arrow {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            stroke: var(--text-muted);
            stroke-width: 2;
            fill: none;
            transition: transform 0.3s ease;
            pointer-events: none;
        }

        .custom-select.open .custom-select-arrow {
            transform: translateY(-50%) rotate(180deg);
        }

        .custom-select-options {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.97);
            border: 1px solid rgba(0, 168, 117, 0.2);
            border-radius: 12px;
            overflow: hidden;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.25s ease;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .custom-select.open .custom-select-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .custom-select-option {
            padding: 0.85rem 1.25rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'Isidora', sans-serif;
            font-size: 0.95rem;
        }

        .custom-select-option:hover {
            background: rgba(0, 168, 117, 0.08);
            color: var(--text-primary);
        }

        .custom-select-option.selected { color: var(--green); }

        .custom-select-option + .custom-select-option {
            border-top: 1px solid rgba(0, 168, 117, 0.08);
        }

        /* ── Consent Checkbox ── */
        .consent-group { margin-bottom: 1.5rem; }

        .form-group .consent-label {
            display: block;
            position: relative;
            padding-left: 36px;
            cursor: pointer;
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .consent-label input[type="checkbox"] {
            appearance: none;
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            position: absolute;
            left: 0;
            top: 2px;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 168, 117, 0.2);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .consent-label input[type="checkbox"]:checked {
            background: var(--green);
            border-color: var(--green);
        }

        .consent-label input[type="checkbox"]:checked::after {
            content: '';
            position: absolute;
            left: 6px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid #FFFFFF;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .consent-label input[type="checkbox"]:focus-visible {
            outline: 2px solid var(--green);
            outline-offset: 2px;
        }

        .consent-label a {
            color: var(--green-text);
            text-decoration: underline;
        }

        .btn-submit {
            width: 100%;
            padding: 1.1rem;
            background: var(--green);
            border: none;
            border-radius: 50px;
            color: #FFFFFF;
            font-family: 'Isidora', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-submit:hover {
            background: var(--green-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 40px var(--green-glow);
        }

        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .btn-submit svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            stroke-width: 2.5;
            fill: none;
        }

        /* Alert messages */
        .alert {
            padding: 1rem 1.25rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            display: none;
        }

        .alert.show { display: block; }

        .alert-success {
            background: rgba(5, 150, 105, 0.08);
            border: 1px solid var(--success);
            color: var(--success);
        }

        .alert-error {
            background: rgba(220, 38, 38, 0.08);
            border: 1px solid var(--error);
            color: var(--error);
        }

        /* ── Footer ── */
        footer {
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(0, 168, 117, 0.12);
        }

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

        .footer-logo img { height: 32px; width: auto; }

        .footer-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

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

        .footer-copy {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ── Reduced Motion ── */
        @media (prefers-reduced-motion: reduce) {
            .orb { animation: none; }
        }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-cta { display: none; }

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: #FFFFFF;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2.5rem;
                z-index: 9999;
                padding: 2rem;
                display: none;
            }

            .nav-links.open { display: flex; }
            .mobile-nav-only { display: block; list-style: none; }
            .mobile-nav-only .nav-cta { display: inline-block; margin-top: 0.5rem; }

            .hamburger { position: relative; z-index: 10000; }

            .nav-links a {
                font-size: 1.5rem;
                color: var(--black);
            }

            .contact-form { padding: 1.5rem; }
            .contact-methods { flex-direction: column; gap: 1rem; }

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

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-links a {
                display: inline-block;
                padding: 0.75rem 0.5rem;
                min-height: 44px;
            }
        }

/* Footer inline styles */
.footer-copy-address { margin-top: 0.25rem; }
.footer-copy-address a { color: var(--green-text); }
.footer-copy-copyright { margin-top: 0.75rem; }

/* Honeypot */
.honeypot-field { position: absolute; left: -9999px; }
