:root {
    --ivory: #fffaf3;
    --paper: #fffdf8;
    --ink: #4a4038;
    --muted: #8a7d70;
    --green: #ef8757;
    /* warm orange (primary) */
    --green-deep: #4a3f35;
    /* dark warm brown (headings) */
    --gold: #4fae92;
    /* teal accent */
    --gold-light: #93d6bf;
    --line: #f0e2d2;
    --font-jp: 'M PLUS Rounded 1c', 'Zen Kaku Gothic New', sans-serif;
    --font-en: 'Quicksand', 'M PLUS Rounded 1c', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-jp);
    background: var(--ivory);
    color: var(--ink);
    line-height: 1.75;
    overflow-x: hidden;
}

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

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 0;
    transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 250, 243, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(74, 63, 53, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-main {
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 1.25rem;
    color: var(--green);
}

.brand-sub {
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    color: var(--gold);
}

.site-nav {
    display: flex;
    gap: 30px;
    font-family: var(--font-en);
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    font-weight: 500;
}

.site-nav a {
    position: relative;
    padding-bottom: 4px;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.header-cta {
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    border: 1px solid var(--green);
    color: var(--green);
    padding: 9px 20px;
    border-radius: 999px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.header-cta:hover {
    background: var(--green);
    color: var(--ivory);
    transform: translateY(-2px);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(90% 70% at 80% 10%, rgba(240, 135, 87, 0.13), transparent 60%),
        radial-gradient(70% 55% at 12% 88%, rgba(79, 174, 146, 0.1), transparent 60%),
        linear-gradient(180deg, #ffeede 0%, var(--ivory) 62%);
    padding: 120px 0 80px;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-kicker {
    font-family: var(--font-en);
    font-size: 0.78rem;
    letter-spacing: 0.34em;
    color: var(--gold);
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(2.4rem, 5.4vw, 4.2rem);
    font-weight: 700;
    line-height: 1.38;
    letter-spacing: 0.04em;
    color: var(--green-deep);
}

.hero-accent {
    color: var(--gold);
}

.hero-copy {
    margin-top: 26px;
    max-width: 560px;
    color: var(--muted);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    padding: 15px 34px;
    background: var(--green);
    color: #f4ecdc;
    font-family: var(--font-en);
    font-size: 0.86rem;
    letter-spacing: 0.2em;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.hero-btn:hover::before {
    left: 130%;
}

.hero-btn::after {
    content: "↓";
    font-size: 0.9em;
    animation: btn-nudge 1.8s ease-in-out infinite;
}

@keyframes btn-nudge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(239, 135, 87, 0.35);
}

/* Building outline */
.hero-building {
    position: absolute;
    right: 6vw;
    bottom: 0;
    width: clamp(240px, 30vw, 400px);
    color: rgba(79, 174, 146, 0.6);
    z-index: 1;
}

.draw {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 2.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.d2 {
    transition-delay: 0.35s;
}

.d3 {
    transition-delay: 0.7s;
}

.ground {
    transition-delay: 1.05s;
}

body.loaded .draw {
    stroke-dashoffset: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.hero-scroll span {
    font-family: var(--font-en);
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    color: var(--gold);
}

.hero-scroll i {
    width: 1px;
    height: 44px;
    background: rgba(74, 63, 53, 0.22);
    position: relative;
    overflow: hidden;
}

.hero-scroll i::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scroll-drop 1.9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scroll-drop {

    0% {
        top: -50%;
    }

    70%,
    100% {
        top: 110%;
    }
}

/* ===== Floor Guide Layout ===== */
.floor-guide {
    padding: 110px 0 130px;
    position: relative;
}

.floor-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: start;
}

/* Tower panel — upright wireframe building */
.tower-panel {
    position: sticky;
    top: 110px;
}

.tower-card {
    background: linear-gradient(180deg, #fffdf8 0%, #fdf4e7 100%);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px 10px 20px;
    box-shadow: 0 16px 34px rgba(74, 63, 53, 0.1);
    overflow: hidden;
}

.tower-title {
    text-align: center;
    font-family: var(--font-en);
    font-size: 0.66rem;
    letter-spacing: 0.26em;
    color: var(--gold);
    padding-bottom: 12px;
    margin-bottom: 2px;
}

.tower-scene {
    /* No perspective: parallel projection keeps every edge perfectly
       vertical so the tower reads as facing straight forward */
    height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tower-3d {
    --rx: 12deg;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(var(--rx));
    width: 150px;
    transition: none;
    will-change: transform;
}

/* Corner rails */
.tower-3d::before,
.tower-3d::after {
    content: "";
    position: absolute;
    top: -30px;
    bottom: -30px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, transparent, rgba(79, 174, 146, 0.55) 12%, rgba(79, 174, 146, 0.55) 88%, transparent);
    pointer-events: none;
}

.tower-3d::before {
    left: -14px;
}

.tower-3d::after {
    right: -14px;
}

/* Floor box = front face + receding top / side planes */
.floor-chip,
.slab {
    position: relative;
    display: block;
    width: 150px;
    height: 34px;
    margin: 9px auto;
    appearance: none;
    cursor: pointer;
    font-family: inherit;
    border: 1px solid rgba(79, 174, 146, 0.65);
    border-radius: 4px;
    background: rgba(79, 174, 146, 0.07);
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.5, 1), background 0.3s ease,
        border-color 0.3s ease, box-shadow 0.3s ease;
}

.slab {
    cursor: default;
    border-style: dashed;
    border-color: rgba(79, 174, 146, 0.45);
    background: rgba(79, 174, 146, 0.03);
}

.slab.cap {
    width: 104px;
    height: 104px;
    margin: -62px auto 8px;
}

.slab.base {
    width: 186px;
    height: 186px;
    margin: 8px auto -68px;
}

/* Receding faces (wireframe depth) */
.floor-chip::before,
.slab::before {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    top: 0;
    width: auto;
    height: 26px;
    border: 1px solid rgba(79, 174, 146, 0.45);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    background: rgba(79, 174, 146, 0.1);
    transform-origin: top center;
    transform: rotateX(-90deg) translateZ(0.5px);
    pointer-events: none;
}

.floor-chip::after,
.slab::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 100%;
    height: calc(100% + 2px);
    width: 26px;
    border: 1px solid rgba(79, 174, 146, 0.4);
    border-left: none;
    border-radius: 0 4px 4px 0;
    background: rgba(79, 174, 146, 0.08);
    transform-origin: left center;
    transform: rotateY(90deg) translateZ(-0.5px);
    pointer-events: none;
}

.slab.cap::before,
.slab.base::before {
    height: 30px;
}

.slab.cap::after,
.slab.base::after {
    width: 30px;
}

.chip-no {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: #7f9089;
    transition: color 0.3s ease;
    pointer-events: none;
}

.chip-cat {
    display: none;
}

/* Hover / active floors pop out of the stack */
.floor-chip:hover {
    transform: scale(1.05);
    border-color: rgba(239, 135, 87, 0.75);
    background: rgba(240, 135, 87, 0.1);
}

.floor-chip:hover .chip-no {
    color: var(--green);
}

.floor-chip:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.floor-chip.is-active {
    background: rgba(240, 135, 87, 0.16);
    border-color: var(--green);
    box-shadow:
        0 0 0 3px rgba(239, 135, 87, 0.15),
        0 10px 24px rgba(239, 135, 87, 0.28);
    transform: scale(1.07);
}

.floor-chip.is-active .chip-no {
    color: var(--green);
}

.floor-chip.is-active::before {
    background: rgba(239, 135, 87, 0.18);
    border-color: rgba(239, 135, 87, 0.55);
}

.floor-chip.is-active::after {
    background: rgba(239, 135, 87, 0.14);
    border-color: rgba(239, 135, 87, 0.5);
}

.tower-caption {
    margin-top: 14px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.tower-caption b {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--green);
    font-variant-numeric: tabular-nums;
}

.tower-caption span {
    font-family: var(--font-en);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.panel-note {
    margin-top: 8px;
    text-align: center;
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.08em;
}

/* Floor sections */
.floor-sections {
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.floor-section {
    scroll-margin-top: 120px;
}

.floor-head {
    display: flex;
    align-items: flex-end;
    gap: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 14px;
    position: relative;
}

.floor-head::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 72px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floor-section.is-current .floor-head::after {
    width: 180px;
}

.floor-no {
    font-family: var(--font-en);
    font-weight: 300;
    font-size: clamp(3.2rem, 6vw, 4.6rem);
    line-height: 0.9;
    color: var(--green);
    letter-spacing: 0.02em;
}

.floor-no span {
    font-size: 0.42em;
    color: var(--gold);
    margin-left: 2px;
}

.floor-cat {
    font-family: var(--font-en);
    font-size: 0.74rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 6px;
}

.floor-title-block h2 {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--green-deep);
}

.floor-desc {
    color: var(--muted);
    max-width: 640px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Tenant cards */
.tenant-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.tenant-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.tenant-card:hover {
    transform: translateY(-7px);
    border-color: rgba(239, 135, 87, 0.5);
    box-shadow: 0 24px 46px rgba(74, 63, 53, 0.13);
}

.tenant-visual {
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(130% 130% at 18% 12%, var(--g1), var(--g2)),
        linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 40%);
    position: relative;
    overflow: hidden;
}

.tenant-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(200deg, #000 20%, transparent 75%);
    -webkit-mask-image: linear-gradient(200deg, #000 20%, transparent 75%);
    transition: transform 0.6s ease;
}

.tenant-card:hover .tenant-visual::before {
    transform: scale(1.08);
}

.tenant-visual::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s ease;
}

.tenant-card:hover .tenant-visual::after {
    left: 140%;
}

.tenant-body {
    padding: 18px 18px 20px;
}

.tenant-body h3 {
    font-size: 1.04rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--green-deep);
}

.tenant-body h3 small {
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--gold);
    margin-left: 6px;
}

.tenant-body p {
    margin-top: 8px;
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.7;
}

.tenant-meta {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-en);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    border: 1px solid rgba(79, 174, 146, 0.4);
    border-radius: 999px;
    padding: 4px 12px;
    transition: background 0.3s ease, color 0.3s ease;
}

.tenant-card:hover .tenant-meta {
    background: var(--gold);
    color: #fffaf0;
}

/* Current floor emphasis */
.floor-section.is-current .floor-no {
    color: var(--gold);
}

/* ===== Services ===== */
.services {
    padding: 90px 0;
    background: linear-gradient(180deg, #fff3e7 0%, #ffedd9 100%);
}

.services .section-label {
    color: var(--green);
}

.services h2 {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 34px;
    color: var(--ink);
}

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

.service-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 22px;
    border: 1px solid #f3ddc8;
    border-radius: 14px;
    background: var(--paper);
    transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.service-item:hover {
    border-color: rgba(239, 135, 87, 0.6);
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(214, 110, 60, 0.12);
}

.service-item b {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    color: var(--green);
}

.service-item span {
    font-size: 0.88rem;
    color: var(--muted);
}

/* ===== Access ===== */
.access {
    padding: 100px 0;
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.access .section-label {
    color: var(--gold);
}

.access h2 {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 26px;
    color: var(--green-deep);
}

.access-list {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 26px;
    row-gap: 14px;
}

.access-list dt {
    font-weight: 700;
    color: var(--green);
    font-size: 0.9rem;
}

.access-list dd {
    color: var(--muted);
    font-size: 0.92rem;
}

.map-panel {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        radial-gradient(70% 60% at 62% 45%, rgba(79, 174, 146, 0.14), transparent 60%),
        linear-gradient(150deg, #fff6ea 0%, #ffe9d4 100%);
    box-shadow: 0 22px 44px rgba(74, 63, 53, 0.1);
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(74, 63, 53, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 63, 53, 0.07) 1px, transparent 1px);
    background-size: 42px 42px;
}

.map-pin {
    position: absolute;
    top: 45%;
    left: 62%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    transform: translate(-50%, -50%);
    animation: pin-pulse 2.4s ease-out infinite;
}

.map-pin::after {
    content: "";
    position: absolute;
    inset: -14px;
    border: 1px solid rgba(239, 135, 87, 0.5);
    border-radius: 50%;
    animation: pin-ring 2.4s ease-out infinite;
}

@keyframes pin-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 135, 87, 0.3);
    }

    60% {
        box-shadow: 0 0 0 12px rgba(239, 135, 87, 0);
    }
}

@keyframes pin-ring {
    0% {
        transform: scale(0.5);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.map-caption {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: var(--font-en);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: var(--green);
    background: rgba(255, 253, 249, 0.9);
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
}

.section-label {
    font-family: var(--font-en);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    margin-bottom: 10px;
}

/* ===== Mobile floor badge ===== */
.mobile-floor-badge {
    display: none;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 90;
    background: var(--green);
    color: #fff8f0;
    border-radius: 999px;
    padding: 10px 18px;
    align-items: baseline;
    gap: 8px;
    box-shadow: 0 14px 30px rgba(214, 110, 60, 0.35);
}

.mobile-floor-badge span {
    font-family: var(--font-en);
    font-size: 0.6rem;
    letter-spacing: 0.24em;
    color: rgba(255, 248, 240, 0.75);
}

.mobile-floor-badge b {
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 1.05rem;
    font-variant-numeric: tabular-nums;
}

/* ===== Footer ===== */
.site-footer {
    padding: 54px 0;
    background: #f7ecdd;
    color: var(--ink);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-brand {
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--green);
}

.footer-nav {
    display: flex;
    gap: 24px;
    font-size: 0.82rem;
}

.footer-nav a {
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--green);
}

.copyright {
    font-family: var(--font-en);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: #b3a494;
}

/* ===== Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--rd, 0s);
}

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

.tenant-grid .reveal:nth-child(2) {
    --rd: 0.12s;
}

.tenant-grid .reveal:nth-child(3) {
    --rd: 0.24s;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .floor-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tower-panel {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 95;
        padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
        background: rgba(250, 247, 241, 0.94);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--line);
    }

    /* Mobile: flatten to a simple pill bar */
    .tower-card {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        overflow: visible;
    }

    .tower-title,
    .tower-caption,
    .panel-note,
    .slab {
        display: none;
    }

    .tower-scene {
        height: auto;
        perspective: none;
    }

    .tower-3d {
        display: flex;
        flex-direction: row;
        gap: 4px;
        width: 100%;
        transform: none !important;
    }

    .floor-chip {
        width: auto;
        height: auto;
        margin: 0;
        padding: 7px 6px;
        border-radius: 999px;
        background: transparent;
        transform: none !important;
        flex: 1;
    }

    .floor-chip::before,
    .floor-chip::after {
        display: none;
    }

    .chip-no {
        position: static;
        inset: auto;
        transform: none;
        font-size: 0.82rem;
        color: var(--green-deep);
    }

    .floor-chip.is-active {
        background: var(--green);
        box-shadow: 0 6px 16px rgba(214, 110, 60, 0.3);
    }

    .floor-chip.is-active .chip-no {
        color: #fff8f0;
    }

    .floor-section {
        padding-bottom: 64px;
    }

    .mobile-floor-badge {
        display: inline-flex;
        right: 16px;
        bottom: calc(84px + env(safe-area-inset-bottom));
    }

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

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

    .site-nav {
        display: none;
    }

    .hero-building {
        opacity: 0.5;
    }
}

@media (max-width: 560px) {
    .header-cta {
        display: none;
    }

    .hero {
        padding-top: 104px;
    }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .draw {
        transition: none;
        stroke-dashoffset: 0;
    }

    .hero-scroll i::after,
    .hero-btn::after,
    .map-pin,
    .map-pin::after {
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .floor-chip,
    .tower-3d {
        transition: none;
    }

    .floor-chip:hover,
    .floor-chip.is-active,
    .tenant-card:hover,
    .service-item:hover,
    .hero-btn:hover {
        transform: none;
    }
}
