/* ============================================
   Ramirez Tire Shop — Custom Styles
   Palette: Plum + Amber | Fresh & Airy
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Plum tones */
    --plum-900: #3A1C2E;
    --plum-800: #5D4037;
    --plum-700: #7B5050;
    --plum-600: #9C6666;
    --plum-500: #B08968;
    --plum-400: #D4B8C8;
    --plum-300: #E8D5E0;
    --plum-200: #F5E6EB;
    --plum-100: #FBF3F6;
    --plum-50:  #FDF8FA;

    /* Amber tones */
    --amber-700: #B8860B;
    --amber-600: #D4A017;
    --amber-500: #E8B830;
    --amber-400: #F0C850;
    --amber-300: #F5D880;
    --amber-200: #FAE8B0;
    --amber-100: #FDF4D0;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FDFAF8;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Typography */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', 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;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(93, 64, 55, 0.06), 0 1px 2px rgba(93, 64, 55, 0.04);
    --shadow-md: 0 4px 12px rgba(93, 64, 55, 0.08), 0 2px 4px rgba(93, 64, 55, 0.04);
    --shadow-lg: 0 12px 32px rgba(93, 64, 55, 0.10), 0 4px 8px rgba(93, 64, 55, 0.05);
    --shadow-xl: 0 20px 48px rgba(93, 64, 55, 0.12);

    /* 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;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--plum-800);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

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

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 250, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 184, 200, 0.2);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
    background: rgba(253, 250, 248, 0.95);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--plum-800);
}

.logo--light {
    color: var(--white);
}

.logo__icon {
    color: var(--plum-600);
}

.logo--light .logo__icon {
    color: var(--amber-400);
}

/* Navigation */
.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav__link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-full);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav__link:hover,
.nav__link:focus-visible {
    color: var(--plum-800);
    background: var(--plum-100);
}

.nav__link--cta {
    background: var(--plum-800);
    color: var(--white) !important;
    margin-left: var(--space-sm);
}

.nav__link--cta:hover,
.nav__link--cta:focus-visible {
    background: var(--plum-700);
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--plum-100);
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--plum-800);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum-800);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(93, 64, 55, 0.25);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: var(--plum-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 64, 55, 0.3);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn--ghost-light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost-light:hover,
.btn--ghost-light:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1.0625rem;
}

.btn--full {
    width: 100%;
}

/* --- Section Shared --- */
.section-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum-500);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--plum-900);
    margin-bottom: var(--space-lg);
}

.section-title--light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-600);
    max-width: 560px;
    line-height: 1.7;
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.75);
}

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

.section-header--light {
    text-align: center;
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(58, 28, 46, 0.82) 0%,
        rgba(93, 64, 55, 0.70) 50%,
        rgba(123, 80, 80, 0.60) 100%
    );
    z-index: -1;
}

.hero__content {
    position: relative;
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
    max-width: 720px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: var(--space-lg);
    background: rgba(212, 166, 23, 0.15);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 166, 23, 0.25);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-xl);
}

.hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: var(--space-2xl);
    max-width: 540px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

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

.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* --- Services --- */
.services {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--gray-200);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--plum-300);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--plum-900);
    margin-bottom: var(--space-sm);
}

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- About --- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--plum-50);
}

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

.about__image-wrap {
    position: relative;
}

.about__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 6/7;
}

.about__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    box-shadow: var(--shadow-lg);
}

.about__badge svg {
    color: var(--amber-600);
    flex-shrink: 0;
}

.about__badge span {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--plum-900);
    line-height: 1.4;
}

.about__text {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.8;
    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(--plum-200);
}

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

.stat__number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--plum-800);
}

.stat__label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* --- Why Choose Us --- */
.why-us {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-800) 100%);
}

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

.why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: background var(--transition-base), transform var(--transition-base);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.why-card__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 166, 23, 0.3);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.why-card__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.why-card__text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

/* --- Testimonials --- */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-xl);
    opacity: 0.5;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: var(--space-xl);
    margin-top: var(--space-xl);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--plum-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--plum-900);
}

.testimonial-card__location {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

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

.cta__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

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

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(58, 28, 46, 0.85) 0%,
        rgba(93, 64, 55, 0.75) 100%
    );
    z-index: -1;
}

.cta__content {
    text-align: center;
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.cta__text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

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

/* --- Contact --- */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
}

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

.contact__text {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
}

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

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

.contact-detail__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail__label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: var(--space-xs);
}

.contact-detail__value {
    font-size: 0.9375rem;
    color: var(--gray-800);
    line-height: 1.6;
}

.contact-detail__value a {
    color: var(--plum-700);
    transition: color var(--transition-fast);
}

.contact-detail__value a:hover {
    color: var(--plum-500);
}

/* Form */
.contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact__form-header {
    margin-bottom: var(--space-xl);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-900);
    margin-bottom: var(--space-sm);
}

.contact__form-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 0.8125rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--plum-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 184, 200, 0.2);
}

.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 24 24' fill='none' stroke='%23757575' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: #E8F5E9;
    border-radius: var(--radius-md);
    color: #2E7D32;
    font-weight: 500;
    font-size: 0.9375rem;
}

/* --- Footer --- */
.footer {
    background: var(--plum-900);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-4xl) 0 var(--space-xl);
}

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

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: var(--space-md);
    max-width: 280px;
}

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

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--amber-400);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    font-size: 0.9375rem;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer__contact a:hover {
    color: var(--amber-400);
}

.footer__bottom {
    padding-top: var(--space-xl);
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(253, 250, 248, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: var(--space-2xl);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 99;
    }
    
    .nav.is-open {
        transform: translateX(0);
    }
    
    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-xs);
    }
    
    .nav__link {
        font-size: 1.125rem;
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }
    
    .nav__link--cta {
        margin-left: 0;
        margin-top: var(--space-md);
        text-align: center;
    }
    
    /* Hero */
    .hero__content {
        padding-top: var(--space-3xl);
        padding-bottom: var(--space-3xl);
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .hero__trust {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero__scroll {
        display: none;
    }
    
    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about__inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about__badge {
        bottom: -12px;
        right: auto;
        left: var(--space-lg);
    }
    
    /* Why */
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials__grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }
    
    /* CTA */
    .cta__actions {
        flex-direction: column;
    }
    
    .cta__actions .btn {
        width: 100%;
    }
    
    /* Contact */
    .contact__inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    /* Footer */
    .footer__inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 480px) {
    :root {
        --space-4xl: 4rem;
        --space-3xl: 3rem;
    }
    
    .service-card {
        padding: var(--space-xl);
    }
    
    .contact__form-wrap {
        padding: var(--space-xl);
    }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
