:root {
    --bg: #fffdfa;
    --surface: #ffffff;
    --surface-strong: #ffe07a;
    --surface-soft: rgba(255, 224, 122, 0.12);
    --surface-soft-strong: rgba(255, 224, 122, 0.2);
    --ink: #1c140f;
    --muted: #6a594c;
    --line: rgba(24, 18, 15, 0.09);
    --accent: #ff5a24;
    --accent-deep: #db4616;
    --forest: #2e231b;
    --shadow: 0 28px 70px rgba(15, 12, 10, 0.12);
    --panel: rgba(12, 9, 8, 0.94);
    --panel-deep: rgba(7, 5, 4, 0.98);
    --panel-shadow: rgba(0, 0, 0, 0.34);
    --hero-veil: rgba(9, 7, 6, 0.84);
    --hero-veil-soft: rgba(9, 7, 6, 0.42);
    --hero-veil-deep: rgba(9, 7, 6, 0.74);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --shell: min(1180px, calc(100vw - 40px));
    --nav-height: 75px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 224, 122, 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 90, 36, 0.08), transparent 26%),
        var(--bg);
    color: var(--ink);
    font-family: "Manrope", "Segoe UI", sans-serif;
    line-height: 1.6;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -56px;
    z-index: 60;
    padding: 12px 16px;
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    transition: top 180ms ease;
}

.skip-link:focus {
    top: 16px;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.shell {
    width: var(--shell);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--panel);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
    transition:
        background 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.site-header.is-scrolled {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    background: var(--panel-deep);
    box-shadow: 0 20px 40px var(--panel-shadow);
}

.nav-shell {
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    width: 70px;
    height: 70px;
    padding: 0;
    /* border: 1px solid rgba(255, 255, 255, 0.08); */
    border-radius: 18px;
    background: transparent;
    object-fit: cover;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    flex-shrink: 0;
}

.brand-text {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.brand-name {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 0.95;
}

.brand-tag {
    color: rgba(255, 224, 122, 0.9);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-nav a.is-active {
    color: #fff;
}

.page-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-subnav a {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 16px;
    border-radius: 999px;
    transition: background 180ms ease, color 180ms ease;
}

.page-subnav a:hover,
.page-subnav a:focus-visible {
    background: rgba(255, 90, 36, 0.16);
    color: #fff;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
}

.nav-toggle span {
    position: relative;
    display: block;
    width: 10px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
}

.nav-toggle span + span {
    margin-top: 6px;
}

.nav-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.hero,
.page-hero {
    position: relative;
    color: #fff;
    overflow: clip;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, var(--hero-veil) 14%, var(--hero-veil-soft) 54%, var(--hero-veil-deep) 100%);
    z-index: 1;
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: -12%;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 224, 122, 0.16), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(255, 90, 36, 0.12), transparent 22%),
        radial-gradient(circle at 50% 86%, rgba(255, 255, 255, 0.08), transparent 28%);
    opacity: 0.74;
    z-index: 1;
    animation: driftGlow 18s ease-in-out infinite alternate;
}

.hero {
    min-height: calc(100svh - var(--nav-height));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-hero {
    background-image: url("assets/index hero page/hero first image.jpeg");
}

.hero-media-stack {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06);
    transition:
        opacity 900ms ease,
        transform 900ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.04) contrast(1.02);
}

.hero-orbit {
    position: absolute;
    right: -6vw;
    bottom: 10%;
    width: min(36vw, 420px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 224, 122, 0.24), transparent 34%),
        radial-gradient(circle at 68% 68%, rgba(255, 90, 36, 0.16), transparent 42%);
    filter: blur(10px);
    opacity: 0.58;
    z-index: 1;
    animation: floatOrbit 16s ease-in-out infinite;
}

.about-hero {
    background-image: url("assets/index hero page/abb.jpeg");
}

.apartments-hero {
    background-image: url("assets/index hero page/ab.jpeg");
}

