:root {
    --bg: #08070b;
    --bg-soft: #0e0c16;
    --surface: rgba(20, 17, 30, 0.94);
    --surface-strong: #141124;
    --surface-soft: rgba(255, 255, 255, 0.02);
    --stroke: rgba(255, 255, 255, 0.06);
    --stroke-strong: rgba(180, 140, 255, 0.3);
    --text: #f0ecf6;
    --muted: #948ca8;
    --accent: #b48cff;
    --accent-light: #d4bfff;
    --accent-dark: #8a5ce0;
    --accent-soft: rgba(180, 140, 255, 0.12);
    --accent-gradient: linear-gradient(135deg, #d4bfff 0%, #b48cff 40%, #8a5ce0 100%);
    --gold: #c6a962;
    --gold-soft: rgba(198, 169, 98, 0.15);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.6);
    --shadow-accent: 0 8px 32px rgba(180, 140, 255, 0.2);
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --shell: min(1200px, calc(100vw - 2rem));
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(180, 140, 255, 0.06), transparent 40rem),
        radial-gradient(ellipse at 80% 80%, rgba(138, 92, 224, 0.04), transparent 30rem),
        linear-gradient(180deg, #0e0c16 0%, #08070b 50%, #0a0910 100%);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button,
input,
textarea {
    font: inherit;
}

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

.page-shell {
    position: relative;
    overflow-x: clip;
}

.shell {
    width: var(--shell);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 7, 11, 0.75);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(180, 140, 255, 0.15) 30%, rgba(180, 140, 255, 0.25) 50%, rgba(180, 140, 255, 0.15) 70%, transparent 100%);
    pointer-events: none;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.brand-icon {
    font-size: 0.65rem;
    color: var(--accent);
    opacity: 0.7;
    line-height: 1;
}

.brand-copy {
    display: grid;
    gap: 0.02rem;
}

.brand-copy strong {
    letter-spacing: 0.28rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.62rem;
    letter-spacing: 0.12rem;
    -webkit-text-fill-color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.site-nav-group {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.site-nav-group a {
    position: relative;
    color: var(--muted);
    transition: color 250ms ease;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02rem;
}

.site-nav-group a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.9rem;
    right: 0.9rem;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 250ms var(--ease-smooth);
}

.site-nav-group a:hover {
    color: var(--text);
}

.site-nav-group a:hover::after {
    transform: scaleX(1);
}

.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.4rem;
    padding-left: 0.4rem;
}

.nav-action-divider {
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--muted);
    opacity: 0.3;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    min-height: 2.2rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    cursor: pointer;
    transition: all 200ms ease;
    border: 1px solid transparent;
}

.nav-btn-outline {
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--muted);
    background: transparent;
}

.nav-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-btn-solid {
    background: var(--accent);
    color: #08070b;
    border-color: var(--accent);
}

.nav-btn-solid:hover {
    background: #c4a0ff;
    border-color: #c4a0ff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 2.4rem;
    height: 2.4rem;
    min-width: 0;
    padding: 0;
    border-radius: 8px;
    border: 1px solid var(--stroke);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 101;
}

.menu-bar {
    display: block;
    width: 16px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--text);
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
    pointer-events: none;
}

.menu-toggle:hover {
    border-color: var(--accent);
}

.menu-toggle.is-active .menu-bar:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle.is-active .menu-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.is-active .menu-bar:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: rgba(8, 7, 11, 0.97);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    z-index: 90;
    transition: max-height 400ms var(--ease-smooth);
}

.mobile-menu.is-open {
    max-height: 30rem;
}

.mobile-menu-inner {
    padding: 0 1rem 1.5rem;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 300ms ease 50ms, transform 300ms var(--ease-smooth) 50ms;
}

.mobile-menu.is-open .mobile-menu-inner {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem 0 1rem;
}

.mobile-menu-links a {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.7rem 0.5rem;
    color: var(--muted);
    transition: color 200ms ease, background 200ms ease;
    border-radius: var(--radius-sm);
}

.mobile-menu-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.eyebrow {
    margin: 0;
    color: var(--accent);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
}

.hero-section {
    position: relative;
    padding: 1.5rem 0 1.25rem;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 24rem;
    margin: 0 auto;
}

.hero-search {
    position: relative;
    z-index: 1;
}

