@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #eef1ef;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-solid: #ffffff;
    --ink: #1c1a17;
    --muted: #615d56;
    --line: #d8d0c3;
    --brand: #7b6243;
    --brand-2: #ba8c4a;
    --gold: #c79a3b;
    --gold-deep: #8e6a2b;
    --gold-soft: #efe1c3;
    --danger: #b91c1c;
    --radius-lg: 22px;
    --radius-md: 14px;
    --shadow-soft: 0 14px 44px rgba(16, 24, 40, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    background-image:
        linear-gradient(rgba(247, 241, 232, 0.82), rgba(238, 230, 216, 0.84)),
        radial-gradient(circle at 12% 12%, rgba(246, 232, 202, 0.48) 0%, transparent 42%),
        radial-gradient(circle at 88% 8%, rgba(228, 208, 172, 0.42) 0%, transparent 36%),
        url("https://images.pexels.com/photos/1910472/pexels-photo-1910472.jpeg?auto=compress&cs=tinysrgb&w=2200");
    background-size: cover, auto, auto, cover;
    background-position: center, center, center, center;
    background-attachment: fixed, scroll, scroll, fixed;
    background-blend-mode: normal, normal, normal, soft-light;
    min-height: 100vh;
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
}

p {
    margin: 0 0 12px;
    color: var(--muted);
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px 12px;
    background: #fff;
    font: inherit;
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(0, 109, 91, 0.2);
    border-color: var(--brand);
}

.container {
    width: min(1180px, 92%);
    margin: 26px auto 54px;
    position: relative;
    z-index: 2;
}

.decor-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.decor-bg::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    right: -150px;
    bottom: -180px;
    background: rgba(0, 109, 91, 0.08);
    filter: blur(2px);
}

.hero {
    border-radius: 26px;
    padding: 30px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 246, 238, 0.9) 60%, rgba(234, 220, 198, 0.86) 100%),
        url("https://images.pexels.com/photos/6585753/pexels-photo-6585753.jpeg?auto=compress&cs=tinysrgb&w=1800");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
    margin-bottom: 16px;
    animation: reveal 0.45s ease;
    position: relative;
    overflow: hidden;
}

.video-hero {
    position: relative;
    min-height: 86vh;
    background: #221d17;
    overflow: hidden;
}

.video-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    animation: heroVideoZoom 8s ease-out forwards;
}

.video-overlay {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    z-index: 2;
}

.video-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(17, 14, 11, 0.72) 0%, rgba(17, 14, 11, 0.36) 48%, rgba(17, 14, 11, 0.66) 100%),
        radial-gradient(circle at 25% 35%, rgba(194, 148, 74, 0.22) 0%, transparent 45%);
    z-index: -1;
}

.video-overlay .hero-kicker,
.video-overlay h1,
.video-overlay p,
.video-overlay .brand-name,
.video-overlay .brand-sub {
    color: #f8f2e6;
}

.video-overlay .hero-kicker {
    color: #e7c385;
}

.video-overlay .brand-logo {
    background: rgba(255, 255, 255, 0.92);
}

.video-overlay h1 {
    max-width: 980px;
}

.video-overlay .pill {
    background: rgba(243, 224, 187, 0.95);
    color: #5f4318;
}

.video-overlay .btn-ghost {
    background: rgba(255, 255, 255, 0.92);
}

.spaces-intro {
    padding: 8px 0 4px;
}

.spaces-kicker {
    color: #7e6031;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    margin-bottom: 10px;
}

.spaces-intro h2 {
    font-size: clamp(30px, 5vw, 64px);
    line-height: 1.06;
    margin-bottom: 14px;
}

.products-section {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #e1d6c6;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    pointer-events: none;
}

.brand-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.brand-logo {
    width: 220px;
    height: 74px;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 227, 0.95));
    padding: 8px;
    border: 1px solid #e9d8ae;
    box-shadow: 0 8px 22px rgba(154, 117, 37, 0.22);
}

.brand-text p {
    margin: 0;
}

.brand-name {
    font-family: "Aboreto", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-deep);
    letter-spacing: -0.02em;
}

.brand-sub {
    font-size: 13px;
    color: #6e5a2f;
    font-weight: 700;
}

