/* ── Design Tokens ── */
:root {
    --black: #08080c;
    --black-light: #0f0f16;
    --black-card: #14141c;
    --white: #ffffff;
    --white-muted: #9ca3b4;
    --blue: #2563eb;
    --blue-bright: #3b82f6;
    --blue-glow: rgba(37, 99, 235, 0.55);
    --blue-glow-soft: rgba(59, 130, 246, 0.15);
    --platinum: #c8d0dc;
    --gold: #c9a962;
    --gold-soft: rgba(201, 169, 98, 0.12);
    --border: rgba(255, 255, 255, 0.07);
    --border-bright: rgba(255, 255, 255, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --section-spacing: 10rem;
    --font: 'Inter', system-ui, sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium:
        0 4px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    --shadow-card-hover:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(37, 99, 235, 0.08),
        0 0 0 1px rgba(59, 130, 246, 0.15) inset;
}

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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


body {
    font-family: var(--font);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
    background: rgba(37, 99, 235, 0.35);
    color: var(--white);
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Typography ── */
h1, h2, h3 {
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    letter-spacing: -0.02em;
}

h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    margin: 1.25rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.7;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--white-muted);
    font-size: 1.05rem;
    margin-top: 0.75rem;
    max-width: 540px;
    line-height: 1.75;
    font-weight: 400;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
    transition:
        transform 0.35s var(--ease-out-expo),
        box-shadow 0.4s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #2d6ae8 0%, var(--blue) 50%, #1d4ed8 100%);
    color: var(--white);
    box-shadow:
        0 0 20px var(--blue-glow),
        0 0 60px rgba(37, 99, 235, 0.25),
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 -1px 0 rgba(0, 0, 0, 0.1) inset;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6 0%, var(--blue-bright) 50%, #2563eb 100%);
    transform: translateY(-3px);
    box-shadow:
        0 0 35px var(--blue-glow),
        0 0 80px rgba(59, 130, 246, 0.4),
        0 12px 32px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.08);
}

.btn-secondary:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue-bright);
    box-shadow: 0 0 30px var(--blue-glow-soft);
    transform: translateY(-3px);
}

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

/* ── Header / Nav ── */
.site-header {
    position: relative;
    z-index: 100;
    padding-top: env(safe-area-inset-top, 0);
    background: rgba(8, 8, 12, 0.72);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0.85rem 1.5rem 0.85rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: auto;
    width: 160px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
    gap: clamp(0.65rem, 1.2vw, 1.35rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    flex-shrink: 0;
}

.nav-links a:not(.btn-nav) {
    position: relative;
    font-weight: 500;
    color: var(--white-muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: clamp(0.65rem, 0.55rem + 0.35vw, 0.78rem);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.4s var(--ease-out-expo), left 0.4s var(--ease-out-expo);
}

.nav-links a:not(.btn-nav):hover {
    color: var(--white);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
    left: 0;
}

.btn-nav {
    padding: 0.55rem 1.1rem;
    font-size: clamp(0.7rem, 0.6rem + 0.3vw, 0.82rem);
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

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

.nav-toggle {
    display: none;
    position: relative;
    z-index: 102;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border-bright);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-toggle:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(37, 99, 235, 0.08);
}

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-out-expo), opacity 0.25s ease;
}

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

.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: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/Prestige Hero.jpeg');
    background-size: cover;
    background-position: 60% center;
    transform: scale(1.08);
    animation: heroKenBurns 20s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
    from { transform: scale(1.08); }
    to { transform: scale(1.14); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        90deg,
        rgba(5, 8, 15, 0.94) 0%,
        rgba(5, 8, 15, 0.78) 38%,
        rgba(5, 8, 15, 0.3) 70%,
        rgba(5, 8, 15, 0.12) 100%
      );
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 20%, rgba(201, 169, 98, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    margin: 0;
    padding: 4rem 2rem 4rem 5rem;
    text-align: left;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--platinum);
    margin-bottom: 1.25rem;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    border: 1px solid rgba(201, 169, 98, 0.25);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 24px rgba(201, 169, 98, 0.08);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.1s both;
}

.hero h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 0.95;
    font-weight: 800;
    max-width: 700px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
    animation: fadeUp 0.9s var(--ease-out-expo) 0.25s both;
}

.hero-result {
    color: #3b82f6;
    font-weight: 700;
    margin: 1rem 0 2rem;
    animation: fadeUp 0.9s var(--ease-out-expo) 0.4s both;
}

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

.hero h1 span {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 2rem 0;
    max-width: 550px;
    animation: fadeUp 0.9s var(--ease-out-expo) 0.55s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeUp 0.9s var(--ease-out-expo) 0.7s both;
}

