/* ============================================
   Kapsalon Mallory — Stylesheet
   ============================================ */

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

:root {
    --cream: #F5F0EB;
    --warm-white: #FAF8F5;
    --charcoal: #1A1A1A;
    --soft-black: #2C2826;
    --gold: #C4A265;
    --gold-light: #D4B87A;
    --gold-dark: #A88A50;
    --muted: #8A8078;
    --border: rgba(196,162,101,0.2);
    --danger: #C0392B;
    --success: #27AE60;
    --info: #2980B9;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--sans);
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 24px 48px;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
}
nav.scrolled {
    background: rgba(250,248,245,0.88);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    padding: 16px 48px;
    box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
    font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--charcoal); text-decoration: none;
}
nav:not(.scrolled) .nav-logo { color: #fff; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
    font-size: 0.8rem; font-weight: 400; letter-spacing: 0.12em;
    text-transform: uppercase; text-decoration: none;
    color: var(--charcoal); position: relative; padding-bottom: 4px;
}
nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; text-decoration: none;
    padding: 12px 28px; border: 1px solid var(--gold);
    color: var(--charcoal);
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
nav:not(.scrolled) .nav-cta { color: #fff; border-color: rgba(255,255,255,0.4); }
.nav-cta:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ---- HAMBURGER ---- */
.hamburger {
    display: none; flex-direction: column; gap: 6px;
    cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { width: 28px; height: 1.5px; background: var(--charcoal); transition: all 0.3s; }
nav:not(.scrolled) .hamburger span { background: #fff; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- HERO ---- */
.hero {
    height: 100vh; min-height: 700px; position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--charcoal);
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.4) 0%, rgba(26,26,26,0.15) 50%, rgba(196,162,101,0.1) 100%),
        url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=80') center/cover no-repeat;
    transform: scale(1.1);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
    position: relative; z-index: 2; text-align: center; color: #fff;
    max-width: 900px; padding: 0 24px;
}
.hero-eyebrow {
    font-size: 0.7rem; font-weight: 400; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--gold-light); margin-bottom: 28px;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 1s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-title {
    font-family: var(--serif); font-size: clamp(3.5rem,8vw,7rem);
    font-weight: 300; line-height: 1.05; letter-spacing: 0.03em;
    margin-bottom: 24px; opacity: 0; transform: translateY(40px);
    animation: fadeUp 1.2s 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--gold-light); }
