/* First Take Auto Detailing - Main Stylesheet */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #262D35;
}

::-webkit-scrollbar-thumb {
    background: #686B70;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #DBC99C;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Film reel decorative elements */
.film-frame {
    position: relative;
}

.film-frame::before,
.film-frame::after {
    content: '';
    position: absolute;
    background: rgba(219, 201, 156, 0.1);
}

.film-frame::before {
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
}

.film-frame::after {
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
}

/* Focus styles */
*:focus {
    outline: 2px solid #DBC99C;
    outline-offset: 2px;
}

/* Button transitions */
button, a {
    transition: all 0.2s ease;
}

/* Subtle dot-grid background (global) */
.dot-grid-bg {
    position: relative;
}

.dot-grid-bg::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.22;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0;
}

.dot-grid-layer {
    position: relative;
    z-index: 1;
}

/* ─── Floating pill navigation ─── */

.nav-pill-wrapper {
    position: fixed;
    top: 0.75rem;
    left: 0;
    right: 0;
    z-index: 40;
    padding-left: 1rem;
    padding-right: 1rem;
    pointer-events: none;
}

@media (min-width: 768px) {
    .nav-pill-wrapper {
        top: 1rem;
    }
}

.nav-pill {
    position: relative;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    pointer-events: auto;
}

