/* ============================================
   THE VILLAGE BARBERSHOP — STYLES
   Palette: Plum (#5B2C6F / #7D3C98 / #A569BD)
            Amber (#D97706 / #F59E0B / #FEF3C7)
   Fonts: Playfair Display (serif headlines)
          Inter (sans body)
============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #fefefe;
    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;
}

/* ---------- SKIP LINK ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #5B2C6F;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-weight: 600;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

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

/* ---------- SECTION TAG ---------- */
.section-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D97706;
    margin-bottom: 0.75rem;
}

.section-tag--light {
    color: #FDE68A;
}

/* ---------- SECTION TITLE ---------- */
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #D97706;
    color: #1a1a2e;
    border: 2px solid #D97706;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #B45309;
    border-color: #B45309;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-dark {
    background: #1a1a2e;
    color: #fff;
    border: 2px solid #1a1a2e;
}

.btn-dark:hover,
.btn-dark:focus {
    background: #2d2d4a;
    border-color: #2d2d4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(91, 44, 111, 0.08);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(91, 44, 111, 0.1);
}

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

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #5B2C6F;
}

.nav-logo-icon {
    color: #D97706;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1a2e;
    transition: color 0.2s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D97706;
    transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #5B2C6F;
}

.nav-cta {
    background: #5B2C6F;
    color: #fff !important;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.25s ease !important;
}

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

.nav-cta:hover {
    background: #4a2460;
    transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #3D1D52 0%,
        #5B2C6F 25%,
        #7D3C98 50%,
        #5B2C6F 75%,
        #3D1D52 100%
    );
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(217, 119, 6, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(165, 105, 189, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(255,255,255,0.5) 30px,
            rgba(255,255,255,0.5) 31px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 8rem 1.5rem 6rem;
}

.hero-tag {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FDE68A;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-headline em {
    font-style: italic;
    color: #FDE68A;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.hero-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-detail svg {
    color: #FDE68A;
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- SERVICES ---------- */
.services {
    padding: 7rem 0;
    background: #fefefe;
}

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

.service-card {
    background: #fff;
    border: 1px solid rgba(91, 44, 111, 0.08);
    border-radius: 16px;
    padding: 2.25rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(91, 44, 111, 0.1);
    border-color: rgba(91, 44, 111, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(91, 44, 111, 0.08), rgba(91, 44, 111, 0.04));
    border-radius: 14px;
    color: #5B2C6F;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #5B2C6F;
    color: #fff;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555;
}

/* ---------- ABOUT ---------- */
.about {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8f4fc 0%, #fefefe 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(91, 44, 111, 0.15);
}

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

.about-image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(91, 44, 111, 0.2);
    border: 4px solid #fefefe;
}

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

.about-badge {
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    background: #D97706;
    color: #1a1a2e;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.3);
}

.about-badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
}

.about-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(91, 44, 111, 0.1);
    border-bottom: 1px solid rgba(91, 44, 111, 0.1);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #5B2C6F;
    line-height: 1.2;
}

.about-stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- GALLERY ---------- */
.gallery {
    padding: 7rem 0;
    background: #fefefe;
}

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

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    min-height: 380px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    min-height: 220px;
}

.gallery-item--wide {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
    min-height: 260px;
}

/* ---------- REVIEWS ---------- */
.reviews {
    padding: 7rem 0;
    background: linear-gradient(135deg, #2a1538 0%, #3D1D52 50%, #2a1538 100%);
}

.reviews .section-title {
    color: #fff;
}

.reviews .section-tag {
    color: #FDE68A;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FDE68A;
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(255,255,255,0.3) 40px,
            rgba(255,255,255,0.3) 41px
        );
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
}

.cta-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(26, 26, 46, 0.75);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 7rem 0;
    background: #fefefe;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(91, 44, 111, 0.08), rgba(91, 44, 111, 0.04));
    border-radius: 12px;
    color: #5B2C6F;
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.5;
}

.contact-link {
    color: #5B2C6F;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #D97706;
}

/* Contact Form */
.contact-form-wrap {
    background: #fff;
    border: 1px solid rgba(91, 44, 111, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 16px 40px rgba(91, 44, 111, 0.08);
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a1a2e;
    background: #f8f6fb;
    border: 1.5px solid rgba(91, 44, 111, 0.12);
    border-radius: 10px;
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus {
    border-color: #5B2C6F;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(91, 44, 111, 0.08);
}

.form-input::placeholder {
    color: #aaa;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    color: #166534;
    font-weight: 500;
    font-size: 0.9375rem;
}

.form-success svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #1a1a2e;
    padding: 4rem 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-logo svg {
    color: #D97706;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #FDE68A;
}

.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-link:hover {
    color: #FDE68A;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

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

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

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

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

    .reviews-grid .review-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.25rem;
        box-shadow: -8px 0 30px rgba(0,0,0,0.15);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1.0625rem;
    }

    .nav-cta {
        margin-top: 0.5rem;
    }

    .hero-content {
        padding: 7rem 1.5rem 5rem;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .services {
        padding: 5rem 0;
    }

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

    .about {
        padding: 5rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-accent {
        right: 0;
        bottom: -1.5rem;
    }

    .about-badge {
        left: 0;
    }

    .gallery {
        padding: 5rem 0;
    }

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

    .gallery-item--large {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 260px;
    }

    .gallery-item--wide {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 200px;
    }

    .review-card:not(:last-child) {
        max-width: 100%;
    }

    .reviews-grid .review-card:last-child {
        max-width: 100%;
    }

    .reviews {
        padding: 5rem 0;
    }

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

    .cta {
        padding: 5rem 0;
    }

    .contact {
        padding: 5rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.125rem;
    }

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

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

    .hero-details {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

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

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

    .about-stats {
        flex-direction: column;
        gap: 1.25rem;
    }

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

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: 1;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }
}

/* ---------- MOBILE OVERLAY ---------- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}