.hero-trust {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    color: white;
    font-weight: 600;
    flex-wrap: wrap;
    animation: fadeUp 0.9s var(--ease-out-expo) 0.85s both;
}

.hero-trust span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.hero-trust span:hover {
    border-color: rgba(201, 169, 98, 0.3);
    background: rgba(201, 169, 98, 0.06);
}



/* ── Sections ── */
section {
    position: relative;
    padding: var(--section-spacing) 0;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 800px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
    opacity: 0.6;
}

.hero::before,
.cta::before {
    display: none;
}

section + section {
    margin-top: 3rem;
}

/* ── Featured ── */
.featured {
    overflow-x: clip;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(37, 99, 235, 0.06) 0%, transparent 60%),
        var(--black);
}

.featured-header {
    margin-bottom: 3rem;
}

.featured-showcase {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 0;
}

.featured-showcase .featured-card {
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
}

.featured-showcase .featured-card::before {
    display: none;
}

.featured-showcase .featured-card:hover {
    transform: none;
    box-shadow: none;
}

.featured-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.featured-showcase .featured-card img {
    max-height: 85vh;
    object-fit: contain;
    object-position: center;
}

.featured-showcase .featured-card:hover img {
    transform: none;
}

.featured-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.featured-list li {
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--platinum);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    letter-spacing: 0.02em;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.featured-list li:hover {
    border-color: rgba(201, 169, 98, 0.25);
    background: var(--gold-soft);
}

/* ── Trust Bar ── */
.trust-bar {
    padding: 3rem 0;
    background: var(--black-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 0.95rem;
    margin: 0.75rem 0 0.35rem;
}

.trust-item p {
    color: var(--white-muted);
    font-size: 0.85rem;
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: var(--blue-bright);
    box-shadow: 0 0 20px var(--blue-glow-soft);
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

section h2 {
    text-align: center;
}

section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ── Before / After Gallery ── */
.before-after {
    background: var(--black);
}

.before-after .container {
    max-width: 1320px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-example {
    margin: 0;
}

.gallery-example-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--platinum);
}

.gallery-pair {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.gallery-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-bright);
    background: var(--black-card);
    box-shadow: var(--shadow-premium);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: filter 0.5s ease;
}

.gallery-card--square {
    aspect-ratio: 1 / 1;
}

.gallery-card--square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-card--composite img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.gallery-before img {
    filter: brightness(0.7) saturate(0.75);
}

.gallery-after img {
    filter: brightness(1.05) saturate(1.1);
}

.gallery-card:hover.gallery-before img {
    filter: brightness(0.85) saturate(0.9);
}

.gallery-card:hover.gallery-after img {
    filter: brightness(1.1) saturate(1.15);
}

.gallery-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--border);
}

.gallery-after .gallery-label {
    color: var(--blue-bright);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 15px var(--blue-glow-soft);
}

/* ── Service Cards ── */
.services {
    background: var(--black-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%), var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    transition:
        transform 0.4s var(--ease-out-expo),
        border-color 0.3s ease,
        box-shadow 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.service-card h4 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: var(--shadow-card-hover);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--blue-bright);
    box-shadow: 0 0 18px var(--blue-glow-soft);
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-card p {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Why Choose Us ── */
.why-choose-us {
    background: var(--black-light);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.02) 0%, transparent 60%), var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    box-shadow: var(--shadow-premium);
    transition:
        border-color 0.3s ease,
        box-shadow 0.4s ease,
        transform 0.35s var(--ease-out-expo);
}

.feature-card:hover {
    border-color: rgba(201, 169, 98, 0.2);
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.06), var(--shadow-premium);
    transform: translateY(-3px);
}

.check {
    color: var(--blue-bright);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.feature-card strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.feature-card p {
    color: var(--white-muted);
    font-size: 0.85rem;
}

/* ── Our Simple Process ── */
.our-process {
    background: var(--black);
}

.our-process .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

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

.process-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%), var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-premium);
    transition:
        transform 0.4s var(--ease-out-expo),
        border-color 0.3s ease,
        box-shadow 0.4s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: var(--shadow-card-hover);
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.25rem;
    border-radius: 14px;
    color: var(--blue-bright);
    background: var(--blue-glow-soft);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.process-card:hover .process-icon {
    background: rgba(59, 130, 246, 0.22);
    border-color: rgba(59, 130, 246, 0.35);
}

.process-step {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.process-card p {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ── Service Areas ── */
.service-areas {
    background: var(--black-light);
}

.service-areas-map {
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-bright);
    box-shadow: var(--shadow-premium);
    line-height: 0;
}

.service-areas-map iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
    filter: grayscale(0.35) contrast(1.05) brightness(0.85);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.area-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.02) 0%, transparent 60%), var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-premium);
    transition:
        transform 0.35s var(--ease-out-expo),
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease;
}

