:root {
    color-scheme: dark;
    --background: #050505;
    --overlay: rgba(5, 5, 5, 0.68);
    --surface: rgba(12, 12, 12, 0.72);
    --text: #f6f6f6;
    --muted: #c2c2c2;
    --accent: #e63946;
    --button-glow: rgba(255, 255, 255, 0.35);
    --button-glow-strong: rgba(230, 57, 70, 0.5);
    --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    background: var(--background);
    color: var(--text);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    color: inherit;
}

@keyframes button-sheen {
    0% {
        transform: translate3d(-120%, -50%, 0) rotate(25deg);
        opacity: 0;
    }

    35% {
        opacity: 0.6;
    }

    100% {
        transform: translate3d(140%, -50%, 0) rotate(25deg);
        opacity: 0;
    }
}

:where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button) {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        opacity 0.45s ease;
}

:where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button)::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.4), transparent 60%);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

:where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -140%;
    width: 70%;
    height: 220%;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    opacity: 0;
    transform: translate3d(0, -50%, 0) rotate(25deg);
    pointer-events: none;
}

:where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button):hover::after,
:where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button):focus-visible::after {
    opacity: 0.75;
    transform: scale(1.02);
}

:where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button):hover::before {
    opacity: 1;
    animation: button-sheen 1s ease forwards;
}

:where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button):hover,
:where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button):focus-visible {
    transform: translate3d(0, -3px, 0);
}

:where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button):focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.35);
    outline-offset: 3px;
}

:where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button):active {
    transform: translate3d(0, -1px, 0);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    :where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button) {
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    :where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button):hover,
    :where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button):focus-visible,
    :where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button):active {
        transform: none;
    }

    :where(.site-nav__cta, .hero__cta, .holiday-card__cta, .pricing-card__cta, .highlight-cta, .contact-panel__button)::before {
        animation: none !important;
    }

    .carousel__nav,
    .lightbox__close {
        transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .carousel__nav:hover,
    .carousel__nav:focus-visible,
    .carousel__nav:active {
        transform: translate3d(0, -50%, 0);
    }

    .carousel__nav::before,
    .lightbox__close::before {
        animation: none !important;
    }

    .lightbox__close:hover,
    .lightbox__close:focus-visible,
    .lightbox__close:active {
        transform: none;
    }

    .carousel__card:hover img,
    .carousel__card:focus-visible img {
        transform: none;
    }

    .cta-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 640px) {
    .cta-scroll {
        opacity: 0;
        transform: translate3d(0, 18px, 0) scale(0.97);
        will-change: transform, opacity;
    }

    .cta-scroll--visible {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

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

.video-backdrop {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -10;
}

.video-backdrop__media {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: saturate(1.05);
}

.video-backdrop__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.55);
}

.video-backdrop__poster {
    position: absolute;
    inset: 0;
    background-image: url('images/me.webp');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-backdrop.is-static .video-backdrop__media {
    display: none;
}

.video-backdrop.is-static .video-backdrop__poster {
    opacity: 1;
}

.parallax-surface {
    position: relative;
    z-index: 1;
}

.site-nav {
    position: sticky;
    top: 1rem;
    padding: 1rem clamp(1rem, 3vw, 2.5rem);
    z-index: 5;
}

.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 5, 5, 0.55);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
}

.site-nav__brand {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.78rem;
    text-decoration: none;
    color: var(--text);
    white-space: nowrap;
}

.site-nav__links {
    display: flex;
    gap: 1.25rem;
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.site-nav__links a {
    text-decoration: none;
    color: var(--muted);
    position: relative;
    padding-bottom: 0.15rem;
}

.site-nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after {
    transform: scaleX(1);
}

.site-nav__links a:focus-visible {
    outline: none;
    color: var(--text);
}

.site-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-nav__phone {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--muted);
}

.site-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.72rem;
    text-decoration: none;
    background: var(--accent);
    color: #fff;
    min-width: 92px;
}

.site-nav__cta:hover {
    box-shadow: 0 28px 45px rgba(230, 57, 70, 0.55);
}

.section {
    position: relative;
    padding: clamp(4rem, 18vh, 8rem) 1.5rem;
}

.section::before {
    content: "";
    position: absolute;
    inset: clamp(2rem, 6vh, 3.5rem) clamp(1rem, 4vw, 3.5rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--surface);
    border-radius: 28px;
    z-index: 0;
}

.section__inner {
    position: relative;
    z-index: 1;
    max-width: min(900px, 88vw);
    margin: 0 auto;
    display: grid;
    gap: clamp(1.4rem, 4vw, 2rem);
    text-align: center;
}

.section__inner--hero {
    gap: clamp(1.25rem, 4vw, 2.25rem);
}

.section__inner--about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(2rem, 6vw, 3rem);
    text-align: left;
    align-items: center;
}