.blog-hero {
    background-image: url("assets/blog/WhatsApp Image 2026-05-14 at 10.47.19 AM.jpeg");
}

.contact-hero {
    background-image: url("assets/amenities/premium amenities.jpeg");
}

.hero-content,
.page-hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    min-height: calc(100svh - var(--nav-height));
    display: grid;
    align-items: center;
    padding: 40px 20px 62px;
}

.page-hero-content {
    min-height: 54svh;
    display: flex;
    align-items: end;
    padding: 56px 0 52px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: end;
    gap: 30px;
}

.hero-panel,
.page-hero-panel {
    max-width: 1000px;
}

.hero-panel {
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.hero h1,
.page-hero h1,
.section-title,
.display-title {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 0.95;
}

.hero h1 {
    font-size: clamp(3.8rem, 6vw, 6.7rem);
    max-width: 100%;
}

.hero-rotating-phrase {
    display: inline-block;
    transition: opacity 280ms ease;
}

.hero-rotating-phrase.fade-out {
    opacity: 0;
}

.page-hero h1 {
    font-size: clamp(3rem, 5vw, 5.5rem);
    max-width: 18ch;
}

.hero-copy,
.page-hero-copy {
    max-width: 35rem;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
    background: var(--accent-deep);
}

.button.button-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.button.button-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.button.button-yellow {
    border-color: transparent;
    background: #f5c216;
    color: #0c0908;
}

.button.button-yellow:hover {
    background: #e0b109;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 44px;
}

.hero-fact {
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.hero-fact strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.05rem;
    color: #fff;
}

.hero-fact span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.93rem;
    max-width: 800px;
}

.hero-fact:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.14);
}

.hero-rail {
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(180deg, rgba(12, 9, 8, 0.72), rgba(12, 9, 8, 0.42));
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.hero-rail-kicker {
    margin: 0;
    color: rgba(255, 233, 173, 0.8);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-rail-head {
    display: grid;
    gap: 10px;
}

.hero-rail-count {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-rail-head h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.96;
}

.hero-rail-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.hero-progress {
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-progress span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
}

.hero-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-control {
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    font-weight: 700;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.hero-control:hover,
.hero-control.is-active {
    color: #fff;
    border-color: rgba(255, 90, 36, 0.5);
    background: rgba(255, 90, 36, 0.18);
    transform: translateY(-1px);
}

.section {
    padding: 96px 0;
}

.section-header {
    display: grid;
    gap: 16px;
    align-items: end;
    margin-bottom: 34px;
}

.section-header.compact {
    max-width: 760px;
}

.section-kicker {
    margin: 0;
    color: var(--accent-deep);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    color: var(--ink);
}

.display-title {
    font-size: clamp(2.2rem, 3.5vw, 3.3rem);
    color: var(--ink);
}

.section-copy {
    margin: 0;
    max-width: 42rem;
    color: var(--muted);
    font-size: 1.02rem;
}

.payment-summary {
    padding: 24px 0 0;
}

.payment-summary-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.payment-summary-list li {
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    background: var(--surface-soft);
    border: 1px solid rgba(239, 140, 24, 0.16);
    color: var(--ink);
    font-size: 0.98rem;
}

.payment-summary-list strong {
    color: var(--accent-deep);
}

.payment-summary + .feature-band {
    margin-top: 28px;
}

.apartment-compare-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.apartment-compare-card {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid rgba(196, 124, 24, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    transition:
        transform 220ms ease,
        border-color 220ms ease;
}

.apartment-compare-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 124, 24, 0.28);
}

.apartment-compare-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.9rem, 2vw, 2.4rem);
    line-height: 1.02;
    color: var(--ink);
}

.apartment-compare-card p {
    margin: 0;
    color: var(--muted);
}

.apartment-compare-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.apartment-compare-meta span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface-soft-strong);
    color: var(--forest);
    font-weight: 700;
    font-size: 0.92rem;
}

