:root {
    /* Editorial palette (Marta Vela direction — 04.2026) */
    --paper: #EEF2F4;
    --ink: #0E1A22;
    --ink-60: #4B5A64;
    --ink-15: rgba(14, 26, 34, 0.15);
    --rust: #C8421C;
    --rust-ink: #7a2810;

    /* Legacy (retained for not-yet-migrated sections) */
    --primary: #0F4C81;
    --primary-light: #1E66A5;
    --primary-dark: #0A355A;
    --secondary: #F26522;
    --secondary-light: #FF854D;
    --secondary-dark: #D44A0D;

    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;

    /* Spacing Scale - Fluid */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: clamp(2.5rem, 6vw, 4rem);
    --space-16: clamp(4rem, 10vw, 6rem);
    --space-24: clamp(6rem, 15vw, 9rem);

    /* Shadows */
    --shadow-soft: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    --shadow-premium: 0 20px 25px -5px rgba(15, 76, 129, 0.1), 0 10px 10px -5px rgba(15, 76, 129, 0.04);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

    /* Animation Curve */
    --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Paleta 1: Frío Profesional */
[data-theme="cold-pro"] {
    --primary: #003366;
    --primary-light: #004d99;
    --primary-dark: #001a33;
    --secondary: #00B4D8;
    --secondary-light: #48cae4;
    --secondary-dark: #0077b6;
    --shadow-premium: 0 20px 25px -5px rgba(0, 51, 102, 0.1), 0 10px 10px -5px rgba(0, 51, 102, 0.04);
}

/* Paleta 2: Lone Star Industrial */
[data-theme="lone-star"] {
    --primary: #0B2545;
    --primary-light: #134074;
    --primary-dark: #05101d;
    --secondary: #BF0D3E;
    --secondary-light: #e6104a;
    --secondary-dark: #8c0a2d;
    --slate-200: #A5A9B4;
    /* Metallic Silver hint */
    --shadow-premium: 0 20px 25px -5px rgba(11, 37, 69, 0.1), 0 10px 10px -5px rgba(11, 37, 69, 0.04);
}

/* Paleta 3: Tech & Service */
[data-theme="tech-service"] {
    --primary: #0056B3;
    --primary-light: #007bff;
    --primary-dark: #003a7a;
    --secondary: #00B4D8;
    /* Using similar to CAF0F8 but more visible */
    --slate-900: #333333;
    /* Slate Grey for text contrast */
    --shadow-premium: 0 20px 25px -5px rgba(0, 86, 179, 0.1), 0 10px 10px -5px rgba(0, 86, 179, 0.04);
}

/* Theme Switcher UI */
.theme-switcher {
    position: fixed;
    bottom: var(--space-6);
    left: var(--space-6);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.theme-trigger {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s var(--ease-premium);
}

.theme-trigger:hover {
    transform: scale(1.1) rotate(15deg);
}

.theme-menu {
    background: white;
    border-radius: 16px;
    padding: var(--space-2);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease-premium);
    width: 200px;
}

.theme-switcher.active .theme-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-option {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}

.theme-option:hover {
    background: var(--slate-100);
}

.theme-option.active {
    background: var(--slate-100);
    color: var(--primary);
}

.color-preview {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
}

.preview-p {
    width: 50%;
    height: 100%;
    border-radius: 4px 0 0 4px;
}

.preview-s {
    width: 50%;
    height: 100%;
    border-radius: 0 4px 4px 0;
}

@media (max-width: 640px) {
    .theme-switcher {
        left: auto;
        right: var(--space-4);
        bottom: 80px;
        /* Above emergency button maybe? */
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--slate-50);
    color: var(--slate-800);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    color: var(--slate-900);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Nav Styles */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-4) 0;
    transition: all 0.3s var(--ease-premium);
}

nav.scrolled {
    padding: var(--space-2) 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: var(--space-24) 0 var(--space-16);
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(15, 76, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-grid>* {
    min-width: 0;
}

.hero-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow-premium);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-6);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: var(--space-8);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    align-items: center;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    background: var(--slate-100);
    padding: var(--space-2) var(--space-4);
    border-radius: 100px;
}

