
.page-home-luxury {
    color: var(--primary);
    background: var(--marble);
    background-image: none;
}

.page-home-luxury::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-color: #0a1216;
    background-image:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.28) 0%,
            rgba(0, 59, 73, 0.12) 40%,
            rgba(10, 18, 22, 0.55) 100%
        ),
        url("../media/las-cafe-night.png");
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    filter: saturate(1.05) contrast(1.04);
}

.home-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.home-layout {
    width: min(480px, 92%);
    margin-inline-start: auto;
    margin-inline-end: clamp(1rem, 4vw, 3rem);
    margin-block: 0;
    padding: 1.5rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    flex: 1;
    justify-content: flex-start;
}

.home-hero {
    position: relative;
    padding: 0;
    text-align: start;
}

.home-deco-line {
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: 0 0 1rem;
    border-radius: var(--radius-pill);
}

.home-subcopy {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    max-width: none;
    font-size: 0.98rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.home-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.home-trust-row span {
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(198, 142, 101, 0.35);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.home-auth-panel {
    width: 100%;
    max-width: none;
    text-align: start;
    padding: 0;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none;
}

.home-auth-panel h2 {
    margin: 0 0 0.35rem;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.home-auth-panel .home-auth-note {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.6;
    font-family: var(--font-serif);
    font-style: italic;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.home-complaint-title {
    margin: 0 0 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.home-complaint-desc {
    margin-bottom: 0.75rem !important;
}

.home-anonymous-badge {
    margin: 0 0 1rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    line-height: 1.55;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.page-home-luxury .tabs {
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home-luxury .tab:not(.active) {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.page-home-luxury .tab:not(.active):hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(198, 142, 101, 0.45);
}

.page-home-luxury form {
    text-align: right;
}

.page-home-luxury .home-auth-panel label,
.page-home-luxury .home-auth-panel label span {
    color: #fff !important;
    font-weight: 600;
    font-size: 0.92rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

html[data-theme="light"] .page-home-luxury input,
html[data-theme="light"] .page-home-luxury select,
html[data-theme="light"] .page-home-luxury textarea {
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

html[data-theme="light"] .page-home-luxury input::placeholder,
html[data-theme="light"] .page-home-luxury textarea::placeholder {
    color: #5a6b72;
    opacity: 1;
}

html[data-theme="light"] .page-home-luxury select {
    color: var(--text);
}

html[data-theme="dark"] .page-home-luxury input,
html[data-theme="dark"] .page-home-luxury select,
html[data-theme="dark"] .page-home-luxury textarea {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

html[data-theme="dark"] .page-home-luxury input::placeholder,
html[data-theme="dark"] .page-home-luxury textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

html[data-theme="dark"] .page-home-luxury select option {
    color: var(--text);
    background: #fff;
}

.home-footer {
    width: 100%;
    margin: 0.5rem 0 0;
    padding-top: 0.75rem;
    text-align: start;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.8;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.home-branches-simple strong,
.home-contact-simple strong {
    font-family: var(--font-serif);
    font-weight: 600;
    color: #fff;
    margin-inline-end: 0.35rem;
}

.page-home-luxury .site-settings-auth {
    position: static;
}

.page-home-luxury .settings-panel {
    inset-inline-end: 0;
    top: calc(100% + 0.5rem);
}

@media (max-width: 900px) {
    .home-layout {
        width: min(520px, 94%);
        margin-inline-start: auto;
        margin-inline-end: auto;
        padding-top: 1.25rem;
    }
}

@media (max-width: 560px) {
    .home-layout {
        padding-top: 1rem;
    }
}

[data-theme="dark"].page-home-luxury,
[data-theme="dark"] .page-home-luxury {
    --marble: #101618;
}

[data-theme="dark"] .page-home-luxury::before {
    background-color: #080c0e;
    background-image:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(13, 18, 22, 0.35) 45%,
            rgba(8, 12, 14, 0.85) 100%
        ),
        url("../media/las-cafe-night.png");
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0.88) saturate(0.95);
}

[data-theme="dark"] .page-home-luxury .home-subcopy,
[data-theme="dark"] .page-home-luxury .home-auth-note {
    color: rgba(255, 255, 255, 0.82);
}

.home-branches-simple,
.home-contact-simple {
    margin: 0.35rem 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.home-contact-link {
    color: rgba(212, 165, 116, 0.95);
    text-decoration: none;
    font-weight: 600;
}

.home-contact-link:hover,
.home-contact-link:focus-visible {
    text-decoration: underline;
}

.page-home-luxury .alert.error {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(198, 142, 101, 0.55);
    color: #fff;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.page-home-luxury .alert.success {
    background: rgba(45, 122, 79, 0.22);
    border: 1px solid rgba(76, 175, 121, 0.45);
    color: #fff;
    backdrop-filter: blur(10px);
}

.page-home-luxury .alert.info {
    background: rgba(0, 59, 73, 0.28);
    border: 1px solid rgba(143, 208, 232, 0.35);
    color: #fff;
}

.page-home-luxury input:user-invalid,
.page-home-luxury textarea:user-invalid,
.page-home-luxury select:user-invalid {
    border-color: rgba(198, 142, 101, 0.65);
    box-shadow: 0 0 0 2px rgba(198, 142, 101, 0.15);
}

.page-home-luxury .tab[data-tab="complaint"].active {
    background: linear-gradient(135deg, rgba(0, 86, 106, 0.92), rgba(0, 59, 73, 0.88));
    border-color: rgba(198, 142, 101, 0.45);
}
