@import url("https://api.fontshare.com/v2/css?f[]=satoshi@700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap");

:root {
    --forest: #0A2F2B;
    --forest-2: #061d1b;
    --forest-3: #123f3a;
    --vanilla: #FDF6E3;
    --muted: rgba(253, 246, 227, .68);
    --line: rgba(253, 246, 227, .14);
    --glass: rgba(253, 246, 227, .08);
    --amber: #FFC107;
    --male: #48a8ff;
    --female: #ff6fb1;
    --unisex: #ffc107;
    --danger: #ff3b30;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    color: var(--vanilla);
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 193, 7, .13), transparent 30%),
        radial-gradient(circle at 80% 12%, rgba(72, 168, 255, .12), transparent 26%),
        linear-gradient(135deg, var(--forest-2), var(--forest));
    overflow-x: hidden;
}

.announcement-strip {
    position: relative;
    z-index: 30;
    display: grid;
    gap: 10px;
    width: min(1120px, calc(100% - 28px));
    margin: 104px auto 0;
}

.announcement-pill {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(253, 246, 227, .08);
    backdrop-filter: blur(12px);
}

.announcement-pill strong {
    color: var(--amber);
}

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

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

.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 50;
    width: min(1120px, calc(100% - 28px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 68px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 47, 43, .72);
    backdrop-filter: blur(22px);
    box-shadow: 0 22px 80px rgba(0, 0, 0, .26);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    font-weight: 900;
}

.brand-logo {
    width: 46px;
    min-width: 46px;
    max-width: 46px;
    height: 46px;
    min-height: 46px;
    max-height: 46px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(253, 246, 227, .18), 0 12px 35px rgba(0, 0, 0, .28);
}

.brand strong {
    max-width: 200px;
    font-family: "Satoshi", "Inter", sans-serif;
    line-height: 1.05;
    font-size: 15px;
}

nav {
    display: flex;
    gap: 20px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

nav a:hover {
    color: var(--amber);
}

.call-button,
.primary,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    background: var(--amber);
    color: #10211f;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 0 28px rgba(255, 193, 7, .18);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    align-items: end;
    padding: 116px clamp(18px, 5vw, 72px) clamp(36px, 6vw, 82px);
}

.cinemagraph {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cinemagraph::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 29, 27, .78), rgba(6, 29, 27, .36), rgba(6, 29, 27, .82)),
        linear-gradient(0deg, rgba(6, 29, 27, .92), transparent 52%);
}

.cinemagraph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.04);
    animation: livingRoomDrift 18s ease-in-out infinite alternate;
}

.sunbeam,
.coffee-steam,
.laptop-glow {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.sunbeam {
    width: 34vw;
    height: 100vh;
    top: -20vh;
    transform: rotate(24deg);
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, .14), transparent);
    animation: beamMove 8s ease-in-out infinite alternate;
}

.beam-one {
    left: 18%;
}

.beam-two {
    left: 50%;
    animation-delay: 1.7s;
}

.coffee-steam {
    right: 28%;
    bottom: 28%;
    width: 80px;
    height: 160px;
    background: radial-gradient(circle, rgba(253, 246, 227, .3), transparent 62%);
    filter: blur(10px);
    animation: steam 4s ease-in-out infinite;
}

.laptop-glow {
    right: 18%;
    bottom: 34%;
    width: 180px;
    height: 70px;
    background: rgba(72, 168, 255, .22);
    filter: blur(18px);
    animation: pulseGlow 3.4s ease-in-out infinite;
}

.hero-video-label {
    position: absolute;
    right: clamp(18px, 5vw, 72px);
    bottom: 32px;
    z-index: 3;
    color: var(--muted);
    font-size: 13px;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: min(880px, 100%);
}

.eyebrow {
    color: var(--amber);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 13px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Satoshi", "Inter", sans-serif;
}

h1 {
    max-width: 920px;
    margin-bottom: 20px;
    font-size: clamp(48px, 8vw, 104px);
    line-height: .9;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(34px, 5vw, 68px);
    line-height: .95;
}

h3 {
    font-size: 25px;
}