.badge svg {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--ease-premium);
    cursor: pointer;
    border: 2px solid transparent;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(15, 76, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: var(--primary-light);
    box-shadow: 0 20px 25px -5px rgba(15, 76, 129, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(242, 101, 34, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background-color: var(--secondary-light);
    box-shadow: 0 20px 25px -5px rgba(242, 101, 34, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Trust Banner */
.trust-banner {
    background: var(--slate-900);
    color: white;
    padding: var(--space-6) 0;
}

.trust-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    text-align: center;
}

.trust-item span:first-child {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary-light);
}

.trust-item span:last-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--slate-400);
}

/* Section Headings */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-2);
}

.section-header p {
    color: var(--slate-600);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.feature-card {
    padding: var(--space-12) var(--space-8);
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.feature-card p {
    flex-grow: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.feature-card .icon-box {
    width: 64px;
    height: 64px;
    background: var(--slate-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--primary);
}

.feature-card.highlight {
    background: var(--primary);
    color: white;
}

.feature-card.highlight h3,
.feature-card.highlight p {
    color: white;
}

.feature-card.highlight .icon-box {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Honesty Section */
.honesty-section {
    padding: var(--space-24) 0;
    background: white;
}

.honesty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.honesty-grid>* {
    min-width: 0;
}

.honesty-image {
    position: relative;
}

.honesty-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow-premium);
}

.check-list {
    list-style: none;
    margin-top: var(--space-8);
}

.check-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-weight: 500;
}

.check-list li svg {
    color: var(--accent);
}

/* Service Options */
.service-tabs {
    background: var(--slate-100);
    padding: var(--space-24) 0;
}

.tabs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

.tab-card {
    background: white;
    border-radius: 24px;
    padding: var(--space-8);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    text-align: center;
}

.tab-card .btn {
    margin-top: auto;
}

.tab-card:hover {
    border: 1px solid var(--primary-light);
}

.tab-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.9rem;
    color: var(--slate-600);
}

/* Testimonials */
.testimonials {
    padding: var(--space-24) 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.testimonial-card {
    padding: var(--space-8);
    background: var(--slate-50);
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
}

.testimonial-card p {
    font-style: italic;
    color: var(--slate-700);
    margin-bottom: var(--space-6);
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.client-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.client-source {
    color: var(--slate-400);
    font-size: 0.8rem;
}

/* Contact Area */
.contact-section {
    padding: var(--space-24) 0;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    background: var(--slate-900);
    border-radius: 40px;
    padding: var(--space-16);
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info>div:last-child {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.contact-form h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: var(--space-8);
}

.input-group {
    margin-bottom: var(--space-6);
}

.input-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--slate-300);
}

.contact-form .form-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: var(--space-2);
    color: white;
}

.contact-form .form-title span {
    color: var(--secondary-light);
}

.contact-form .form-subtitle {
    font-size: 0.95rem;
    color: var(--slate-400);
    margin-bottom: var(--space-8);
}

.required-mark {
    color: var(--secondary-light);
    margin-left: 0.25rem;
    font-weight: 800;
    font-size: 1.1rem;
    vertical-align: middle;
}

.input-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
}

/* Map Styles */
.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex-grow: 1;
    min-height: 250px;
    background: var(--slate-800);
}

.map-container iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
    opacity: 0.75;
    height: 100%;
}

/* Footer */
footer {
    background: white;
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid var(--slate-200);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-col h4 {
    margin-bottom: var(--space-6);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: var(--slate-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Mobile Adjustments */
@media (max-width: 968px) {
    .container {
        padding: 0 var(--space-4);
    }

    .hero-grid,
    .honesty-grid,
    .tabs-container,
    .contact-box {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: clamp(2.25rem, 8vw, 3rem);
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .contact-info>div:last-child {
        flex-grow: 0;
    }

    .contact-box {
        padding: var(--space-8) var(--space-4);
        border-radius: 0;
    }
}

@media (max-width: 640px) {
    .nav-content {
        flex-direction: column;
        gap: var(--space-2);
    }

    .logo {
        font-size: 1.25rem;
    }

    .btn-sm {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .badge {
        width: 100%;
        justify-content: center;
    }

    .hero-actions .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }

    .trust-content {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        display: inline-block;
    }

    .grid {
        grid-template-columns: 1fr !important;
    }

    /* Mobile Rhythm Adjustments */
    :root {
        --space-12: 2rem;
        --space-16: 3rem;
        --space-24: 4.5rem;
    }
}

/* Spanish WhatsApp link in hero */
.hero-spanish-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: var(--space-4);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--primary);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-spanish-link:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-24) 0;
    background: var(--slate-50);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.faq-item {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease-premium), border-color 0.2s ease;
}

.faq-item[open] {
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-light);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--slate-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    transition: transform 0.25s var(--ease-premium);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--slate-600);
    line-height: 1.7;
}