.hero-kicker {
    color: var(--gold-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(30px, 4.4vw, 62px);
    margin-bottom: 8px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    align-items: center;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.pill {
    background: var(--gold-soft);
    color: #725518;
    border: 1px solid #dec388;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
}

.card,
.wizard-card {
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(5px);
    padding: 22px;
    margin-bottom: 16px;
    position: relative;
}

.wizard-card::before {
    content: "";
    position: absolute;
    height: 2px;
    left: 22px;
    right: 22px;
    top: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #7a6142 0%, #b68946 50%, #6d5436 100%);
}

.stepper {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.step-chip {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--muted);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.step-chip.is-active {
    background: linear-gradient(145deg, #31271d 0%, #4b3b2a 55%, #8d6829 100%);
    border-color: #5f4728;
    color: #fffaf0;
    transform: translateY(-1px);
}

.wizard-step {
    display: none;
    animation: rise 0.32s ease;
}

.wizard-step.is-active {
    display: block;
}

.step-copy {
    margin-bottom: 16px;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
}

.room-card {
    border: 1px solid #d9ccba;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    background: var(--surface-solid);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.room-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.room-card span {
    display: block;
    padding: 12px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.02em;
}

.room-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.room-card:has(input:checked) {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 14px 30px rgba(125, 92, 43, 0.3);
}

.room-card:hover {
    transform: translateY(-3px);
}

.room-card:hover img {
    transform: scale(1.03);
    filter: saturate(1.08);
}

.optional-field {
    margin-top: 16px;
    max-width: 360px;
}

.category-block {
    margin-top: 18px;
    border-top: 1px solid #dbe1e8;
    padding-top: 16px;
}

.category-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.category-head h3 {
    margin-bottom: 0;
}

.category-count {
    font-size: 12px;
    font-weight: 800;
    color: #475467;
    background: #e8edf2;
    padding: 6px 10px;
    border-radius: 999px;
}

.empty-category {
    font-size: 14px;
}

.product-grid,
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
}

.product-card,
.product {
    display: block;
    border: 1px solid #ded5c7;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card img,
.product img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    display: block;
}

.product-card input {
    position: absolute;
    opacity: 0;
}

.product-card:has(input:checked) {
    border-color: var(--gold-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(121, 92, 47, 0.26);
}

.product-body {
    padding: 10px;
}

.product-body strong {
    display: block;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.product-body small {
    color: #4a5567;
    font-weight: 700;
}

.product-body p {
    font-size: 12px;
    margin: 7px 0;
}

.product-body span {
    color: #6f4f1e;
    font-size: 13px;
    font-weight: 800;
}

.wizard-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    border: 0;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 15px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(145deg, #7b6243 0%, #a77e43 54%, #6f5229 100%);
}

.btn-secondary {
    color: #fff;
    background: #344054;
}

.btn-danger {
    color: #fff;
    background: var(--danger);
}

.btn-ghost {
    color: #273243;
    border: 1px solid #c8d1dc;
    background: #fff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.admin-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.kpi-card {
    background: #fff;
    border: 1px solid #d9e0e7;
    border-radius: 14px;
    padding: 14px;
}

.kpi-label {
    font-size: 13px;
    font-weight: 800;
    color: #657285;
    margin-bottom: 6px;
}

.kpi-value {
    font-family: "Aboreto", serif;
    font-size: 30px;
    color: #14263d;
    margin-bottom: 4px;
}

.kpi-sub {
    font-size: 12px;
    color: #6f7a8b;
    margin-bottom: 0;
}

.admin-filters {
    display: grid;
    grid-template-columns: 2fr repeat(4, minmax(140px, 1fr)) auto;
    gap: 10px;
    margin-bottom: 14px;
}

.list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.notice {
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
}

.notice-ok {
    background: #dff6e7;
    color: #0a5432;
}

.notice-warn {
    background: #ffe5df;
    color: #7a271a;
}

.result-img {
    width: 100%;
    border-radius: 16px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 10px;
    border-bottom: 1px solid #dce3ea;
    text-align: left;
    font-size: 14px;
    vertical-align: top;
}

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

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .container {
        width: 94%;
    }

    .hero {
        padding: 22px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .video-hero,
    .video-overlay {
        min-height: 72vh;
    }

    .brand-logo {
        width: 84px;
        height: 84px;
    }

    .wizard-card {
        padding: 16px;
    }

    .admin-filters {
        grid-template-columns: 1fr;
    }
}

/* Front page mirrored style */
.front-page {
    background: #080808;
    color: #f4efe8;
}

.front-page .decor-bg {
    display: none;
}

.front-page .container {
    width: min(1400px, 94%);
}

.front-page .video-hero,
.front-page .video-overlay {
    min-height: 100vh;
}

.front-page .video-overlay::before {
    background:
        linear-gradient(140deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.72) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.62) 100%);
}

.hero-shell {
    position: relative;
}

.hero-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-brand .brand-logo {
    width: 240px;
    height: 76px;
    border-radius: 12px;
}

.hero-brand-text {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.09em;
    font-size: 42px;
    color: #f7f1e6;
}

.hero-admin-link {
    color: #f7f1e6;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    font-size: 13px;
}

.hero-menu {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.24);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 0 12px;
}

.hero-menu span {
    display: block;
    height: 2px;
    background: #f3ece0;
    border-radius: 10px;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: end;
    min-height: calc(100vh - 130px);
    padding-bottom: 36px;
}

.hero-copy h1 {
    font-size: clamp(68px, 11vw, 188px);
    line-height: 0.92;
    letter-spacing: 0.01em;
    margin-bottom: 14px;
    color: #f8f2e9;
}

.front-page .hero-kicker {
    color: #e0bf83;
}

.front-page .hero-meta {
    gap: 12px;
}

.front-page .pill {
    background: rgba(240, 217, 167, 0.92);
}

.hero-side {
    justify-self: end;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.hero-year {
    margin: 0;
    color: #e8e2d8;
    font-size: 32px;
    font-family: "Cormorant Garamond", serif;
}

.hero-side-text {
    max-width: 280px;
    color: #d7cfc0;
    margin: 0;
}

.hero-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.hero-social a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 50%;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.24);
}

.spaces-band {
    background: #020202;
    padding: 78px 0 68px;
}

.spaces-shell {
    width: min(1420px, 95%);
    margin: 0 auto;
}

.spaces-head {
    color: #f1e9dc;
    margin-bottom: 34px;
}

.spaces-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.spaces-line span {
    width: min(40vw, 540px);
    height: 1px;
    background: rgba(255, 255, 255, 0.46);
    transform: scaleX(0.2);
    transform-origin: left center;
    opacity: 0.4;
}

.spaces-line i {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.64);
    font-style: normal;
    font-size: 18px;
    opacity: 0;
}