.apartment-compare-link {
    color: var(--forest);
    font-weight: 700;
}

.layout-finance {
    margin-top: 22px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--surface-soft);
    border: 1px solid rgba(239, 140, 24, 0.14);
}

.layout-finance p {
    margin: 0;
    color: var(--ink);
    font-size: 0.96rem;
}

.layout-finance strong {
    color: var(--forest);
}

.intro-grid,
.story-grid,
.contact-grid,
.visit-grid,
.map-grid,
.quicklinks-grid {
    display: grid;
    gap: 32px;
}

.intro-grid,
.story-grid,
.contact-grid,
.visit-grid,
.map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quicklinks-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.intro-card,
.story-copy,
.contact-copy,
.visit-copy,
.form-panel,
.faq-panel,
.cta-panel,
.map-panel {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.56);
    box-shadow: var(--shadow);
}

.intro-card strong,
.story-copy strong,
.contact-copy strong,
.visit-copy strong {
    color: var(--forest);
}

.number-line {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 26px;
    margin-top: 26px;
}

.number-line span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
}

.number-line span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.gallery-grid,
.amenity-grid,
.article-grid,
.video-grid,
.insight-grid {
    display: grid;
    gap: 24px;
}

.gallery-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
}

.stack {
    display: grid;
    gap: 24px;
}

.media-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 100%;
    background: #f3dfbf;
    box-shadow: var(--shadow);
}

.media-frame img,
.media-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.media-frame:hover img,
.media-frame:hover video {
    transform: scale(1.04);
}

.media-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    background: rgba(63, 36, 8, 0.74);
    color: rgba(255, 255, 255, 0.92);
}

.media-caption h3,
.article-body h2,
.article-body h3,
.video-copy h3,
.amenity-body h3,
.layout-copy h2 {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.media-caption h3,
.amenity-body h3,
.video-copy h3,
.article-body h2,
.article-body h3 {
    font-size: clamp(1.9rem, 2vw, 2.5rem);
    line-height: 1.02;
}

.media-caption p,
.article-body p,
.video-copy p,
.amenity-body p,
.layout-copy p,
.story-copy p,
.contact-copy p,
.visit-copy p,
.form-intro p,
.faq-panel p {
    margin: 0;
    color: var(--muted);
}

.media-caption p {
    color: rgba(255, 255, 255, 0.78);
}

.amenity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.amenity {
    display: grid;
    gap: 18px;
    transition: transform 220ms ease;
}

.amenity img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform 700ms ease;
}

.amenity:hover {
    transform: translateY(-4px);
}

.amenity:hover img {
    transform: scale(1.03);
}

.amenity-body p {
    margin-top: 10px;
}

.feature-band {
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 224, 122, 0.18));
}

.video-band {
    display: grid;
    gap: 26px;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.video-shell,
.tour-shell {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #6a3d0b;
    box-shadow: var(--shadow);
}

.video-shell video,
.tour-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.cta-band {
    padding: 46px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 90, 36, 0.18);
    background: linear-gradient(180deg, rgba(12, 9, 8, 0.96), rgba(20, 16, 13, 0.92));
    color: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow);
}

.cta-band .section-title,
.cta-band p {
    color: #fff;
}

.cta-band .section-kicker {
    color: rgba(255, 224, 122, 0.84);
}

.apartment-stack {
    display: grid;
    gap: 34px;
}

.apartment-layout {
    display: grid;
    gap: 28px;
    grid-template-columns: 0.9fr 1.1fr;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow);
}

.apartment-layout.reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.layout-copy h2 {
    font-size: clamp(2.2rem, 3.2vw, 3.2rem);
    line-height: 1;
    color: var(--ink);
}

.layout-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 22px;
}

.layout-tags span {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(239, 140, 24, 0.12);
    color: var(--accent-deep);
    font-size: 0.88rem;
    font-weight: 700;
}