.faq-item a {
    color: var(--primary);
    text-decoration: underline;
}

.faq-item a:hover {
    color: var(--secondary);
}

/* Trust bar above the contact form */
.form-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    padding: 0.875rem 1.25rem;
    margin-bottom: var(--space-6);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.form-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-300);
}

.form-trust-item svg {
    color: var(--secondary-light);
}

.form-trust-item a {
    color: var(--slate-300);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease;
}

.form-trust-item a:hover {
    color: var(--secondary-light);
    border-bottom-color: var(--secondary-light);
}

.form-trust-item .stars {
    color: var(--secondary-light);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.optional-mark {
    color: var(--slate-400);
    font-weight: 500;
    font-size: 0.8rem;
    margin-left: 0.25rem;
}

.form-reassurance {
    text-align: center;
    font-size: 0.8rem;
    color: var(--slate-400);
    margin-top: var(--space-4);
}

/* Native <select> styled to match dark theme inputs */
.native-select-wrap {
    position: relative;
}

.native-select-wrap::after {
    content: "";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: translateY(-75%) rotate(45deg);
    pointer-events: none;
}

.native-select-wrap select {
    width: 100%;
    padding: 1rem 2.75rem 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.native-select-wrap select:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
}

.native-select-wrap select option {
    background: var(--slate-800);
    color: white;
}

/* Sticky Mobile CTA (hidden on desktop) */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1500;
        padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom));
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid var(--slate-200);
        box-shadow: 0 -8px 20px -4px rgba(15, 23, 42, 0.1);
    }

    .mobile-cta-btn {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-height: 48px;
        padding: 0.75rem 1rem;
        border-radius: 100px;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        transition: transform 0.2s ease;
    }

    .mobile-cta-btn:active {
        transform: scale(0.97);
    }

    .mobile-cta-call {
        background: var(--secondary);
        color: white;
        box-shadow: 0 6px 14px -3px rgba(242, 101, 34, 0.45);
        animation: jda-pulse 2.4s ease-in-out infinite;
    }

    .mobile-cta-wa {
        background: #25D366;
        color: white;
        box-shadow: 0 6px 14px -3px rgba(37, 211, 102, 0.4);
    }

    @keyframes jda-pulse {
        0%, 100% { box-shadow: 0 6px 14px -3px rgba(242, 101, 34, 0.45); }
        50% { box-shadow: 0 6px 22px 0 rgba(242, 101, 34, 0.7); }
    }

    @media (prefers-reduced-motion: reduce) {
        .mobile-cta-call { animation: none; }
    }

    /* Leave room so the sticky bar never hides content/footer */
    body { padding-bottom: 76px; }

    /* Raise theme switcher above the sticky CTA */
    .theme-switcher { bottom: 92px; }
}

/* ============================================================
   HERO PILOT — Editorial direction (Marta Vela, 04.2026)
   Movements: M1 palette · M2 typography · M3 asymmetric grid
   Scoped to `.hero` so the rest of the page remains unchanged.
   ============================================================ */

.hero {
    background: var(--paper);
    color: var(--ink);
    padding: clamp(7rem, 14vw, 10rem) 0 clamp(4rem, 10vw, 7rem);
    overflow: hidden;
}

.hero::before {
    content: none;
}

.hero-grid {
    display: grid;
    grid-template-columns:
        minmax(var(--space-6), 1fr)
        minmax(0, 580px)
        minmax(var(--space-6), var(--space-12))
        minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    gap: 0;
    max-width: none;
    padding: 0;
    width: 100%;
}

.hero .hero-content {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    align-items: flex-start;
    display: block;
    order: 0;
}