.spaces-head h2 {
    color: #f5f1ea;
    font-size: clamp(36px, 6.2vw, 116px);
    line-height: 1;
    letter-spacing: 0.01em;
    margin: 0 0 12px;
    overflow: hidden;
}

.spaces-head h2 span {
    display: block;
    opacity: 0;
    transform: translateY(34px);
    filter: blur(5px);
}

.spaces-head h2 em {
    color: #b7976b;
    font-style: normal;
}

.spaces-head p {
    color: #d8c8af;
    text-align: right;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(20px, 2.4vw, 48px);
    opacity: 0;
    transform: translateY(12px);
}

.spaces-band .spaces-kicker {
    display: none;
}

.spaces-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 20px;
}

.spaces-band .room-card {
    border-radius: 0;
    border: 0;
    background: #0b0b0b;
    position: relative;
    opacity: 0;
    transform: translateY(28px) scale(0.98);
}

.spaces-band .room-card .room-media {
    position: relative;
    overflow: hidden;
}

.spaces-band .room-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: saturate(0.92);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.spaces-band .room-card .room-caption {
    display: block;
    position: static;
    padding: 14px 0 0;
    font-size: clamp(36px, 4.8vw, 62px);
    letter-spacing: 0.02em;
    color: #f4ede2;
    line-height: 0.92;
    font-family: "Cormorant Garamond", serif;
    background: transparent;
}

.spaces-band .room-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.62) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 20px;
    opacity: 0;
    transition: opacity 0.34s ease;
}

.spaces-band .room-hover span {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4vw, 74px);
    color: #f3eee6;
    line-height: 0.95;
}

.spaces-band .room-hover i {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(196, 160, 103, 0.95);
    color: #111;
    font-style: normal;
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-4px);
    transition: transform 0.34s ease;
}

.spaces-band .room-card:hover {
    transform: translateY(-4px);
}

.spaces-band .room-card:hover .room-hover {
    opacity: 1;
}

.spaces-band .room-card:hover img {
    transform: scale(1.03);
    filter: saturate(1);
}

.spaces-band .room-card:hover .room-hover i {
    transform: translateX(0);
}

.spaces-band .room-card:has(input:checked) {
    outline: 2px solid #c79a3b;
    outline-offset: -2px;
    box-shadow: none;
}

.spaces-grid .room-card:nth-child(1) .room-media { height: 610px; }
.spaces-grid .room-card:nth-child(2) .room-media { height: 560px; margin-top: 30px; }
.spaces-grid .room-card:nth-child(3) .room-media { height: 510px; margin-top: 62px; }
.spaces-grid .room-card:nth-child(4) .room-media { height: 610px; margin-top: 24px; }

