:root {
    color-scheme: dark;
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --header-height: 72px;
    --bg: #000000;
    --bg-soft: #0a0a0d;
    --surface: rgba(28, 28, 30, 0.92);
    --surface-2: rgba(36, 36, 38, 0.88);
    --surface-3: rgba(44, 44, 46, 0.92);
    --surface-4: rgba(58, 58, 60, 0.96);
    --glass: rgba(36, 36, 38, 0.68);
    --glass-strong: rgba(44, 44, 46, 0.82);
    --text: #f5f5f7;
    --muted: #aeaeb2;
    --muted-2: #8e8e93;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --accent: #d11224;
    --accent-strong: #ff3b4f;
    --brand-red-deep: #7f0018;
    --brand-red-soft: rgba(209, 18, 36, 0.16);
    --danger: #ff453a;
    --brand-red: #d11224;
    --system-green: #30d158;
    --system-indigo: #5e5ce6;
    --system-orange: #ff9f0a;
    --system-pink: #ff375f;
    --system-purple: #bf5af2;
    --system-teal: #64d2ff;
    --system-yellow: #ffd60a;
    --cream: #ffffff;
    --black: #000000;
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow: 0 22px 56px rgba(0, 0, 0, 0.42);
    --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.26);
}

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

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    background: #000;
    -webkit-text-size-adjust: 100%;
    scrollbar-gutter: stable;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", system-ui, sans-serif;
    font-feature-settings: "kern" 1, "liga" 1;
    background:
        radial-gradient(circle at 18% -6%, rgba(209, 18, 36, 0.16), transparent 24rem),
        radial-gradient(circle at 86% 8%, rgba(128, 0, 24, 0.12), transparent 26rem),
        linear-gradient(180deg, #000000 0%, #050507 50%, #000000 100%);
    color: var(--text);
    line-height: 1.58;
    min-height: 100dvh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.48;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.05), transparent 48%);
}

body.locked {
    overflow: hidden;
}

a {
    color: inherit;
}

a,
button,
.gallery-item {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 500;
    transform: translateY(-140%);
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--brand-red);
    color: white;
    font-weight: 900;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
    outline: 3px solid var(--brand-red);
    outline-offset: 4px;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

p,
li,
a,
h1,
h2,
h3 {
    overflow-wrap: anywhere;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: var(--safe-top);
    background: rgba(18, 18, 20, 0.74);
    -webkit-backdrop-filter: saturate(180%) blur(26px);
    backdrop-filter: saturate(180%) blur(26px);
    border-bottom: 1px solid var(--line);
}

.nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    text-decoration: none;
    white-space: nowrap;
}

.logo-mark {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex: 0 0 auto;
    border-radius: 10px;
}

.nav-links {
    justify-self: end;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(36, 36, 38, 0.82);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color 150ms ease, background 150ms ease;
    padding: 8px 12px;
    border-radius: 12px;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255,255,255,.08);
}

.nav-links a:active,
.nav-links a[aria-current="true"] {
    color: var(--text);
    background: rgba(209,18,36,.2);
}

.btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(72, 72, 74, 0.72);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    transition: background 150ms ease, border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.btn:hover {
    background: rgba(99, 99, 102, 0.84);
    border-color: var(--line-strong);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 22px rgba(0,0,0,.22);
}

.btn:active {
    transform: scale(0.98);
}

.btn.primary {
    background: var(--brand-red);
    border-color: rgba(255, 255, 255, 0.16);
    color: white;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 12px 24px rgba(209,18,36,.22);
}

.btn.primary:hover {
    background: var(--accent-strong);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 14px 28px rgba(209,18,36,.26);
}

.btn.light {
    background: rgba(242, 242, 247, 0.96);
    border-color: rgba(255,255,255,.5);
    color: #111111;
}

.btn.amazon {
    background: var(--system-orange);
    border-color: rgba(255,255,255,.15);
    color: #111111;
}

.btn.cashapp {
    background: var(--system-green);
    border-color: rgba(255,255,255,.15);
    color: #061409;
}

.social-card,
.hero-card,
.card,
.price,
.final-cta,
.steps li,
.service,
.gate-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(44,44,46,.9), rgba(28,28,30,.9));
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    backdrop-filter: blur(24px) saturate(170%);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), var(--shadow-soft);
}

