/* ============================================
   AUTO-TECH ZARATÁN — Editorial Style
   Plum + Amber Color Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Plum palette */
    --plum-900: #1a0f14;
    --plum-800: #2d1f26;
    --plum-700: #3d2a33;
    --plum-600: #5D4037;
    --plum-500: #7B5258;
    --plum-400: #9E747A;
    --plum-300: #C4A0A6;
    --plum-200: #E0CCC8;
    --plum-100: #F2E8E6;
    --plum-50:  #FAF5F4;
    
    /* Amber palette */
    --amber-600: #B8860B;
    --amber-500: #D4A373;
    --amber-400: #E8C49A;
    --amber-300: #F0DCC0;
    --amber-200: #F7EDE0;
    --amber-100: #FBF6F0;
    
    /* Neutrals */
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray-900: #111111;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #404040;
    --gray-500: #6b6b6b;
    --gray-400: #949494;
    --gray-300: #c4c4c4;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    
    /* Typography */
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Layout */
    --container-max: 1280px;
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.1;
    color: var(--plum-800);
}

em {
    font-style: italic;
    color: var(--amber-600);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
    height: var(--header-height);
}

.header.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 1px 20px rgba(93, 64, 55, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo__mark {
    width: 44px;
    height: 44px;
    background: var(--plum-700);
    color: var(--amber-400);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition-base);
}

.logo:hover .logo__mark {
    background: var(--amber-600);
    color: var(--white);
}

.logo__text {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-800);
}

.logo__sub {
    font-weight: 400;
    color: var(--gray-500);
    letter-spacing: 0.08em;
}

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

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gray-600);
    transition: var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--amber-600);
    transition: var(--transition-base);
}

.nav__link:hover {
    color: var(--plum-700);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--plum-700);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    transition: var(--transition-base);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--amber-600);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* --- Nav Toggle --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--plum-800);
    transition: var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    background: var(--plum-50);
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--header-height));
    align-items: center;
    gap: 0;
}

.hero__content {
    padding: var(--space-2xl) var(--space-xl);
    padding-right: 0;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: var(--space-md);
}

.hero__title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    color: var(--plum-800);
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.hero__title em {
    font-size: 0.85em;
    color: var(--amber-600);
}

.hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 480px;
    margin-bottom: var(--space-xl);
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum-700);
    color: var(--white);
    border-color: var(--plum-700);
}

.btn--primary:hover {
    background: var(--plum-600);
    border-color: var(--plum-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 64, 55, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--plum-700);
    border-color: var(--plum-300);
}

.btn--outline:hover {
    background: var(--plum-700);
    color: var(--white);
    border-color: var(--plum-700);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--plum-800);
    border-color: var(--white);
}

.btn--lg {
    padding: 1.2rem 2.5rem;
    font-size: 0.95rem;
}

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

/* --- Hero Image Stack --- */
.hero__image-stack {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.hero__image {
    position: absolute;
    overflow: hidden;
    border-radius: 12px;
}

.hero__image--main {
    width: 75%;
    height: 85%;
    right: 5%;
    top: 8%;
}

.hero__image--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero__image--main:hover img {
    transform: scale(1.03);
}

.hero__image--accent {
    width: 55%;
    height: 40%;
    left: 0;
    bottom: 5%;
    border: 6px solid var(--plum-50);
    box-shadow: 0 20px 60px rgba(26, 15, 20, 0.2);
}

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

.hero__stamp {
    position: absolute;
    bottom: 12%;
    left: -5%;
    background: var(--amber-600);
    color: var(--white);
    padding: 1.2rem 1rem;
    border-radius: 50% 12px 50% 12px;
    font-family: var(--font-serif);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-align: center;
    transform: rotate(-8deg);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
    z-index: 2;
}

/* --- Marquee --- */
.marquee {
    background: var(--plum-800);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee__inner {
    display: flex;
    gap: var(--space-lg);
    animation: marquee 30s linear infinite;
}

.marquee__item {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber-400);
    flex-shrink: 0;
}

.marquee__dot {
    color: var(--plum-500);
    flex-shrink: 0;
    font-size: 0.5rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Section Header --- */
.section-header {
    margin-bottom: var(--space-xl);
}

.section-header--light .section-header__title,
.section-header--light .section-header__eyebrow {
    color: var(--white);
}

.section-header__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: var(--space-sm);
}

.section-header__title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    color: var(--plum-800);
}

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

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

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

.service-card {
    background: var(--plum-50);
    border-radius: 16px;
    padding: var(--space-xl);
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.service-card:hover {
    background: var(--white);
    border-color: var(--plum-200);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(93, 64, 55, 0.1);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    background: var(--plum-700);
    color: var(--amber-400);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: var(--transition-base);
}

.service-card:hover .service-card__icon {
    background: var(--amber-600);
    color: var(--white);
}

.service-card__title {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
    color: var(--plum-800);
}

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

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

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

.about__images {
    position: relative;
}

.about__image {
    border-radius: 16px;
    overflow: hidden;
}

.about__image--1 {
    width: 70%;
}

.about__image--1 img,
.about__image--2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image--2 {
    position: absolute;
    right: 0;
    bottom: -2rem;
    width: 55%;
    box-shadow: 0 20px 60px rgba(26, 15, 20, 0.15);
    border: 6px solid var(--plum-100);
}

.about__stat {
    position: absolute;
    top: -1.5rem;
    right: 15%;
    background: var(--amber-600);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.3);
    z-index: 2;
}

