/* ============================================
   Buena Vista Hair Salon — Stylesheet
   Palette: Midnight Blue (#0a2540) + Mint (#5eead4)
   Fonts: Cormorant Garamond + Inter
   ============================================ */

/* ── Reset & Base ──────────────────────────── */
*, *::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.7;
    color: #1a2e3d;
    background-color: #fafbfc;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

ul {
    list-style: none;
}

/* ── Focus ─────────────────────────────────── */
:focus-visible {
    outline: 2px solid #5eead4;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #0a2540;
    color: #fafbfc;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 0;
    z-index: 1000;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 0;
}

/* ── Typography ────────────────────────────── */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: #0a2540;
}

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

/* ── Buttons ───────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #5eead4;
    color: #0a2540;
    border-color: #5eead4;
}
.btn-primary:hover {
    background: #3dd9c1;
    border-color: #3dd9c1;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(94, 234, 212, 0.35);
}

.btn-outline-light {
    background: transparent;
    color: #fafbfc;
    border-color: rgba(250, 251, 252, 0.6);
}
.btn-outline-light:hover {
    background: rgba(250, 251, 252, 0.1);
    border-color: #fafbfc;
}

.btn-light {
    background: #fafbfc;
    color: #0a2540;
    border-color: #fafbfc;
}
.btn-light:hover {
    background: #f0f4f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

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

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

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ── Section Headers ───────────────────────── */
.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0d9488;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: #4a6274;
    max-width: 560px;
    line-height: 1.75;
}

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

/* ── Header ────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 251, 252, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 37, 64, 0.06);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(10, 37, 64, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.logo-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0a2540;
    background: #5eead4;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a2540;
}

.logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4a6274;
}

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

.main-nav ul {
    display: flex;
    gap: 1.75rem;
}

.main-nav a:not(.btn) {
    font-size: 0.9375rem;
    font-weight: 450;
    color: #1a2e3d;
    position: relative;
    transition: color 0.25s ease;
}
.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #5eead4;
    transition: width 0.3s ease;
}
.main-nav a:not(.btn):hover {
    color: #0d9488;
}
.main-nav a:not(.btn):hover::after {
    width: 100%;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #0a2540;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger {
    position: relative;
    margin: 0 auto;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ── Hero ──────────────────────────────────── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    background: #0a2540;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    min-height: calc(100vh - 72px);
    min-height: calc(100dvh - 72px);
}

.hero-content {
    padding: 2rem 0;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5eead4;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #fafbfc;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(250, 251, 252, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.badge {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(250, 251, 252, 0.8);
    background: rgba(94, 234, 212, 0.1);
    border: 1px solid rgba(94, 234, 212, 0.25);
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

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

.hero-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: #5eead4;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
    z-index: -1;
}

/* ── Services ──────────────────────────────── */
.services {
    padding: 6rem 0;
    background: #fafbfc;
}

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