.nav-pill-inner {
    display: flex;
    align-items: center;
    min-height: 3.5rem;
    height: auto;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: rgba(13, 15, 18, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(219, 201, 156, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.nav-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: rgba(38, 45, 53, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(104, 107, 112, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.main-with-pill-nav {
    padding-top: 0;
}

.main-home {
    padding-top: 0;
}

/* ─── Home page ─── */

.home-hero-content {
    padding-left: max(2.75rem, calc(28px + 1.25rem));
    padding-right: max(2.75rem, calc(28px + 1.25rem));
}

@media (min-width: 640px) {
    .home-hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .home-hero-content {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.home-hero-cta {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (min-width: 640px) {
    .home-hero-cta {
        max-width: none;
        width: auto;
    }
}

.home-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    background: #0d0f12;
}

/* Hero with automotive photography */
.home-hero--automotive {
    background: #0d0f12;
}

.home-hero-photo {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/hero-bg.png');
    background-size: cover;
    background-position: center 35%;
    opacity: 0.58;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 15, 18, 0.72) 0%, rgba(13, 15, 18, 0.45) 28%, rgba(13, 15, 18, 0.7) 65%, rgba(13, 15, 18, 0.92) 100%),
        linear-gradient(90deg, rgba(13, 15, 18, 0.55) 0%, rgba(13, 15, 18, 0.2) 45%, rgba(13, 15, 18, 0.5) 100%);
}

/* Flowing section surfaces — shared dark base, subtle texture, soft transitions */
.home-section-surface {
    position: relative;
    isolation: isolate;
}

.home-section-surface::before,
.home-section-surface::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 0;
}

.home-section-surface::before {
    inset: 0;
}

.home-section-surface::after {
    height: 1px;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(219, 201, 156, 0.12), transparent);
}

.home-section-surface > * {
    position: relative;
    z-index: 1;
}

.home-section-surface--warm {
    background: linear-gradient(180deg, #0a0c0f 0%, #12161c 45%, #101419 100%);
}

.home-section-surface--warm::before {
    background:
        radial-gradient(ellipse 70% 50% at 15% 0%, rgba(219, 201, 156, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 85% 100%, rgba(219, 201, 156, 0.04) 0%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 56px,
            rgba(219, 201, 156, 0.018) 56px,
            rgba(219, 201, 156, 0.018) 57px
        );
}

.home-section-surface--cool {
    background: linear-gradient(180deg, #101419 0%, #0e1116 50%, #0c0e12 100%);
}

.home-section-surface--cool::before {
    background:
        radial-gradient(ellipse 55% 40% at 80% 10%, rgba(104, 107, 112, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 45% 35% at 10% 90%, rgba(38, 45, 53, 0.5) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 4px,
            rgba(255, 255, 255, 0.014) 4px,
            rgba(255, 255, 255, 0.014) 5px
        );
}

.home-section-surface--deep {
    background: linear-gradient(180deg, #0c0e12 0%, #0a0c10 50%, #0d1014 100%);
}

.home-section-surface--deep::before {
    background:
        radial-gradient(ellipse 60% 45% at 50% 0%, rgba(219, 201, 156, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 40%, rgba(0, 0, 0, 0.2) 100%);
}

/* Vehicle types strip */
.home-vehicles {
    position: relative;
    z-index: 1;
}

.home-vehicle-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(104, 107, 112, 0.2);
    background: rgba(38, 45, 53, 0.5);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.home-vehicle-type:hover {
    border-color: rgba(219, 201, 156, 0.3);
    background: rgba(38, 45, 53, 0.75);
}

.home-vehicle-type-icon {
    color: #DBC99C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-vehicle-type-icon svg {
    max-width: 100%;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(219, 201, 156, 0.02) 3px,
        rgba(219, 201, 156, 0.02) 4px
    );
    pointer-events: none;
}

.film-sprocket {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 28px;
    background: repeating-linear-gradient(
        180deg,
        transparent 0px,
        transparent 8px,
        rgba(219, 201, 156, 0.12) 8px,
        rgba(219, 201, 156, 0.12) 14px,
        transparent 14px,
        transparent 22px
    );
    opacity: 0.6;
    pointer-events: none;
}

.film-sprocket--left { left: 0; border-right: 1px solid rgba(219, 201, 156, 0.08); }
.film-sprocket--right { right: 0; border-left: 1px solid rgba(219, 201, 156, 0.08); }

.home-hero-frame {
    position: absolute;
    inset: 1.25rem;
    border: 1px solid rgba(219, 201, 156, 0.12);
    pointer-events: none;
    border-radius: 2px;
}

.home-hero-frame::before,
.home-hero-frame::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: rgba(219, 201, 156, 0.35);
    border-style: solid;
}

.home-hero-frame::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.home-hero-frame::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.home-title-accent {
    background: linear-gradient(135deg, #e8dcc0 0%, #DBC99C 45%, #b8a67a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: home-float 8s ease-in-out infinite;
}

.home-glow-orb--1 {
    width: 400px;
    height: 400px;
    background: rgba(219, 201, 156, 0.12);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.home-glow-orb--2 {
    width: 300px;
    height: 300px;
    background: rgba(104, 107, 112, 0.2);
    bottom: 20%;
    left: 5%;
    animation-delay: -4s;
}

@keyframes home-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.05); }
}

.home-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e8dcc0 0%, #DBC99C 50%, #c9b88a 100%);
    color: #262D35;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 24px rgba(219, 201, 156, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(219, 201, 156, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.home-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(219, 201, 156, 0.35);
    color: #DBC99C;
    font-weight: 600;
    backdrop-filter: blur(8px);
    background: rgba(38, 45, 53, 0.5);
}

.home-btn-ghost:hover {
    border-color: rgba(219, 201, 156, 0.6);
    background: rgba(219, 201, 156, 0.08);
}

.home-hero-locations {
    margin: 0 auto 2.5rem;
    max-width: 32rem;
    text-align: center;
}

.home-hero-locations__inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(104, 107, 112, 0.35);
    background: rgba(38, 45, 53, 0.55);
    backdrop-filter: blur(4px);
    font-size: clamp(0.8125rem, 2.8vw, 0.9375rem);
    line-height: 1.4;
    color: #686b70;
}

.home-hero-locations__inner strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.home-hero-locations__inner svg {
    color: #dbc99c;
}

.home-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: min(100%, 32rem);
    margin-inline: auto;
    border: 1px solid rgba(104, 107, 112, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
    background: rgba(38, 45, 53, 0.5);
    backdrop-filter: blur(4px);
}

.home-stat {
    text-align: center;
    min-width: 0;
    padding: clamp(0.5rem, 2.5vw, 1rem) clamp(0.35rem, 1.5vw, 0.75rem);
    border-right: 1px solid rgba(104, 107, 112, 0.3);
}

.home-stat:last-child {
    border-right: none;
}

.home-stat__title {
    font-size: clamp(0.6875rem, 3.1vw, 1.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #dbc99c;
    word-break: break-word;
    hyphens: auto;
}

.home-stat__subtitle {
    margin-top: 0.25rem;
    font-size: clamp(0.5625rem, 2.35vw, 0.875rem);
    line-height: 1.25;
    color: #686b70;
    word-break: break-word;
    hyphens: auto;
}

@media (min-width: 640px) {
    .home-stat__title {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
    }

    .home-stat__subtitle {
        font-size: clamp(0.75rem, 1.8vw, 0.875rem);
    }
}

.home-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #DBC99C;
    margin-bottom: 0.75rem;
}

.home-service-card {
    position: relative;
    background: linear-gradient(145deg, rgba(38, 45, 53, 0.9) 0%, rgba(26, 31, 38, 0.95) 100%);
    border: 1px solid rgba(104, 107, 112, 0.25);
    border-radius: 0.75rem;
    padding: 1.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(219, 201, 156, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(219, 201, 156, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(219, 201, 156, 0.1);
}

.home-service-card:hover::before {
    opacity: 1;
}

.home-service-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.home-service-card--link:focus-visible {
    outline: 2px solid rgba(219, 201, 156, 0.85);
    outline-offset: 3px;
}

.home-service-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    background: rgba(219, 201, 156, 0.1);
    border: 1px solid rgba(219, 201, 156, 0.2);
    color: #DBC99C;
    margin-bottom: 1.25rem;
}

.home-trust-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    background: rgba(38, 45, 53, 0.6);
    border: 1px solid rgba(104, 107, 112, 0.2);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.home-trust-card:hover {
    border-color: rgba(219, 201, 156, 0.25);
    background: rgba(38, 45, 53, 0.85);
}

.home-process-step {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
}

.home-process-step .step-num {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    color: #262D35;
    background: linear-gradient(135deg, #e8dcc0, #DBC99C);
    box-shadow: 0 4px 16px rgba(219, 201, 156, 0.3);
}

.home-process-connector {
    display: none;
}

@media (min-width: 768px) {
    .home-process-connector {
        display: block;
        position: absolute;
        top: 3.75rem;
        left: calc(50% + 2rem);
        width: calc(100% - 4rem);
        height: 1px;
        background: linear-gradient(90deg, rgba(219, 201, 156, 0.4), rgba(219, 201, 156, 0.1));
    }

    .home-process-step:last-child .home-process-connector {
        display: none;
    }
}

.home-portfolio-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    background: rgba(104, 107, 112, 0.15);
    border: 1px solid rgba(104, 107, 112, 0.25);
}

.home-portfolio-item img,
.home-portfolio-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-portfolio-item:hover img,
.home-portfolio-item:hover .home-portfolio-item__img {
    transform: scale(1.06);
}

/* Portfolio page: masonry columns — each image keeps its natural aspect ratio */
.portfolio-masonry {
    column-gap: 0.75rem;
    column-count: 2;
}

@media (min-width: 640px) {
    .portfolio-masonry {
        column-gap: 1rem;
    }
}

@media (min-width: 768px) {
    .portfolio-masonry {
        column-count: 3;
    }
}

@media (min-width: 1024px) {
    .portfolio-masonry {
        column-count: 4;
    }
}

@media (min-width: 1280px) {
    .portfolio-masonry {
        column-count: 5;
    }
}

.portfolio-gallery-item {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    border-radius: 0.5rem;
    overflow: hidden;
    background: rgba(104, 107, 112, 0.15);
    border: 1px solid rgba(104, 107, 112, 0.25);
    line-height: 0;
}

@media (min-width: 640px) {
    .portfolio-gallery-item {
        margin-bottom: 1rem;
    }
}

.portfolio-gallery-item__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-gallery-item:hover .portfolio-gallery-item__img {
    transform: scale(1.05);
}

/* Portfolio page: title, gradient, and frame always visible */
.portfolio-gallery-item .portfolio-item-caption,
.portfolio-gallery-item:hover .portfolio-item-caption {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(104, 107, 112, 0.15), rgba(38, 45, 53, 0.9));
    color: rgba(219, 201, 156, 0.25);
}

.portfolio-gallery-item .portfolio-image-placeholder,
.portfolio-image-placeholder--square {
    height: auto;
    aspect-ratio: 1;
    min-height: 0;
    line-height: normal;
}

.portfolio-item-caption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 2;
    padding: 0.75rem 1rem 1rem;
    opacity: 0;
    transform: translateY(0.25rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.group:hover .portfolio-item-caption {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item-caption__title {
    display: block;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

.portfolio-lightbox-trigger {
    cursor: pointer;
}

.portfolio-lightbox-trigger:focus-visible {
    outline: 2px solid rgba(219, 201, 156, 0.85);
    outline-offset: 3px;
}

body.portfolio-lightbox-open {
    overflow: hidden;
}

.portfolio-lightbox {
    --lightbox-duration: 340ms;
    --lightbox-ease: cubic-bezier(0.22, 1, 0.36, 1);
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 3vw, 1.5rem);
    padding-top: clamp(3.25rem, 8vh, 4rem);
    padding-bottom: clamp(1.25rem, 4vh, 2rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--lightbox-duration) var(--lightbox-ease),
        visibility var(--lightbox-duration) var(--lightbox-ease);
}

.portfolio-lightbox--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.portfolio-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 12, 0.88);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity var(--lightbox-duration) var(--lightbox-ease);
}

.portfolio-lightbox--open .portfolio-lightbox__backdrop {
    opacity: 1;
}

.portfolio-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: min(94vw, 76rem);
    max-height: calc(100vh - 5rem);
    width: auto;
    opacity: 0;
    transform: scale(0.94) translateY(12px);
    transition:
        opacity var(--lightbox-duration) var(--lightbox-ease),
        transform var(--lightbox-duration) var(--lightbox-ease);
}

.portfolio-lightbox--open .portfolio-lightbox__dialog {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.portfolio-lightbox__close {
    position: fixed;
    top: clamp(0.75rem, 2.5vh, 1.25rem);
    right: clamp(0.75rem, 2.5vw, 1.25rem);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(219, 201, 156, 0.35);
    border-radius: 9999px;
    background: rgba(38, 45, 53, 0.95);
    color: #dbc99c;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        opacity 0.28s ease 0.12s,
        transform 0.28s var(--lightbox-ease) 0.12s;
}

.portfolio-lightbox--open .portfolio-lightbox__close {
    opacity: 1;
    transform: scale(1);
}

.portfolio-lightbox__close:hover,
.portfolio-lightbox__close:focus-visible {
    background: rgba(219, 201, 156, 0.15);
    border-color: rgba(219, 201, 156, 0.7);
    color: #fff;
    outline: none;
}

.portfolio-lightbox__figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 100%;
    max-height: 100%;
    min-height: 0;
}

.portfolio-lightbox__frame {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: min(92vw, 72rem);
    max-height: calc(100vh - 8.5rem);
    border-radius: 0.5rem;
    border: 1px solid rgba(104, 107, 112, 0.45);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    line-height: 0;
}

.portfolio-lightbox__img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(92vw, 72rem);
    max-height: calc(100vh - 8.5rem);
    object-fit: contain;
    opacity: 0;
    transform: scale(0.97);
    transition:
        opacity 0.36s var(--lightbox-ease) 0.06s,
        transform 0.36s var(--lightbox-ease) 0.06s;
}

.portfolio-lightbox__img.is-loaded,
.portfolio-lightbox--open .portfolio-lightbox__img.is-loaded {
    opacity: 1;
    transform: scale(1);
}

.portfolio-lightbox__film-corner {
    position: absolute;
    inset: 0.75rem;
    border: 1px solid rgba(219, 201, 156, 0.45);
    border-radius: 2px;
    pointer-events: none;
}

.portfolio-lightbox__title {
    flex-shrink: 0;
    margin: 0;
    padding: 0 0.5rem;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.32s var(--lightbox-ease) 0.14s,
        transform 0.32s var(--lightbox-ease) 0.14s;
}

.portfolio-lightbox--open .portfolio-lightbox__title {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-lightbox__title:empty,
.portfolio-lightbox__title[hidden] {
    display: none;
}

@media (max-width: 640px) {
    .portfolio-lightbox__frame,
    .portfolio-lightbox__img {
        max-width: 94vw;
        max-height: calc(100vh - 7.5rem);
    }

    .portfolio-lightbox__title {
        font-size: 1rem;
    }
}

.portfolio-crop-section.hidden {
    display: none;
}

.portfolio-crop-viewport {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.5rem;
    border: 1px solid rgba(104, 107, 112, 0.45);
    background: rgba(0, 0, 0, 0.35);
    cursor: grab;
    touch-action: none;
    user-select: none;
}

.portfolio-crop-viewport.is-dragging {
    cursor: grabbing;
}

.portfolio-crop-viewport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.home-portfolio-item .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 15, 18, 0.85) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-gallery-item .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 15, 18, 0.85) 0%, transparent 50%);
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.home-portfolio-item .film-corner {
    position: absolute;
    inset: 0.5rem;
    border: 1px solid rgba(219, 201, 156, 0);
    transition: border-color 0.3s ease;
    pointer-events: none;
    border-radius: 2px;
}