.layout-price {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.layout-price span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface-soft-strong);
    color: var(--forest);
    font-size: 0.92rem;
    font-weight: 700;
}

.floorplan-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.floorplan-groups {
    display: grid;
    gap: 44px;
}

.floorplan-group {
    display: grid;
    gap: 20px;
}

.floorplan-group-header {
    display: grid;
    gap: 10px;
    max-width: 760px;
}

.floorplan-group-title {
    margin: 0;
    font-size: clamp(2rem, 2.6vw, 2.8rem);
    color: var(--ink);
}

.floorplan-grid-single {
    grid-template-columns: minmax(0, 420px);
}

.floorplan-card {
    display: grid;
    gap: 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(196, 124, 24, 0.12);
}

.floorplan-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.floorplan-copy {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.floorplan-copy h3 {
    margin: 0;
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    color: var(--ink);
}

.floorplan-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.floorplan-meta span {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface-soft-strong);
    color: var(--forest);
    font-weight: 700;
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .floorplan-grid {
        grid-template-columns: 1fr;
    }

    .floorplan-grid-single {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1180px) {
    .apartment-compare-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .apartment-compare-grid {
        grid-template-columns: 1fr;
    }
}

.layout-media {
    display: grid;
    gap: 18px;
}

.plan-shell {
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(196, 124, 24, 0.16);
    background: #fff;
}

.plan-shell img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    background: #fff;
}

.media-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.tour-shell {
    border: 1px solid rgba(196, 124, 24, 0.16);
}

.tour-shell .media-meta {
    border-top: 0;
    background: var(--surface-soft);
    color: var(--forest);
}

.tour-spotlight {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: stretch;
}

.tour-stage {
    position: relative;
    min-height: clamp(380px, 44vw, 560px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #6a3d0b;
    box-shadow: var(--shadow);
}

.tour-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(24px);
    transition:
        opacity 420ms ease,
        transform 420ms ease;
}

.tour-panel.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.tour-panel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-caption {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius-sm);
    background: rgba(63, 36, 8, 0.76);
    color: #fff;
}

.tour-caption span,
.tour-switch span {
    color: rgba(255, 223, 122, 0.92);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tour-caption strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.tour-caption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.tour-switcher {
    display: grid;
    gap: 14px;
    align-content: start;
}

.tour-switch {
    display: grid;
    gap: 8px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.54);
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    box-shadow: var(--shadow);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.tour-switch strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    line-height: 1;
}

.tour-switch small {
    color: var(--muted);
    font-size: 0.92rem;
}

.tour-switch:hover,
.tour-switch.is-active {
    transform: translateX(8px);
    border-color: rgba(239, 140, 24, 0.22);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 216, 102, 0.34));
}

.video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-feature {
    display: grid;
    gap: 18px;
}

.video-copy {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.5);
}

.insight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.insight h3 {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
}

.article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-teaser {
    display: grid;
    gap: 18px;
}