.hero-subtitle {
    font-size: 1rem; font-weight: 200; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7); margin-bottom: 48px;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 1s 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-buttons {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 1s 1s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeUp 1s 1.4s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-scroll span {
    font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- BUTTONS ---- */
.btn-primary, .btn-submit {
    display: inline-block; padding: 16px 40px; background: var(--gold); color: #fff;
    font-family: var(--sans); font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
    border: none; cursor: pointer; transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.btn-primary:hover, .btn-submit:hover {
    transform: translateY(-2px); box-shadow: 0 12px 40px rgba(196,162,101,0.35);
}
.btn-secondary {
    display: inline-block; padding: 16px 40px; background: transparent; color: #fff;
    font-family: var(--sans); font-size: 0.75rem; font-weight: 400;
    letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3); cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-dark {
    display: inline-block; padding: 18px 52px; background: var(--charcoal); color: #fff;
    font-family: var(--sans); font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1); border: none; cursor: pointer;
}
.btn-dark:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 16px 48px rgba(196,162,101,0.3); }
.btn-sm {
    padding: 10px 24px; font-size: 0.7rem;
}
.btn-outline {
    display: inline-block; padding: 12px 28px; background: transparent;
    color: var(--gold); border: 1px solid var(--gold);
    font-family: var(--sans); font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
    cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-danger { background: var(--danger); }
.btn-danger:hover { background: #a93226; box-shadow: 0 8px 30px rgba(192,57,43,0.3); }

/* ---- MARQUEE ---- */
.marquee-section { background: var(--gold); padding: 18px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: flex; animation: marquee 25s linear infinite; }
.marquee-text {
    font-family: var(--serif); font-size: 1rem; font-weight: 400;
    letter-spacing: 0.15em; text-transform: uppercase; color: #fff; padding: 0 48px; flex-shrink: 0;
}
.marquee-dot {
    width: 5px; height: 5px; background: rgba(255,255,255,0.4);
    border-radius: 50%; flex-shrink: 0; align-self: center;
}

/* ---- SECTIONS ---- */
section { padding: 140px 48px; }
.section-label {
    font-size: 0.65rem; font-weight: 500; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.section-title {
    font-family: var(--serif); font-size: clamp(2.2rem,4.5vw,3.8rem);
    font-weight: 300; line-height: 1.15; color: var(--soft-black); margin-bottom: 24px;
}
.section-text {
    font-size: 1.05rem; font-weight: 300; line-height: 1.8;
    color: var(--muted); max-width: 560px;
}

/* ---- ABOUT ---- */
.about-grid {
    max-width: 1200px; margin: 0 auto; display: grid;
    grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image-wrapper { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.about-image-wrapper::before {
    content: ''; position: absolute; top: -20px; left: -20px;
    width: 100%; height: 100%; border: 1px solid var(--border); z-index: 0;
    transition: all 0.6s cubic-bezier(0.22,1,0.36,1);
}
.about-image-wrapper:hover::before { top: -10px; left: -10px; }
.about-image {
    width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1;
    transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.about-image-wrapper:hover .about-image { transform: scale(1.03); }
.about-quote {
    font-family: var(--serif); font-size: 1.6rem; font-style: italic;
    font-weight: 300; color: var(--soft-black); line-height: 1.5;
    margin-top: 40px; padding-left: 24px; border-left: 2px solid var(--gold);
}

/* ---- SERVICES ---- */
.services { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.services::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(196,162,101,0.06) 0%, transparent 70%);
}
.services .section-title { color: #fff; }
.services-header { max-width: 1200px; margin: 0 auto 80px; text-align: center; }
.services-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.service-card {
    background: rgba(255,255,255,0.03); padding: 48px 36px; position: relative;
    overflow: hidden; cursor: pointer; transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
    border: 1px solid rgba(255,255,255,0.05);
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.service-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2rem; margin-bottom: 24px; display: block; }
.service-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 16px; color: #fff; }
.service-desc { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.service-price { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; color: var(--gold-light); }

/* ---- GALLERY ---- */
.ambiance { background: var(--cream); }
.ambiance-inner { max-width: 1200px; margin: 0 auto; }
.ambiance-header { text-align: center; margin-bottom: 80px; }
.gallery-grid {
    display: grid; grid-template-columns: repeat(12,1fr);
    grid-template-rows: auto auto; gap: 16px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: 1/6; aspect-ratio: 4/5; }
.gallery-item:nth-child(2) { grid-column: 6/10; aspect-ratio: 3/4; }
.gallery-item:nth-child(3) { grid-column: 10/13; aspect-ratio: 3/4; }
.gallery-item:nth-child(4) { grid-column: 1/5; aspect-ratio: 1; }
.gallery-item:nth-child(5) { grid-column: 5/9; aspect-ratio: 1; }
.gallery-item:nth-child(6) { grid-column: 9/13; aspect-ratio: 4/3; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.6) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.5s; display: flex; align-items: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: var(--serif); font-size: 1.1rem; color: #fff; font-weight: 300; }

/* ---- REVIEWS ---- */
.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; flex-wrap: wrap; gap: 24px; }
.reviews-number { font-family: var(--serif); font-size: 4rem; font-weight: 300; color: var(--gold); line-height: 1; }
.reviews-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 4px; }
.reviews-count { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.review-card {
    background: #fff; padding: 40px 32px; position: relative;
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1); border: 1px solid rgba(0,0,0,0.04);
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.review-card::before {
    content: '"'; font-family: var(--serif); font-size: 5rem;
    color: var(--gold); opacity: 0.15; position: absolute; top: 8px; left: 24px; line-height: 1;
}
.review-text { font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--soft-black); margin-bottom: 24px; position: relative; z-index: 1; }
.review-author { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.review-date { font-size: 0.75rem; color: var(--muted); opacity: 0.6; margin-top: 4px; }

/* ---- HOURS & CONTACT ---- */
.hours { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.hours .section-title { color: #fff; }
.hours-inner {
    max-width: 1000px; margin: 0 auto; display: grid;
    grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
}
.hours-row {
    display: flex; justify-content: space-between; padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07); transition: all 0.3s;
}
.hours-row:hover { padding-left: 8px; border-bottom-color: var(--gold); }
.hours-day { font-weight: 300; font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.hours-time { font-weight: 400; font-size: 0.95rem; color: #fff; }
.hours-time.closed { color: rgba(255,255,255,0.3); font-style: italic; }
.contact-info { margin-top: 48px; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.contact-item:hover { color: var(--gold-light); }
.contact-item svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.contact-item a { color: inherit; text-decoration: none; }

/* ---- CTA ---- */
.cta-section { padding: 180px 48px; text-align: center; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--cream), var(--warm-white)); }
.cta-section::before, .cta-section::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid var(--border);
}
.cta-section::before { width: 600px; height: 600px; opacity: 0.5; }
.cta-section::after { width: 400px; height: 400px; opacity: 0.3; }
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-family: var(--serif); font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 300; color: var(--soft-black); margin-bottom: 20px; line-height: 1.1; }
.cta-title em { font-style: italic; color: var(--gold); }
.cta-text { font-size: 1.05rem; font-weight: 300; color: var(--muted); margin-bottom: 48px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ---- FORMS ---- */
.form-section { background: var(--cream); }
.form-container { max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 28px; }
.form-group label {
    display: block; font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 10px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 16px 20px;
    font-family: var(--sans); font-size: 0.95rem;
    background: #fff; border: 1px solid rgba(0,0,0,0.08);
    color: var(--charcoal); transition: all 0.3s;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,162,101,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---- ALERTS ---- */
.alert {
    padding: 16px 24px; margin-bottom: 28px; font-size: 0.9rem;
    font-weight: 400; border-left: 4px solid;
}
.alert-success { background: #eafaf1; border-color: var(--success); color: #1e8449; }
.alert-error { background: #fdedec; border-color: var(--danger); color: #922b21; }
.alert-info { background: #ebf5fb; border-color: var(--info); color: #1a5276; }

/* ---- VOUCHER DISPLAY ---- */
.voucher-card {
    background: linear-gradient(135deg, var(--charcoal), #2C2826);
    color: #fff; padding: 48px; text-align: center;
    position: relative; overflow: hidden; max-width: 500px; margin: 40px auto;
}
.voucher-card::before {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(196,162,101,0.15), transparent);
}
.voucher-card .voucher-brand {
    font-family: var(--serif); font-size: 1.8rem; font-weight: 300;
    letter-spacing: 0.1em; margin-bottom: 8px;
}
.voucher-card .voucher-code {
    font-size: 1.6rem; font-weight: 600; letter-spacing: 0.15em;
    color: var(--gold); margin: 24px 0;
}
.voucher-card .voucher-amount {
    font-family: var(--serif); font-size: 3rem; font-weight: 300;
    color: var(--gold-light);
}
.voucher-card .voucher-valid {
    font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 20px;
}

/* ---- FOOTER ---- */
footer { background: var(--charcoal); color: rgba(255,255,255,0.4); padding: 80px 48px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; letter-spacing: 0.1em; color: #fff; margin-bottom: 16px; }
.footer-tagline { font-size: 0.85rem; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.35); }
.footer-heading { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; font-weight: 300; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 16px; margin-top: 24px; }
.footer-social a {
    width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; font-size: 0.75rem;
}

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(60px); transition: all 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: all 1s cubic-bezier(0.22,1,0.36,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ---- PAGE HEADER (non-hero pages) ---- */
.page-header {
    padding: 160px 48px 80px; text-align: center;
    background: var(--charcoal); color: #fff;
}
.page-header .section-title { color: #fff; }
.page-header .section-text { color: rgba(255,255,255,0.5); margin: 0 auto; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    section { padding: 100px 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .reviews-grid { grid-template-columns: repeat(2,1fr); }
    .hours-inner { grid-template-columns: 1fr; gap: 60px; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-item:nth-child(n) { grid-column: auto; aspect-ratio: 1; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    nav { padding: 20px 24px; }
    .hamburger { display: flex; }
    .nav-links, .nav-cta { display: none; }
    .nav-links.active {
        display: flex; flex-direction: column; position: fixed;
        top: 0; left: 0; right: 0; bottom: 0; background: var(--warm-white);
        justify-content: center; align-items: center; gap: 32px; z-index: 999;
    }
    .nav-links.active a { color: var(--charcoal) !important; font-size: 1.2rem; }
    section { padding: 80px 20px; }
    .services-grid, .reviews-grid, .gallery-grid { grid-template-columns: 1fr; }
    .reviews-header { flex-direction: column; align-items: flex-start; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .form-row { grid-template-columns: 1fr; }
    .page-header { padding: 120px 24px 60px; }
}