.home-portfolio-item:hover .film-corner {
    border-color: rgba(219, 201, 156, 0.5);
}

.portfolio-gallery-item .film-corner {
    position: absolute;
    inset: 0.5rem;
    border: 1px solid rgba(219, 201, 156, 0.5);
    pointer-events: none;
    border-radius: 2px;
    z-index: 3;
}

.home-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0c0e12 0%, #101419 40%, #0a0c0f 100%);
    border-top: none;
    border-bottom: none;
}

.home-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(219, 201, 156, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 20% 20%, rgba(104, 107, 112, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(219, 201, 156, 0.025) 40px,
            rgba(219, 201, 156, 0.025) 41px
        );
    pointer-events: none;
}

.home-cta-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(219, 201, 156, 0.1), transparent);
    pointer-events: none;
}

.home-fade-in {
    animation: home-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

.home-fade-in-delay-1 { animation-delay: 0.12s; }
.home-fade-in-delay-2 { animation-delay: 0.24s; }
.home-fade-in-delay-3 { animation-delay: 0.36s; }
.home-fade-in-delay-4 { animation-delay: 0.48s; }

@keyframes home-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle load-in animations for page sections */
.home-reveal-section {
    --reveal-base: 0.6s;
}

.home-reveal-section--vehicles { --reveal-base: 0.52s; }
.home-reveal-section--trust { --reveal-base: 0.62s; }
.home-reveal-section--services { --reveal-base: 0.72s; }
.home-reveal-section--process { --reveal-base: 0.82s; }
.home-reveal-section--portfolio { --reveal-base: 0.92s; }
.home-reveal-section--cta { --reveal-base: 1.02s; }

.home-reveal {
    opacity: 0;
    animation: home-reveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--reveal-base);
}

.home-reveal-delay-1 { animation-delay: calc(var(--reveal-base) + 0.05s); }
.home-reveal-delay-2 { animation-delay: calc(var(--reveal-base) + 0.10s); }
.home-reveal-delay-3 { animation-delay: calc(var(--reveal-base) + 0.15s); }
.home-reveal-delay-4 { animation-delay: calc(var(--reveal-base) + 0.20s); }
.home-reveal-delay-5 { animation-delay: calc(var(--reveal-base) + 0.25s); }
.home-reveal-delay-6 { animation-delay: calc(var(--reveal-base) + 0.30s); }
.home-reveal-delay-7 { animation-delay: calc(var(--reveal-base) + 0.35s); }
.home-reveal-delay-8 { animation-delay: calc(var(--reveal-base) + 0.40s); }

@keyframes home-reveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-glow-orb,
    .home-fade-in,
    .home-reveal {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .home-service-card:hover,
    .home-btn-primary:hover {
        transform: none;
    }

    .home-portfolio-item:hover img,
    .home-portfolio-item:hover .home-portfolio-item__img,
    .portfolio-gallery-item:hover .portfolio-gallery-item__img {
        transform: none;
    }

    .portfolio-lightbox,
    .portfolio-lightbox__backdrop,
    .portfolio-lightbox__dialog,
    .portfolio-lightbox__img,
    .portfolio-lightbox__title,
    .portfolio-lightbox__close {
        transition: none;
    }

    .portfolio-lightbox--open .portfolio-lightbox__dialog,
    .portfolio-lightbox--open .portfolio-lightbox__img.is-loaded,
    .portfolio-lightbox--open .portfolio-lightbox__title,
    .portfolio-lightbox--open .portfolio-lightbox__close {
        opacity: 1;
        transform: none;
    }
}

/* ─── Site-wide page styles (non-home) ─── */

.nav-brand {
    max-width: calc(100% - 2.5rem);
    flex-shrink: 1;
    min-width: 0;
}

.page-shell {
    position: relative;
    isolation: isolate;
    padding-top: 5.5rem;
    padding-bottom: 4rem;
    min-height: calc(100vh - 5rem);
    min-height: calc(100dvh - 5rem);
}

@media (min-width: 768px) {
    .page-shell {
        padding-top: 6.5rem;
        padding-bottom: 6rem;
    }
}

.page-shell--compact {
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-header h1 {
        font-size: 3rem;
    }
}

.page-header p {
    color: rgba(210, 214, 220, 0.9);
    font-size: 1.125rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
}

.about-page-header-text {
    color: rgba(220, 224, 230, 0.92);
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.about-page-photo {
    order: 2;
    width: 100%;
    max-width: 10rem;
    justify-self: center;
}

.about-page-lead {
    order: 1;
    margin: 0;
    max-width: 42rem;
}

.about-page-body {
    order: 3;
    max-width: 42rem;
}

@media (min-width: 768px) {
    .about-page-grid {
        grid-template-columns: minmax(240px, 320px) 1fr;
        grid-template-rows: auto 1fr;
        gap: 1.25rem 3rem;
    }

    .about-page-photo,
    .about-page-lead,
    .about-page-body {
        order: unset;
    }

    .about-page-photo {
        grid-column: 1;
        grid-row: 1 / -1;
        max-width: none;
        justify-self: stretch;
    }

    .about-page-lead {
        grid-column: 2;
        grid-row: 1;
        max-width: none;
    }

    .about-page-body {
        grid-column: 2;
        grid-row: 2;
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .about-page-grid {
        grid-template-columns: minmax(280px, 360px) 1fr;
        gap: 1.5rem 4rem;
    }
}

.about-page-photo__frame {
    position: relative;
    border-radius: 0.75rem;
    padding: 0.4rem;
    border: 1px solid rgba(104, 107, 112, 0.55);
    background: linear-gradient(145deg, rgba(38, 45, 53, 0.95), rgba(18, 22, 28, 0.98));
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.about-page-photo__media {
    position: relative;
    border-radius: 0.45rem;
    overflow: hidden;
    line-height: 0;
    background: rgba(18, 22, 28, 0.98);
}

.about-page-photo__frame .film-corner {
    position: absolute;
    inset: 0.85rem;
    border: 1px solid rgba(219, 201, 156, 0.5);
    border-radius: 2px;
    pointer-events: none;
    z-index: 2;
}

.about-page-photo__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    vertical-align: middle;
}

.about-page-photo__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    aspect-ratio: 4 / 5;
    min-height: 0;
    padding: 1rem;
    color: rgba(219, 201, 156, 0.35);
}

@media (min-width: 768px) {
    .about-page-photo__placeholder {
        gap: 1rem;
        padding: 2rem 1.5rem;
        min-height: 280px;
    }
}

.about-page-photo__placeholder-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(104, 107, 112, 0.9);
}