.service-card {
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.07);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 37, 64, 0.08);
    border-color: rgba(94, 234, 212, 0.3);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(94, 234, 212, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.service-icon svg {
    width: 26px;
    height: 26px;
    color: #0d9488;
}

.service-name {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
}

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

/* ── About ─────────────────────────────────── */
.about {
    padding: 6rem 0;
    background: #fff;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10, 37, 64, 0.1);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(10, 37, 64, 0.12);
    border: 4px solid #fff;
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-experience {
    position: absolute;
    top: -1rem;
    left: -1rem;
    background: #0a2540;
    color: #fafbfc;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.2);
}
.about-experience .exp-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #5eead4;
    line-height: 1;
}
.about-experience .exp-text {
    font-size: 0.8125rem;
    color: rgba(250, 251, 252, 0.75);
    line-height: 1.4;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-body {
    font-size: 1rem;
    color: #4a6274;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
    margin: 2rem 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #1a2e3d;
}

.value-icon {
    width: 20px;
    height: 20px;
    color: #0d9488;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Gallery ───────────────────────────────── */
.gallery {
    padding: 6rem 0;
    background: #fafbfc;
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.2) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.gallery-item:hover::after {
    opacity: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; min-height: 400px; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:nth-child(4) img { height: 100%; min-height: 400px; }

/* ── Testimonials ──────────────────────────── */
.testimonials {
    padding: 6rem 0;
    background: #0a2540;
}

.testimonials .section-eyebrow {
    color: #5eead4;
}

.testimonials .section-title {
    color: #fafbfc;
}

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

.testimonial-card {
    background: rgba(250, 251, 252, 0.05);
    border: 1px solid rgba(250, 251, 252, 0.08);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    background: rgba(250, 251, 252, 0.08);
    border-color: rgba(94, 234, 212, 0.2);
}

.quote-mark {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    opacity: 0.15;
    color: #5eead4;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(250, 251, 252, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.875rem;
    color: #5eead4;
    font-weight: 500;
}

/* ── CTA Banner ────────────────────────────── */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0d9488 0%, #0a2540 100%);
}

.cta-inner {
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #fafbfc;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(250, 251, 252, 0.75);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ── Contact ───────────────────────────────── */
.contact {
    padding: 6rem 0;
    background: #fff;
}

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

.contact-info .section-title {
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1rem;
    color: #4a6274;
    line-height: 1.75;
    margin-bottom: 2rem;
}

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

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

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(94, 234, 212, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 20px;
    height: 20px;
    color: #0d9488;
}

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

.contact-value {
    font-size: 0.9375rem;
    color: #4a6274;
    line-height: 1.6;
}

.contact-link {
    color: #0d9488;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}
.contact-link:hover {
    color: #0a2540;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.08);
}

/* Contact Form */
.contact-form-wrap {
    background: #fafbfc;
    border: 1px solid rgba(10, 37, 64, 0.07);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9375rem;
    color: #4a6274;
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a2e3d;
    background: #fff;
    border: 1.5px solid rgba(10, 37, 64, 0.12);
    border-radius: 8px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5eead4;
    box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

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

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    text-align: center;
    background: rgba(94, 234, 212, 0.08);
    border: 1px solid rgba(94, 234, 212, 0.25);
    border-radius: 12px;
    margin-top: 1rem;
}
.form-success svg {
    width: 40px;
    height: 40px;
    color: #0d9488;
}
.form-success p {
    font-size: 1rem;
    color: #0a2540;
    font-weight: 500;
}

/* ── Footer ────────────────────────────────── */
.site-footer {
    background: #0a2540;
    color: rgba(250, 251, 252, 0.7);
    padding: 4rem 0 0;
}

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

.footer-logo .logo-mark {
    background: rgba(94, 234, 212, 0.2);
    color: #5eead4;
}
.footer-logo .logo-name {
    color: #fafbfc;
}
.footer-logo .logo-tagline {
    color: rgba(250, 251, 252, 0.5);
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5eead4;
    margin-bottom: 1.25rem;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(250, 251, 252, 0.6);
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: #fafbfc;
}

.footer-contact p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.375rem;
}
.footer-contact a {
    color: rgba(250, 251, 252, 0.6);
    transition: color 0.2s ease;
}
.footer-contact a:hover {
    color: #5eead4;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 251, 252, 0.08);
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(250, 251, 252, 0.4);
}

/* ── Scroll Reveal ─────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-content {
        order: 1;
    }
    .hero-image {
        order: 0;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-badges {
        justify-content: center;
    }
    .hero-img-wrapper img {
        height: 500px;
    }

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

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

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 110;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: #fafbfc;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        box-shadow: -8px 0 32px rgba(10, 37, 64, 0.12);
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    .main-nav a:not(.btn) {
        font-size: 1.125rem;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 2rem;
    }
    .hero-grid {
        min-height: auto;
    }
    .hero-img-wrapper img {
        height: 360px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-row: span 1;
    }
    .gallery-item:nth-child(1) img,
    .gallery-item:nth-child(4) img {
        height: 250px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

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

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

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

    .hero-title {
        font-size: 2.125rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

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

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

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