.article-teaser img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.article-body .meta {
    margin: 0 0 10px;
    color: var(--accent-deep);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-grid {
    align-items: start;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
}

.contact-list div {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.contact-list span {
    display: block;
    margin-bottom: 4px;
    color: var(--accent-deep);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-list a,
.footer-links a,
.quicklinks-group a {
    color: var(--forest);
}

.contact-list a:hover,
.footer-links a:hover,
.quicklinks-group a:hover {
    color: var(--accent-deep);
}

.form-panel form {
    display: grid;
    gap: 16px;
}

.field-row {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 700;
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(196, 124, 24, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(239, 140, 24, 0.24);
    border-color: rgba(239, 140, 24, 0.48);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-note {
    display: block;
    min-height: 24px;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    color: var(--forest);
    font-size: 0.94rem;
    font-weight: 700;
    background-color: rgba(93, 123, 40, 0.1);
    border: 1px solid transparent;
}

.form-note.is-success {
    color: var(--forest);
    background-color: rgba(93, 123, 40, 0.14);
    border-color: rgba(93, 123, 40, 0.35);
}

.form-note.is-error {
    color: #b42318;
    background-color: #fbeaea;
    border-color: #f0c6c3;
}

[data-form-submit]:disabled {
    cursor: wait;
    opacity: 0.78;
}

body.has-lead-popup-open {
    overflow: hidden;
}

.lead-popup {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    place-items: center;
    padding: 24px;
}

.lead-popup.is-open {
    display: grid;
}

.lead-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 5, 4, 0.72);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 180ms ease;
}

.lead-popup-panel {
    position: relative;
    width: min(560px, calc(100vw - 32px));
    padding: 34px;
    border: 1px solid rgba(255, 224, 122, 0.16);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(12, 9, 8, 0.98), rgba(20, 16, 13, 0.96));
    color: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
    transform: translateY(18px) scale(0.98);
    opacity: 0;
    transition:
        transform 220ms ease,
        opacity 220ms ease;
}

.lead-popup.is-open .lead-popup-backdrop,
.lead-popup.is-open .lead-popup-panel {
    opacity: 1;
}

.lead-popup.is-open .lead-popup-panel {
    transform: translateY(0) scale(1);
}

.lead-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    font-weight: 700;
}

.lead-popup-copy {
    margin: 12px 0 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.74);
}

.lead-popup-source {
    display: inline-flex;
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 224, 122, 0.12);
    color: rgba(255, 233, 173, 0.9);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.lead-popup-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.lead-popup-form label {
    color: #fff;
}

.lead-popup-form input {
    background: rgba(255, 255, 255, 0.96);
}

.lead-popup-note {
    min-height: 24px;
    color: rgba(255, 233, 173, 0.92);
    font-size: 0.94rem;
    font-weight: 700;
}

.lead-popup-note.is-success {
    color: #ffe9a3;
}

.lead-popup-note.is-error {
    color: #ffb4a2;
}

@media (max-width: 640px) {
    .lead-popup {
        padding: 14px;
    }

    .lead-popup-panel {
        padding: 24px 20px;
    }

    .lead-popup-close {
        top: 14px;
        right: 14px;
    }
}

.faq-panel {
    margin-top: 28px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

details {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
}

summary {
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin-top: 12px;
}

.visit-grid {
    align-items: stretch;
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.social-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.social-link {
    --social-color: var(--forest);
    --social-tint: rgba(255, 255, 255, 0.58);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 60px;
    padding: 12px 16px;
    border: 1px solid rgba(196, 124, 24, 0.12);
    border-radius: 20px;
    background: var(--social-tint);
    color: var(--social-color);
    font-weight: 800;
    box-shadow: var(--shadow);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: currentColor;
}

.social-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--social-color);
    color: #fff;
    flex-shrink: 0;
}

.social-link-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-link.is-facebook {
    --social-color: #1877f2;
    --social-tint: rgba(24, 119, 242, 0.12);
}

.social-link.is-instagram {
    --social-color: #c13584;
    --social-tint: rgba(193, 53, 132, 0.12);
}

.social-link.is-youtube {
    --social-color: #ff0000;
    --social-tint: rgba(255, 0, 0, 0.12);
}

.social-link.is-tiktok {
    --social-color: #111111;
    --social-tint: rgba(17, 17, 17, 0.1);
}

.map-panel {
    display: grid;
    gap: 18px;
}

.map-shell {
    overflow: hidden;
    min-height: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #ffe9a3;
    box-shadow: var(--shadow);
}

.map-shell iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
}

.quicklinks-group {
    display: grid;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    transition: transform 220ms ease;
}

.quicklinks-group p {
    margin: 0;
}

.quicklinks-group a {
    font-weight: 700;
}

