:root {
    --accent: #deba62;
    --accent-light: #e8cc85;
    --accent-dark: #c4a050;
    --bg: #0a0a0a;
    --surface: #141414;
    --surface-light: #1a1a1a;
    --text: #f5f5f5;
    --muted: #999999;
    --border: #2a2a2a;
    --text-dark: #0a0a0a;
    --bg-light: #f8f6f1;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --shadow-card: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-card-hover: 0 8px 32px rgba(222,186,98,0.15);
    --shadow-btn: 0 4px 16px rgba(222,186,98,0.3);
    --shadow-btn-hover: 0 6px 24px rgba(222,186,98,0.5);
    --shadow-nav: 0 2px 12px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
    width: min(100% - 3rem, 1200px);
    margin-inline: auto;
}
.container.narrow { max-width: 800px; }

.eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.15;
}
h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
}
.section-dark { background: var(--bg); color: var(--text); }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; }
.section-light .section-header p { color: #444; }

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
    box-shadow: var(--shadow-nav);
    border-color: var(--border);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    min-height: 86px;
}
.logo img {
    width: 170px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.logo:hover img { transform: scale(1.02); }
.footer-col img {
    width: 170px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.main-nav { display: flex; align-items: center; }
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
    padding: 0.25rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link:focus-visible::after { width: 100%; }

.phone-pill {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--text-dark);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.875rem;
    box-shadow: var(--shadow-btn);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.phone-pill:hover, .phone-pill:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
    background: var(--accent-light);
}

.menu-toggle { display: none; }
.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; }
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Hero */
.hero {
    min-height: 100svh;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 4rem;
}
.hero-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    z-index: 0;
}
.hero-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.72);
    z-index: 1;
}
.hero-image-wrap { overflow: hidden; }
.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-image-wrap:nth-child(2) img { animation-delay: -5s; }
.hero-image-wrap:nth-child(3) img { animation-delay: -10s; }
.hero-image-wrap:nth-child(4) img { animation-delay: -15s; }
@keyframes heroZoom { to { transform: scale(1.15); } }

.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 30%, rgba(222,186,98,0.12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(222,186,98,0.08), transparent 45%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
}
.hero-sub {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--muted);
    max-width: 640px;
    margin: 1.25rem auto 0;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2.5rem;
}
.pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(222,186,98,0.25);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--accent);
    color: var(--text-dark);
    box-shadow: var(--shadow-btn);
}
.btn-primary:hover, .btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
    background: var(--accent-light);
}
.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn-outline:hover, .btn-outline:focus-visible {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-2px);
}
.btn-full { width: 100%; }

.btn-pulse { animation: pulse 2.5s ease-in-out infinite; }
.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.btn-facebook:hover,
.btn-facebook:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(24, 119, 242, 0.4);
    filter: brightness(1.08);
}
.btn-facebook svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(222,186,98,0.3); }
    50% { box-shadow: 0 4px 28px rgba(222,186,98,0.55); }
}

/* Stats */
.stats-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.stat {
    text-align: center;
    padding: 1rem;
}
.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.stat-label {
    display: block;
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.service-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    isolation: isolate;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(12,24,40,0.65), rgba(12,24,40,0.88));
    border-radius: var(--radius-lg);
    z-index: -1;
}
.service-card:hover, .service-card:focus-within {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(222,186,98,0.45);
}
.service-icon {
    color: var(--accent);
    margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: 0.75rem; color: #fff; font-size: 1.25rem; }
.service-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* Why choose us */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.split-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    transition: transform 0.5s ease;
}
.split-image:hover img { transform: scale(1.03); }
.split-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--accent);
    color: var(--text-dark);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.badge-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}
.badge-text { font-size: 0.8rem; font-weight: 600; }

.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.check {
    flex: 0 0 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface);
    color: var(--accent);
    margin-top: 0.25rem;
}
.section-light .check { background: #e8e4db; }
.check.gold { background: var(--accent); color: var(--text-dark); }
.feature-list h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.feature-list p { color: #444; font-size: 0.95rem; }

/* Spotlight */
.spotlight { background: linear-gradient(135deg, #1f1b14 0%, var(--surface) 100%); }
.spotlight-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(20,20,20,0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-card);
}
.spotlight-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.spotlight-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.spotlight-image:hover img { transform: scale(1.03); }
.spotlight-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.spotlight-list li { display: flex; gap: 1rem; align-items: flex-start; }
.spotlight-list h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.spotlight-list p { color: var(--muted); font-size: 0.92rem; }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.gallery-thumb {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: var(--surface);
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.gallery-thumb:hover, .gallery-thumb:focus-visible {
    border-color: var(--accent);
    transform: translateY(-4px);
}
.gallery-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-thumb:hover img, .gallery-thumb:focus-visible img { transform: scale(1.08); }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.96);
    padding: 2rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.lightbox-close, .lightbox-nav {
    position: absolute;
    color: var(--accent);
    font-size: 3rem;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(222,186,98,0.2); transform: scale(1.1); }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 760px;
    margin: 0 auto;
}
.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.team-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--accent);
    color: var(--text-dark);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
}
.team-card h3 {
    margin-bottom: 0.25rem;
    color: var(--text);
}
.team-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.team-card p { color: var(--muted); font-size: 0.95rem; }