.hero-copy,
.manifesto p,
.visit p,
.section-heading p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.search-console {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    width: min(860px, 100%);
    margin: 30px 0 22px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(253, 246, 227, .09);
    backdrop-filter: blur(22px);
    box-shadow: inset 0 1px 0 rgba(253, 246, 227, .12), 0 30px 90px rgba(0, 0, 0, .22);
}

.console-top {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

.console-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 18px var(--amber);
}

.console-top b {
    color: var(--vanilla);
}

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 850;
    font-size: 13px;
}

input,
select {
    min-height: 48px;
    border: 1px solid rgba(253, 246, 227, .16);
    border-radius: 8px;
    padding: 0 12px;
    background: rgba(6, 29, 27, .68);
    color: var(--vanilla);
    font: inherit;
    outline: none;
}

input:focus,
select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, .12), 0 0 28px rgba(255, 193, 7, .18);
}

option {
    background: var(--forest-2);
}

.signal-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 12px;
    width: min(720px, 100%);
    margin: 0;
}

.signal-row div,
.property-card,
.tilt-card,
.story-card,
.lead-form,
.before-after,
.room-premium,
.policy-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(253, 246, 227, .075);
    backdrop-filter: blur(18px);
}

.signal-row div {
    padding: 14px;
}

dt {
    color: var(--vanilla);
    font-family: "Satoshi", "Inter", sans-serif;
    font-size: 32px;
    font-weight: 900;
}

dd {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.section {
    padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.policy-card {
    padding: 24px;
    color: var(--muted);
    line-height: 1.8;
}

.manifesto {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(24px, 5vw, 80px);
    align-items: start;
}

.manifesto h2 {
    max-width: 960px;
}

.manifesto p {
    max-width: 680px;
}

.section-heading {
    max-width: 880px;
    margin-bottom: 30px;
}

.legend {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 800;
}

.legend span {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

.male {
    background: var(--male);
}

.female {
    background: var(--female);
}

.unisex {
    background: var(--unisex);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.property-card {
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 193, 7, .45);
    background: rgba(253, 246, 227, .11);
}

.property-image {
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.04);
    transition: transform .45s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.06);
}

.property-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    border-radius: 999px;
    padding: 7px 10px;
    color: #041513;
    font-weight: 950;
}

.property-body {
    padding: 18px;
}

.property-body p {
    color: var(--muted);
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 18px 0;
}

.inventory-grid span {
    height: 34px;
    border-radius: 8px;
    box-shadow: inset 0 -12px rgba(0, 0, 0, .16);
}

.fullness-1 {
    opacity: 1;
}

.fullness-2 {
    opacity: .78;
}

.fullness-3 {
    opacity: .54;
}

.fullness-4 {
    opacity: .32;
}

.availability {
    max-height: 22px;
    overflow: hidden;
    transition: max-height .35s ease;
}

.property-card:hover .availability {
    max-height: 72px;
}

.availability strong,
.availability small {
    display: block;
}

.availability strong {
    color: var(--amber);
}

.availability small {
    color: var(--muted);
    margin-top: 4px;
}

.property-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.property-bottom strong small {
    display: block;
    color: var(--muted);
    font-weight: 700;
}

.property-bottom a {
    color: var(--amber);
    font-weight: 950;
}

.room-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.room-premium {
    overflow: hidden;
}

.room-premium img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.room-premium div {
    padding: 18px;
}

.room-premium span {
    color: var(--amber);
    font-weight: 950;
}

.room-premium p {
    color: var(--muted);
    line-height: 1.6;
}