.section__inner--carousel {
    align-items: center;
    grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
    text-align: left;
    gap: clamp(2.5rem, 7vw, 4.5rem);
}

.section__inner--carousel-left {
    grid-template-columns: minmax(360px, 1.15fr) minmax(280px, 0.85fr);
    justify-items: stretch;
    align-items: center;
}

.section__inner--carousel-left .carousel-copy {
    position: relative;
    z-index: 2;
    margin-left: clamp(0.5rem, 2vw, 1.75rem);
    padding-right: 0;
}

.section--holiday {
    --holiday-green: #69f2a6;
    --holiday-red: #ff6b6b;
}

.section--holiday::before {
    border-color: rgba(105, 242, 166, 0.35);
    background: linear-gradient(135deg, rgba(9, 24, 14, 0.92), rgba(40, 9, 15, 0.92));
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55);
}

.section__inner--holiday {
    max-width: min(1000px, 92vw);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 5vw, 3rem);
    text-align: left;
    align-items: stretch;
}

.holiday-copy {
    display: grid;
    gap: 1rem;
}

.holiday-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
    color: rgba(246, 246, 246, 0.85);
}

.holiday-list li {
    position: relative;
    padding-left: 1.35rem;
}

.holiday-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--holiday-green);
    box-shadow: 0 0 12px rgba(105, 242, 166, 0.45);
}

.holiday-card {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: linear-gradient(145deg, rgba(20, 42, 27, 0.9), rgba(56, 13, 20, 0.92));
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    display: grid;
    gap: 1rem;
}

.holiday-photo-frame {
    position: relative;
    width: min(340px, 90%);
    margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
}

.holiday-photo-frame::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    pointer-events: none;
}

.holiday-photo-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 26px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.02);
    transform: rotate(-1.5deg);
}

.holiday-card__badge {
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.holiday-card__rate {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 3.1rem);
    color: var(--holiday-green);
}

.holiday-card__original {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.55);
    text-decoration: line-through;
}

.holiday-card__note {
    margin: 0;
    color: rgba(246, 246, 246, 0.85);
    line-height: 1.6;
}

.holiday-card__perks li::before {
    background: var(--holiday-red);
    box-shadow: 0 0 12px rgba(255, 107, 107, 0.45);
}

.holiday-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: 0.72rem;
    text-decoration: none;
    background: linear-gradient(120deg, var(--holiday-red), var(--holiday-green));
    color: #050505;
}

.holiday-card__cta:hover {
    box-shadow: 0 18px 35px rgba(105, 242, 166, 0.35);
}

.section__inner--pricing {
    text-align: left;
    gap: clamp(2rem, 5vw, 3.5rem);
    max-width: 1100px;
}

.pricing-copy {
    max-width: 620px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1rem, 3vw, 1.75rem);
}

.pricing-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 1.75rem;
    background: rgba(5, 5, 5, 0.55);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 1rem;
    line-height: 1.7;
}

.pricing-card__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.7rem;
    color: var(--muted);
    margin: 0;
}

.pricing-card__rate {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.pricing-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
    color: rgba(246, 246, 246, 0.78);
    line-height: 1.6;
}

.pricing-card ul li {
    position: relative;
    padding-left: 1.2rem;
}

.pricing-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.35);
}

.pricing-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    text-decoration: none;
    color: var(--text);
}

.pricing-card__cta:hover {
    border-color: rgba(255, 255, 255, 0.45);
}

.section__inner--inquire {
    text-align: left;
    gap: clamp(2rem, 5vw, 3.5rem);
}

.contact-copy {
    max-width: 600px;
}

.contact-panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    background: rgba(6, 6, 6, 0.6);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 1rem;
}

.contact-panel__button {
    border: none;
    border-radius: 999px;
    padding: 0.95rem 1.9rem;
    font-size: 0.82rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
}

.contact-panel__button:hover {
    box-shadow: 0 18px 32px rgba(230, 57, 70, 0.45);
}

.contact-panel__note {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
}
.highlight-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    text-decoration: none;
    color: var(--text);
}

.highlight-cta:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}
.carousel-copy {
    display: grid;
    gap: 1rem;
    position: relative;
    z-index: 5;
    padding-right: clamp(0.5rem, 2vw, 1.75rem);
}