.social-card {
    max-width: 760px;
    padding: 28px;
}

.social-card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #000;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.48) 46%, rgba(0,0,0,.34) 100%),
        linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.26) 62%, rgba(0,0,0,.68) 100%),
        radial-gradient(circle at 18% 28%, rgba(209,18,36,.22), transparent 28rem);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.08);
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.9;
    filter: saturate(1.16) contrast(1.08) brightness(0.86);
    pointer-events: none;
    background: #000;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    min-height: clamp(560px, 78vh, 760px);
    padding: 74px 20px 54px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 36px;
    align-items: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-red);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(209,18,36,.14);
    border: 1px solid rgba(209,18,36,.34);
}

.verified-badge {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--brand-red);
    filter: drop-shadow(0 3px 8px rgba(209,18,36,.28));
}

.verified-badge-fill {
    fill: currentColor;
}

.verified-badge-check {
    fill: none;
    stroke: white;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

h1 {
    max-width: 780px;
    font-size: clamp(3rem, 6.6vw, 5.8rem);
    line-height: 0.93;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.lede {
    max-width: 680px;
    margin-top: 22px;
    color: var(--muted);
    font-size: clamp(1.07rem, 2vw, 1.32rem);
    letter-spacing: -0.015em;
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-actions {
    margin-top: 28px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: 10px;
    background: linear-gradient(180deg, rgba(58,58,60,.95), rgba(28,28,30,.94));
    box-shadow: 0 20px 46px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-card::before {
    content: none;
    display: none;
}

.hero-card img {
    position: relative;
    z-index: 0;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 28px 28px 20px 20px;
    border: 1px solid rgba(255,255,255,.06);
}

.hero-bg-video::-webkit-media-controls,
.hero-bg-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

.hero-card-content {
    position: relative;
    z-index: 2;
    padding: 18px 12px 8px;
    display: grid;
    gap: 10px;
}

.fact-list {
    display: grid;
    gap: 0;
    color: var(--muted);
    font-size: 0.95rem;
    list-style: none;
    background: rgba(0,0,0,.18);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.fact-list li {
    padding: 12px 14px;
}

.fact-list li + li {
    border-top: 1px solid var(--line);
}

.fact-list strong {
    color: var(--text);
}

main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 20px 80px;
}

section {
    padding: 58px 0;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 92px;
}

section:last-of-type {
    border-bottom: 0;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    margin-bottom: 26px;
}

.section-head.solo {
    grid-template-columns: minmax(0, 1fr);
    max-width: 840px;
}

h2 {
    font-size: clamp(1.95rem, 4vw, 3.4rem);
    line-height: 0.97;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.section-sub {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.06rem;
}

.grid {
    display: grid;
    gap: 14px;
}

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

.grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.price {
    padding: 24px;
}

.grid.two > .card,
.grid.three > .card,
.price {
    border-radius: 20px;
}

.card h3,
.price h3,
.service h3 {
    font-size: 1.02rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.card p,
.price p,
.steps li {
    color: var(--muted);
}

.steps {
    display: grid;
    gap: 14px;
    list-style: none;
    counter-reset: step;
}

.steps li {
    position: relative;
    min-height: 78px;
    padding: 20px 20px 20px 82px;
    overflow: hidden;
    border-radius: 20px;
}

.steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--brand-red);
    color: white;
    border-radius: 14px;
    font-weight: 900;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 8px 18px rgba(209,18,36,.2);
}

.steps strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service {
    min-height: 238px;
    padding: 20px;
    display: grid;
    align-content: start;
    gap: 14px;
    border-radius: 20px;
}

.service p {
    color: var(--muted);
    font-size: 0.95rem;
}

.service-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--icon-bg, var(--accent));
    color: white;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 10px 18px rgba(0,0,0,.18);
}

.icon-purple { --icon-bg: var(--system-purple); }
.icon-pink { --icon-bg: var(--system-pink); }
.icon-red { --icon-bg: var(--accent); }
.icon-indigo { --icon-bg: var(--system-indigo); }
.icon-orange { --icon-bg: var(--system-orange); color: #111111; }
.icon-teal { --icon-bg: var(--system-teal); color: #111111; }
.icon-yellow { --icon-bg: var(--system-yellow); color: #111111; }
.icon-brand { --icon-bg: var(--brand-red); }

.service-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.price {
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 170px;
}

.amount {
    font-size: 2.28rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.045em;
    color: var(--brand-red);
}

.gallery-video {
    margin-bottom: 22px;
}

.gallery-video-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(44,44,46,.9), rgba(28,28,30,.9));
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    backdrop-filter: blur(24px) saturate(170%);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), var(--shadow-soft);
    padding: 18px;
    display: grid;
    gap: 12px;
}

.gallery-video-title {
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.gallery-video-player {
    width: 100%;
    display: block;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #000;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gallery-video-caption {
    color: var(--muted);
    font-size: 0.95rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.gallery-empty {
    grid-column: 1 / -1;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(36, 36, 38, 0.72);
    color: var(--muted);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface-2);
    border-radius: 22px;
    cursor: pointer;
    aspect-ratio: 4 / 5;
    transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
    box-shadow: var(--shadow-soft);
}

.gallery-item:hover,
.gallery-item:focus-visible {
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0,0,0,.32);
}

.gallery-item:active {
    transform: scale(0.99);
}

.gallery-item:focus-visible {
    outline: 3px solid var(--brand-red);
    outline-offset: 4px;
}

.gallery-item picture,
.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
}

.gallery-item img {
    object-fit: cover;
}

.hero-card picture,
.hero-card img {
    width: 100%;
    display: block;
}

.gallery-overlay {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
    background: rgba(28, 28, 30, 0.72);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 800;
}

.final-cta {
    margin-top: 32px;
    padding: 34px;
    color: var(--text);
}

.final-cta h3 {
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.final-cta p {
    max-width: 760px;
    margin-top: 12px;
    color: var(--muted);
}

.final-cta .button-row {
    margin-top: 22px;
}

footer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 20px 44px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.92rem;
}

#lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    background: rgba(0, 0, 0, 0.84);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(22px) saturate(150%);
    padding: 22px;
}