/* Global editorial eyebrow — mono label above titles */
.eyebrow {
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    color: var(--rust);
    font-weight: 500;
    margin: 0 0 var(--space-4) 0;
    line-height: 1.4;
    display: block;
}

.hero .eyebrow {
    margin-bottom: var(--space-6);
}

.hero-content h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-style: normal;
    font-weight: 700;
    font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: var(--space-6);
    max-width: 18ch;
}

.hero-content h1 span {
    color: var(--rust);
}

.hero-content .hero-lede {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.55;
    color: var(--ink-60);
    max-width: 52ch;
    margin-bottom: var(--space-8);
    font-weight: 400;
}

.hero .hero-actions {
    display: flex;
    gap: var(--space-3, 0.75rem);
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

.btn-editorial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.95rem 1.5rem;
    border-radius: 2px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.005em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.btn-editorial--solid {
    background: var(--rust);
    color: var(--paper);
}

.btn-editorial--solid:hover {
    background: var(--rust-ink);
    transform: translateY(-1px);
}

.btn-editorial--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-editorial--ghost:hover {
    background: var(--ink);
    color: var(--paper);
}

.hero .hero-spanish-link {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--rust);
    padding-bottom: 2px;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hero .hero-spanish-link:hover {
    color: var(--rust);
    border-bottom-color: var(--ink);
}

.hero .hero-image {
    grid-column: 4;
    grid-row: 1;
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: stretch;
    order: 0;
    max-width: none;
}

.hero .hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    max-height: 640px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    filter: grayscale(0.55) contrast(1.08);
}

.hero-caption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    color: var(--ink);
    text-transform: uppercase;
    background: var(--paper);
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--ink);
    max-width: calc(100% - 2rem);
}

/* Hero responsive — stack + recenter gutters */
@media (max-width: 968px) {
    .hero {
        padding: clamp(6rem, 16vw, 8rem) 0 var(--space-12);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .hero .hero-content {
        grid-column: 1;
        order: 2;
        padding: 0 var(--space-4);
        text-align: left;
    }

    .hero .hero-image {
        grid-column: 1;
        order: 1;
        min-height: 0;
        max-width: 100%;
        margin: 0;
    }

    .hero .hero-image img {
        min-height: 280px;
        max-height: 380px;
    }

    .hero-content h1 {
        font-size: clamp(2.1rem, 9vw, 3.2rem);
        max-width: none;
    }

    .hero .eyebrow {
        font-size: 0.7rem;
    }

    .hero .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-editorial {
        width: 100%;
    }
}

/* ============================================================
   NAVBAR — Editorial (Marta Vela pilot expansion)
   ============================================================ */

nav {
    padding: 1.15rem 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: padding 0.3s var(--ease-premium), background 0.3s ease,
        border-color 0.3s ease;
}

nav.scrolled {
    padding: 0.65rem 0;
    background: rgba(238, 242, 244, 0.93);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ink-15);
    box-shadow: none;
}

.logo {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-variation-settings: "opsz" 48, "SOFT" 0, "WONK" 0;
    font-size: 1.35rem;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1;
}

.logo span {
    color: var(--rust);
    font-weight: 700;
}

/* Editorial navbar CTA — squared, rust, mono accent on number */
nav .btn-primary.btn-sm {
    background: var(--rust);
    color: var(--paper);
    border: 1px solid var(--rust);
    border-radius: 2px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.6rem 1rem;
    letter-spacing: 0.005em;
    box-shadow: none;
}

nav .btn-primary.btn-sm:hover {
    background: var(--rust-ink);
    transform: none;
    box-shadow: none;
}

/* ============================================================
   TRUST BANNER — Editorial masthead stats
   ============================================================ */

.trust-banner {
    background: var(--paper);
    color: var(--ink);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    border-top: 1px solid var(--ink-15);
    border-bottom: 1px solid var(--ink-15);
}

.trust-banner .container {
    max-width: 1200px;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    flex-wrap: initial;
    justify-content: initial;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    text-align: left;
    padding: 0 var(--space-6);
    border-left: 1px solid var(--ink-15);
}

.trust-item:first-child {
    border-left: none;
    padding-left: 0;
}

