/* ============================================
   Destination Automotive & Recovery
   Classic & Elegant — Terracotta + Sand Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Terracotta palette */
    --terra-50: #FDF0EB;
    --terra-100: #FADCD1;
    --terra-200: #F4B8A0;
    --terra-300: #E8916E;
    --terra-400: #D97248;
    --terra-500: #B85C38;
    --terra-600: #9A4B2E;
    --terra-700: #7D3D25;
    --terra-800: #65311F;
    --terra-900: #542A1A;

    /* Sand palette */
    --sand-50: #FDFBF7;
    --sand-100: #FAF6EE;
    --sand-200: #F3EBD8;
    --sand-300: #E8D9B8;
    --sand-400: #D4BE8E;
    --sand-500: #BFA36A;
    --sand-600: #A68B54;
    --sand-700: #8A7344;
    --sand-800: #725E38;
    --sand-900: #5F4F2F;

    /* Neutrals */
    --neutral-50: #FAFAF8;
    --neutral-100: #F4F4F0;
    --neutral-200: #E8E8E2;
    --neutral-300: #D4D4CC;
    --neutral-400: #A8A89E;
    --neutral-500: #78786E;
    --neutral-600: #5C5C52;
    --neutral-700: #44443C;
    --neutral-800: #2C2C26;
    --neutral-900: #1A1A16;

    /* Typography */
    --font-serif: 'Lora', 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', 'Arial', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-800);
    background-color: var(--sand-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--terra-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--terra-500);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-200);
    height: var(--header-height);
    transition: box-shadow var(--transition-base);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(26, 26, 22, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--neutral-900);
    text-decoration: none;
}

.logo:hover {
    color: var(--neutral-900);
}

.logo-icon {
    color: var(--terra-500);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--neutral-900);
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terra-600);
}

/* Nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neutral-700);
    text-decoration: none;
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terra-500);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--terra-600);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--terra-500);
    color: #fff !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--terra-600);
    color: #fff !important;
    transform: translateY(-1px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--sand-50);
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(184, 92, 56, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(191, 163, 106, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
    padding: var(--space-3xl) 0;
}

.hero-content {
    max-width: 540px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra-600);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background: var(--terra-400);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--neutral-900);
    margin-bottom: var(--space-xl);
}

.headline-line {
    display: block;
}

.headline-line:nth-child(2) {
    color: var(--terra-600);
    font-style: italic;
}

.hero-description {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--terra-500);
    color: #fff;
    border-color: var(--terra-500);
}

.btn-primary:hover {
    background: var(--terra-600);
    border-color: var(--terra-600);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 92, 56, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--neutral-800);
    border-color: var(--neutral-300);
}

.btn-secondary:hover {
    border-color: var(--terra-500);
    color: var(--terra-600);
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--terra-700);
    border-color: #fff;
}

.btn-light:hover {
    background: var(--sand-100);
    color: var(--terra-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    flex-shrink: 0;
}

.btn-icon-light {
    color: var(--terra-600);
}

/* Hero trust badges */
.hero-trust {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--neutral-600);
    letter-spacing: 0.03em;
}

.trust-item svg {
    color: var(--terra-500);
    flex-shrink: 0;
}

/* Hero image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(26, 26, 22, 0.15);
}

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

.hero-image-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--terra-500);
    color: #fff;
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 32px rgba(184, 92, 56, 0.3);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.badge-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    opacity: 0.9;
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header-light {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra-600);
    margin-bottom: var(--space-md);
}

.section-eyebrow-light {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--neutral-900);
    margin-bottom: var(--space-lg);
}

.section-title-light {
    color: #fff;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--terra-400);
    margin: 0 auto;
}

.section-divider-light {
    background: rgba(255, 255, 255, 0.4);
}

/* --- Services Section --- */
.services {
    padding: var(--space-4xl) 0;
    background: var(--sand-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: #fff;
    padding: var(--space-2xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--sand-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--terra-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 26, 22, 0.08);
    border-color: var(--terra-200);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    color: var(--terra-500);
    margin-bottom: var(--space-lg);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.service-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--neutral-600);
}

/* --- About Section --- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--neutral-100);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image-side {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(26, 26, 22, 0.1);
}

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

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(26, 26, 22, 0.12);
    border: 4px solid var(--neutral-100);
}

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

.about-content {
    padding: var(--space-xl) 0;
}

.about-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--neutral-700);
    margin-bottom: var(--space-lg);
}

.about-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--sand-300);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--terra-600);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--neutral-500);
    text-transform: uppercase;
}

/* --- Why Us Section --- */
.why-us {
    padding: var(--space-4xl) 0;
    background: var(--neutral-900);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(184, 92, 56, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(191, 163, 106, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(184, 92, 56, 0.4);
    transform: translateY(-2px);
}

.why-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--terra-500);
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.6;
}

.why-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-md);
}

.why-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
}

/* --- CTA Section --- */
.cta {
    padding: var(--space-4xl) 0;
    background: var(--terra-600);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Contact Section --- */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--sand-50);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.contact-icon {
    color: var(--terra-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neutral-500);
}

.contact-value {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--neutral-800);
    line-height: 1.6;
}

.contact-link {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--terra-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--terra-500);
    text-decoration: underline;
}

/* Form */
.contact-form-wrapper {
    background: #fff;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--sand-200);
    box-shadow: 0 8px 32px rgba(26, 26, 22, 0.06);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neutral-600);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--neutral-800);
    background: var(--sand-50);
    border: 1.5px solid var(--sand-300);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--terra-400);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}

.form-input::placeholder {
    color: var(--neutral-400);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%2378786E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

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

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-2xl);
    text-align: center;
    color: var(--terra-700);
}

.form-success svg {
    color: var(--terra-500);
}

.form-success p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--neutral-900);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-light {
    color: #fff;
}

.logo-light .logo-name {
    color: #fff;
}

.logo-light .logo-sub {
    color: var(--terra-300);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: var(--space-md);
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact p {
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--terra-300);
}

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Scroll Reveal (progressive enhancement) --- */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-eyebrow {
        justify-content: center;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about-image-side {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--sand-50);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-xl);
        padding: var(--space-2xl);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-base);
        z-index: 1000;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-badge {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: var(--space-lg);
        justify-content: center;
    }
    
    .about-image-secondary {
        right: 0;
        bottom: -20px;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero {
        padding-top: var(--header-height);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-wrapper {
        padding: var(--space-xl);
    }
}
