/* ============================================
   Acar Discount Complete Repair — Stylesheet
   Bold editorial · Forest green + Off-white
   ============================================ */

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

:root {
    --green-900: #0d2818;
    --green-800: #1a4d2e;
    --green-700: #236b3f;
    --green-600: #2d8a51;
    --green-500: #37a863;
    --green-100: #d1f0dc;
    --green-50:  #eaf7ee;

    --gold-500: #d4a853;
    --gold-400: #e0bc6a;
    --gold-300: #ebd08a;

    --cream-50:  #faf9f6;
    --cream-100: #f5f3ee;
    --cream-200: #eae6de;
    --cream-300: #d6d0c4;

    --stone-50:  #f7f7f5;
    --stone-100: #efefec;
    --stone-200: #e2e2dc;
    --stone-400: #9a9a90;
    --stone-500: #6e6e66;
    --stone-600: #52524c;
    --stone-700: #3d3d38;
    --stone-800: #2a2a26;
    --stone-900: #1a1a17;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

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

body {
    font-family: var(--font-sans);
    color: var(--stone-800);
    background-color: var(--cream-50);
    line-height: 1.6;
    -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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--green-800);
    transition: color 0.2s;
}

.nav__logo-icon {
    color: var(--green-800);
}

.nav__logo-text {
    letter-spacing: -0.02em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--stone-600);
    transition: color 0.2s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--green-700);
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--green-800);
}

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

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cream-50);
    background: var(--green-800);
    padding: 9px 18px;
    border-radius: 100px;
    transition: background 0.2s, transform 0.2s;
}

.nav__cta:hover {
    background: var(--green-700);
    transform: translateY(-1px);
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.nav__toggle-bar {
    width: 100%;
    height: 2px;
    background: var(--stone-700);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav__overlay.active {
    opacity: 1;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 40%, var(--green-700) 100%);
    padding: 100px 24px 60px;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(45, 138, 81, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(212, 168, 83, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 60% 80%, rgba(13, 40, 24, 0.5) 0%, transparent 60%);
    pointer-events: none;
}

.hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    pointer-events: none;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__content {
    color: var(--cream-50);
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 20px;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero__accent {
    color: var(--gold-400);
    font-style: italic;
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.8);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    color: var(--green-800);
    background: var(--gold-500);
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

.btn--primary:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 168, 83, 0.4);
}

.btn--ghost {
    color: var(--cream-50);
    background: rgba(250, 249, 246, 0.12);
    border: 1px solid rgba(250, 249, 246, 0.25);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(250, 249, 246, 0.2);
    transform: translateY(-2px);
}

.btn--accent {
    color: var(--green-900);
    background: var(--gold-500);
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

.btn--accent:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
}

.btn--outline {
    color: var(--cream-50);
    background: transparent;
    border: 1.5px solid rgba(250, 249, 246, 0.4);
}

.btn--outline:hover {
    border-color: var(--cream-50);
    background: rgba(250, 249, 246, 0.08);
    transform: translateY(-2px);
}

.hero__trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(250, 249, 246, 0.75);
}

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

/* Hero image */
.hero__image {
    position: relative;
}

.hero__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero__image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold-500);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

/* Hero scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250, 249, 246, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(250,249,246,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-header__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 12px;
}

.section-header__eyebrow--light {
    color: var(--gold-400);
}

.section-header__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--stone-900);
    margin-bottom: 16px;
}

.section-header__title--light {
    color: var(--cream-50);
}

.section-header__accent {
    color: var(--green-700);
    font-style: italic;
}

.section-header__accent-light {
    color: var(--gold-400);
    font-style: italic;
}

.section-header__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--stone-500);
}

/* ---------- SERVICES ---------- */
.services {
    position: relative;
    padding: 100px 0;
    background: var(--cream-100);
    overflow: hidden;
}

.services__bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green-700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-100);
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-sm);
    color: var(--green-800);
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: var(--green-100);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--stone-500);
}

/* ---------- ABOUT ---------- */
.about {
    padding: 100px 0;
    background: var(--cream-50);
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__images {
    position: relative;
}

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

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

.about__image-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream-50);
}

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

.about__badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--green-800);
    color: var(--cream-50);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about__badge-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
}

.about__badge-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(250, 249, 246, 0.8);
    line-height: 1.4;
}

.about__content {
    max-width: 520px;
}

.about__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--stone-900);
    margin-bottom: 24px;
}