.quicklinks-group:hover {
    transform: translateY(-4px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.site-footer {
    padding: 28px 0 34px;
    border-top: 1px solid rgba(196, 124, 24, 0.12);
}

.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 500ms ease,
        transform 500ms ease;
}

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

@keyframes driftGlow {
    0% {
        transform: translate3d(-1%, -1%, 0) scale(1);
    }

    100% {
        transform: translate3d(2%, 1%, 0) scale(1.04);
    }
}

@keyframes floatOrbit {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-12px, -18px, 0);
    }
}

.contact-float-rail,
.assistant-launcher,
.assistant-panel {
    position: fixed;
    z-index: 45;
}

.contact-float-rail {
    right: 28px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-link,
.assistant-launcher,
.assistant-close,
.assistant-chip,
.mobile-contact-link {
    border: 0;
    border-radius: 999px;
    font: inherit;
}

.float-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(255, 90, 36, 0.18);
    background: var(--panel-deep);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    font-weight: 800;
}

.float-link-icon,
.assistant-launcher-icon,
.assistant-avatar,
.mobile-contact-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-link-icon svg,
.assistant-launcher-icon svg,
.assistant-avatar svg,
.mobile-contact-link-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.float-link.is-whatsapp {
    background: var(--surface-strong);
    color: var(--accent-deep);
}

.float-link:hover,
.assistant-launcher:hover,
.assistant-close:hover,
.assistant-chip:hover,
.mobile-contact-link:hover {
    transform: translateY(-1px);
}

.assistant-launcher {
    right: 28px;
    bottom: 164px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 22px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.assistant-launcher span{
    font-size: 0.88rem;
}

.assistant-launcher-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.assistant-panel {
        left: 50%;
        right: auto;
        top: 50%;
        bottom: auto;
        display: flex;
        flex-direction: column;
        width: min(430px, calc(100vw - 32px));
        max-height: min(82vh, 780px);
        border: 1px solid rgba(24, 18, 15, 0.08);
        border-radius: 26px;
        background: #fffefb;
        box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
        overflow: hidden;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -50%);
        transition:
            opacity 180ms ease,
            transform 180ms ease;
    }

    .assistant-panel {
        /* subtle by default, visible on hover */
        scrollbar-width: thin;
        scrollbar-color: transparent transparent;
    }

    .assistant-panel::-webkit-scrollbar {
        width: 8px;
        background: transparent;
    }

    .assistant-panel::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.65);
        border-radius: 26px;
    }

    .assistant-panel::-webkit-scrollbar-thumb {
        background: rgba(24, 18, 15, 0.0);
        border-radius: 26px;
        border: 2px solid rgba(255, 255, 255, 0.85);
        transition: background-color 200ms ease, border-color 200ms ease;
    }

    .assistant-panel::-webkit-scrollbar-corner {
        background: transparent;
    }

    /* On hover show a soft thumb (WebKit) and reveal in Firefox */
    .assistant-panel:hover {
        scrollbar-color: rgba(24, 18, 15, 0.22) rgba(255, 255, 255, 0.65);
    }

    .assistant-panel:hover::-webkit-scrollbar-thumb {
        background: rgba(24, 18, 15, 0.22);
    }

    .assistant-panel.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, -50%);
    }

.assistant-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 90, 36, 0.16);
    background: var(--panel-deep);
    color: #fff;
}

.assistant-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.assistant-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
}

.assistant-header h2,
.assistant-kicker,
.assistant-message p {
    margin: 0;
}

.assistant-header h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.1;
    color: #fff;
}