.trust-item span:first-child {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.02em;
    text-transform: none;
}

.trust-item span:last-child {
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    color: var(--ink-60);
    font-weight: 500;
}

@media (max-width: 768px) {
    .trust-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6) 0;
    }

    .trust-item {
        padding: 0 var(--space-4);
    }

    .trust-item:nth-child(odd) {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .trust-content {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .trust-item {
        padding: 0;
        border-left: none;
        flex-direction: row;
        align-items: baseline;
        gap: var(--space-4);
    }

    .trust-item span:first-child {
        min-width: 4ch;
    }
}

/* Theme switcher retired — one brand, one palette */
.theme-switcher {
    display: none !important;
}

/* ============================================================
   SECOND-PASS EDITORIAL (Marta Vela — page-wide propagation)
   ============================================================ */

body {
    background-color: var(--paper);
    color: var(--ink);
}

/* Section headers — unified voice across all sections */
.section-header {
    margin-bottom: var(--space-16);
    text-align: left;
}

.section-header h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "opsz" 96, "SOFT" 0, "WONK" 0;
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: -0.018em;
    color: var(--ink);
    margin: 0 0 var(--space-4) 0;
    max-width: 24ch;
}

.section-header p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.0625rem;
    color: var(--ink-60);
    max-width: 62ch;
    margin: 0;
}

/* --- HONESTY (Repair First Philosophy) --- */
.honesty-section {
    background: #FFFFFF;
    border-top: 1px solid var(--ink-15);
    border-bottom: 1px solid var(--ink-15);
}

.honesty-grid {
    align-items: start;
    gap: var(--space-16);
}

.honesty-image img {
    border-radius: 0;
    box-shadow: none;
    filter: grayscale(0.55) contrast(1.08);
}

/* Honesty aside — process steps (replaces removed image) */
.honesty-aside .eyebrow {
    margin-bottom: var(--space-6);
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.process-step {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: var(--space-2);
    padding-top: var(--space-4);
    border-top: 1px solid var(--ink);
}

.process-step__num {
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: var(--rust);
    font-weight: 500;
    padding-top: 0.4rem;
    line-height: 1;
}

.process-step__body h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
    font-size: 1.45rem;
    color: var(--ink);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-transform: none;
}

.process-step__body p {
    font-family: 'Inter', sans-serif;
    color: var(--ink-60);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
    max-width: 38ch;
}

.honesty-content .section-header h2 {
    font-size: clamp(1.85rem, 3.8vw, 2.75rem);
    max-width: 22ch;
}

/* Check-list becomes hairline list */
.check-list {
    margin-top: var(--space-8);
    border-top: 1px solid var(--ink-15);
}

.check-list li {
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--ink-15);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--ink);
    gap: var(--space-3);
    font-size: 1rem;
}

.check-list li svg {
    color: var(--rust);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke-width: 2.5;
}

.honesty-content .btn.btn-primary {
    background: var(--rust);
    color: var(--paper);
    border: 1px solid var(--rust);
    border-radius: 2px;
    box-shadow: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
    margin-top: var(--space-8) !important;
}

.honesty-content .btn.btn-primary:hover {
    background: var(--rust-ink);
    transform: none;
    box-shadow: none;
}

/* --- SERVICES --- */
.service-tabs {
    background: var(--paper);
}

.tabs-container {
    gap: var(--space-6);
}

.tab-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--ink);
    padding: var(--space-8) 0 0;
    text-align: left;
    align-items: flex-start;
    transition: none;
}

.tab-card:hover {
    background: transparent;
    border: none;
    border-top: 1px solid var(--ink);
    box-shadow: none;
    transform: none;
}

.tab-card .tab-eyebrow {
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    color: var(--rust);
    font-weight: 500;
    margin: 0 0 var(--space-3) 0;
    display: block;
}

.tab-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
    font-size: 1.65rem;
    color: var(--ink);
    display: block;
    margin: 0 0 var(--space-4) 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.tab-card p {
    color: var(--ink-60);
    font-family: 'Inter', sans-serif;
    max-width: 52ch;
    font-size: 0.98rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: var(--space-6) 0 var(--space-8);
    border-top: 1px solid var(--ink-15);
    grid-template-columns: none;
}