.about__accent {
    color: var(--green-700);
    font-style: italic;
}

.about__text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--stone-600);
    margin-bottom: 16px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--stone-700);
}

.about__highlight svg {
    color: var(--green-700);
    flex-shrink: 0;
}

/* ---------- WHY US ---------- */
.why-us {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--green-900);
}

.why-us__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.why-us__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 70% 50% at 10% 50%, rgba(45, 138, 81, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 60%, rgba(212, 168, 83, 0.1) 0%, transparent 50%);
}

.why-us__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.why-us__inner {
    position: relative;
    z-index: 1;
}

.why-us__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.why-us__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(250, 249, 246, 0.7);
    margin-top: 16px;
}

.why-us__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(250, 249, 246, 0.06);
    border: 1px solid rgba(250, 249, 246, 0.1);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(250, 249, 246, 0.1);
    border-color: rgba(250, 249, 246, 0.18);
    transform: translateY(-4px);
}

.why-card__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-500);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

.why-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream-50);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.why-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.65);
}

/* ---------- CTA ---------- */
.cta {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(212, 168, 83, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--cream-50);
    margin-bottom: 16px;
}

.cta__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.8);
    margin-bottom: 36px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- LOCATION ---------- */
.location {
    padding: 100px 0;
    background: var(--cream-50);
}

.location__layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.location__detail {
    display: flex;
    gap: 16px;
}

.location__detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-sm);
    color: var(--green-800);
    flex-shrink: 0;
}

.location__detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone-800);
    margin-bottom: 4px;
}

.location__detail span,
.location__detail a {
    font-size: 0.95rem;
    color: var(--stone-500);
    line-height: 1.6;
}

.location__detail a:hover {
    color: var(--green-700);
    text-decoration: underline;
}

.location__map {
    margin-top: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.location__map iframe {
    width: 100%;
    height: 280px;
}

/* Hours */
.location__hours {
    background: var(--green-800);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    color: var(--cream-50);
}

.location__hours-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--cream-50);
}

.location__hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location__hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(250, 249, 246, 0.1);
}

.location__hours-row:last-of-type {
    border-bottom: none;
}

.location__hours-row span:first-child {
    color: rgba(250, 249, 246, 0.8);
    font-weight: 500;
}

.location__hours-row span:last-child {
    color: var(--cream-50);
    font-weight: 600;
}

.location__hours-row--closed span:last-child {
    color: var(--gold-400);
}

.location__hours-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(250, 249, 246, 0.5);
    line-height: 1.5;
}

.location__hours-note svg {
    color: var(--gold-400);
    flex-shrink: 0;
    opacity: 0.7;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--stone-900);
    color: var(--cream-50);
    padding: 64px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(250, 249, 246, 0.08);
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cream-50);
    margin-bottom: 16px;
}

.footer__logo-icon {
    color: var(--cream-50);
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.55);
    max-width: 320px;
}

.footer__contact-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.4);
    margin-bottom: 16px;
}

.footer__contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(250, 249, 246, 0.8);
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer__contact-link:hover {
    color: var(--gold-400);
}

.footer__address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(250, 249, 246, 0.55);
    line-height: 1.6;
    margin-top: 4px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(250, 249, 246, 0.35);
}

.footer__bottom a {
    color: rgba(250, 249, 246, 0.5);
    transition: color 0.2s;
}

.footer__bottom a:hover {
    color: var(--gold-400);
}

/* ---------- SCROLL REVEAL (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__image {
        max-width: 480px;
        margin: 0 auto;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__images {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-us__cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .location__layout {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--cream-50);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 32px 32px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav__menu.active {
        transform: translateX(0);
    }

    .nav__link {
        font-size: 1.05rem;
        color: var(--stone-700);
    }

    .nav__cta {
        margin-top: 8px;
    }

    .nav__overlay {
        display: block;
    }

    .hero {
        padding: 120px 24px 80px;
        min-height: auto;
    }

    .hero__image-accent {
        display: none;
    }

    .hero__scroll {
        display: none;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .about__image-secondary {
        width: 60%;
        bottom: -20px;
        right: -12px;
    }

    .about__badge {
        top: -12px;
        left: -12px;
        padding: 14px 18px;
    }

    .about__badge-number {
        font-size: 1.4rem;
    }

    .about__highlights {
        grid-template-columns: 1fr;
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .location__hours {
        padding: 28px 24px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

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

    .hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .section-header {
        margin-bottom: 48px;
    }
}