.included {
    background: linear-gradient(180deg, rgba(253, 246, 227, .045), rgba(253, 246, 227, .015));
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.tilt-card {
    min-height: 180px;
    padding: 20px;
    transition: transform .18s ease, border-color .25s ease, background .25s ease;
    transform-style: preserve-3d;
}

.tilt-card:hover {
    border-color: rgba(255, 193, 7, .42);
    background: rgba(253, 246, 227, .105);
}

.tilt-card b {
    display: block;
    font-family: "Satoshi", "Inter", sans-serif;
    font-size: 24px;
    margin-bottom: 42px;
}

.tilt-card span {
    color: var(--muted);
    line-height: 1.55;
}

.before-after {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.compare-layer {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    padding: clamp(22px, 5vw, 56px);
}

.traditional {
    background:
        repeating-linear-gradient(135deg, rgba(253, 246, 227, .05) 0 12px, transparent 12px 24px),
        linear-gradient(135deg, #263432, #101716);
    color: rgba(253, 246, 227, .55);
    filter: grayscale(1);
}

.trident {
    width: var(--split);
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 20%, rgba(255, 193, 7, .22), transparent 32%),
        linear-gradient(135deg, var(--forest-3), var(--forest));
    color: var(--vanilla);
}

.compare-layer p {
    max-width: 560px;
    color: var(--muted);
    line-height: 1.7;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--split);
    width: 3px;
    transform: translateX(-50%);
    background: var(--amber);
    box-shadow: 0 0 28px rgba(255, 193, 7, .55);
}

.before-after input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

.story-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.story-card {
    padding: 16px;
}

.story-card img {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    object-fit: cover;
}

.story-card h3 {
    margin-bottom: 2px;
}

.story-card a {
    color: var(--amber);
    font-weight: 850;
}

.story-card p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.visit {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(24px, 5vw, 78px);
    align-items: start;
}

.lead-form {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.success,
.error {
    border-radius: 8px;
    padding: 12px;
    font-weight: 850;
}

.success {
    background: rgba(8, 180, 118, .16);
    color: #79f0bd;
}

.error {
    background: rgba(255, 59, 48, .16);
    color: #ffb5af;
}

.help-console {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: flex;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 47, 43, .72);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
}

.help-console a {
    display: grid;
    place-items: center;
    min-width: 46px;
    height: 46px;
    border-radius: 8px;
    background: rgba(253, 246, 227, .08);
    color: var(--vanilla);
    font-weight: 950;
}

.help-console .urgent {
    background: var(--danger);
    animation: urgentPulse 1.4s ease-in-out infinite;
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(6, 29, 27, .94);
    box-shadow: 0 24px 90px rgba(0, 0, 0, .32);
}

.cookie-banner strong {
    display: block;
    margin-bottom: 6px;
}

.cookie-banner p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 28px clamp(18px, 5vw, 72px) 96px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

footer strong {
    color: var(--vanilla);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: reveal .7s ease forwards;
}

.reveal:nth-child(2) {
    animation-delay: .08s;
}

.reveal:nth-child(3) {
    animation-delay: .16s;
}

.reveal:nth-child(4) {
    animation-delay: .24s;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes livingRoomDrift {
    to {
        transform: scale(1.09) translate3d(-1.5%, -1%, 0);
    }
}

@keyframes beamMove {
    to {
        opacity: .35;
        transform: rotate(24deg) translateX(40px);
    }
}

@keyframes steam {
    0%, 100% {
        opacity: .25;
        transform: translateY(20px) scale(.9);
    }
    50% {
        opacity: .55;
        transform: translateY(-18px) scale(1.2);
    }
}

@keyframes pulseGlow {
    50% {
        opacity: .35;
        transform: scale(1.12);
    }
}

@keyframes urgentPulse {
    50% {
        box-shadow: 0 0 0 8px rgba(255, 59, 48, .16), 0 0 28px rgba(255, 59, 48, .45);
    }
}

@media (max-width: 1000px) {
    .announcement-strip {
        margin-top: 96px;
    }

    .site-header {
        top: 10px;
        flex-wrap: wrap;
    }

    nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero {
        padding-top: 148px;
    }

    .search-console,
    .signal-row,
    .manifesto,
    .property-grid,
    .room-list,
    .included-grid,
    .story-track,
    .visit {
        grid-template-columns: 1fr;
    }

    .story-card {
        grid-template-columns: 76px 1fr;
    }

    .story-card img {
        width: 76px;
        height: 76px;
    }

    .help-console {
        left: 12px;
        right: 12px;
        justify-content: center;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
}