.assistant-kicker {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.assistant-close {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.assistant-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 14px;
    padding: 16px 16px 0;
}

.assistant-intro-copy {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.assistant-utility,
.assistant-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.assistant-utility {
    margin-bottom: 0;
}

.assistant-utility-link,
.assistant-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(239, 140, 24, 0.2);
    border-radius: 999px;
    background: #fff;
    color: var(--accent-deep);
    font-size: 0.88rem;
    font-weight: 700;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.assistant-utility-link:hover,
.assistant-action:hover {
    transform: translateY(-1px);
    border-color: var(--accent);
    background: #fff4dc;
}

.assistant-messages {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 12px;
    overflow-y: auto;
    padding: 14px 16px 10px;
    background: #fff1cf;
    border-radius: 16px;
}

.assistant-message {
    position: relative;
    max-width: 84%;
    padding: 14px 16px;
    border-radius: 20px;
    background: #ffffff;
    color: #111;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    word-break: break-word;
}

.assistant-message::after {
    content: "";
    position: absolute;
    left: -6px;
    bottom: 14px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 2px 0 0 2px;
    transform: rotate(45deg);
}

.assistant-message.is-user {
    margin-left: auto;
    background: var(--surface-strong);
    border: 1px solid rgba(239, 140, 24, 0.24);
}

.assistant-message.is-user::after {
    left: auto;
    right: -6px;
    background: var(--surface-strong);
    border-radius: 0 2px 2px 0;
}

.assistant-message-role {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.assistant-actions {
    margin-top: 12px;
    flex-wrap: wrap;
}

.assistant-message.is-typing {
    min-width: 92px;
    background: #ffffff;
}

.assistant-typing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.assistant-typing span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(239, 140, 24, 0.35);
    animation: typingPulse 900ms ease-in-out infinite;
}

.assistant-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 -4px 0;
}

.assistant-chip {
    padding: 10px 14px;
    border: 1px solid rgba(239, 140, 24, 0.22);
    background: #fff;
    color: var(--accent-deep);
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.assistant-chip:hover {
    transform: translateY(-1px);
    background: #fff4dc;
    border-color: var(--accent);
}

.assistant-form {
    display: grid;
    gap: 10px;
    padding: 16px 16px 18px;
    background: #fff9ee;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.assistant-form label {
    font-size: 0.88rem;
    color: var(--muted);
}

.assistant-form input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
}

.assistant-form button {
    justify-self: end;
    min-width: 90px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
}

.assistant-form button:hover {
    transform: translateY(-1px);
    background: var(--accent-deep);
}

.assistant-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.assistant-chip {
    padding: 10px 14px;
    border: 1px solid rgba(239, 140, 24, 0.14);
    background: var(--surface-soft);
    color: var(--forest);
    font-weight: 700;
    cursor: pointer;
}

.blog-feature-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
}

.blog-lead {
    display: grid;
    gap: 20px;
}

.blog-article {
    display: grid;
    gap: 18px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow);
}

.blog-article img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.blog-article-header {
    display: grid;
    gap: 12px;
}

.blog-article-header h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.2rem, 3vw, 3.1rem);
    line-height: 1;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    color: var(--accent-deep);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.blog-article p {
    margin: 0;
    color: var(--muted);
}

.article-columns {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-callout {
    padding: 22px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 216, 102, 0.34));
    border: 1px solid rgba(239, 140, 24, 0.1);
}

.article-callout strong {
    color: var(--accent-deep);
}

.assistant-form {
    display: grid;
    gap: 10px;
    padding: 12px 14px 16px;
    background: #fffaf1;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.assistant-form input {
    padding: 14px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
}

.assistant-form button {
    justify-self: end;
    min-width: 90px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
}

.assistant-form button:hover {
    transform: translateY(-1px);
    background: var(--accent-deep);
}