.service-item {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--ink-15);
    gap: 0.65rem;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    font-size: 0.95rem;
    align-items: center;
}

.service-item svg {
    display: none;
}

.service-item::before {
    content: "—";
    color: var(--rust);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-weight: 500;
    font-size: 0.9rem;
    flex-shrink: 0;
    letter-spacing: 0;
}

.tab-card .btn.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 2px;
    box-shadow: none;
    width: auto !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    margin-top: auto;
    align-self: flex-start;
    justify-content: flex-start !important;
}

.tab-card .btn.btn-outline:hover {
    background: var(--ink);
    color: var(--paper);
    transform: none;
}

/* --- FEATURES (Why Us) — kill bento, numbered list --- */
.features {
    background: #FFFFFF;
    border-top: 1px solid var(--ink-15);
    border-bottom: 1px solid var(--ink-15);
}

.features .section-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-8);
    counter-reset: feat;
}

.feature-card {
    background: transparent !important;
    border-radius: 0;
    box-shadow: none !important;
    padding: var(--space-6) 0 0;
    border-top: 1px solid var(--ink);
    display: block;
    text-align: left;
    counter-increment: feat;
    position: relative;
    transition: none;
    color: var(--ink);
    height: auto;
}

.feature-card:hover {
    transform: none;
    box-shadow: none !important;
}

.feature-card::before {
    content: counter(feat, decimal-leading-zero);
    display: block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: var(--rust);
    margin-bottom: var(--space-4);
    font-weight: 500;
}

.feature-card .icon-box {
    display: none;
}

.feature-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    color: var(--ink);
    margin-bottom: var(--space-3);
    line-height: 1.1;
    text-align: left;
}

.feature-card p {
    font-family: 'Inter', sans-serif;
    color: var(--ink-60);
    text-align: left;
    flex-grow: 0;
    font-size: 0.98rem;
}

.feature-card.highlight {
    background: transparent !important;
    color: var(--ink);
}

.feature-card.highlight h3,
.feature-card.highlight p {
    color: var(--ink);
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: var(--paper);
}

.testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-12);
}

.testimonial-card {
    background: transparent;
    border-radius: 0;
    padding: var(--space-6) 0 0;
    border-top: 1px solid var(--ink-15);
}

.testimonial-stars {
    color: var(--rust);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
}

.testimonial-card p {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--ink);
    font-size: clamp(0.98rem, 1.15vw, 1.075rem);
    line-height: 1.62;
    margin-bottom: var(--space-6);
    letter-spacing: 0;
    max-width: 54ch;
}

.client-info {
    gap: var(--space-3);
    align-items: center;
}

.client-img {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    width: 40px;
    height: 40px;
    font-weight: 500;
}

.client-info strong {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.95rem;
}

.client-source {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-60);
    font-size: 0.68rem;
    margin-top: 0.15rem;
}

/* --- FAQ --- */
.faq-section {
    background: #FFFFFF;
}

.faq-section .section-header {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.faq-list {
    border-top: 1px solid var(--ink-15);
    gap: 0;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--ink-15);
    border-radius: 0;
    padding: 0;
    overflow: visible;
}

.faq-item[open] {
    box-shadow: none;
    border-color: var(--ink-15);
    background: transparent;
}

.faq-item summary {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--ink);
    padding: 1.25rem 0;
    letter-spacing: -0.01em;
}

.faq-item summary::after {
    color: var(--rust);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 1.3rem;
}

.faq-item p {
    padding: 0 0 1.5rem;
    color: var(--ink-60);
    max-width: 62ch;
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
}

.faq-item a {
    color: var(--rust);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-item a:hover {
    color: var(--rust-ink);
}

/* --- CONTACT (dark editorial block) --- */
.contact-section {
    background: var(--paper);
}

.contact-box {
    background: var(--ink);
    border-radius: 0 !important;
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
    gap: clamp(2.5rem, 5vw, 5rem);
}

/* Both column eyebrows in rust on dark */
.contact-info .eyebrow,
.contact-form .eyebrow {
    color: var(--rust);
    margin-bottom: var(--space-3);
}

.contact-info h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "opsz" 96, "SOFT" 0, "WONK" 0;
    color: #FFFFFF;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin-bottom: var(--space-4);
}