.hero-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-search-form input[type="text"] {
    width: 100%;
    height: 2.4rem;
    padding: 0 1rem 0 2.2rem;
    border-radius: 999px;
    border: 1px solid rgba(180, 140, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04rem;
    transition: all 0.3s ease;
}

.hero-search-form input[type="text"]:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(180, 140, 255, 0.08);
}

.hero-search-form .search-icon {
    position: absolute;
    left: 0.85rem;
    color: var(--accent);
    pointer-events: none;
    z-index: 10;
    opacity: 0.5;
}

.hero-search-hint {
    margin-top: 0.3rem;
    font-size: 0.65rem;
    color: var(--muted);
    min-height: 0.9rem;
}

.hero-search-hint.is-success {
    color: var(--accent-light);
}

.hero-search-hint.is-error {
    color: #f87171;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button-primary {
    background: var(--accent);
    color: #08070b;
    box-shadow: var(--shadow-accent);
}

.button-primary:hover {
    background: #c4a0ff;
    box-shadow: 0 12px 40px rgba(180, 140, 255, 0.3);
}

.button-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.button-block {
    width: 100%;
}

.button-small {
    min-height: 2.4rem;
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
}


.vip-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(198, 169, 98, 0.25);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    transition: all 250ms ease;
    background: rgba(198, 169, 98, 0.06);
}

.vip-nav-btn:hover {
    background: rgba(198, 169, 98, 0.14);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(198, 169, 98, 0.12);
}

.vip-nav-btn i {
    color: var(--gold);
    font-size: 0.7rem;
}

.section {
    padding: 5rem 0;
}

.models-section {
    padding-top: 0.5rem;
    padding-bottom: 5rem;
    text-align: center;
}

.models-section .section-heading:empty {
    display: none;
}

.section-heading {
    max-width: 40rem;
    margin: 0 auto;
}

.section-heading-center {
    text-align: center;
}

.section-heading h2 {
    margin: 0.8rem 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    letter-spacing: -0.03em;
    color: var(--text);
    font-weight: 600;
}

.section-heading p {
    margin: 0.7rem 0 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.modal-panel h3 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -0.03em;
    color: var(--text);
}

.section-heading p,
.model-meta p,
.model-tip,
.site-footer p,
.modal-panel p {
    color: var(--muted);
}

.modal-actions,
.model-actions {
    display: flex;
    gap: 1rem;
}