.about__stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about__stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

.about__content {
    max-width: 520px;
}

.about__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-600), var(--amber-300));
    border-radius: 2px;
    margin: var(--space-md) 0 var(--space-lg);
}

.about__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.about__pillars {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pillar {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.pillar__number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber-500);
    min-width: 3rem;
}

.pillar__text {
    font-size: 1rem;
    color: var(--plum-700);
    font-weight: 500;
}

/* --- Gallery --- */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--plum-900);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: var(--space-sm);
}

.gallery__item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--wide {
    grid-column: span 7;
}

.gallery__item:not(.gallery__item--wide) {
    grid-column: span 5;
}

/* --- CTA --- */
.cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-800) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta__title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta__text {
    font-size: 1.1rem;
    color: var(--plum-300);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

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

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

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

.contact__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-600), var(--amber-300));
    border-radius: 2px;
    margin: var(--space-md) 0 var(--space-xl);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: 12px;
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.contact__item:hover {
    border-color: var(--plum-300);
    background: var(--plum-50);
    transform: translateX(4px);
}

.contact__item-icon {
    width: 52px;
    height: 52px;
    background: var(--plum-100);
    color: var(--plum-600);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.contact__item:hover .contact__item-icon {
    background: var(--plum-700);
    color: var(--amber-400);
}

.contact__item-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.contact__item-value {
    font-size: 1rem;
    color: var(--plum-800);
    font-weight: 500;
    line-height: 1.5;
}

.contact__hours {
    background: var(--plum-50);
    border-radius: 16px;
    padding: var(--space-lg);
}

.contact__hours-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--plum-800);
}

.contact__hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact__hours-list li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--plum-200);
}

.contact__hours-list li:last-child {
    border-bottom: none;
}

.contact__hours-day {
    color: var(--plum-700);
    font-weight: 500;
}

.contact__hours-time {
    color: var(--gray-500);
}

/* --- Contact Form --- */
.contact__form-wrapper {
    background: var(--plum-50);
    border-radius: 20px;
    padding: var(--space-xl);
    border: 1px solid var(--plum-200);
}

.contact__form-title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.contact__form-subtitle {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.form__group {
    margin-bottom: var(--space-md);
}

.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--plum-600);
    margin-bottom: 0.5rem;
}

.form__input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid var(--plum-200);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--plum-800);
    background: var(--white);
    transition: var(--transition-fast);
    outline: none;
}

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

.form__input:focus {
    border-color: var(--amber-600);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.15);
}

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

.form__success {
    text-align: center;
    padding: var(--space-xl);
}

.form__success-icon {
    width: 80px;
    height: 80px;
    background: var(--amber-200);
    color: var(--amber-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.form__success h4 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--plum-800);
}

.form__success p {
    color: var(--gray-500);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--plum-900);
    color: var(--plum-300);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer__brand .logo__mark {
    background: var(--plum-600);
}

.footer__brand .logo__text {
    color: var(--white);
}

.footer__brand .logo__sub {
    color: var(--plum-400);
}

.footer__tagline {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--plum-400);
    max-width: 320px;
}

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

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__list a,
.footer__list span {
    font-size: 0.9rem;
    color: var(--plum-300);
    transition: var(--transition-fast);
}

.footer__list a:hover {
    color: var(--amber-400);
    padding-left: 4px;
}

.footer__bottom {
    border-top: 1px solid var(--plum-700);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--plum-500);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }
    
    .hero__content {
        padding: var(--space-xl);
        padding-right: var(--space-lg);
    }
    
    .hero__image-stack {
        display: none;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__grid {
        grid-template-columns: 1fr;
    }
    
    .about__images {
        max-width: 500px;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 220px);
    }
    
    .gallery__item--wide {
        grid-column: span 2;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        transition: right var(--transition-base);
        z-index: 999;
    }
    
    .nav.open {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .nav__link {
        font-size: 1.1rem;
    }
    
    .nav__link--cta {
        margin-top: var(--space-sm);
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 998;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-xl));
        padding-bottom: var(--space-xl);
    }
    
    .hero__content {
        padding: 0 var(--space-md);
    }
    
    .hero__title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__image--2 {
        position: relative;
        bottom: 0;
        width: 100%;
        margin-top: var(--space-sm);
    }
    
    .about__image--1 {
        width: 100%;
    }
    
    .about__stat {
        top: auto;
        bottom: -1.5rem;
        right: 5%;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery__item,
    .gallery__item--wide {
        grid-column: span 1;
        height: 220px;
    }
    
    .cta__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact__form-wrapper {
        padding: var(--space-md);
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .service-card {
        padding: var(--space-md);
    }
}
