/* Belle Vie — landing (matches reference design) */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.landing-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    overflow-x: hidden;
}

.landing-vignette {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 75% 70% at 4% 2%, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 42%, transparent 68%),
        radial-gradient(ellipse 95% 85% at 100% 0%, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 42%, transparent 68%),
        radial-gradient(ellipse 80% 65% at 0% 100%, rgba(0, 0, 0, 0.65) 0%, transparent 58%),
        radial-gradient(ellipse 80% 65% at 100% 100%, rgba(0, 0, 0, 0.65) 0%, transparent 58%);
}

/*
 * Worker is ~26% from the left in the art. --hero-x keeps that side in frame on every screen;
 * cover fills the viewport; only the far right of the panorama is cropped when narrow.
 */
.landing-bg {
    --hero-x: 10%;
    --hero-y: center;
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-color: #3d2a4a;
    pointer-events: none;
}

.landing-bg img,
img.landing-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-x) var(--hero-y);
    display: block;
}

/* Legacy markup: <img class="landing-bg"> without a wrapper */
img.landing-bg {
    position: fixed;
    z-index: 0;
}

@media (max-aspect-ratio: 16/10) {
    .landing-bg {
        --hero-x: 14%;
    }
}

@media (max-aspect-ratio: 4/3) {
    .landing-bg {
        --hero-x: 18%;
    }
}

@media (max-aspect-ratio: 1/1) {
    .landing-bg {
        --hero-x: 22%;
    }
}

@media (max-aspect-ratio: 3/4) {
    .landing-bg {
        --hero-x: 24%;
        --hero-y: 48%;
    }
}

@media (max-aspect-ratio: 9/16) {
    .landing-bg {
        --hero-x: 26%;
        --hero-y: 46%;
    }
}

@media (max-aspect-ratio: 9/16) and (max-width: 400px) {
    .landing-bg {
        --hero-x: 28%;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .landing-bg {
        --hero-x: 16%;
        --hero-y: 42%;
    }
}

.landing-header {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 48px);
}

.landing-logo {
    display: inline-block;
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: clamp(2rem, 5vw, 2.85rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: lowercase;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 24px rgba(0, 0, 0, 0.75),
        0 0 48px rgba(0, 0, 0, 0.5);
    transition:
        transform 0.28s ease,
        letter-spacing 0.28s ease,
        text-shadow 0.28s ease;
}

.landing-logo:hover {
    transform: scale(1.03);
    letter-spacing: 0.05em;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(240, 160, 48, 0.5),
        0 0 44px rgba(240, 160, 48, 0.28);
}

.landing-phone-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.95rem, 2.2vw, 1.125rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 24px rgba(0, 0, 0, 0.75),
        0 0 48px rgba(0, 0, 0, 0.5);
    transition:
        transform 0.28s ease,
        text-shadow 0.28s ease;
}

.landing-phone-header:hover {
    transform: scale(1.03);
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(240, 160, 48, 0.5),
        0 0 44px rgba(240, 160, 48, 0.28);
}

.landing-phone-header .icon--phone {
    transition: transform 0.28s ease, color 0.28s ease;
}

.landing-phone-header:hover .icon--phone {
    transform: scale(1.12);
    color: #ffb84d;
}

.landing-main {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px clamp(16px, 4vw, 24px) 20px;
}

.contact-card {
    width: min(100%, 400px);
    background: rgba(38, 28, 24, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(72, 52, 36, 0.85);
    cursor: text;
}

a.contact-row {
    cursor: pointer;
    transition: background 0.28s ease, transform 0.28s ease;
}

a.contact-row:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: scale(1.01);
}

a.contact-row:hover .icon {
    transform: scale(1.1);
    color: #ffb84d;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-row--address {
    font-style: italic;
}

.contact-row--copy {
    font-size: 0.8rem;
    padding-top: 12px;
    padding-bottom: 14px;
    cursor: default;
}

.contact-row .icon {
    width: 18px;
    height: 18px;
    transition: transform 0.28s ease, color 0.28s ease;
}

.icon {
    flex-shrink: 0;
    color: #f0a030;
}

.landing-phone-header .icon--phone {
    color: #f0a030;
}

/* Subpages (offer, privacy) — same shell */
body.subpage {
    min-height: 100vh;
    min-height: 100dvh;
    font-family: 'Inter', system-ui, sans-serif;
    color: #fff;
}

.subpage .landing-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: clamp(28px, 5vw, 48px) clamp(24px, 5vw, 56px);
}

.subpage .landing-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    text-transform: lowercase;
    color: #fff;
    text-decoration: none;
}

.subpage-main {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

.subpage-card {
    background: rgba(38, 28, 24, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: clamp(24px, 5vw, 40px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.subpage-card h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.subpage-card h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin: 1.25rem 0 0.5rem;
    color: #f0a030;
}

.subpage-card p,
.subpage-card li {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.85rem;
    opacity: 0.95;
}

.subpage-card a {
    color: #f0a030;
}

.subpage-back {
    display: inline-block;
    margin-top: 1.5rem;
    color: #f0a030;
    text-decoration: none;
    font-size: 0.9rem;
}

.subpage-back:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .landing-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .landing-phone-header {
        align-self: flex-end;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-logo,
    .landing-phone-header,
    a.contact-row,
    .contact-row .icon,
    .landing-phone-header .icon--phone {
        transition: none;
    }

    .landing-logo:hover,
    .landing-phone-header:hover,
    a.contact-row:hover {
        transform: none;
    }

    .landing-phone-header:hover .icon--phone,
    a.contact-row:hover .icon {
        transform: none;
    }
}