.lightbox-content {
    position: relative;
    max-width: min(1100px, 96vw);
    max-height: 92vh;
}

#lightbox-image {
    max-height: 92vh;
    width: auto;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    z-index: 2;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: rgba(44,44,46,.76);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    color: var(--text);
    border-radius: 14px;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
}

.lightbox-close { top: 12px; right: 12px; }
.lightbox-prev { top: 50%; left: 12px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 12px; transform: translateY(-50%); }

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(44,44,46,.72);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    backdrop-filter: blur(18px) saturate(170%);
    color: white;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 160ms ease, transform 160ms ease;
    box-shadow: var(--shadow-soft);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#gate {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background:
        radial-gradient(circle at 50% 0%, rgba(209,18,36,.16), transparent 24rem),
        rgba(0,0,0,.92);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    backdrop-filter: blur(24px) saturate(160%);
    color: var(--text);
}

.noscript {
    margin-top: 16px;
    color: var(--danger);
    font-weight: 800;
}

.gate-card {
    width: min(520px, 100%);
    padding: 28px;
    border-radius: 24px;
}

.gate-card h2 {
    margin-bottom: 12px;
}

.gate-card p {
    color: var(--muted);
}

.gate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

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

@supports not (min-height: 100dvh) {
    body {
        min-height: 100vh;
    }
}

@supports not (backdrop-filter: blur(1px)) {
    .site-header,
    .nav-links,
    .card,
    .price,
    .service,
    .steps li,
    .final-cta,
    .social-card,
    .gate-card {
        background: rgba(28,28,30,.96);
    }
}