.contact-intro {
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    max-width: 46ch;
    margin-bottom: var(--space-10, 2.5rem) !important;
    line-height: 1.55;
}

/* Each labeled block separated by hairline */
.contact-block {
    margin-bottom: var(--space-6);
    padding-top: var(--space-5, 1.25rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-block:first-of-type {
    padding-top: 0;
    border-top: none;
}

.contact-label {
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    color: var(--rust);
    font-weight: 500;
    margin: 0 0 var(--space-3) 0;
}

.contact-phone {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: -0.02em;
    display: inline-block;
    line-height: 1;
    transition: color 0.2s ease;
}

.contact-phone:hover {
    color: var(--rust);
}

.contact-line {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    margin: 0 0 0.15rem 0;
    line-height: 1.5;
}

.contact-note {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-style: italic;
    margin: var(--space-3) 0 0 0;
    line-height: 1.4;
}

/* Map: editorial B/W consistent with hero photo treatment */
.map-container {
    border-radius: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-4);
    min-height: 220px;
}

.map-container iframe {
    filter: grayscale(1) contrast(1.08);
    opacity: 0.88;
    height: 100%;
}

/* Form side */
.contact-form .form-title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "opsz" 96, "SOFT" 0, "WONK" 0;
    color: #FFFFFF;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin-bottom: var(--space-2);
}

.contact-form .form-title span {
    color: var(--rust);
}

.contact-form .form-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    margin-bottom: var(--space-6);
}

/* Form trust bar — strip to hairlines, rust stars */
.form-trust-bar {
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    padding: 0.85rem 0;
    margin-bottom: var(--space-6);
}

.form-trust-item {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.66rem;
    font-weight: 500;
}

.form-trust-item svg {
    color: var(--rust);
}

.form-trust-item .stars {
    color: var(--rust);
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.form-trust-item a {
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}

.form-trust-item a:hover {
    color: var(--rust);
    border-bottom-color: var(--rust);
}

/* Form inputs: fully squared to match editorial language */
.input-group input,
.input-group textarea,
.native-select-wrap select {
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    font-family: 'Inter', sans-serif;
}

.input-group input:focus,
.input-group textarea:focus,
.native-select-wrap select:focus {
    border-color: var(--rust);
    background: rgba(255, 255, 255, 0.07);
    outline: none;
}

.input-group label {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0;
    text-transform: none;
}

.required-mark {
    color: var(--rust);
}

.optional-mark {
    color: rgba(255, 255, 255, 0.4);
}

/* Submit button editorial */
.contact-form button[type="submit"].btn.btn-secondary {
    background: var(--rust);
    color: var(--paper);
    border: 1px solid var(--rust);
    border-radius: 2px;
    box-shadow: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    margin-top: var(--space-2);
}

.contact-form button[type="submit"].btn.btn-secondary:hover {
    background: var(--rust-ink);
    transform: none;
    box-shadow: none;
}

.form-reassurance {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.66rem;
}

/* --- FOOTER --- */
footer {
    background: #FFFFFF;
    border-top: 1px solid var(--ink-15);
}

footer .logo {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "opsz" 48, "SOFT" 0;
    font-weight: 700;
    color: var(--ink);
    font-size: 1.25rem;
}

footer .logo span {
    color: var(--rust);
}

footer p {
    font-family: 'Inter', sans-serif;
    color: var(--ink-60) !important;
}

.footer-col h4 {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    color: var(--ink-60);
    font-weight: 500;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    color: var(--ink) !important;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--rust) !important;
}

.footer-links li span {
    color: var(--ink-60) !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

footer > .container > div[style*="text-align: center"] {
    color: var(--ink-60) !important;
    border-top-color: var(--ink-15) !important;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* --- Responsive adjustments for second-pass --- */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .section-header {
        margin-bottom: var(--space-12);
    }
}

/* SweetAlert2 Custom Styling */
.premium-swal {
    border-radius: 24px !important;
    font-family: 'Inter', sans-serif !important;
}

.premium-swal .swal2-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
}

.premium-swal .swal2-styled.swal2-confirm {
    border-radius: 12px !important;
    padding: 1rem 2rem !important;
    font-weight: 700 !important;
}