.code-search-panel,
.search-result-card,
.empty-state-card,
.detail-hero-card,
.detail-table-card,
.detail-side-card {
    border: 1px solid var(--stroke);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.code-search-panel {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: left;
}

.code-search-label {
    margin: 0;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.code-search-copy {
    margin: 0.5rem 0 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.9rem;
}

.code-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.code-search-form input {
    min-height: 3rem;
    padding: 0.8rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    letter-spacing: 0.16rem;
    text-transform: uppercase;
    font-size: 0.82rem;
    transition: border-color 200ms ease;
}

.code-search-form input:focus {
    outline: none;
    border-color: rgba(180, 140, 255, 0.4);
}

.code-search-hint {
    margin: 0.8rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.code-search-hint.is-success {
    color: var(--accent-light);
}

.code-search-hint.is-error {
    color: #f87171;
}

.categories-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    margin: 0.5rem auto 2rem;
    padding: 0.3rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    max-width: 46rem;
}

.category-item {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    transition: all 200ms ease;
    white-space: nowrap;
}

.category-item:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.category-item.active {
    color: var(--accent-light);
    background: rgba(180, 140, 255, 0.12);
}

.category-item.highlight {
    color: #10b981;
    letter-spacing: 0.1rem;
}

.category-item.highlight:hover {
    color: #34d399;
    background: rgba(16, 185, 129, 0.12);
}

.category-item.highlight.active {
    color: var(--bg);
    background: #10b981;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0 3rem;
}

@media (min-width: 1100px) {
    .models-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.premium-model-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--surface-strong);
    box-shadow: var(--shadow-sm);
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    cursor: pointer;
    transition: opacity 350ms ease, transform 350ms ease, visibility 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

.premium-model-card.is-hidden {
    opacity: 0;
    transform: scale(0.95);
    position: absolute;
    pointer-events: none;
    visibility: hidden;
}

.premium-model-card:hover {
    transform: translateY(-4px);
    border-color: rgba(180, 140, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.model-card-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #0d0b14;
}

.model-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ease-smooth);
}

.premium-model-card:hover .model-grid-img {
    transform: scale(1.08);
}

.verified-badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.3rem 0.5rem;
    background: rgba(180, 140, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.model-card-hover-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: rgba(8, 7, 11, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 300ms ease;
}

.premium-model-card:hover .model-card-hover-overlay {
    opacity: 1;
}

.view-profile-btn,
.quick-book-btn {
    width: 80%;
    min-height: 2.4rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.04rem;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.view-profile-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.view-profile-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

.quick-book-btn {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #08070b;
    box-shadow: 0 4px 12px rgba(180, 140, 255, 0.2);
}

.quick-book-btn:hover {
    background: #c4a0ff;
}

.model-card-footer {
    padding: 0.9rem 0.8rem 1.1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.model-card-footer h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.04rem;
}

.model-card-meta {
    margin: 0.1rem 0 0.4rem;
    font-size: 0.76rem;
    color: var(--muted);
}

.model-card-code-pill {
    display: inline-flex;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(180, 140, 255, 0.2);
    background: rgba(180, 140, 255, 0.06);
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.model-card-tagline {
    margin: 0.2rem 0 0;
    font-size: 0.74rem;
    line-height: 1.4;
    color: var(--muted);
    height: 2.1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.content-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 64rem;
    margin: 0 auto;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-sm);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
}

.info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.8rem;
}

.info-card p {
    margin: 0.6rem 0 0;
    line-height: 1.7;
    font-size: 0.88rem;
    color: var(--muted);
}

.info-card p:first-of-type {
    margin-top: 0;
}

.info-card-accent {
    background:
        linear-gradient(180deg, rgba(180, 140, 255, 0.04), rgba(180, 140, 255, 0.01)),
        var(--surface);
    border-color: var(--stroke-strong);
}

.policy-list {
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.policy-list li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.policy-list li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0.5;
}

.info-card-accent .policy-list li::before {
    opacity: 0.7;
}

.search-result-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.2rem;
    margin: 0 auto 2rem;
    padding: 1.2rem;
    border-radius: var(--radius-lg);
}

.search-result-card img {
    width: 100%;
    height: 9rem;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 0.4rem);
}

.search-result-card h3 {
    margin: 0.3rem 0 0;
    font-family: 'Cormorant Garamond', serif;
    color: var(--text);
    font-size: 1.8rem;
}

.search-result-card > div > p:last-of-type {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.2rem;
    margin-top: 0.8rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.search-result-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.empty-state-card {
    max-width: 40rem;
    margin: 0 auto;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--muted);
}

.form-error,
.success-message {
    display: none;
    margin: 0.5rem 0 0;
    font-size: 0.78rem;
}

.form-error {
    color: #f87171;
}

.form-error.is-visible {
    display: block;
}

.success-message {
    color: #6ee7b7;
}

.success-message.is-visible {
    display: block;
}

.model-detail-page {
    padding: 3.5rem 0 5rem;
}

.model-detail-shell {
    display: grid;
    gap: 1.5rem;
}

.detail-hero-card {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 1.5rem;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
}

.detail-hero-media {
    position: relative;
    min-height: 20rem;
    border-radius: calc(var(--radius-lg) - 0.4rem);
    overflow: hidden;
}

.detail-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 0.4rem;
}

.detail-hero-copy .eyebrow {
    margin-bottom: 0.4rem;
}

.detail-hero-copy h1 {
    margin: 0.4rem 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text);
}

.detail-subtitle {
    margin: 0.4rem 0 0;
    color: var(--accent);
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-family: 'Cormorant Garamond', serif;
}