/* Reviews */
.review-subtitle {
    color: var(--accent) !important;
    font-weight: 600;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: rgba(222,186,98,0.3); }
.stars { color: var(--accent); font-size: 1.2rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.review-card blockquote {
    font-style: italic;
    color: var(--text);
    margin: 0 0 1rem;
    line-height: 1.55;
}
.review-card cite { color: var(--muted); font-size: 0.9rem; font-style: normal; font-weight: 600; }

/* Coverage */
.coverage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.coverage-pill {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Contact */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-block:hover { border-color: var(--accent); transform: translateY(-3px); }
.contact-icon { color: var(--accent); flex: 0 0 28px; margin-top: 0.2rem; }
.contact-block h3 { font-size: 1rem; margin-bottom: 0.2rem; color: var(--text); }
.contact-block p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.link-hint { font-size: 0.8rem; color: var(--accent); font-weight: 500; }

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    color: var(--text);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(222,186,98,0.18);
}
.form-group input[aria-invalid="true"] { border-color: #d64541; }

.honeypot { position: absolute; left: -9999px; }

.success-banner {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    background: var(--accent);
    color: var(--text-dark);
    padding: 1rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    font-weight: 600;
    text-align: center;
    min-width: min(90vw, 420px);
}
.success-banner[hidden] { display: none; }

/* Footer */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-about { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.footer-col h3 { color: var(--text); font-size: 1.1rem; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--muted); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-col p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.5rem; }
.footer-col a { color: var(--muted); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }
.company-number { font-size: 0.85rem !important; color: #666 !important; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--accent);
    display: grid;
    place-items: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-links a:hover { background: var(--accent); color: var(--text-dark); transform: translateY(-3px); }
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: #666;
}
.footer-bottom a { color: #666; transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--accent); }

/* Sticky call */
.sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: var(--accent);
    color: var(--text-dark);
    text-align: center;
    padding: 0.85rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    display: none;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page hero */
.page-hero {
    padding-top: 150px;
    padding-bottom: 3rem;
    text-align: center;
    background: var(--bg);
}
.privacy-content { display: flex; flex-direction: column; gap: 2rem; }
.privacy-content h2 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.privacy-content p { color: #333; margin-bottom: 0.75rem; }
.privacy-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.75rem; }
.privacy-content li { color: #333; margin-bottom: 0.35rem; }

/* Focus */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

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

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        height: 100dvh;
        width: min(320px, 80vw);
        max-width: 320px;
        background: var(--bg);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-nav);
        border-left: 1px solid var(--border);
        align-items: flex-start;
        overflow-y: auto;
        z-index: 1001;
    }
    .nav-menu.open { transform: translateX(0); }
    .menu-toggle { display: grid; place-items: center; width: 44px; height: 44px; z-index: 1002; }
    .menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
    .menu-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
    .menu-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 0; }
    .main-nav { order: 1; }
    .nav-wrap { gap: 1rem; }
    .logo img { width: 150px; height: auto; max-height: 60px; }
    .phone-pill { font-size: 0.8rem; padding: 0.4rem 0.75rem; }
    .split-section, .contact-wrap, .spotlight-inner { grid-template-columns: 1fr; }
    .split-image { order: -1; }
    .spotlight-image { order: -1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
}

@media (max-width: 640px) {
    .hero-content { text-align: left; }
    .hero-cta { justify-content: flex-start; }
    .trust-pills { justify-content: flex-start; }
    .hero-grid::after { background: rgba(10,10,10,0.78); }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .spotlight-inner { padding: 1.5rem; }
    .btn { padding: 0.75rem 1.25rem; font-size: 0.95rem; }
    .sticky-call { display: block; }
    body { padding-bottom: 50px; }
    .split-badge { left: 1rem; bottom: 1rem; padding: 0.75rem 1rem; }
}

@media (max-width: 380px) {
    .phone-pill { font-size: 0.75rem; padding: 0.35rem 0.6rem; }
    h1 { font-size: 1.75rem; }
}