.about-page-service-area,
.about-page-requirements {
    padding: 1.25rem 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(104, 107, 112, 0.25);
    background: rgba(38, 45, 53, 0.45);
}

.about-page-service-area,
.about-page-requirements--with-icon {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-page-service-area {
    border-color: rgba(219, 201, 156, 0.2);
    background: rgba(219, 201, 156, 0.06);
}

.about-page-requirements__icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.services-addons-section {
    border-top: 1px solid rgba(104, 107, 112, 0.25);
    padding-top: 2rem;
}

.services-addon-card {
    height: 100%;
}

.about-page-service-area__icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.about-page-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dbc99c;
    margin-bottom: 0.75rem;
}

.about-page-heading--inline {
    margin-bottom: 0.35rem;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .about-page-heading {
        font-size: 1.5rem;
    }
}

.about-page-text {
    color: rgba(210, 214, 220, 0.92);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.about-page-text--lead {
    font-size: 1.125rem;
    color: rgba(235, 238, 242, 0.95);
}

.about-page-text-strong {
    font-weight: 600;
    color: #fff;
}

.about-page-prose .about-page-text + .about-page-text {
    margin-top: 1.125rem;
}

.about-page-values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 0.5rem;
}

.about-page-value {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(104, 107, 112, 0.25);
    background: rgba(38, 45, 53, 0.45);
}

.about-page-value__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page-value__title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.about-page-value__text {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(200, 206, 214, 0.9);
}

.service-detail-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    background: rgba(219, 201, 156, 0.1);
    border: 1px solid rgba(219, 201, 156, 0.2);
    color: #dbc99c;
}

.service-detail-text {
    color: rgba(210, 214, 220, 0.92);
    line-height: 1.75;
}

.service-detail-includes {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.service-detail-includes li {
    position: relative;
    padding-left: 1.35rem;
    color: rgba(210, 214, 220, 0.92);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.service-detail-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #dbc99c;
}

.booking-confirm-block {
    padding-top: 1rem;
    border-top: 1px solid rgba(104, 107, 112, 0.25);
}

.booking-confirm-block:first-of-type {
    padding-top: 0;
    border-top: none;
}

.booking-confirm-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #dbc99c;
    margin-bottom: 0.5rem;
}

.booking-confirm-text {
    color: rgba(210, 214, 220, 0.92);
    line-height: 1.65;
}