.detail-updated {
    margin: 0.8rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.detail-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.detail-layout {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    align-items: start;
}

.detail-table-card,
.detail-side-card {
    padding: 1.3rem 1.5rem;
    border-radius: var(--radius-lg);
}

.detail-row {
    display: grid;
    grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:last-child {
    border-bottom: 0;
}

.detail-row span {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.88rem;
}

.detail-row strong,
.detail-row a {
    color: var(--text);
    font-size: 0.88rem;
}

.detail-side-card h2 {
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: -0.02em;
}

.detail-side-card p {
    margin: 0.8rem 0 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.9rem;
}

.site-footer {
    margin-top: 2rem;
    padding: 0 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(8, 7, 11, 0.4);
}

.fixed-footer-action {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: rgba(8, 7, 11, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

.fixed-footer-action .button {
    border-radius: 0;
    margin: 0;
    width: 100%;
}

.site-footer-grid {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
    text-align: left;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.3fr;
}

.footer-copy {
    margin: 0.8rem 0 0;
    max-width: 30rem;
    line-height: 1.8;
    color: var(--muted);
    font-size: 0.88rem;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 0.6rem;
}

.footer-heading {
    margin: 0 0 0.3rem;
    color: var(--accent);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
}

.footer-column a {
    color: var(--muted);
    font-size: 0.85rem;
    transition: color 200ms ease;
}

.footer-column a:hover {
    color: var(--text);
}

.footer-booking {
    display: grid;
    align-content: start;
    gap: 0.4rem;
}

.footer-booking-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.footer-booking-form {
    display: grid;
    gap: 0.4rem;
}

.footer-booking-form input,
.footer-booking-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.footer-booking-form input:focus,
.footer-booking-form textarea:focus {
    outline: none;
    border-color: rgba(180, 140, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(180, 140, 255, 0.06);
}

.footer-booking-form input::placeholder,
.footer-booking-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.footer-booking-form textarea {
    min-height: 3.5rem;
    resize: vertical;
}

.footer-booking-form .button {
    margin-top: 0.2rem;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    color: var(--muted);
}

.site-footer-bottom > div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer-bottom a {
    color: var(--muted);
    transition: color 200ms ease;
}

.site-footer-bottom a:hover {
    color: var(--text);
}

.site-footer p {
    margin: 0;
    font-size: 0.85rem;
}

.site-footer .brand img {
    height: 1.6rem;
    width: auto;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    padding: 2.5rem 0 1.5rem;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.footer-links {
    display: grid;
    gap: 0.6rem;
}

.footer-link {
    color: var(--muted);
    font-size: 0.88rem;
    transition: color 200ms ease;
}

.footer-link:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    color: var(--muted);
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.site-footer-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0 2rem;
    text-align: center;
}

.site-footer-minimal p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.footer-vip-wrap {
    margin-top: 1.2rem;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.modal-hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(32rem, 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.modal-panel h3 {
    color: var(--text);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.modal-panel p {
    margin: 0.8rem 0 0;
    line-height: 1.8;
}

.modal-actions {
    margin-top: 1.4rem;
}

.flash-stack {
    max-width: var(--shell);
    margin: 1rem auto 0;
    display: grid;
    gap: 0.5rem;
}

.flash {
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
}

.flash-success {
    background: rgba(110, 231, 183, 0.08);
    border: 1px solid rgba(110, 231, 183, 0.2);
    color: #6ee7b7;
}

.flash-error {
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.2);
    color: #f87171;
}

.stars {
    display: inline-flex;
    gap: 0.15rem;
    margin-top: 0.3rem;
}

.vip-page {
    padding: 2.5rem 0 4rem;
}

.vip-shell {
    max-width: 68rem;
}

.vip-hero {
    text-align: center;
    padding: 2.8rem 2.4rem 2.4rem;
    margin-bottom: 2rem;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(180, 140, 255, 0.1), transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
    border: 1px solid var(--stroke-strong);
    border-radius: var(--radius-xl);
}

.vip-hero .eyebrow {
    margin-bottom: 0.8rem;
}

.vip-hero-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-hero-lead {
    max-width: 40rem;
    margin: 1rem auto 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
}

.vip-fee-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 34rem;
    margin: 1.5rem auto 0;
    padding: 1.1rem 1.4rem;
    border: 1px solid rgba(198, 169, 98, 0.2);
    border-radius: 999px;
    background: rgba(8, 7, 11, 0.6);
    box-shadow: inset 0 1px 0 rgba(255, 236, 190, 0.05), var(--shadow-sm);
}

.vip-fee-copy {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
    text-align: left;
}

.vip-fee-label {
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.vip-fee-note {
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.4;
}

.vip-fee-amount {
    display: grid;
    gap: 0.1rem;
    flex-shrink: 0;
    text-align: right;
}

.vip-fee-price {
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.vip-fee-term {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.vip-layout {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.vip-content {
    display: grid;
    gap: 1.25rem;
}

.vip-section h2 {
    margin-bottom: 0.8rem;
    color: var(--text);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.vip-section p {
    margin: 0;
}

.vip-form-card {
    position: relative;
    margin-top: 1.5rem;
    padding-top: 2.2rem;
}

.vip-form-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(180, 140, 255, 0.25);
    background: #08070b;
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.vip-form-card h3 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.vip-form {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.vip-form .field {
    display: grid;
    gap: 0.35rem;
}

.vip-form label {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vip-form .field-optional {
    color: rgba(148, 140, 168, 0.7);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.vip-form input,
.vip-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 0.9rem;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.vip-form input:focus,
.vip-form textarea:focus {
    outline: none;
    border-color: rgba(180, 140, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(180, 140, 255, 0.08);
}

.vip-form textarea {
    min-height: 6rem;
    resize: vertical;
}

.vip-submit {
    margin-top: 0.3rem;
}

.vip-form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

@media (min-width: 960px) {
    .vip-layout {
        grid-template-columns: minmax(0, 1fr) 24rem;
        gap: 2.5rem;
    }

    .vip-form-card {
        margin-top: 0;
    }
}

@media (max-width: 800px) {
    .nav-shell {
        padding: 0.75rem 0;
    }

    .brand {
        flex: 1;
        min-width: 0;
    }

    .menu-toggle {
        width: 2.4rem;
        height: 2.4rem;
        flex-shrink: 0;
    }

    .hero-section {
        padding: 1.25rem 0 1rem;
    }

    .hero-search {
        max-width: 100%;
    }

    .models-section {
        padding-top: 0.5rem;
        padding-bottom: 3rem;
    }

    .categories-nav {
        margin: 0.25rem auto 1.25rem;
        padding: 0.25rem 0.4rem;
        gap: 0.2rem;
    }

    .category-item {
        font-size: 0.62rem;
        padding: 0.3rem 0.6rem;
    }

    .search-result-card,
    .detail-hero-card,
    .detail-layout,
    .site-footer-grid,
    .footer-grid,
    .code-search-form {
        grid-template-columns: 1fr;
    }

    .search-result-actions,
    .detail-hero-actions {
        flex-direction: column;
    }

    .modal-actions,
    .model-actions,
    .site-footer-bottom,
    .site-footer-bottom > div,
    .footer-bottom,
    .footer-meta {
        flex-direction: column;
    }

    .site-footer-bottom,
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 700px) {
    .site-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 640px) {
    :root {
        --shell: min(1200px, calc(100vw - 1.25rem));
    }

    .nav-shell {
        padding: 0.65rem 0;
    }

    .brand-copy strong {
        font-size: 0.8rem;
        letter-spacing: 0.24rem;
    }

    .hero-section {
        padding: 1.5rem 0 1rem;
    }

    .info-card,
    .modal-panel {
        padding: 1.4rem;
    }

    .content-stack {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section.models-section {
        padding-top: 0.5rem;
        padding-bottom: 2.5rem;
    }

    .categories-nav {
        margin-top: 0.15rem;
        padding: 0.2rem 0.35rem;
        gap: 0.15rem;
    }

    .category-item {
        font-size: 0.58rem;
        padding: 0.25rem 0.5rem;
    }

    .search-result-card,
    .detail-table-card,
    .detail-side-card,
    .code-search-panel {
        padding: 0.9rem;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .vip-hero {
        padding: 1.8rem 1.2rem 1.5rem;
    }

    .vip-fee-card {
        flex-direction: column;
        align-items: stretch;
        border-radius: var(--radius-md);
        padding: 1rem 1.1rem;
    }

    .vip-fee-copy,
    .vip-fee-amount {
        text-align: center;
    }

    .vip-fee-amount {
        padding-top: 0.7rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .vip-page {
        padding-top: 1.5rem;
    }

    .site-footer-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0 1.5rem;
    }

    .site-footer-bottom,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.8rem;
    }

    .model-card-footer h3 {
        font-size: 1.15rem;
    }

    .model-card-footer {
        padding: 0.65rem 0.6rem 0.85rem;
    }
}