.about-media {
    margin: 0;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

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

.about-body {
    display: grid;
    gap: 1.2rem;
}

.hero-logo {
    position: relative;
    width: clamp(160px, 24vw, 260px);
    margin: 0 auto;
}

.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-logo__glow {
    position: absolute;
    inset: 0;
    filter: blur(12px) saturate(1.4);
    opacity: 0.4;
    transform: scale(1.12);
    pointer-events: none;
}

.hero-logo__caption {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.48em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero__lede {
    max-width: 640px;
    margin: clamp(0.75rem, 2vw, 1.5rem) auto;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(246, 246, 246, 0.85);
}

.section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.72rem;
    margin: 0;
    color: var(--muted);
}

.section__title {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    letter-spacing: 0.08em;
}

.section__body {
    margin: 0;
    line-height: 1.7;
    color: rgba(246, 246, 246, 0.82);
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.hero__cta--primary {
    background: var(--accent);
    border-color: transparent;
}

.hero__cta:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.hero__cta--primary:hover {
    background: rgba(230, 57, 70, 0.86);
}

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

.footer {
    text-align: center;
    padding: 3rem 1rem 2.5rem;
    color: var(--muted);
    font-size: 0.8rem;
}

.carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: clamp(0.75rem, 2vw, 1.25rem) clamp(2.25rem, 5vw, 4rem);
    --carousel-nav-prev-inset: clamp(0.65rem, 3vw, 1.5rem);
    --carousel-nav-next-inset: clamp(0.65rem, 3vw, 1.5rem);
}

.carousel__nav {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    z-index: 8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.carousel__nav::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.65), transparent 65%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.carousel__nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -140%;
    width: 60%;
    height: 200%;
    border-radius: inherit;
    background: linear-gradient(125deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    opacity: 0;
    transform: translate3d(0, -50%, 0) rotate(25deg);
    pointer-events: none;
}

.carousel__nav:hover {
    transform: translate3d(0, calc(-50% - 2px), 0);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.carousel__nav:hover::after,
.carousel__nav:focus-visible::after {
    opacity: 0.85;
    transform: scale(1);
}

.carousel__nav:hover::before {
    opacity: 1;
    animation: button-sheen 0.9s ease forwards;
}

.carousel__nav:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.5);
}

.carousel__nav:active {
    transform: translate3d(0, calc(-50% - 1px), 0);
}

.carousel__nav--prev {
    left: var(--carousel-nav-prev-inset);
}

.carousel__nav--next {
    right: var(--carousel-nav-next-inset);
}

.carousel__nav-icon {
    width: 22px;
    height: 22px;
}

.carousel--left {
    justify-self: stretch;
    margin-right: clamp(-8rem, -10vw, -4rem);
}

.carousel--left .carousel__stack {
    margin-left: clamp(-2rem, -4vw, -0.5rem);
}

.carousel__stack {
    position: relative;
    width: clamp(220px, 38vw, 420px);
    min-height: clamp(320px, 38vw, 460px);
    margin: 0 auto;
    perspective: 1600px;
    touch-action: pan-y;
}

.carousel__card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(220px, 38vw, 420px);
    aspect-ratio: 3 / 4;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.2s ease, filter 0.2s ease, opacity 0.25s ease;
    will-change: transform;
    touch-action: pan-y;
    overflow: hidden;
    isolation: isolate;
}

.carousel__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    display: block;
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    transform-origin: center;
}

.carousel__card::before {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: 18px;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.35), transparent 65%);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.carousel__card::after {
    content: "";
    position: absolute;
    inset: 8%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    pointer-events: none;
}

.carousel__card:not(.is-active) {
    filter: saturate(0.85) brightness(0.9);
}

.carousel__card:hover::before,
.carousel__card:focus-visible::before {
    opacity: 0.8;
    transform: scale(1);
}

.carousel__card:hover img,
.carousel__card:focus-visible img {
    transform: scale(1.02);
    filter: saturate(1.05) brightness(1.05);
}

.carousel__card.is-active {
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55);
}

.carousel__card:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 6px;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 2rem;
}

.lightbox[hidden] {
    display: none;
}

.lightbox__image {
    max-width: min(90vw, 1200px);
    max-height: 90vh;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.65);
}

.lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.35s ease;
}

.lightbox__close::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.5), transparent 60%);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.lightbox__close::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -150%;
    width: 70%;
    height: 220%;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.52), transparent);
    opacity: 0;
    transform: translate3d(0, -50%, 0) rotate(25deg);
    pointer-events: none;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 28px 45px rgba(0, 0, 0, 0.55);
}

.lightbox__close:hover::after,
.lightbox__close:focus-visible::after {
    opacity: 0.85;
    transform: scale(1.05);
}

.lightbox__close:hover::before {
    opacity: 1;
    animation: button-sheen 0.9s ease forwards;
}

.lightbox__close:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.65);
    outline-offset: 4px;
}