.area-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-card-hover);
    color: var(--blue-bright);
}

/* ── CTA ── */
.cta {
    position: relative;
    background:
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(37, 99, 235, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 30% at 50% 0%, rgba(201, 169, 98, 0.05) 0%, transparent 50%),
        var(--black-light);
    text-align: center;
    overflow: hidden;
}

.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
}

.cta h2 {
    margin-bottom: 0.75rem;
}

.cta p {
    color: var(--white-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.cta .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

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

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--platinum);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-bright);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.5;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(156, 163, 180, 0.65);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.55);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(239, 68, 68, 0.55);
}

.form-status {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    text-align: center;
}

.form-status[hidden] {
    display: none;
}

.form-status.is-success {
    color: #86efac;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.form-status.is-error {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.contact-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

.form-honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ── Footer ── */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: var(--black);
}

.site-footer p {
    color: var(--white-muted);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Scroll Reveal ── */
html.js-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.75s var(--ease-out-expo),
        transform 0.75s var(--ease-out-expo);
    transition-delay: var(--reveal-delay, 0ms);
}

html.js-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Gallery Lightbox ── */
.gallery-card--interactive {
    cursor: zoom-in;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: lightboxFadeIn 0.35s ease;
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: min(1200px, 95vw);
    max-height: 90vh;
    margin: 0;
    animation: lightboxScaleIn 0.45s var(--ease-out-expo);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius);
    border: 1px solid var(--border-bright);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
    margin-top: 1rem;
    text-align: center;
    color: var(--white-muted);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-bright);
    border-radius: 50%;
    background: rgba(8, 8, 12, 0.8);
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(37, 99, 235, 0.15);
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lightboxScaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-bg,
    .hero-eyebrow,
    .hero h1,
    .hero-result,
    .hero-subtitle,
    .hero-actions,
    .hero-trust {
        animation: none;
    }

    html.js-ready .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .lightbox-backdrop,
    .lightbox-content {
        animation: none;
    }

    .hero-bg {
        transform: scale(1.08);
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .nav {
        padding: 0.75rem 1rem 0.75rem 0.5rem;
        gap: 0.75rem;
    }

    .logo img {
        width: 130px;
    }

    .nav-links {
        gap: 0.55rem;
    }

    .btn-nav {
        padding: 0.5rem 0.9rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        background: var(--black);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        position: relative;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 101;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        width: min(320px, 88vw);
        height: 100dvh;
        padding: 5.5rem 1.5rem 2rem;
        background: rgba(8, 8, 12, 0.98);
        backdrop-filter: blur(24px) saturate(1.4);
        -webkit-backdrop-filter: blur(24px) saturate(1.4);
        border-left: 1px solid var(--border-bright);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
        transform: translateX(100%);
        visibility: hidden;
        transition:
            transform 0.4s var(--ease-out-expo),
            visibility 0.4s;
        overflow-y: auto;
    }

    .nav-links.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 1rem;
    }

    .nav-links a:not(.btn-nav) {
        display: block;
        padding: 1rem 0;
        font-size: 0.85rem;
        white-space: normal;
    }

    .nav-links a:not(.btn-nav)::after {
        display: none;
    }

    .btn-nav {
        width: 100%;
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
        text-align: center;
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 99;
        background: rgba(5, 8, 15, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s;
    }

    .nav-backdrop.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .nav-backdrop[hidden] {
        display: none;
    }

    body.nav-open {
        overflow: hidden;
    }

    .hero {
        min-height: auto;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 8, 15, 0.92) 0%,
                rgba(5, 8, 15, 0.82) 45%,
                rgba(5, 8, 15, 0.55) 100%
            );
    }

    .hero-bg {
        background-position: center center;
    }

    .hero-content {
        padding: 3rem 1.25rem 3rem;
        text-align: center;
        max-width: none;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 9vw, 3.25rem);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
        padding: 0.4rem 0.85rem;
    }

    .hero-result {
        font-size: 0.95rem;
        margin: 0.75rem 0 1.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 1.25rem auto;
    }

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

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

    .hero-trust {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .hero-trust span {
        text-align: center;
        font-size: 0.8rem;
    }

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

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

    .featured-showcase .featured-card img {
        max-height: 55vh;
    }

    .featured-list {
        flex-direction: column;
        align-items: stretch;
    }

    .featured-list li {
        text-align: center;
    }

    .service-card {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.25rem 1.35rem;
    }

    .process-card {
        padding: 1.5rem;
    }

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

    .lightbox {
        padding: 1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }

    :root {
        --section-spacing: 5rem;
    }

    section + section {
        margin-top: 1.5rem;
    }
}

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

    .logo img {
        width: 115px;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .service-areas-map iframe {
        height: 240px;
    }

    :root {
        --section-spacing: 4rem;
    }
}