.surface-card {
    background: linear-gradient(145deg, rgba(38, 45, 53, 0.9) 0%, rgba(26, 31, 38, 0.95) 100%);
    border: 1px solid rgba(104, 107, 112, 0.25);
    border-radius: 0.75rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.surface-card:hover {
    border-color: rgba(219, 201, 156, 0.25);
}

.surface-card--static:hover {
    border-color: rgba(104, 107, 112, 0.25);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e8dcc0 0%, #DBC99C 50%, #c9b88a 100%);
    color: #262D35;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 24px rgba(219, 201, 156, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(219, 201, 156, 0.3);
}

.site-footer {
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.site-footer::after {
    display: none;
}

/* ─── Business card mockup studio ─── */

.card-studio {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-studio__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.card-surface {
    width: 100%;
    max-width: 52rem;
    padding: 2.5rem 1.5rem 3rem;
    border-radius: 1rem;
    background: #39ff14;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.card-surface__cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 820px) {
    .card-surface__cards {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: 2.5rem;
    }
}

.card-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.card-unit__label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #686B70;
}

.card-print {
    --card-w: min(88vw, 21rem);
    --card-film-h: 0.7rem;
    --card-bg: #0a0c0f;
    width: var(--card-w);
    aspect-ratio: 3.5 / 2;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: none;
    transform: none;
}

.card-print__film-edge {
    display: none;
}

.card-film-strip {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    line-height: 0;
    isolation: isolate;
}

.card-film-strip__svg {
    display: block;
    width: 100%;
    height: 100%;
}

.card-film-strip--top,
.card-film-strip--bottom {
    left: 0;
    right: 0;
    height: var(--card-film-h);
    background-color: var(--card-bg);
    z-index: 3;
}

.card-film-strip--top { top: 0; }
.card-film-strip--bottom { bottom: 0; }

.card-film-strip--left,
.card-film-strip--right {
    top: 0;
    bottom: 0;
    width: 0.55rem;
}

.card-film-strip--left { left: 0; }
.card-film-strip--right { right: 0; }

.card-print__film-edge--top,
.card-print__film-edge--bottom {
    left: 0;
    right: 0;
    height: 0.4rem;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(219, 201, 156, 0.35) 0,
            rgba(219, 201, 156, 0.35) 0.28rem,
            rgba(13, 15, 18, 0.9) 0.28rem,
            rgba(13, 15, 18, 0.9) 0.52rem
        );
}

.card-print__film-edge--top { top: 0; }
.card-print__film-edge--bottom { bottom: 0; }

.card-print__film-edge--left,
.card-print__film-edge--right {
    top: 0.4rem;
    bottom: 0.4rem;
    width: 0.35rem;
    background:
        repeating-linear-gradient(
            180deg,
            rgba(219, 201, 156, 0.3) 0,
            rgba(219, 201, 156, 0.3) 0.28rem,
            rgba(13, 15, 18, 0.9) 0.28rem,
            rgba(13, 15, 18, 0.9) 0.52rem
        );
}

.card-print__film-edge--left { left: 0; }
.card-print__film-edge--right { right: 0; }

.card-print__corner {
    position: absolute;
    width: 0.6rem;
    height: 0.6rem;
    border-color: rgba(219, 201, 156, 0.35);
    border-style: solid;
    z-index: 2;
    pointer-events: none;
}

/* Far left / far right, tucked against film strip */
.card-print__corner--edge-tl {
    top: 0.95rem;
    left: 0.38rem;
    border-width: 1.5px 0 0 1.5px;
}

.card-print__corner--edge-br {
    bottom: 0.95rem;
    right: 0.38rem;
    border-width: 0 1.5px 1.5px 0;
}

.logo-mark__corner.card-print__corner--edge-tl,
.logo-mark__corner.card-print__corner--edge-br {
    width: 0.85rem;
    height: 0.85rem;
}

.logo-mark__corner.card-print__corner--edge-tl {
    top: 0.78rem;
    left: 0.5rem;
}

.logo-mark__corner.card-print__corner--edge-br {
    bottom: 0.98rem;
    right: 0.5rem;
}

.card-print--back {
    transform: none;
}

.card-unit:hover .card-print {
    transform: none;
    box-shadow: none;
}

/* Front */
.card-print--front,
.card-print--front-b {
    display: flex;
    flex-direction: column;
}

.card-print--front .card-print__body,
.card-print--front-b .card-print__front-b-inner {
    flex: 1;
}

.card-print--dark {
    background-color: var(--card-bg);
}

/* Gradient only in content area — keeps film strips off the glow */
.card-print__bg-fill {
    position: absolute;
    top: var(--card-film-h);
    bottom: var(--card-film-h);
    left: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
}

.card-print--front.card-print--dark .card-print__bg-fill {
    background:
        radial-gradient(ellipse 90% 70% at 15% 85%, rgba(38, 45, 53, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse 60% 45% at 92% 12%, rgba(219, 201, 156, 0.05) 0%, transparent 50%),
        linear-gradient(165deg, #0d1014 0%, #0a0c0f 42%, #07080a 100%);
}

.card-print--front-b.card-print--dark .card-print__bg-fill {
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(38, 45, 53, 0.35) 0%, transparent 60%),
        linear-gradient(165deg, #0d1014 0%, #0a0c0f 50%, #07080a 100%);
}

.card-print--back.card-print--dark .card-print__bg-fill {
    background:
        radial-gradient(ellipse 70% 50% at 10% 90%, rgba(38, 45, 53, 0.4) 0%, transparent 55%),
        linear-gradient(165deg, #0d1014 0%, #0a0c0f 50%, #07080a 100%);
}

.card-print__trade-icons {
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
    margin: 0.38rem 0 0.32rem;
    flex-wrap: wrap;
}

.card-print__trade-icons--center {
    justify-content: center;
    margin-top: 0.45rem;
}

.card-print__trade-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.12rem;
    min-width: 1.65rem;
}

.card-print__trade-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 0.2rem;
    background: rgba(219, 201, 156, 0.08);
    border: 1px solid rgba(219, 201, 156, 0.22);
    color: rgba(219, 201, 156, 0.85);
}

.card-print__trade-icon-svg {
    width: 0.62rem;
    height: 0.62rem;
}

.card-print__trade-label {
    font-size: clamp(0.3125rem, 1.15vw, 0.34375rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #686B70;
    line-height: 1.1;
    text-align: center;
}

.card-print__vehicles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.28rem;
    padding: 0.15rem 0.35rem 0.15rem 0;
    border-left: 1px solid rgba(219, 201, 156, 0.12);
    flex-shrink: 0;
}

.card-print__vehicles--row {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid rgba(219, 201, 156, 0.12);
    padding: 0.4rem 0 0;
    margin-top: 0.35rem;
    gap: 0.45rem;
    justify-content: center;
}

.card-print__vehicle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.card-print__vehicle-icon {
    display: inline-flex;
    color: rgba(219, 201, 156, 0.7);
    line-height: 0;
}

.card-print__vehicle-icon-svg {
    width: 0.85rem;
    height: 0.85rem;
}

.card-print__vehicles--row .card-print__vehicle-icon-svg {
    width: 0.95rem;
    height: 0.95rem;
}

.card-print__vehicle-label {
    font-size: clamp(0.28125rem, 1.05vw, 0.3125rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #686B70;
}

.card-print__body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.65rem 0.9rem;
    min-height: 0;
}

.card-print__eyebrow {
    font-size: clamp(0.375rem, 1.5vw, 0.4375rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #686B70;
    margin: 0 0 0.35rem;
}

.card-print__title-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-print__name {
    font-size: clamp(1.25rem, 5vw, 1.55rem);
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #DBC99C;
    margin: 0;
    line-height: 1;
}

.card-print__title-icon {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}

.card-print__title-icon-svg {
    width: clamp(1.35rem, 5.5vw, 1.75rem);
    height: clamp(1.35rem, 5.5vw, 1.75rem);
    color: #DBC99C;
}

.card-print__role {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    font-size: clamp(0.5rem, 2vw, 0.625rem);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin: 0.35rem 0 0;
    line-height: 1;
}

.card-print__role-icon-svg {
    width: clamp(0.55rem, 2.2vw, 0.7rem);
    height: clamp(0.55rem, 2.2vw, 0.7rem);
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.65);
}

.card-print__divider {
    width: 1.75rem;
    height: 1px;
    margin: 0.5rem 0 0.45rem;
    background: linear-gradient(90deg, rgba(219, 201, 156, 0.55) 0%, rgba(219, 201, 156, 0.08) 100%);
}

.card-print__slogan {
    font-size: clamp(0.4375rem, 1.8vw, 0.5rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    max-width: 13rem;
    font-style: italic;
}

.card-print__url {
    font-size: clamp(0.625rem, 2.5vw, 0.8125rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #DBC99C;
    margin: 0.55rem 0 0;
}

/* Design A front — slightly larger type & icons */
.card-print--front .card-print__body {
    padding: 1.8corem 0.95rem 0.5rem;
}

.card-print--front .card-print__name {
    font-size: clamp(1.45rem, 5.75vw, 1.8rem);
}

.card-print--front .card-print__role {
    font-size: clamp(0.5625rem, 2.25vw, 0.7rem);
    letter-spacing: 0.26em;
    margin-top: 0.4rem;
    gap: 0.32rem;
}

.card-print--front .card-print__role-icon-svg {
    width: clamp(0.65rem, 2.5vw, 0.8rem);
    height: clamp(0.65rem, 2.5vw, 0.8rem);
}

.card-print--front .card-print__divider {
    width: 2rem;
    margin: 0.55rem 0 0.5rem;
}

.card-print--front .card-print__slogan {
    font-size: clamp(0.5rem, 2vw, 0.575rem);
    max-width: 14rem;
}

.card-print--front .card-print__url {
    font-size: clamp(0.7rem, 2.85vw, 0.9rem);
    margin-top: 0.6rem;
}

/* Back */
.card-print--back {
    display: flex;
    flex-direction: column;
}

.card-print__back-inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem 0.55rem 1rem;
    min-height: 0;
}

.card-print__back-headline {
    font-size: clamp(0.5625rem, 2.2vw, 0.6875rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #DBC99C;
    margin: 0 0 0.25rem;
}

.card-print__back-lead {
    font-size: clamp(0.375rem, 1.5vw, 0.4375rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 0.4rem;
}

.card-print__highlights {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
}

.card-print__highlight {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: clamp(0.34375rem, 1.4vw, 0.40625rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.3;
}

.card-print__highlight-icon {
    width: 0.55rem;
    height: 0.55rem;
    flex-shrink: 0;
    color: #DBC99C;
    opacity: 0.9;
}

.card-print__back-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.3rem;
    min-width: 4.25rem;
}

.card-print__qr-wrap {
    flex-shrink: 0;
    background: #fff;
    padding: 0.18rem;
    border-radius: 0.2rem;
    line-height: 0;
    box-shadow: none;
    overflow: hidden;
}

.card-print__qr {
    display: block;
    width: clamp(3rem, 13vw, 3.75rem);
    height: clamp(3rem, 13vw, 3.75rem);
    object-fit: contain;
    border-radius: 0.12rem;
}

.card-print__url--back {
    margin: 0;
    font-size: clamp(0.5625rem, 2.2vw, 0.75rem);
    text-align: center;
    line-height: 1.2;
}

.card-print__contact-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: clamp(0.3125rem, 1.3vw, 0.375rem);
    color: #686B70;
    line-height: 1.2;
}

.card-print__icon {
    width: 0.5rem;
    height: 0.5rem;
    flex-shrink: 0;
    color: #DBC99C;
    opacity: 0.85;
}

/* Design groups on business card page */
.card-design-group {
    width: 100%;
    max-width: 52rem;
    margin-bottom: 3.5rem;
}

.card-design-group:last-child {
    margin-bottom: 0;
}

.card-design-group__title {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #686B70;
    margin-bottom: 1.25rem;
}

/* Design B — typographic front only */
.card-print--front-b {
    position: relative;
}

.card-print__front-b-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.7rem 1rem;
    z-index: 2;
    position: relative;
}

.card-print__front-b-line {
    display: block;
    line-height: 0.95;
    text-transform: lowercase;
}

.card-print__front-b-line--1 {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #e8dcc0 0%, #DBC99C 50%, #b8a67a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-print__front-b-line--2 {
    font-size: clamp(0.625rem, 2.5vw, 0.8125rem);
    font-weight: 500;
    letter-spacing: 0.42em;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.35rem;
    padding-left: 0.42em;
}

/* Back v2 — scannable business card layout */
.card-print__back-v2 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.85rem 0.65rem 0.95rem;
    z-index: 2;
    position: relative;
    min-height: 0;
}

.card-print__back-v2-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    width: 100%;
    min-height: 0;
}

.card-print__back-v2-left {
    flex: 1;
    min-width: 0;
}

.card-print__back-v2-name {
    font-size: clamp(0.5625rem, 2.2vw, 0.6875rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #DBC99C;
    margin: 0 0 0.15rem;
}

.card-print__back-v2-tag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: clamp(0.375rem, 1.5vw, 0.4375rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #686B70;
    margin: 0 0 0.4rem;
}

.card-print__back-owner {
    position: absolute;
    right: 0.85rem;
    bottom: calc(var(--card-film-h) + 0.45rem);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.12rem;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(219, 201, 156, 0.15);
    min-width: 5.5rem;
    z-index: 3;
}

.card-print__back-owner-label {
    font-size: clamp(0.3125rem, 1.2vw, 0.375rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #686B70;
}

.card-print__back-owner-name {
    font-size: clamp(0.4375rem, 1.7vw, 0.53125rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.card-print__back-v2-tag-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    color: rgba(219, 201, 156, 0.55);
}

.card-print__back-tag-icon {
    width: 0.5rem;
    height: 0.5rem;
}

.card-print__back-v2-services {
    list-style: none;
    margin: 0 0 0.45rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem 0.35rem;
}

.card-print__back-v2-services li {
    font-size: clamp(0.34375rem, 1.35vw, 0.40625rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.3;
}

.card-print__back-v2-services li:not(:last-child)::after {
    content: ' ·';
    color: #686B70;
    margin-left: 0.15rem;
}

.card-print__back-v2-services-more {
    color: #686B70;
    font-style: italic;
}

.card-print__back-v2-url {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    font-size: clamp(0.5625rem, 2.2vw, 0.6875rem);
    font-weight: 700;
    color: #DBC99C;
    margin: 0 0 0.12rem;
    line-height: 1.3;
}

.card-print__back-v2-phone {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    font-size: clamp(0.375rem, 1.45vw, 0.4375rem);
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 0.2rem;
    line-height: 1.3;
}

.card-print__back-v2-socials {
    margin: 0.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.card-print__back-v2-social {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    font-size: clamp(0.34375rem, 1.35vw, 0.40625rem);
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    line-height: 1.3;
}

.card-print__social-icon {
    width: 0.55rem;
    height: 0.55rem;
    flex-shrink: 0;
    color: rgba(219, 201, 156, 0.8);
}

.card-print__back-v2-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.card-print__back-v2-scan {
    font-size: clamp(0.3125rem, 1.2vw, 0.375rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #686B70;
    margin: 0;
}

/* Sedan icon picker */
.sedan-option-card {
    gap: 0.35rem;
    cursor: default;
}

.sedan-option-card__icon {
    margin-bottom: 0.25rem;
}

/* ─── Logo mockup (1:1) ─── */

.logo-studio {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-studio__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo-surface {
    width: 100%;
    max-width: 56rem;
    padding: 2.5rem 1.5rem 3rem;
    border-radius: 1rem;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(219, 201, 156, 0.06) 0%, transparent 60%),
        linear-gradient(165deg, #1a1d22 0%, #14171b 100%);
    border: 1px solid rgba(104, 107, 112, 0.2);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.logo-surface--circle {
    margin-top: 2rem;
}

.logo-surface__title {
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #DBC99C;
    margin: 0 0 0.35rem;
}

.logo-surface__subtitle {
    text-align: center;
    font-size: 0.75rem;
    color: #686B70;
    max-width: 28rem;
    margin: 0 auto 2rem;
    line-height: 1.45;
}

.logo-surface__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.logo-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.logo-unit__label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #686B70;
}

.logo-unit__hint {
    font-size: 0.5625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(104, 107, 112, 0.85);
}

.logo-preview-chip {
    margin-top: 0.35rem;
    padding: 0.65rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(104, 107, 112, 0.25);
}

.logo-preview-chip--light {
    background: #f4f2ed;
}

.logo-mark--chip {
    --logo-size: 4.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.logo-mark--chip .card-film-strip,
.logo-mark--chip .logo-mark__corner {
    display: none;
}

.logo-mark--chip .logo-mark__bg-fill {
    top: 0;
    bottom: 0;
    background: #0a0c0f;
}

.logo-mark {
    --logo-size: min(88vw, 16rem);
    --card-film-h: 0.85rem;
    --card-bg: #0a0c0f;
    width: var(--logo-size);
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background-color: var(--card-bg);
    box-shadow: none;
}

.logo-mark--detailed {
    box-shadow:
        inset 0 0 0 1px rgba(219, 201, 156, 0.06),
        0 12px 40px rgba(0, 0, 0, 0.35);
}

.logo-mark__grid-overlay {
    position: absolute;
    top: var(--card-film-h);
    bottom: var(--card-film-h);
    left: 0;
    right: 0;
    z-index: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(104, 107, 112, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(104, 107, 112, 0.12) 1px, transparent 1px);
    background-size: 0.65rem 0.65rem;
    pointer-events: none;
}

.logo-mark__film-edge {
    position: absolute;
    top: var(--card-film-h);
    bottom: var(--card-film-h);
    width: 3px;
    z-index: 1;
    background: repeating-linear-gradient(
        180deg,
        rgba(219, 201, 156, 0.08) 0,
        rgba(219, 201, 156, 0.08) 4px,
        transparent 4px,
        transparent 8px
    );
    pointer-events: none;
}

.logo-mark__film-edge--left { left: 0.2rem; }
.logo-mark__film-edge--right { right: 0.2rem; }

.logo-mark__corner--tr {
    top: 0.78rem;
    right: 0.5rem;
    left: auto;
    border-width: 1.5px 1.5px 0 0;
}

.logo-mark__corner--bl {
    bottom: 0.98rem;
    left: 0.5rem;
    border-width: 0 0 1.5px 1.5px;
}

.logo-mark__reg-marks {
    position: absolute;
    inset: var(--card-film-h) 0.35rem;
    z-index: 1;
    pointer-events: none;
}

.logo-mark__reg {
    position: absolute;
    width: 0.45rem;
    height: 0.45rem;
    border: 1px solid rgba(219, 201, 156, 0.2);
    border-radius: 1px;
}

.logo-mark__reg--tl { top: 0.35rem; left: 0.35rem; }
.logo-mark__reg--tr { top: 0.35rem; right: 0.35rem; }
.logo-mark__reg--bl { bottom: 0.35rem; left: 0.35rem; }
.logo-mark__reg--br { bottom: 0.35rem; right: 0.35rem; }

.logo-mark__frame-ticks {
    position: absolute;
    inset: calc(var(--card-film-h) + 0.15rem) 0.25rem;
    z-index: 1;
    pointer-events: none;
}

.logo-mark__tick {
    position: absolute;
    background: rgba(219, 201, 156, 0.25);
}

.logo-mark__tick--top,
.logo-mark__tick--bottom {
    left: 50%;
    width: 1.25rem;
    height: 1px;
    margin-left: -0.625rem;
}

.logo-mark__tick--top { top: 0; }
.logo-mark__tick--bottom { bottom: 0; }

.logo-mark__tick--left,
.logo-mark__tick--right {
    top: 50%;
    width: 1px;
    height: 1.25rem;
    margin-top: -0.625rem;
}

.logo-mark__tick--left { left: 0; }
.logo-mark__tick--right { right: 0; }

.logo-mark--circle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark--circle .logo-mark__grid-overlay {
    opacity: 0.5;
}

.logo-mark--minimal-frame::after {
    display: none;
}

.logo-mark__circle--simple {
    box-shadow:
        0 0 0 1px rgba(219, 201, 156, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.logo-mark__circle--simple .logo-mark__circle-ring--inner,
.logo-mark__circle--simple .logo-mark__circle-glow,
.logo-mark__circle--simple .logo-mark__circle-notches {
    display: none;
}

.logo-mark__circle--car .logo-mark__circle-inner {
    padding: 0;
}

.logo-mark__car-icon {
    width: 52%;
    height: 52%;
    color: #DBC99C;
}

.logo-mark__ft--square {
    font-size: clamp(2.75rem, 11vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(160deg, #f0e6c8 0%, #DBC99C 50%, #a89468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-mark--circle .logo-mark__name--circle {
    font-size: clamp(0.95rem, 4.2vw, 1.25rem);
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.logo-mark__circle--ft .logo-mark__ft {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
}

.logo-mark__role {
    flex-direction: row;
    gap: 0.4rem;
    padding-left: 0;
    margin-top: 0.45rem;
}

.logo-mark__circle {
    --circle-size: 74%;
    position: relative;
    z-index: 3;
    width: var(--circle-size);
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 80% 70% at 30% 25%, rgba(219, 201, 156, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 75% 80%, rgba(38, 45, 53, 0.5) 0%, transparent 55%),
        linear-gradient(165deg, #14181e 0%, #0a0c0f 55%, #07080a 100%);
    box-shadow:
        0 0 0 1px rgba(219, 201, 156, 0.2),
        0 0 0 3px rgba(10, 12, 15, 0.9),
        0 8px 28px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.logo-mark__circle-glow {
    position: absolute;
    inset: -8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(219, 201, 156, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.logo-mark__circle-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.logo-mark__circle-ring--outer {
    inset: -3px;
    border: 1px solid rgba(219, 201, 156, 0.35);
}

.logo-mark__circle-ring--inner {
    inset: 6%;
    border: 1px solid rgba(219, 201, 156, 0.12);
}

.logo-mark__circle-notches {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.logo-mark__notch {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 5px;
    margin-left: -1px;
    margin-top: -2.5px;
    background: rgba(219, 201, 156, 0.45);
    border-radius: 1px;
    transform-origin: 50% 50%;
}

.logo-mark__circle-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
}

.logo-mark__circle-icon {
    width: clamp(1rem, 4vw, 1.35rem);
    height: clamp(1rem, 4vw, 1.35rem);
    color: #DBC99C;
    margin-bottom: 0.2rem;
}

.logo-mark__name--circle {
    font-size: clamp(0.85rem, 3.8vw, 1.15rem);
    line-height: 1.05;
    letter-spacing: 0.1em;
}

.logo-mark__role--circle {
    font-size: clamp(0.4rem, 1.6vw, 0.5rem);
    letter-spacing: 0.28em;
    margin-top: 0.35rem;
    padding-left: 0.28em;
}

.logo-mark__eyebrow--circle {
    font-size: clamp(0.4rem, 1.5vw, 0.5rem);
    margin-bottom: 0.15rem;
}

.logo-mark__circle--ft {
    background:
        radial-gradient(ellipse 70% 60% at 50% 35%, rgba(219, 201, 156, 0.15) 0%, transparent 55%),
        linear-gradient(180deg, #1a1f26 0%, #0a0c0f 100%);
}

.logo-mark__ft {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    background: linear-gradient(160deg, #f0e6c8 0%, #DBC99C 45%, #a89468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-mark__divider--ft {
    width: 1.75rem;
    margin: 0.35rem auto;
}

.logo-mark__ft-sub {
    font-size: clamp(0.45rem, 1.8vw, 0.5625rem);
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 0.42em;
    margin: 0;
}

.logo-mark__eyebrow {
    font-size: clamp(0.4375rem, 1.8vw, 0.5625rem);
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(219, 201, 156, 0.55);
    margin: 0 0 0.25rem;
    padding-left: 0.38em;
}

.logo-mark__ornament {
    display: flex;
    justify-content: center;
    margin-bottom: 0.2rem;
    color: rgba(219, 201, 156, 0.45);
}

.logo-mark__ornament-icon {
    width: clamp(0.85rem, 3.5vw, 1.1rem);
    height: clamp(0.85rem, 3.5vw, 1.1rem);
}

.logo-mark__tagline {
    font-size: clamp(0.4375rem, 1.7vw, 0.5625rem);
    font-style: italic;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.42);
    margin: 0.5rem 0 0;
}

.logo-mark__micro {
    font-size: clamp(0.4rem, 1.5vw, 0.5rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(219, 201, 156, 0.4);
    margin: 0.35rem 0 0;
}

.logo-mark__detail-row {
    display: flex;
    gap: 0.35rem;
    margin-top: 0.45rem;
}

.logo-mark__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(219, 201, 156, 0.35);
}

.logo-mark__divider--sm {
    width: 1.5rem;
    margin: 0.4rem auto;
}

.logo-mark__inner--detailed {
    padding: 0.95rem 0.85rem;
}

.logo-mark__orbit {
    position: absolute;
    width: 88%;
    height: 88%;
    border: 1px dashed rgba(219, 201, 156, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.logo-mark__sparkle {
    position: absolute;
    top: 18%;
    right: 22%;
    width: clamp(0.65rem, 2.5vw, 0.85rem);
    height: clamp(0.65rem, 2.5vw, 0.85rem);
    color: rgba(219, 201, 156, 0.5);
    z-index: 2;
}

.logo-mark__monogram--bg {
    font-size: clamp(3.75rem, 15vw, 5.25rem);
    color: rgba(219, 201, 156, 0.08);
}

.logo-mark__bg-fill {
    position: absolute;
    top: var(--card-film-h);
    bottom: var(--card-film-h);
    left: 0;
    right: 0;
    z-index: 0;
    background: var(--card-bg);
}

.logo-mark--primary .logo-mark__bg-fill {
    background:
        radial-gradient(ellipse 90% 70% at 15% 88%, rgba(38, 45, 53, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 92% 10%, rgba(219, 201, 156, 0.07) 0%, transparent 50%),
        linear-gradient(165deg, #0d1014 0%, #0a0c0f 55%, #07080a 100%);
}

.logo-mark--type .logo-mark__bg-fill {
    background:
        radial-gradient(ellipse 75% 55% at 50% 45%, rgba(38, 45, 53, 0.4) 0%, transparent 62%),
        linear-gradient(165deg, #12151a 0%, #0a0c0f 50%, #07080a 100%);
}

.logo-mark--icon .logo-mark__bg-fill {
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(219, 201, 156, 0.08) 0%, transparent 65%),
        linear-gradient(180deg, #14181e 0%, #0a0c0f 100%);
}

.logo-mark .card-film-strip--top,
.logo-mark .card-film-strip--bottom {
    height: var(--card-film-h);
    background-color: var(--card-bg);
}

.logo-mark__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 1.1rem 1rem;
}

.logo-mark__name {
    font-size: clamp(1.5rem, 6.5vw, 2.1rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #DBC99C;
    margin: 0;
    line-height: 1;
}

.logo-mark__role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: clamp(0.5rem, 2.2vw, 0.6875rem);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    margin: 0.5rem 0 0;
    padding-left: 0.32em;
}

.logo-mark__role-icon {
    width: clamp(0.75rem, 3vw, 0.95rem);
    height: clamp(0.75rem, 3vw, 0.95rem);
    color: #DBC99C;
    flex-shrink: 0;
}

.logo-mark__divider {
    width: 2.25rem;
    height: 1px;
    margin: 0.65rem auto 0;
    background: linear-gradient(90deg, transparent, rgba(219, 201, 156, 0.45), transparent);
}

.logo-mark__type-icon {
    width: clamp(1.35rem, 5.5vw, 1.75rem);
    height: clamp(1.35rem, 5.5vw, 1.75rem);
    color: rgba(219, 201, 156, 0.35);
    margin-bottom: 0.25rem;
}

.logo-mark__inner--icon {
    position: relative;
    gap: 0;
}

.logo-mark__monogram {
    position: absolute;
    font-size: clamp(3.5rem, 14vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: rgba(219, 201, 156, 0.12);
    user-select: none;
    pointer-events: none;
}

.logo-mark__icon-svg {
    position: relative;
    z-index: 1;
    width: clamp(3rem, 12vw, 4.25rem);
    height: clamp(3rem, 12vw, 4.25rem);
    color: #DBC99C;
}

.logo-mark__inner--type {
    gap: 0.15rem;
}

.logo-mark__type-line {
    display: block;
    line-height: 1;
    text-transform: lowercase;
}

.logo-mark__type-line--1 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #e8dcc0 0%, #DBC99C 50%, #b8a67a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-mark__type-line--2 {
    font-size: clamp(0.5625rem, 2.4vw, 0.72rem);
    font-weight: 500;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.55);
    padding-left: 0.4em;
    margin-top: 0.35rem;
}

/* Booking flow */
.booking-validation {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.45);
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
    margin-bottom: 1.5rem;
    color: #fecaca;
    font-size: 0.875rem;
}

.booking-validation ul {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
}

.booking-validation li {
    margin-top: 0.25rem;
}

.booking-addon-card {
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-addon-card:active {
    transform: scale(0.985);
}

.booking-addon-card:has(:checked) {
    animation: booking-addon-pop 0.35s ease;
    box-shadow: 0 0 0 1px rgba(219, 201, 156, 0.25);
}

@keyframes booking-addon-pop {
    0% { transform: scale(1); }
    45% { transform: scale(1.015); }
    100% { transform: scale(1); }
}

/* ─── Social media background (/background) ─── */

.page-background {
    --chroma-green: #39ff14;
    background-color: var(--chroma-green) !important;
}

.page-background.dot-grid-bg::before {
    display: none;
}

.page-background .dot-grid-layer {
    background: var(--chroma-green);
}

.page-background .home-section-surface,
.page-background .home-section-surface--deep {
    background: transparent !important;
}

.page-background .home-section-surface::before,
.page-background .home-section-surface::after {
    display: none;
}

.social-bg-page {
    padding-top: 0;
    background: transparent;
}

.page-background .fixed.top-0,
.page-background .fixed.bottom-0 {
    display: none;
}

.social-bg-studio {
    max-width: 56rem;
    margin: 0 auto;
}

.social-bg-studio__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-bg-studio__btn {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.55rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(219, 201, 156, 0.35);
    background: rgba(219, 201, 156, 0.08);
    color: #DBC99C;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.social-bg-studio__btn:hover {
    background: rgba(219, 201, 156, 0.16);
    border-color: rgba(219, 201, 156, 0.55);
}

.social-bg-studio__btn--secondary {
    border-color: rgba(104, 107, 112, 0.45);
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.85);
}

.social-bg-studio__btn--secondary:hover {
    border-color: rgba(104, 107, 112, 0.65);
    background: rgba(0, 0, 0, 0.35);
}

.social-bg-studio__btn--download {
    width: 100%;
    max-width: 22rem;
    margin-top: 0.25rem;
}

.social-bg-card:has(.social-bg-card__frame--landscape) .social-bg-studio__btn--download {
    max-width: 36rem;
}

.social-bg-card:has(.social-bg-card__frame--story) .social-bg-studio__btn--download {
    max-width: 14rem;
}

.social-bg-studio__btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

.social-bg-studio__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .social-bg-studio__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.social-bg-card__head {
    margin-bottom: 0.65rem;
}

.social-bg-card__title {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #DBC99C;
    margin: 0;
}

.social-bg-card__meta {
    font-size: 0.6875rem;
    color: #686B70;
    margin: 0.2rem 0 0;
}

.social-bg-card__frame {
    position: relative;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(104, 107, 112, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.social-bg-card__frame--square {
    aspect-ratio: 1;
    max-width: 22rem;
}

.social-bg-card__frame--landscape {
    aspect-ratio: 16 / 9;
    grid-column: 1 / -1;
    max-width: 36rem;
}

.social-bg-card__frame--story {
    aspect-ratio: 9 / 16;
    max-width: 14rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .social-bg-card__frame--story {
        margin: 0;
    }
}

.social-bg-art {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #0a0c0f;
}

.social-bg-art__base {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(155deg, #07080a 0%, #0a0c0f 35%, #14181e 70%, #262D35 100%);
}

.social-bg-art__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    will-change: transform;
}

.social-bg-art__orb--gold {
    width: 62%;
    height: 62%;
    top: -18%;
    right: -12%;
    background: rgba(219, 201, 156, 0.42);
}

.social-bg-art__orb--slate {
    width: 58%;
    height: 58%;
    bottom: -22%;
    left: -18%;
    background: rgba(38, 45, 53, 0.85);
}

.social-bg-art__orb--warm {
    width: 34%;
    height: 34%;
    bottom: 18%;
    right: 8%;
    background: rgba(219, 201, 156, 0.14);
    filter: blur(56px);
}

.social-bg-art--wide .social-bg-art__orb--gold {
    width: 45%;
    height: 70%;
    top: -25%;
    right: 5%;
}

.social-bg-art--wide .social-bg-art__orb--slate {
    width: 50%;
    height: 55%;
    bottom: -30%;
    left: -8%;
}

.social-bg-art--tall .social-bg-art__orb--gold {
    width: 85%;
    height: 38%;
    top: -8%;
    right: -20%;
}

.social-bg-art--tall .social-bg-art__orb--slate {
    width: 75%;
    height: 42%;
    bottom: -12%;
    left: -25%;
}

.social-bg-art__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 75% at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
}

.social-bg-art__grain {
    position: absolute;
    inset: 0;
    opacity: 0.055;
    pointer-events: none;
    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");
}

.social-bg-studio__note {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #686B70;
    text-align: center;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

body.social-bg-ui-hidden .social-bg-studio__toolbar,
body.social-bg-ui-hidden .social-bg-studio__note,
body.social-bg-ui-hidden .social-bg-studio__btn--download,
body.social-bg-ui-hidden .fixed.top-0,
body.social-bg-ui-hidden .fixed.bottom-0 {
    display: none !important;
}

body.social-bg-ui-hidden .social-bg-studio {
    padding: 0;
    max-width: none;
}

body.social-bg-ui-hidden .social-bg-card__head {
    display: none;
}

body.social-bg-ui-hidden .social-bg-card__frame {
    border-radius: 0;
    border: none;
    box-shadow: none;
    max-width: none !important;
}

body.social-bg-ui-hidden .social-bg-studio__grid {
    gap: 0;
}

body.social-bg-ui-hidden.page-background .dot-grid-bg,
body.social-bg-ui-hidden.page-background .dot-grid-layer {
    background: var(--chroma-green, #39ff14) !important;
}

body.social-bg-ui-hidden.page-background .dot-grid-bg::before {
    display: none;
}
