/* ============================================
   AMERICAN BASEMENT CO. — STYLESHEET
   Terracotta + Sand | Confident Corporate
   ============================================ */

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

:root {
    --terracotta: #B85D38;
    --terracotta-dark: #9A4B2C;
    --terracotta-light: #D4845E;
    --sand: #F5E6D3;
    --sand-light: #FBF5EE;
    --sand-dark: #E8D5C0;
    --neutral-900: #1A1A1A;
    --neutral-800: #2D2D2D;
    --neutral-700: #404040;
    --neutral-600: #555555;
    --neutral-500: #6B6B6B;
    --neutral-400: #999999;
    --neutral-300: #CCCCCC;
    --neutral-200: #E5E5E5;
    --neutral-100: #F2F2F2;
    --neutral-50: #FAFAFA;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --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.1), 0 4px 12px rgba(0,0,0,0.06);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta-dark); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ——— SKIP LINK ——— */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--terracotta); color: var(--white);
    padding: 0.5rem 1rem; border-radius: var(--radius-sm);
    z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ——— CONTAINER ——— */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ——— TYPOGRAPHY ——— */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--neutral-600);
    max-width: 600px;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-desc { margin: 0 auto; }

.accent-gradient {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ——— BUTTONS ——— */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(184, 93, 56, 0.35);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 93, 56, 0.4);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--terracotta);
    border-color: var(--white);
}
.btn-light {
    background: var(--white);
    color: var(--terracotta);
    box-shadow: var(--shadow-md);
}
.btn-light:hover {
    background: var(--sand-light);
    color: var(--terracotta-dark);
    transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-full { width: 100%; justify-content: center; }

/* ——— HEADER ——— */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--neutral-900);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
}
.logo:hover { color: var(--neutral-900); }
.logo-icon { color: var(--terracotta); flex-shrink: 0; }
.logo-text { font-family: var(--font-heading); }
.logo-text .accent { color: var(--terracotta); }

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-list a {
    padding: 0.5rem 0.875rem;
    color: var(--neutral-700);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-list a:hover { color: var(--terracotta); background: rgba(184,93,56,0.06); }

.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.menu-toggle:hover { background: var(--neutral-100); }
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px; height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -6px; }
.hamburger::after { content: ''; position: absolute; top: 6px; }
.menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.menu-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.menu-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 0; }

/* ——— HERO ——— */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #1A1A1A 0%, #2D2017 30%, #4A2C1A 55%, #B85D38 100%);
    padding: 8rem 0 6rem;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184,93,56,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(245,230,211,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--sand);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(245,230,211,0.8);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 2.5rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}
.stat span {
    font-size: 0.8125rem;
    color: rgba(245,230,211,0.6);
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    align-self: center;
}
.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    color: var(--white);
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ——— SECTIONS ——— */
.section {
    padding: 6rem 0;
}
.section:nth-child(even) { background: var(--sand-light); }

/* ——— SERVICES ——— */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--terracotta-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(184,93,56,0.1) 0%, rgba(184,93,56,0.05) 100%);
    border-radius: var(--radius-md);
    color: var(--terracotta);
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--terracotta);
    color: var(--white);
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.75rem;
}
.service-card p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ——— ABOUT ——— */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -2rem; right: -1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-box {
    position: absolute;
    top: -1rem; left: -1rem;
    width: 90px; height: 90px;
    background: var(--terracotta);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: var(--white);
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content > p {
    color: var(--neutral-600);
    margin-bottom: 1rem;
    line-height: 1.75;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    margin: 1.5rem 0 2rem;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--neutral-700);
}
.check-icon { color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
.about-content .btn { margin-top: 0.5rem; }

/* ——— PROCESS ——— */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.process-step {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.process-step:hover {
    border-color: var(--terracotta-light);
    box-shadow: var(--shadow-md);
}
.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--sand-dark) 0%, var(--sand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}
.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.625rem;
}
.process-step p {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.7;
}
.process-step a { color: var(--terracotta); }

/* ——— GALLERY ——— */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
}

/* ——— FAQ ——— */
.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}
.faq-left .section-title { margin-bottom: 1rem; }
.faq-left > p { color: var(--neutral-600); line-height: 1.75; margin-bottom: 2rem; }
.faq-cta {
    background: var(--sand-light);
    border: 1px solid var(--sand-dark);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}
.faq-cta p {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-bottom: 0.75rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.active { border-color: var(--terracotta-light); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--neutral-800);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--terracotta); }
.faq-toggle {
    flex-shrink: 0;
    color: var(--neutral-400);
    transition: all var(--transition);
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--terracotta);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
    padding: 0 1.25rem 1.125rem;
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.75;
}

/* ——— CTA BANNER ——— */
.cta-banner {
    background: linear-gradient(160deg, #1A1A1A 0%, #2D2017 50%, #4A2C1A 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(184,93,56,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.cta-text p {
    color: rgba(245,230,211,0.7);
    font-size: 1.0625rem;
    line-height: 1.6;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ——— CONTACT ——— */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}
.contact-desc {
    color: var(--neutral-600);
    line-height: 1.75;
    margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(184,93,56,0.08);
    border-radius: var(--radius-md);
    color: var(--terracotta);
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}
.contact-item span,
.contact-item a {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.6;
}
.contact-item a:hover { color: var(--terracotta); }

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.375rem;
}
.form-note {
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--neutral-800);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(184,93,56,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: var(--radius-sm);
    color: #166534;
}
.form-success strong { display: block; font-size: 0.9375rem; }
.form-success span { font-size: 0.8125rem; color: var(--neutral-600); }

/* ——— FOOTER ——— */
.footer {
    background: var(--neutral-900);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; }
.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--terracotta-light); }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--terracotta-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--terracotta-light); }

/* ——— MOBILE NAV OVERLAY ——— */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}
.nav-mobile-overlay.active { display: block; }
.nav-mobile {
    position: fixed;
    top: 0; right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    padding: 5rem 2rem 2rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
}
.nav-mobile.active { right: 0; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 0.25rem; }
.nav-mobile a {
    display: block;
    padding: 0.875rem 1rem;
    color: var(--neutral-700);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-mobile a:hover { color: var(--terracotta); background: rgba(184,93,56,0.06); }
.nav-mobile .btn { margin-top: 1rem; justify-content: center; }

/* ——— SCROLL ANIMATIONS ——— */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-list { display: none; }
    .menu-toggle { display: flex; }
    .hero { padding: 7rem 0 5rem; min-height: auto; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-stats { gap: 1.25rem; }
    .stat-divider { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { max-width: 480px; }
    .about-features { grid-template-columns: 1fr; }
    .faq-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
    .section-header { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .about-img-secondary { right: 0; bottom: -1.5rem; }
    .about-accent-box { top: -0.75rem; left: -0.75rem; width: 76px; height: 76px; }
}