.lightbox__close:active {
    transform: translateY(-1px);
}
[data-parallax] {
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 768px) {
    .section::before {
        inset: clamp(1.5rem, 8vw, 2.5rem) clamp(0.75rem, 6vw, 2rem);
        border-radius: 22px;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero__cta,
    .hero__cta--primary {
        width: min(280px, 100%);
    }

    .site-nav {
        top: 0;
        padding-inline: 1rem;
    }

    .site-nav__inner {
        flex-direction: column;
        border-radius: 32px;
        text-align: center;
    }

    .site-nav__links {
        flex-direction: column;
    }

    .site-nav__actions {
        flex-direction: column;
    }

    .section__inner--carousel-left {
        justify-items: center;
        grid-template-columns: 1fr;
    }

    .section__inner--carousel-left .carousel-copy {
        margin-left: 0;
    }

    .section__inner--holiday {
        grid-template-columns: 1fr;
    }

    .holiday-card {
        justify-self: stretch;
    }

    .holiday-photo-frame {
        width: min(300px, 90vw);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .carousel--left {
        justify-self: center;
        margin-right: 0;
    }

    .carousel {
        padding: clamp(0.6rem, 3vw, 1rem) clamp(1.25rem, 4vw, 2.5rem);
        --carousel-nav-prev-inset: clamp(0.5rem, 4vw, 1rem);
        --carousel-nav-next-inset: clamp(0.5rem, 4vw, 1rem);
    }

    .carousel__stack {
        width: clamp(220px, 60vw, 360px);
        min-height: clamp(260px, 50vw, 360px);
        margin-left: 0;
    }

    .carousel__card {
        width: clamp(220px, 70vw, 360px);
    }
}

@media (max-width: 640px) {
    body {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section {
        padding: clamp(3.5rem, 22vw, 5rem) clamp(1.25rem, 5vw, 1.75rem);
    }

    .hero-logo {
        width: clamp(160px, 52vw, 220px);
    }

    .hero-logo__caption {
        letter-spacing: 0.28em;
        font-size: 0.78rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 0.85rem;
    }

    .hero__cta,
    .hero__cta--primary {
        width: min(340px, 100%);
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        padding: 0.95rem 1.5rem;
    }

    .site-nav {
        display: none;
    }

    .section__title {
        font-size: clamp(2.1rem, 11vw, 2.6rem);
        letter-spacing: 0.06em;
    }

    .section__body {
        font-size: 1rem;
        line-height: 1.8;
    }

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

    .about-media img {
        width: 100%;
        height: auto;
    }

    .about-body {
        text-align: center;
        padding: 0 0.5rem;
    }

    .section__inner--carousel {
        grid-template-columns: 1fr;
    }

    .section__inner--pricing {
        text-align: center;
    }

    .pricing-copy {
        padding: 0 0.5rem;
    }

    .video-backdrop__poster {
        display: none;
    }

    .video-backdrop__media {
        display: none;
    }

    .video-backdrop__overlay {
        background: rgba(5, 5, 5, 0.9);
    }

    .carousel-copy {
        text-align: center;
        padding-right: 0;
    }

    .carousel {
        padding: clamp(1.75rem, 10vw, 3.2rem) clamp(1rem, 5vw, 1.5rem);
        --carousel-nav-prev-inset: clamp(0.35rem, 4vw, 0.85rem);
        --carousel-nav-next-inset: clamp(0.35rem, 4vw, 0.85rem);
    }

    .carousel__nav {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .carousel__stack {
        width: clamp(220px, 78vw, 300px);
        min-height: clamp(260px, 70vw, 360px);
    }

    .carousel__card {
        width: clamp(220px, 78vw, 300px);
    }

    .pricing-card {
        padding: 1.85rem;
        gap: 1.2rem;
    }

    .pricing-card__rate {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
    }

    .contact-panel {
        text-align: center;
        padding: clamp(1.75rem, 8vw, 2.5rem);
        gap: 1.3rem;
    }

    .contact-panel__button {
        width: min(360px, 100%);
        margin: 0 auto;
        font-size: 0.78rem;
        letter-spacing: 0.22em;
        padding: 1rem 1.5rem;
    }

    .contact-panel__note {
        padding: 0 0.5rem;
        line-height: 1.6;
    }

    .contact-copy {
        text-align: center;
    }

    .section__inner--holiday {
        max-width: 100%;
        gap: 1.1rem;
    }

    .holiday-copy {
        text-align: center;
    }

    .holiday-list li {
        padding-left: 1rem;
    }

    .holiday-card {
        padding: clamp(1.2rem, 6vw, 1.8rem);
        border-radius: 22px;
        gap: 0.85rem;
    }

    .holiday-card__badge {
        letter-spacing: 0.24em;
    }

    .holiday-card__rate {
        font-size: clamp(2rem, 12vw, 2.6rem);
    }

    .holiday-card__original {
        font-size: clamp(0.95rem, 5vw, 1.2rem);
    }

    .holiday-card__cta {
        width: 100%;
    }

    .holiday-photo-frame {
        width: min(280px, 85vw);
    }

    .holiday-photo-frame img {
        transform: rotate(-0.5deg);
        border-radius: 22px;
    }
}
