/* ========================================
   Savino Contracting — Custom Styles
   Charcoal + Coral | Space Grotesk + Inter
======================================== */

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

:root {
    --charcoal: #1a1a2e;
    --charcoal-light: #2a2a3e;
    --charcoal-mid: #16213e;
    --coral: #E85D4A;
    --coral-dark: #d14a38;
    --coral-light: #ff7a66;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --gray-100: #f4f3f0;
    --gray-200: #e8e6e1;
    --gray-300: #d1cfc9;
    --gray-500: #8a8780;
    --gray-700: #4a4843;
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(26,26,46,0.08);
    --shadow-md: 0 8px 30px rgba(26,26,46,0.12);
    --shadow-lg: 0 20px 60px rgba(26,26,46,0.15);
    --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(--charcoal);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
label, input, select, textarea { font-family: inherit; font-size: inherit; }

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

/* ── Typography ── */
.text-coral { color: var(--coral); }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}
.section-tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--coral);
    display: inline-block;
}
.section-tag--light { color: rgba(255,255,255,0.7); }
.section-tag--light::before { background: rgba(255,255,255,0.5); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
}
.section-title--light { color: var(--white); }

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-700);
    max-width: 560px;
    line-height: 1.7;
}
.section-desc--light { color: rgba(255,255,255,0.8); }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232,93,74,0.35);
}
.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232,93,74,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}
.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--coral);
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.9rem;
}
.btn-nav:hover { background: var(--coral-dark); }

/* ── 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);
}
.header.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
}
.logo-accent { color: var(--coral); }
.logo--light .logo-text { color: var(--white); }

/* ── Nav ── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu li a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--charcoal);
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-menu li a:hover { color: var(--coral); background: rgba(232,93,74,0.06); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.hamburger {
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--charcoal);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}
.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,93,74,0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}
.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,93,74,0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(232,93,74,0.08);
    top: 20%;
    left: 8%;
    transform: rotate(15deg);
}

.geo-square {
    position: absolute;
    border: 2px solid rgba(232,93,74,0.15);
}
.geo-square--1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 15%;
    transform: rotate(30deg);
}
.geo-square--2 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 5%;
    transform: rotate(45deg);
    border-color: rgba(255,255,255,0.08);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,93,74,0.12);
    border: 1px solid rgba(232,93,74,0.25);
    color: var(--coral-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* Hero Image Stack */
.hero-visual { position: relative; }
.hero-image-stack { position: relative; }

.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img--1 {
    width: 420px;
    height: 520px;
}
.hero-img--1 img { width: 100%; height: 100%; object-fit: cover; }
.hero-img--2 {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 360px;
    height: 280px;
    border: 6px solid var(--charcoal);
}
.hero-img--2 img { width: 100%; height: 100%; object-fit: cover; }
.hero-img--3 {
    position: absolute;
    bottom: 60px;
    right: -30px;
    width: 300px;
    height: 200px;
    border: 6px solid var(--charcoal);
}
.hero-img--3 img { width: 100%; height: 100%; object-fit: cover; }

.hero-cta-card {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    background: var(--coral);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 40px rgba(232,93,74,0.4);
    z-index: 3;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── Services ── */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    position: relative;
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
}
.service-card:hover {
    border-color: var(--coral);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--coral);
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover .service-card-accent { transform: scaleX(1); }

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,93,74,0.08);
    border-radius: var(--radius);
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--coral); }
.service-card:hover .service-icon svg { stroke: var(--white); }

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}
.service-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ── About ── */
.about {
    padding: 100px 0;
    background: var(--off-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 640px; object-fit: cover; }

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 280px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 6px solid var(--off-white);
    box-shadow: var(--shadow-md);
}
.about-img-float img { width: 100%; height: 200px; object-fit: cover; }

.about-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--coral);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 40px rgba(232,93,74,0.35);
}
.about-badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}
.about-badge-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 4px;
}

.about-content .section-title { margin-top: 8px; }
.about-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,93,74,0.08);
    border-radius: 10px;
}
.value-item span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}

/* ── Work Gallery ── */
.work {
    padding: 100px 0;
    background: var(--charcoal);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}
.work-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.work-item:hover img { transform: scale(1.08); }

.work-item--large { grid-column: span 7; height: 400px; }
.work-item:not(.work-item--large) { height: 280px; }
.work-item--tall { grid-column: span 5; height: 100%; min-height: 400px; }

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: var(--transition);
}
.work-item:hover .work-overlay { opacity: 1; }
.work-tag {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 10px;
}
.work-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

/* ── Testimonials ── */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.testimonial-card:hover {
    border-color: var(--coral);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
}
.testimonial-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--charcoal);
}
.testimonial-location {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ── CTA Banner ── */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: var(--coral);
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.cta-circle {
    position: absolute;
    border-radius: 50%;
}
.cta-circle--1 {
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.06);
    top: -200px;
    right: -100px;
}
.cta-circle--2 {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    bottom: -100px;
    left: -50px;
}
.cta-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    background-image: radial-gradient(rgba(255,255,255,0.2) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-content { flex: 1; }
.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,93,74,0.08);
    border-radius: 12px;
}
.contact-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 4px;
}
.contact-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
}
.contact-link:hover { color: var(--coral); }

/* ── Form ── */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232,93,74,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(232,93,74,0.06);
    border: 1px solid rgba(232,93,74,0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 20px;
}
.form-success p {
    font-size: 0.95rem;
    color: var(--charcoal);
}

/* ── Map ── */
.map-section { height: 320px; }
.map-section iframe { display: block; }

/* ── Footer ── */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 20px;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--coral); }

.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}
.footer-contact a:hover { color: var(--coral); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}
.footer-bottom a:hover { color: var(--coral); }

/* ── Animations ── */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .hero { text-align: center; padding-top: 140px; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }

    .about-container { grid-template-columns: 1fr; gap: 60px; }
    .about-img-main img { height: 400px; }
    .about-img-float { display: none; }

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

    .work-item--large { grid-column: span 12; height: 360px; }
    .work-item:not(.work-item--large) { grid-column: span 6; height: 240px; }
    .work-item--tall { grid-column: span 6; min-height: 240px; }

    .contact-container { grid-template-columns: 1fr; gap: 48px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-menu li a { display: block; padding: 12px 16px; }
    .nav-toggle { display: flex; }

    .hero { padding-top: 120px; min-height: auto; }
    .hero-title { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .stat-divider { width: 40px; height: 1px; }

    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .work-item--large,
    .work-item:not(.work-item--large),
    .work-item--tall {
        grid-column: span 12;
        height: 240px;
        min-height: auto;
    }
    .work-overlay { opacity: 1; }

    .cta-container { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    .about-values { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-main { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.8rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .section-title { font-size: 1.8rem; }
}