@keyframes typingPulse {
    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.mobile-contact-bar {
    display: none;
}

@media (max-width: 1024px) {
    .hero-facts,
    .amenity-grid,
    .insight-grid,
    .article-grid,
    .video-grid,
    .intro-grid,
    .story-grid,
    .contact-grid,
    .visit-grid,
    .map-grid,
    .quicklinks-grid,
    .blog-feature-grid,
    .article-columns,
    .gallery-grid,
    .video-band,
    .apartment-layout,
    .apartment-layout.reverse {
        grid-template-columns: 1fr;
    }

    .hero-content {
        align-items: center;
    }

    .hero h1,
    .page-hero h1 {
        max-width: 14ch;
    }

    .apartment-layout {
        padding: 28px;
    }

    .hero-layout,
    .tour-spotlight {
        grid-template-columns: 1fr;
    }

    .hero-rail {
        max-width: 620px;
    }
}

@media (max-width: 760px) {
    :root {
        --shell: min(100vw - 28px, 100%);
    }

    body {
        padding-bottom: calc(86px + env(safe-area-inset-bottom));
    }
    .main-content{
        padding: 0 60px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 22px;
        background: var(--panel-deep);
        box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 10px 4px;
    }

    .hero-content,
    .page-hero-content {
        min-height: auto;
        padding: 56px 20px 42px;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 4.2rem);
    }

    .page-hero h1,
    .section-title {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
    }

    .section {
        padding: 78px 0;
    }

    .feature-band,
    .cta-band,
    .intro-card,
    .story-copy,
    .contact-copy,
    .visit-copy,
    .form-panel,
    .faq-panel,
    .map-panel,
    .apartment-layout {
        padding: 24px;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .footer-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-float-rail {
        display: none;
    }

    .assistant-launcher {
        right: 14px;
        bottom: calc(94px + env(safe-area-inset-bottom));
        min-height: 52px;
        padding: 0 18px;
    }

    .assistant-panel {
        /* Center panel on small screens */
        left: 50%;
        top: 50%;
        right: auto;
        bottom: auto;
        width: min(430px, calc(100vw - 32px));
        max-height: min(82vh, 780px);
        transform: translate(-50%, -50%);
    }

    .assistant-panel .assistant-header {
        padding: 12px 14px;
    }

    .assistant-panel .assistant-header h2 {
        font-size: 1.05rem;
    }

    .assistant-panel .assistant-body {
        gap: 10px;
        padding: 10px 12px 0;
    }

    .assistant-panel .assistant-intro-copy {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .assistant-panel .assistant-utility-link,
    .assistant-panel .assistant-action {
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.82rem;
    }

    .assistant-panel .assistant-messages {
        padding: 10px 12px 8px;
    }

    .assistant-panel .assistant-message {
        padding: 12px 14px;
    }

    .assistant-panel .assistant-chip {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .assistant-panel .assistant-form {
        gap: 8px;
        padding: 12px 12px 14px;
    }

    .assistant-panel .assistant-form label {
        font-size: 0.82rem;
    }

    .assistant-panel .assistant-form input {
        padding: 12px 14px;
    }

    .assistant-panel .assistant-form button {
        padding: 10px 14px;
        font-size: 0.88rem;
    }

    .mobile-contact-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 44;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
        background: var(--panel-deep);
        backdrop-filter: blur(18px);
        box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.24);
    }

    .mobile-contact-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        min-height: 40px;
        padding: 0 10px;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        font-weight: 600;
        font-size: 0.75rem;
        text-align: center;
    }

    .mobile-contact-link.is-whatsapp {
        background: var(--surface-strong);
        color: var(--accent-deep);
    }
    .assistant-launcher {
        padding: 0;
        min-width: 52px;
        width: 52px;
    }

    .assistant-launcher > span:not(.assistant-launcher-icon) {
        display: none;
    }

    .assistant-launcher-icon {
        width: 24px;
        height: 24px;
    }

    .brand-mark {
        width: 54px;
        height: 54px;
        padding: 0;
        border-radius: 16px;
    }
    .brand-name {
        font-size: 1rem;
    }

    .brand-tag {
        font-size: 0.64rem;
    }

    .social-strip {
        grid-template-columns: 1fr;
    }

    .hero-rail,
    .tour-switch {
        padding: 22px;
    }

    .tour-stage {
        min-height: 340px;
    }

    .hero-controls {
        gap: 8px;
    }

    .hero-control {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.88rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}
