/* ============================================
   Affordable Home Renovations & Repairs
   Clean Minimalist | Burgundy + Blush
   ============================================ */

/* --- CSS Variables --- */
:root {
    --burgundy: #6B1B2A;
    --burgundy-deep: #4A1220;
    --burgundy-light: #8B2E40;
    --blush: #C8A2A2;
    --blush-light: #E8D4D4;
    --blush-pale: #F5EDEE;
    --blush-cream: #FBF7F7;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F9F8F8;
    --gray-100: #F3F1F1;
    --gray-200: #E8E4E4;
    --gray-300: #D4CFCF;
    --gray-400: #A89F9F;
    --gray-500: #7A7070;
    --gray-600: #5C5454;
    --gray-700: #3D3636;
    --gray-800: #2A2424;
    --gray-900: #1A1515;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --nav-height: 72px;
    --section-padding: clamp(64px, 10vw, 120px);
    --container-max: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition-fast: 0.2s ease;
    --transition-med: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

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

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

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

ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

/* --- Typography --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--burgundy);
    transform: translateY(-50%);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--burgundy);
}

.section-desc {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 520px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: clamp(48px, 6vw, 72px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border: 1px solid var(--burgundy);
}

.btn-primary:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(107, 27, 42, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-ghost:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.btn-white {
    background: var(--white);
    color: var(--burgundy);
    border: 1px solid var(--white);
}

.btn-white:hover {
    background: var(--blush-pale);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

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

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn-ghost-sm {
    background: transparent;
    color: var(--gray-500);
    border: 1px solid var(--gray-300);
    padding: 10px 20px;
    font-size: 12px;
    margin-top: 20px;
}

.btn-ghost-sm:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-med);
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-900);
    letter-spacing: 0.04em;
}

.nav-logo svg {
    color: var(--burgundy);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-600);
    letter-spacing: 0.04em;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: var(--burgundy);
}

.nav-links a::after:hover {
    width: 100%;
}

.nav-cta {
    color: var(--burgundy) !important;
    border: 1px solid var(--burgundy);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--burgundy);
    color: var(--white) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gray-700);
    transition: all var(--transition-fast);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-med);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--gray-700);
    padding: 8px;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--gray-800);
    transition: color var(--transition-fast);
}

.mobile-link:hover { color: var(--burgundy); }

.mobile-cta {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy) !important;
    border: 1px solid var(--burgundy);
    padding: 12px 32px;
    border-radius: var(--radius-sm);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, var(--blush-cream) 50%, var(--blush-pale) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(200, 162, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 27, 42, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 28px;
}

.hero-tag-line {
    width: 32px;
    height: 1px;
    background: var(--burgundy);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-headline em {
    font-style: italic;
    color: var(--burgundy);
}

.hero-sub {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 36px;
}

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

/* Floating Stat Cards */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
    animation: floatIn var(--transition-slow) both;
}

.stat-card:nth-child(1) { animation-delay: 0.3s; }
.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 0.7s; }

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--burgundy);
    opacity: 0.6;
}

.stat-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--burgundy), var(--blush));
    opacity: 0.7;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--burgundy);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-500);
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-align: right;
}

.stat-card-wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.stat-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    width: 100%;
}

.stat-card-grid .stat-label {
    text-align: left;
}

/* Hero Image */
.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(107, 27, 42, 0.08) 100%);
    pointer-events: none;
}

/* --- Section Divider --- */
.section-divider {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.divider-line {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--gray-200);
}

/* --- Services Section --- */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.service-card {
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.service-card:hover {
    border-color: var(--blush);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(107, 27, 42, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--burgundy);
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
    border-color: var(--burgundy);
    background: var(--blush-pale);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- About Section --- */
.about {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.about-container {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px rgba(107, 27, 42, 0.3);
}

.about-image-badge .badge-number {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.7;
}

.about-image-badge .badge-year {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
}

.about-content {
    padding: clamp(16px, 3vw, 40px) 0;
}

.about-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-values {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.value-line {
    flex-shrink: 0;
    width: 24px;
    height: 1px;
    background: var(--burgundy);
}

.value-item span {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 400;
}

/* --- Gallery Section --- */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.gallery-item--wide {
    grid-column: span 7;
}

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

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

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(107, 27, 42, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
}

/* --- Testimonials Section --- */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--blush-cream);
}

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

.testimonial-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-med);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(107, 27, 42, 0.08);
}

.testimonial-quote {
    margin-bottom: 20px;
    color: var(--burgundy);
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.author-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
}

.author-location {
    font-size: 12px;
    color: var(--gray-400);
    letter-spacing: 0.04em;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: clamp(64px, 10vw, 100px) 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(200, 162, 162, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-content .section-tag {
    color: var(--blush);
}

.cta-content .section-tag::before {
    background: var(--blush);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-title em {
    font-style: italic;
    color: var(--blush-light);
}

.cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 36px;
}

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

/* --- Contact Section --- */
.contact {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
}

.contact-info {
    padding-top: 8px;
}

.contact-desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--burgundy);
    transition: all var(--transition-fast);
}

.contact-item:hover .contact-icon {
    border-color: var(--burgundy);
    background: var(--blush-pale);
}

.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

.contact-value a {
    color: var(--burgundy);
    transition: color var(--transition-fast);
}

.contact-value a:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: clamp(24px, 4vw, 40px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-800);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(107, 27, 42, 0.08);
}

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

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

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

.form-success.show {
    display: flex;
}

.success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--burgundy);
    border-radius: 50%;
    color: var(--burgundy);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--gray-900);
}

.form-success p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 280px;
}

/* --- Footer --- */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: clamp(48px, 8vw, 80px) 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    padding-bottom: clamp(40px, 6vw, 60px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.footer-logo svg {
    color: var(--blush);
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 260px;
}

.footer-links h4 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--blush);
}

.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;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--gray-600);
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 480px;
    }

    .stat-card {
        flex: 1;
        min-width: 140px;
    }

    .stat-card-wide {
        flex: 2;
        min-width: 280px;
    }

    .hero-image {
        display: none;
    }

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

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        max-width: 480px;
    }

    .gallery-item--wide {
        grid-column: span 12;
    }

    .gallery-item:not(.gallery-item--wide) {
        grid-column: span 6;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .hero {
        min-height: auto;
        padding: calc(var(--nav-height) + 40px) 0 60px;
    }

    .hero-headline {
        font-size: clamp(36px, 10vw, 52px);
    }

    .hero-stats {
        flex-direction: column;
    }

    .stat-card-wide {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .gallery-item--wide,
    .gallery-item:not(.gallery-item--wide) {
        grid-column: span 1;
    }

    .gallery-item:not(.gallery-item--wide) {
        grid-column: span 1;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-image-badge {
        bottom: -12px;
        right: 12px;
        padding: 14px 18px;
    }

    .about-image-badge .badge-year {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

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

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