.spaces-band.in-view .spaces-line span {
    animation: drawLine 1s ease forwards;
}

.spaces-band.in-view .spaces-line i {
    animation: fadeInArrow 0.8s ease 0.85s both;
}

.spaces-band.in-view .spaces-head h2 span {
    animation: liftIn 0.8s cubic-bezier(.22,.61,.36,1) both;
}

.spaces-band.in-view .spaces-head h2 span:nth-child(2) {
    animation-delay: 0.18s;
}

.spaces-band.in-view .spaces-head p {
    animation: fadeLift 0.7s ease 0.45s both;
}

.spaces-band.in-view .room-card {
    animation: cardRise 0.7s cubic-bezier(.22,.61,.36,1) both;
    animation-delay: var(--card-delay, 0.2s);
}

.spaces-band .optional-field {
    margin-top: 18px;
    max-width: 380px;
}

.spaces-band .optional-field label {
    color: #e8ddcc;
}

.spaces-band .optional-field input {
    background: #131313;
    border-color: #3a3329;
    color: #f4efe8;
}

.spaces-band .wizard-actions {
    margin-top: 18px;
}

.front-page .products-section {
    margin-top: 30px;
    border: 1px solid #2b2621;
    background: #0a0a0a;
}

.front-page .products-section h2,
.front-page .products-section h3,
.front-page .products-section label,
.front-page .products-section strong,
.front-page .products-section span {
    color: #f5f0e7;
}

.front-page .products-section p,
.front-page .products-section small {
    color: #cdc2af;
}

.front-page .products-section input,
.front-page .products-section textarea,
.front-page .products-section select {
    background: #131313;
    border-color: #3a3228;
    color: #f4f0e8;
}

.front-page .category-block {
    border-top-color: #2a241d;
}

.front-page .category-count {
    background: #1f1a15;
    color: #dfc79f;
}

.front-page .product-card {
    background: #121212;
    border-color: #2f2922;
}

.front-page .product-card:has(input:checked) {
    border-color: #d2a354;
    box-shadow: 0 8px 24px rgba(210, 163, 84, 0.22);
}

.front-page .notice {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-topbar.reveal {
    transition-delay: 0.1s;
}

.hero-copy.reveal {
    transition-delay: 0.2s;
}

.hero-side.reveal {
    transition-delay: 0.3s;
}

@media (max-width: 1100px) {
    .hero-main {
        grid-template-columns: 1fr;
    }

    .hero-side {
        align-items: flex-start;
        text-align: left;
        justify-self: start;
        margin-top: 10px;
    }

    .hero-social {
        flex-direction: row;
    }

    .spaces-grid {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }

    .spaces-grid .room-card:nth-child(1) .room-media,
    .spaces-grid .room-card:nth-child(2) .room-media,
    .spaces-grid .room-card:nth-child(3) .room-media,
    .spaces-grid .room-card:nth-child(4) .room-media {
        height: 460px;
        margin-top: 0;
    }
}

@media (max-width: 760px) {
    .front-page .video-hero,
    .front-page .video-overlay {
        min-height: 88vh;
    }

    .hero-brand-text {
        font-size: 26px;
    }

    .hero-brand .brand-logo {
        width: 180px;
        height: 58px;
    }

    .hero-copy h1 {
        font-size: clamp(56px, 18vw, 110px);
    }

    .spaces-head h2 {
        font-size: clamp(34px, 11vw, 70px);
    }

    .spaces-head p {
        text-align: left;
        margin-top: 8px;
    }

    .spaces-grid {
        grid-template-columns: 1fr;
    }

    .spaces-band .room-card img {
        height: 380px;
    }

    .spaces-band .room-card .room-caption {
        font-size: clamp(30px, 10vw, 58px);
    }

    .spaces-grid .room-card:nth-child(1) .room-media,
    .spaces-grid .room-card:nth-child(2) .room-media,
    .spaces-grid .room-card:nth-child(3) .room-media,
    .spaces-grid .room-card:nth-child(4) .room-media {
        height: 380px;
    }
}

@keyframes heroVideoZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1.03); }
}

@keyframes drawLine {
    from { transform: scaleX(0.2); opacity: 0.4; transform-origin: left center; }
    to { transform: scaleX(1); opacity: 1; transform-origin: left center; }
}

@keyframes fadeInArrow {
    from { opacity: 0; transform: translateX(-8px) scale(0.92); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes liftIn {
    from { opacity: 0; transform: translateY(34px); filter: blur(5px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

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

@keyframes cardRise {
    from { opacity: 0; transform: translateY(28px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