@media (max-width: 1060px) {
    .service-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 44px;
        padding-bottom: 34px;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.62) 44%, rgba(0,0,0,.78) 100%),
            radial-gradient(circle at 50% 18%, rgba(209,18,36,.2), transparent 22rem);
    }

    .hero-bg-video {
        opacity: 0.72;
    }

    .section-head,
    .grid.two,
    .grid.three {
        grid-template-columns: 1fr;
    }

    .service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 560px) {
    .nav { padding: 10px 14px; }
    .logo-mark { width: 32px; height: 32px; }
    .nav-links { gap: 4px; font-size: 0.84rem; }
    .nav-links a { padding: 8px 10px; }

    main { padding-left: 14px; padding-right: 14px; }
    section { padding: 48px 0; }
    h1 { font-size: clamp(2.7rem, 14vw, 3.95rem); line-height: 0.95; }
    .hero-inner { padding: 34px 14px 28px; }

    .hero-actions,
    .button-row,
    .gate-actions {
        display: grid;
    }

    .btn { width: 100%; }

    .service-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .service-icon svg { width: 24px; height: 24px; }
    .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .gallery-overlay {
        left: 8px;
        right: 8px;
        bottom: 8px;
        padding: 8px 10px;
        font-size: 0.78rem;
    }
    .service-list { grid-template-columns: 1fr; }
    .card, .price, .service, .final-cta { border-radius: 18px; }
    .final-cta { padding: 24px; }
    .lightbox-content { width: 100%; }
    #lightbox-image { width: 100%; max-height: 88vh; object-fit: contain; }

    .back-to-top {
        right: 12px;
        bottom: 12px;
        min-height: 40px;
        padding: 10px 12px;
        border-radius: 999px;
        font-size: 0.78rem;
    }
}

@media (max-width: 380px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

/* ── 2026 enhancements ── */

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(44, 44, 46, 0.82);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    color: var(--text);
    cursor: pointer;
    place-items: center;
    transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.nav-toggle:hover {
    background: rgba(72, 72, 74, 0.9);
    border-color: var(--line-strong);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-icon {
    position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.48);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.nav-scrim.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.nav-scrim[hidden] {
    display: block;
}

.reveal {
    opacity: 1;
    transform: none;
}

html.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1), transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

.gallery-item img {
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.04);
}

.service,
.card,
.price {
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service:hover,
.card:hover,
.price:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

#gate.gate--hidden {
    display: none !important;
}

#lightbox.lightbox--open {
    display: flex;
}

.lightbox-meta {
    margin-top: 14px;
    display: grid;
    gap: 4px;
    text-align: center;
}

.lightbox-caption {
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.lightbox-counter {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 85;
    display: none;
    padding: 12px 16px calc(12px + var(--safe-bottom));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72) 28%, rgba(0, 0, 0, 0.92));
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    transform: translateY(110%);
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.mobile-cta.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-cta .btn {
    width: 100%;
    box-shadow: 0 14px 30px rgba(209, 18, 36, 0.28);
}

body.has-mobile-cta main {
    padding-bottom: calc(88px + var(--safe-bottom));
}

.gate-card {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(209, 18, 36, 0.18);
}

@media (max-width: 900px) {
    .nav {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        align-items: center;
    }

    .nav-toggle {
        display: grid;
        justify-self: end;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        z-index: 150;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 10px;
        margin: 0;
        padding: calc(24px + var(--safe-top)) calc(20px + var(--safe-right)) calc(24px + var(--safe-bottom)) calc(20px + var(--safe-left));
        border: 0;
        border-radius: 0;
        background: rgba(8, 8, 10, 0.94);
        -webkit-backdrop-filter: blur(28px) saturate(180%);
        backdrop-filter: blur(28px) saturate(180%);
        box-shadow: none;
        overflow: visible;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px) scale(0.98);
        transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
        pointer-events: none;
    }

    .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .nav-links a {
        white-space: normal;
        text-align: center;
        font-size: 1.12rem;
        padding: 16px 18px;
        border-radius: 16px;
    }

    section {
        scroll-margin-top: calc(var(--header-height) + var(--safe-top) + 16px);
    }

    .mobile-cta {
        display: grid;
    }

    .back-to-top {
        bottom: calc(84px + var(--safe-bottom));
    }
}

@media (max-width: 560px) {
    .nav-links a {
        font-size: 1.02rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .lightbox-close {
        top: calc(8px + var(--safe-top));
        right: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html.js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .gallery-item img,
    .service,
    .card,
    .price,
    .mobile-cta,
    .nav-links {
        transition: none;
    }
}
