:root {
    --rp-ink: #17211d;
    --rp-forest: #1f3c2f;
    --rp-forest-2: #2e5543;
    --rp-sea: #d9edf0;
    --rp-sea-ink: #20515a;
    --rp-clay: #b66a4a;
    --rp-gold: #d9b56a;
    --rp-paper: #f5f5f7;
    --rp-stone: #e7e1d6;
    --rp-sand: #efe7da;
    --rp-white: #ffffff;
    --rp-muted: #64706a;
    --rp-line: rgba(23, 33, 29, 0.14);
    --rp-shadow: 0 22px 60px rgba(23, 33, 29, 0.12);
    --rp-shadow-sm: 0 1px 2px rgba(23, 33, 29, 0.06), 0 1px 3px rgba(23, 33, 29, 0.04);
    --rp-shadow-md: 0 10px 24px rgba(23, 33, 29, 0.10), 0 2px 6px rgba(23, 33, 29, 0.05);
    --rp-shadow-lg: 0 28px 60px rgba(23, 33, 29, 0.16), 0 6px 14px rgba(23, 33, 29, 0.06);
    --rp-shadow-gold: 0 16px 38px rgba(217, 181, 106, 0.32);
    --rp-container: 1180px;
    --rp-radius: 8px;
    --rp-radius-md: 12px;
    --rp-radius-lg: 22px;
    --rp-radius-pill: 999px;
    --rp-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    --rp-dur-fast: 140ms;
    --rp-dur-base: 260ms;
    --rp-dur-slow: 480ms;
}

* {
    box-sizing: border-box;
    min-width: 0;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--rp-ink);
    background: var(--rp-paper);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

body.plan-lightbox-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

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

h1 {
    max-width: 680px;
    margin: 18px 0 22px;
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.04em;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.025em;
}

h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.015em;
}

.container {
    width: min(100% - 40px, var(--rp-container));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    top: -80px;
    left: 16px;
    z-index: 2000;
    padding: 10px 14px;
    border-radius: var(--rp-radius);
    background: var(--rp-ink);
    color: var(--rp-white);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(23, 33, 29, 0.55);
    color: var(--rp-white);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
}

.header-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.brand-logo {
    width: 108px;
    height: auto;
    display: block;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 5px;
    border-radius: var(--rp-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.desktop-nav a,
.mobile-menu a {
    text-decoration: none;
}

.desktop-nav a {
    padding: 7px 14px;
    border-radius: var(--rp-radius-pill);
    transition:
        background-color var(--rp-dur-base) var(--rp-ease),
        color var(--rp-dur-base) var(--rp-ease);
}

.desktop-nav a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--rp-white);
}

.mobile-menu a:hover {
    color: var(--rp-white);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: var(--rp-radius);
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--rp-white);
}

.mobile-menu {
    padding: 0 20px 18px;
    display: grid;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

.mobile-menu[hidden] {
    display: none;
}

.hero {
    min-height: min(820px, 92dvh);
    position: relative;
    display: grid;
    align-items: stretch;
    overflow: hidden;
    isolation: isolate;
    background: var(--rp-ink);
    color: var(--rp-white);
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(23, 33, 29, 0.82) 0%, rgba(23, 33, 29, 0.60) 48%, rgba(23, 33, 29, 0.18) 100%),
        linear-gradient(0deg, rgba(23, 33, 29, 0.76) 0%, rgba(23, 33, 29, 0.10) 58%, rgba(23, 33, 29, 0.24) 100%);
}

.hero-inner {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 42px;
    min-height: min(820px, 92dvh);
    padding: 82px 0 0;
}

.hero-stage {
    align-self: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
    gap: 48px;
    align-items: center;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    margin-bottom: 0;
    padding: 7px 14px;
    border-radius: var(--rp-radius-pill);
    background: rgba(217, 181, 106, 0.16);
    color: var(--rp-gold);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow.dark {
    background: rgba(182, 106, 74, 0.12);
    color: var(--rp-clay);
}

.eyebrow.light {
    background: rgba(255, 255, 255, 0.14);
    color: var(--rp-white);
}

.hero-lead {
    max-width: 640px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.35;
}

.hero-urgency {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.hero-urgency span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--rp-radius-pill);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.1;
    backdrop-filter: blur(12px);
}

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

.btn {
    min-height: 50px;
    border: 0;
    border-radius: var(--rp-radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    white-space: normal;
    cursor: pointer;
    transition:
        opacity var(--rp-dur-fast) var(--rp-ease),
        background-color var(--rp-dur-base) var(--rp-ease),
        color var(--rp-dur-base) var(--rp-ease),
        border-color var(--rp-dur-base) var(--rp-ease),
        box-shadow var(--rp-dur-base) var(--rp-ease),
        filter var(--rp-dur-fast) var(--rp-ease);
    touch-action: manipulation;
}

.btn:hover {
    opacity: 0.92;
}

.btn:active {
    opacity: 0.84;
    transition-duration: var(--rp-dur-fast);
}

.btn::after {
    content: "";
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.85;
    transition:
        transform var(--rp-dur-base) var(--rp-ease),
        opacity var(--rp-dur-base) var(--rp-ease);
}

.btn:hover::after {
    transform: translateX(3px);
    opacity: 1;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
select:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px var(--rp-paper),
        0 0 0 5px rgba(217, 181, 106, 0.85);
}

input:focus-visible {
    outline: none;
}

.btn-primary {
    background: var(--rp-gold);
    color: #12140f;
}

.btn-primary:hover {
    opacity: 1;
    filter: brightness(1.04);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    color: var(--rp-white);
    backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-light {
    background: var(--rp-white);
    color: var(--rp-forest);
}

.btn-full {
    width: 100%;
}

.hero-card {
    display: grid;
    gap: 12px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--rp-radius-lg);
    background: rgba(255, 255, 255, 0.86);
    color: var(--rp-ink);
    box-shadow: 0 26px 72px rgba(23, 33, 29, 0.18);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
}

.hero-card-head {
    display: grid;
    gap: 5px;
    margin-bottom: 4px;
}

.hero-card-head span {
    color: var(--rp-clay);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-card-head strong {
    font-size: 22px;
    line-height: 1.1;
}

.hero-name-field {
    display: none;
}

.hero-card .privacy,
.hero-card .form-success {
    color: var(--rp-muted);
}

.micro-trust {
    margin: -2px 0 0;
    color: var(--rp-muted);
    font-size: 13px;
    line-height: 1.35;
}

.hero-whatsapp {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rp-line);
    border-radius: var(--rp-radius-pill);
    color: var(--rp-forest);
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--rp-dur-base) var(--rp-ease);
}

.hero-whatsapp:hover {
    background: rgba(31, 60, 47, 0.06);
}

.hero-brief {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(23, 33, 29, 0.48);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.hero-brief div {
    min-height: 116px;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 22px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-brief div:last-child {
    border-right: 0;
}

.hero-brief span,
.snapshot-list span {
    color: var(--rp-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-brief span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.55);
}

.hero-brief span::before {
    content: "";
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    background-color: currentColor;
    -webkit-mask: var(--hero-glyph) center/contain no-repeat;
    mask: var(--hero-glyph) center/contain no-repeat;
    opacity: 0.9;
}

.hero-brief div:nth-child(1) span {
    --hero-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.hero-brief div:nth-child(2) span {
    --hero-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='2' width='16' height='20' rx='2'/%3E%3Cpath d='M9 22v-4h6v4'/%3E%3Cpath d='M8 6h2M14 6h2M8 10h2M14 10h2M8 14h2M14 14h2'/%3E%3C/svg%3E");
}

.hero-brief div:nth-child(3) span {
    --hero-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'/%3E%3Cpath d='M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'/%3E%3Cpath d='M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'/%3E%3C/svg%3E");
}

.hero-brief div:nth-child(4) span {
    --hero-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
}

.hero-brief strong {
    font-size: clamp(26px, 2.4vw, 34px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.signal-strip {
    background: var(--rp-white);
    color: var(--rp-ink);
}

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

.signal-inner div {
    min-height: 92px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-right: 1px solid rgba(23, 33, 29, 0.1);
}

.signal-inner div::before {
    content: "";
    width: 34px;
    height: 34px;
    background-color: var(--rp-gold);
    -webkit-mask: var(--signal-icon) center/contain no-repeat;
    mask: var(--signal-icon) center/contain no-repeat;
}

.signal-inner div:nth-child(1) {
    --signal-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/svg%3E");
}

.signal-inner div:nth-child(2) {
    --signal-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z'/%3E%3Cpath d='m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z'/%3E%3Cpath d='M7 21h10'/%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2'/%3E%3C/svg%3E");
}

.signal-inner div:nth-child(3) {
    --signal-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7.9 20A9 9 0 1 0 4 16.1L2 22Z'/%3E%3C/svg%3E");
}

.signal-inner div:last-child {
    border-right: 0;
}

.signal-inner span {
    display: none;
}

.signal-inner strong {
    min-width: 0;
    overflow-wrap: break-word;
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

.section {
    padding-block: clamp(56px, 9vw, 112px);
    padding-inline: 0;
}

.fit-section,
.advisor-section {
    background: var(--rp-paper);
}

.fit-head {
    max-width: 780px;
    margin-bottom: 28px;
}

.fit-cards {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 16px;
}

.fit-card {
    --glow-x: 50%;
    --glow-y: 50%;
    position: relative;
    min-height: 360px;
    display: grid;
    align-items: end;
    overflow: hidden;
    border-radius: var(--rp-radius-lg);
    background: var(--rp-ink);
    color: var(--rp-white);
    box-shadow: var(--rp-shadow);
    transition:
        transform var(--rp-dur-base) var(--rp-ease),
        box-shadow var(--rp-dur-base) var(--rp-ease);
    will-change: transform;
}

.fit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background: radial-gradient(280px circle at var(--glow-x) var(--glow-y), rgba(217, 181, 106, 0.22), transparent 70%);
    opacity: 0;
    transition: opacity var(--rp-dur-base) var(--rp-ease);
    pointer-events: none;
}

.fit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rp-shadow-lg);
}

.fit-card:hover::before {
    opacity: 1;
}

.fit-card-large {
    grid-row: span 2;
    min-height: 736px;
}

.fit-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition:
        transform var(--rp-dur-slow) var(--rp-ease),
        opacity var(--rp-dur-base) var(--rp-ease);
}

.fit-card:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}

.fit-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 33, 29, 0.04), rgba(23, 33, 29, 0.78));
}

.fit-card div {
    position: relative;
    z-index: 1;
    max-width: 440px;
    padding: 28px;
}

.fit-card span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(23, 33, 29, 0.22);
    color: var(--rp-white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.fit-card h3 {
    max-width: 360px;
    margin-bottom: 10px;
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.05;
}

.fit-card p,
.gallery-head p,
.advisor-copy p,
.quiz-grid p,
.final-panel p,
.fine-note {
    color: var(--rp-muted);
    font-size: 18px;
}

.fit-card p {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.76);
}

.fit-card button {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: var(--rp-radius-pill);
    background: var(--rp-white);
    color: var(--rp-ink);
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background-color var(--rp-dur-base) var(--rp-ease),
        border-color var(--rp-dur-base) var(--rp-ease),
        transform var(--rp-dur-base) var(--rp-ease);
}

.fit-card button:hover {
    background: var(--rp-gold);
    border-color: var(--rp-gold);
}

.audit-section {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(800px 500px at 110% -10%, rgba(217, 181, 106, 0.08), transparent 60%),
        radial-gradient(600px 400px at -10% 110%, rgba(217, 237, 240, 0.5), transparent 60%),
        var(--rp-white);
}

.project-layout,
.advisor-grid,
.quiz-grid,
.trust-grid,
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 56px;
    align-items: start;
}

.audit-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    gap: 16px;
    align-items: stretch;
}

.audit-visual,
.audit-panel {
    min-height: 560px;
    border-radius: var(--rp-radius-lg);
    overflow: hidden;
}

.audit-visual {
    position: relative;
    margin: 0;
    background: var(--rp-ink);
}

.audit-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--rp-dur-slow) var(--rp-ease);
    will-change: transform;
}

.audit-visual:hover img {
    transform: scale(1.04);
}

.audit-visual figcaption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 14px;
    border-radius: var(--rp-radius-pill);
    background: rgba(23, 33, 29, 0.55);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.audit-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    background: var(--rp-forest);
    color: var(--rp-white);
}

.audit-panel h2 {
    font-size: clamp(32px, 3.4vw, 48px);
}

.audit-panel p:not(.eyebrow) {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 20px;
}

.audit-panel .btn {
    width: fit-content;
    margin-top: 8px;
}

.audit-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.audit-cards article {
    min-height: 178px;
    padding: 22px;
    border: 1px solid var(--rp-line);
    border-radius: var(--rp-radius-lg);
    background: var(--rp-paper);
    transition:
        transform var(--rp-dur-base) var(--rp-ease),
        box-shadow var(--rp-dur-base) var(--rp-ease),
        border-color var(--rp-dur-base) var(--rp-ease);
}

.audit-cards article:hover {
    transform: translateY(-3px);
    box-shadow: var(--rp-shadow-md);
    border-color: rgba(23, 33, 29, 0.22);
}

.audit-cards span {
    display: block;
    margin-bottom: 24px;
    color: var(--rp-clay);
    font-size: 13px;
    font-weight: 700;
}

.audit-cards strong {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.08;
}

.audit-cards p {
    margin: 0;
    color: var(--rp-muted);
}

.project-section {
    background: #efe7da;
}

.project-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
}

@media (min-width: 1081px) {
    .project-section .project-media-column {
        position: sticky;
        top: 96px;
    }
}

.project-media-column {
    display: grid;
    gap: 14px;
    align-content: start;
}

.project-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--rp-radius-lg);
    background: rgba(255, 255, 255, 0.46);
    box-shadow: var(--rp-shadow);
    transition: box-shadow var(--rp-dur-base) var(--rp-ease);
}

.project-visual:hover {
    box-shadow: var(--rp-shadow-lg);
}

.project-visual::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    pointer-events: none;
}

.project-visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: opacity var(--rp-dur-base) var(--rp-ease), transform var(--rp-dur-slow) var(--rp-ease);
    will-change: transform;
}

.project-visual:hover img {
    transform: scale(1.04);
}

.project-visual.is-plan-preview img {
    object-fit: contain;
}

.project-visual.is-plan-preview:hover img {
    transform: none;
}

.project-visual img.is-switching {
    opacity: 0.32;
}

.project-preview-reset {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(23, 33, 29, 0.72);
    color: var(--rp-white);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(14px);
    transition: background var(--rp-dur-base) var(--rp-ease), border-color var(--rp-dur-base) var(--rp-ease), color var(--rp-dur-base) var(--rp-ease), transform var(--rp-dur-base) var(--rp-ease);
}

.project-preview-reset:hover,
.project-preview-reset:focus-visible,
.project-preview-reset.is-active {
    border-color: rgba(217, 181, 106, 0.72);
    background: rgba(217, 181, 106, 0.9);
    color: var(--rp-ink);
}

.project-preview-reset:active {
    transform: translateY(1px);
}

.snapshot-list {
    display: grid;
    margin: 28px 0 20px;
    border-top: 1px solid rgba(23, 33, 29, 0.1);
}

.snapshot-list div {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(23, 33, 29, 0.1);
}

.snapshot-list span {
    align-self: center;
}

.snapshot-list strong {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.unit-mix-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.unit-mix-card {
    min-height: 88px;
    padding: 14px;
    border: 1px solid rgba(23, 33, 29, 0.1);
    border-radius: var(--rp-radius-md);
    background: rgba(255, 255, 255, 0.42);
    color: var(--rp-ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background var(--rp-dur-base) var(--rp-ease), border-color var(--rp-dur-base) var(--rp-ease), box-shadow var(--rp-dur-base) var(--rp-ease), transform var(--rp-dur-base) var(--rp-ease);
}

.unit-mix-card:hover,
.unit-mix-card:focus-visible {
    border-color: rgba(217, 181, 106, 0.62);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 14px 28px rgba(23, 33, 29, 0.08);
}

.unit-mix-card.is-active {
    border-color: rgba(217, 181, 106, 0.86);
    background: rgba(217, 181, 106, 0.18);
}

.unit-mix-card:active {
    transform: translateY(1px);
}

.unit-mix-grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--rp-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.unit-mix-grid strong {
    font-size: 18px;
    font-weight: 650;
}

.plans-section {
    background:
        radial-gradient(760px 460px at 92% 0%, rgba(217, 181, 106, 0.12), transparent 58%),
        var(--rp-paper);
}

.plans-head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
    gap: 50px;
    align-items: end;
    margin-bottom: 34px;
}

.plans-head p:last-child {
    color: var(--rp-muted);
    font-size: 18px;
}

.plans-group + .plans-group {
    margin-top: 34px;
}

.plans-group-floor {
    padding: 20px;
    border: 1px solid rgba(23, 33, 29, 0.08);
    border-radius: var(--rp-radius-lg);
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 0 18px 44px rgba(23, 33, 29, 0.05);
}

.plans-group-floor .plans-group-head {
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: 0;
}

.plans-group-floor .plans-group-head h3 {
    font-size: clamp(20px, 2vw, 26px);
}

.plans-group-floor .plans-grid {
    gap: 10px;
}

.plans-group-floor .plan-card,
.plans-group-floor .plan-card-wide {
    flex-basis: clamp(220px, 24vw, 320px);
    box-shadow: 0 12px 30px rgba(23, 33, 29, 0.06);
}

.plans-group-floor .plan-card span {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 12px;
}

.plans-group-units {
    margin-top: 44px;
}

.plans-group-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(23, 33, 29, 0.1);
}

.plans-group-head h3 {
    margin: 0;
    font-size: clamp(24px, 2.5vw, 34px);
}

.plans-group-head span {
    color: var(--rp-muted);
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.plans-carousel {
    position: relative;
    isolation: isolate;
}

.plans-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px;
    margin: -2px;
}

.plans-viewport::-webkit-scrollbar {
    display: none;
}

.plans-grid {
    display: flex;
    gap: 14px;
}

.plan-card {
    position: relative;
    display: block;
    flex: 0 0 clamp(292px, 34vw, 448px);
    overflow: hidden;
    border: 1px solid rgba(23, 33, 29, 0.1);
    border-radius: var(--rp-radius-md);
    background: var(--rp-white);
    color: var(--rp-ink);
    box-shadow: 0 18px 48px rgba(23, 33, 29, 0.08);
    text-decoration: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition:
        border-color var(--rp-dur-base) var(--rp-ease),
        box-shadow var(--rp-dur-base) var(--rp-ease),
        transform var(--rp-dur-base) var(--rp-ease);
}

.plan-card-wide {
    flex-basis: clamp(320px, 42vw, 540px);
}

.plan-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    background: #ece6dc;
    transition: transform var(--rp-dur-slow) var(--rp-ease);
}

.plan-card span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    max-width: calc(100% - 24px);
    padding: 8px 12px;
    border-radius: var(--rp-radius-pill);
    background: rgba(255, 255, 255, 0.88);
    color: var(--rp-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: 0 12px 28px rgba(23, 33, 29, 0.12);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.plan-card span::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.62;
}

.plan-card:hover {
    border-color: rgba(31, 60, 47, 0.22);
    box-shadow: var(--rp-shadow);
    transform: translateY(-3px);
}

.plan-card:hover img {
    transform: scale(1.035);
}

.plan-card:focus-visible {
    outline: 3px solid rgba(217, 181, 106, 0.72);
    outline-offset: 4px;
}

.plan-unit-card {
    flex: 0 0 clamp(292px, 34vw, 448px);
    display: grid;
    gap: 10px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.plan-unit-card .plan-card {
    flex: initial;
}

.plan-unit-cta {
    min-height: 42px;
    border: 1px solid rgba(23, 33, 29, 0.12);
    border-radius: var(--rp-radius-pill);
    background: rgba(255, 255, 255, 0.86);
    color: var(--rp-ink);
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color var(--rp-dur-base) var(--rp-ease),
        border-color var(--rp-dur-base) var(--rp-ease),
        transform var(--rp-dur-base) var(--rp-ease);
}

.plan-unit-cta:hover {
    background: var(--rp-gold);
    border-color: var(--rp-gold);
    transform: translateY(-1px);
}

.plan-unit-cta:focus-visible {
    outline: 3px solid rgba(217, 181, 106, 0.72);
    outline-offset: 4px;
}

.plans-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--rp-ink);
    box-shadow: 0 18px 42px rgba(23, 33, 29, 0.16);
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        opacity var(--rp-dur-fast) var(--rp-ease),
        transform var(--rp-dur-fast) var(--rp-ease),
        background var(--rp-dur-fast) var(--rp-ease);
}

.plans-arrow::before {
    content: "";
    width: 11px;
    height: 11px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.plans-arrow-prev {
    left: -23px;
}

.plans-arrow-prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.plans-arrow-next {
    right: -23px;
}

.plans-arrow-next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

.plans-arrow:hover {
    background: var(--rp-white);
    transform: translateY(-50%) scale(1.04);
}

.plans-arrow:focus-visible {
    outline: 3px solid rgba(217, 181, 106, 0.72);
    outline-offset: 4px;
}

.plans-arrow:disabled {
    opacity: 0.34;
    cursor: default;
    pointer-events: none;
}

.plans-progress {
    height: 4px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: var(--rp-radius-pill);
    background: rgba(23, 33, 29, 0.1);
}

.plans-progress span {
    display: block;
    width: 18%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--rp-gold), #f3d27b);
    transition: width var(--rp-dur-base) var(--rp-ease);
}

.presale-section {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(239, 231, 218, 0.92)),
        var(--rp-sand);
    padding-block: clamp(44px, 6vw, 76px);
}

.presale-shell {
    display: grid;
    gap: 28px;
}

.presale-copy {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.55fr);
    gap: 28px;
    align-items: end;
}

.presale-copy p:not(.eyebrow) {
    max-width: 560px;
    color: var(--rp-muted);
    font-size: 18px;
}

.presale-panel {
    padding: 24px;
    border: 1px solid rgba(23, 33, 29, 0.1);
    border-radius: var(--rp-radius-lg);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--rp-shadow-md);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.presale-kicker {
    margin: 0 0 12px;
    color: var(--rp-clay);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.presale-price-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.presale-price-grid article {
    min-height: 104px;
    padding: 16px;
    border: 1px solid rgba(23, 33, 29, 0.09);
    border-radius: var(--rp-radius-md);
    background: var(--rp-white);
}

.presale-price-grid span,
.presale-terms span {
    display: block;
    margin-bottom: 8px;
    color: var(--rp-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.presale-price-grid strong {
    display: block;
    color: var(--rp-ink);
    font-size: clamp(21px, 2vw, 28px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0;
}

.presale-price-grid + .presale-kicker {
    margin-top: 26px;
}

.presale-terms {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 0;
}

.presale-terms div {
    display: grid;
    gap: 8px;
    align-content: start;
    min-height: 112px;
    padding: 16px;
    border: 1px solid rgba(23, 33, 29, 0.09);
    border-radius: var(--rp-radius-md);
    background: rgba(255, 255, 255, 0.72);
}

.presale-terms strong {
    color: var(--rp-ink);
    font-size: 18px;
    font-weight: 600;
}

.presale-terms small {
    color: var(--rp-muted);
    font-size: 13px;
    line-height: 1.35;
}

.presale-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(23, 33, 29, 0.1);
}

.presale-bottom .fine-note {
    margin: 0;
    font-size: 16px;
}

.presale-bottom .btn {
    min-width: 190px;
}

.gallery-section {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(900px 500px at 88% -10%, rgba(217, 181, 106, 0.10), transparent 60%),
        radial-gradient(700px 400px at 5% 110%, rgba(46, 85, 67, 0.42), transparent 60%),
        var(--rp-ink);
    color: var(--rp-white);
}

.gallery-head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
    gap: 50px;
    align-items: end;
    margin-bottom: 34px;
}

.gallery-head p {
    color: rgba(255, 255, 255, 0.72);
}

.location-reasons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.location-reasons article {
    min-height: 168px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--rp-radius-md);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 44px rgba(23, 33, 29, 0.14);
}

.location-reasons span {
    display: block;
    margin-bottom: 20px;
    color: var(--rp-gold);
    font-size: 12px;
    font-weight: 800;
}

.location-reasons strong {
    display: block;
    margin-bottom: 10px;
    color: var(--rp-white);
    font-size: 18px;
    line-height: 1.12;
}

.location-reasons p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.5;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-mosaic figure:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-mosaic figure:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-mosaic figure:nth-child(3),
.gallery-mosaic figure:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-mosaic figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--rp-radius-lg);
    background: #253029;
    transition: box-shadow var(--rp-dur-base) var(--rp-ease);
}

.gallery-mosaic figure:hover {
    box-shadow: var(--rp-shadow-lg);
}

.gallery-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--rp-dur-slow) var(--rp-ease);
    will-change: transform;
}

.gallery-mosaic figure:hover img {
    transform: scale(1.05);
}

.mosaic-main {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-mosaic figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 8px 14px;
    border-radius: var(--rp-radius-pill);
    background: rgba(23, 33, 29, 0.55);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.location-map-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--rp-radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 64px rgba(23, 33, 29, 0.22);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.location-map-copy {
    display: grid;
    align-content: center;
    padding: 28px;
}

.location-map-copy h3 {
    margin: 12px 0 10px;
    color: var(--rp-white);
    font-size: clamp(24px, 2.4vw, 34px);
}

.location-map-copy p:not(.eyebrow) {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.location-map-frame {
    min-height: 330px;
    background: rgba(255, 255, 255, 0.06);
}

.location-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 330px;
    display: block;
    border: 0;
}

.showroom-section {
    background:
        radial-gradient(720px 440px at 6% 0%, rgba(217, 181, 106, 0.12), transparent 58%),
        var(--rp-paper);
}

.showroom-head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
    gap: 50px;
    align-items: end;
    margin-bottom: 34px;
}

.showroom-head p:last-child {
    color: var(--rp-muted);
    font-size: 18px;
}

.showroom-carousel {
    position: relative;
    isolation: isolate;
}

.showroom-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px;
    margin: -2px;
}

.showroom-viewport::-webkit-scrollbar {
    display: none;
}

.showroom-track {
    display: flex;
    gap: 16px;
}

.showroom-card {
    position: relative;
    display: block;
    flex: 0 0 clamp(292px, 34vw, 448px);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--rp-radius-lg);
    background: #dde1d9;
    color: var(--rp-white);
    box-shadow: 0 18px 48px rgba(23, 33, 29, 0.1);
    text-decoration: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition:
        box-shadow var(--rp-dur-base) var(--rp-ease),
        transform var(--rp-dur-base) var(--rp-ease);
}

.showroom-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--rp-dur-slow) var(--rp-ease);
    will-change: transform;
}

.showroom-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(23, 33, 29, 0.7));
    pointer-events: none;
}

.showroom-card span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 1;
    display: inline-flex;
    min-height: 36px;
    max-width: calc(100% - 28px);
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--rp-radius-pill);
    background: rgba(23, 33, 29, 0.56);
    color: rgba(255, 255, 255, 0.94);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.showroom-card:hover {
    box-shadow: var(--rp-shadow-lg);
    transform: translateY(-3px);
}

.showroom-card:hover img {
    transform: scale(1.045);
}

.showroom-card:focus-visible {
    outline: 3px solid rgba(217, 181, 106, 0.72);
    outline-offset: 4px;
}

.showroom-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--rp-ink);
    box-shadow: 0 18px 42px rgba(23, 33, 29, 0.18);
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        opacity var(--rp-dur-fast) var(--rp-ease),
        transform var(--rp-dur-fast) var(--rp-ease),
        background var(--rp-dur-fast) var(--rp-ease);
}

.showroom-arrow::before {
    content: "";
    width: 11px;
    height: 11px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.showroom-arrow-prev {
    left: -23px;
}

.showroom-arrow-prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.showroom-arrow-next {
    right: -23px;
}

.showroom-arrow-next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

.showroom-arrow:hover {
    background: var(--rp-white);
    transform: translateY(-50%) scale(1.04);
}

.showroom-arrow:focus-visible {
    outline: 3px solid rgba(217, 181, 106, 0.72);
    outline-offset: 4px;
}

.showroom-arrow:disabled {
    opacity: 0.34;
    cursor: default;
    pointer-events: none;
}

.showroom-progress {
    height: 4px;
    margin-top: 20px;
    overflow: hidden;
    border-radius: var(--rp-radius-pill);
    background: rgba(23, 33, 29, 0.1);
}

.showroom-progress span {
    display: block;
    width: 18%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--rp-gold), #f3d27b);
    transition: width var(--rp-dur-base) var(--rp-ease);
}

.showroom-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 22px;
    padding: 20px 22px;
    border: 1px solid rgba(23, 33, 29, 0.1);
    border-radius: var(--rp-radius-lg);
    background: rgba(255, 255, 255, 0.72);
}

.showroom-cta p {
    max-width: 720px;
    margin: 0;
    color: var(--rp-muted);
    font-size: 17px;
}

.rental-section {
    background:
        radial-gradient(720px 420px at 88% 0%, rgba(217, 181, 106, 0.12), transparent 58%),
        var(--rp-white);
}

.rental-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.rental-copy {
    max-width: 540px;
}

.rental-copy p:not(.eyebrow) {
    color: var(--rp-muted);
    font-size: 18px;
}

.rental-cards {
    display: grid;
    gap: 12px;
}

.rental-cards article {
    display: grid;
    grid-template-columns: 48px minmax(0, 0.58fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--rp-line);
    border-radius: var(--rp-radius-lg);
    background: var(--rp-paper);
}

.rental-cards span {
    color: var(--rp-clay);
    font-size: 13px;
    font-weight: 800;
}

.rental-cards strong {
    font-size: 22px;
    line-height: 1.08;
}

.rental-cards p {
    margin: 0;
    color: var(--rp-muted);
}

.trust-section {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(900px 500px at 92% -10%, rgba(217, 181, 106, 0.16), transparent 60%),
        radial-gradient(700px 400px at 5% 110%, rgba(46, 85, 67, 0.42), transparent 60%),
        var(--rp-ink);
    color: var(--rp-white);
}

.trust-grid {
    align-items: center;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    grid-template-areas: "visual copy";
    gap: 64px;
}

.trust-copy {
    grid-area: copy;
    max-width: 560px;
}

.trust-section .video-slot {
    grid-area: visual;
}

.trust-section h2 {
    color: var(--rp-white);
}

.trust-section .eyebrow.dark {
    background: rgba(255, 255, 255, 0.12);
    color: var(--rp-white);
}

.trust-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.video-slot {
    position: relative;
    min-height: 420px;
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
    border-radius: var(--rp-radius-lg);
    background: var(--rp-ink);
    box-shadow: var(--rp-shadow-lg);
    cursor: pointer;
}

.video-slot-embed {
    min-height: 0;
    aspect-ratio: 16 / 9;
    display: block;
    background: #101714;
    cursor: default;
}

.trust-section .video-slot.video-slot-embed {
    min-height: 0;
}

.video-slot-embed::before,
.video-slot-embed::after {
    display: none;
}

.video-slot-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-slot::before {
    content: "";
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2312140f'%3E%3Cpath d='m8 5 11 7-11 7Z'/%3E%3C/svg%3E") no-repeat 56% center / 28px,
        rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 14px 40px rgba(23, 33, 29, 0.26);
    transition:
        transform var(--rp-dur-base) var(--rp-ease),
        background-color var(--rp-dur-base) var(--rp-ease);
}

.video-slot:hover::before {
    transform: translate(-50%, -50%) scale(1.06);
}

.video-slot img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--rp-dur-slow) var(--rp-ease);
    will-change: transform;
}

.video-slot:hover img {
    transform: scale(1.05);
}

.video-slot::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(23, 33, 29, 0.18), rgba(23, 33, 29, 0.82));
}

.video-slot-content {
    max-width: 460px;
    padding: 28px;
    color: var(--rp-white);
}

.video-slot-content span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--rp-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.video-slot-content strong {
    display: block;
    margin-bottom: 10px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.04;
}

.video-slot-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
}

.faq-section {
    background:
        linear-gradient(180deg, var(--rp-paper), var(--rp-white));
}

.faq-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.faq-copy {
    position: sticky;
    top: 96px;
}

.faq-copy p:not(.eyebrow) {
    max-width: 460px;
    color: var(--rp-muted);
    font-size: 18px;
}

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

.faq-list details {
    border: 1px solid var(--rp-line);
    border-radius: var(--rp-radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--rp-shadow-sm);
}

.faq-list summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    color: var(--rp-ink);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "";
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-3px);
    opacity: 0.58;
    transition: transform var(--rp-dur-base) var(--rp-ease);
}

.faq-list details[open] summary::after {
    transform: rotate(225deg) translateY(-1px);
}

.faq-list details p {
    margin: -4px 20px 20px;
    color: var(--rp-muted);
}

.advisor-grid,
.quiz-grid {
    align-items: center;
}

.advisor-steps {
    display: grid;
    gap: 0;
    margin-top: 28px;
}

.advisor-steps div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(23, 33, 29, 0.08);
}

.advisor-steps div:last-child {
    border-bottom: 1px solid rgba(23, 33, 29, 0.08);
}

.advisor-steps span {
    display: block;
    color: var(--rp-gold);
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.advisor-steps strong {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--rp-ink);
}

.leader-trust-card {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    margin-top: 28px;
    padding: 22px;
    border: 1px solid var(--rp-line);
    border-radius: var(--rp-radius-lg);
    background: var(--rp-white);
    box-shadow: 0 18px 42px rgba(11, 32, 23, 0.06);
    transition:
        transform var(--rp-dur-base) var(--rp-ease),
        box-shadow var(--rp-dur-base) var(--rp-ease);
}

.leader-trust-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 60px rgba(11, 32, 23, 0.12);
}

.leader-photo {
    width: 84px;
    height: 84px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    background: var(--rp-sand);
    box-shadow: 0 0 0 4px var(--rp-white), 0 0 0 5px rgba(11, 32, 23, 0.08);
}

.leader-kicker {
    display: inline-flex;
    align-items: center;
    margin: 0 0 8px;
    padding: 6px 12px;
    border-radius: var(--rp-radius-pill);
    background: rgba(182, 106, 74, 0.12);
    color: var(--rp-clay);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.leader-copy strong {
    display: block;
    color: var(--rp-ink);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.leader-copy p:last-child {
    margin: 8px 0 0;
    color: var(--rp-muted);
    font-size: 14px;
    line-height: 1.5;
}

.lead-card,
.quiz-card {
    border: 1px solid var(--rp-line);
    border-radius: var(--rp-radius-lg);
    background: var(--rp-white);
    box-shadow: var(--rp-shadow);
    padding: 32px;
}

form {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 600;
}

.field-plain {
    gap: 0;
}

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

input,
select {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    border: 1px solid var(--rp-line);
    border-radius: var(--rp-radius-md);
    background: var(--rp-white);
    color: var(--rp-ink);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--rp-forest);
    box-shadow: 0 0 0 3px rgba(31, 60, 47, 0.18);
}

select {
    appearance: auto;
}

.form-error {
    color: #a22920;
    font-weight: 500;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.privacy {
    margin: 0;
    color: var(--rp-muted);
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.85;
}

.form-success {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: var(--rp-radius-md);
    background: #e3f0de;
    color: #23412b;
}

.success-reset {
    width: fit-content;
    min-height: 38px;
    border: 0;
    border-radius: var(--rp-radius-pill);
    background: #23412b;
    color: var(--rp-white);
    padding: 8px 18px;
    font-weight: 600;
    cursor: pointer;
}

.quiz-section {
    background: #f0ece3;
}

.quiz-card fieldset {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}

.quiz-card legend {
    margin-bottom: 8px;
    font-weight: 700;
}

.quiz-card fieldset label {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--rp-line);
    border-radius: var(--rp-radius);
    background: var(--rp-paper);
}

.quiz-card input[type="radio"] {
    width: 18px;
    min-height: 18px;
}

.final-cta {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(1200px 600px at 92% -22%, rgba(217, 181, 106, 0.18), transparent 60%),
        radial-gradient(800px 500px at 8% 120%, rgba(46, 85, 67, 0.65), transparent 60%),
        var(--rp-forest);
    color: var(--rp-white);
}

.final-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.final-panel p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
}

.site-footer {
    padding: 38px 0;
    background: #0d1210;
    color: rgba(255, 255, 255, 0.74);
}

.footer-logo {
    width: 112px;
    height: auto;
    display: block;
    margin-bottom: 12px;
}

.site-footer p {
    margin-bottom: 0;
}

.footer-grid {
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

.footer-links a {
    color: var(--rp-white);
    font-weight: 500;
    text-decoration: none;
    transition: opacity var(--rp-dur-base) var(--rp-ease);
}

.footer-links a:hover {
    opacity: 0.7;
}

.lead-modal[hidden] {
    display: none;
}

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 18px;
}

.lead-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.lead-modal-panel {
    position: relative;
    width: min(100%, 520px);
    max-height: min(92vh, 760px);
    overflow: auto;
    border-radius: var(--rp-radius-lg);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--rp-shadow);
    padding: 30px;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
}

.lead-modal-panel p {
    color: var(--rp-muted);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: var(--rp-radius-pill);
    background: rgba(23, 33, 29, 0.06);
    color: var(--rp-ink);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    transition: background-color var(--rp-dur-base) var(--rp-ease);
}

.modal-close:hover {
    background: rgba(23, 33, 29, 0.12);
}

.plan-lightbox[hidden] {
    display: none;
}

.plan-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    place-items: center;
    padding: clamp(12px, 2vw, 28px);
}

.plan-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23, 33, 29, 0.82);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.plan-lightbox-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 1160px);
    max-height: min(92dvh, 820px);
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    align-items: center;
    gap: 12px;
}

.plan-lightbox-figure {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: var(--rp-radius-lg);
    background: var(--rp-white);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
}

.plan-lightbox-figure img {
    width: 100%;
    max-height: calc(92dvh - 86px);
    object-fit: contain;
    background: #f1ece4;
}

.plan-lightbox-figure figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-top: 1px solid rgba(23, 33, 29, 0.1);
    color: var(--rp-ink);
    font-weight: 700;
}

.plan-lightbox-figure small {
    color: var(--rp-muted);
    font-size: 13px;
    font-weight: 600;
}

.plan-lightbox-close,
.plan-lightbox-nav {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--rp-white);
    cursor: pointer;
    transition:
        background-color var(--rp-dur-base) var(--rp-ease),
        transform var(--rp-dur-base) var(--rp-ease);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.plan-lightbox-close:hover,
.plan-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.plan-lightbox-close:focus-visible,
.plan-lightbox-nav:focus-visible {
    outline: 3px solid rgba(217, 181, 106, 0.8);
    outline-offset: 3px;
}

.plan-lightbox-close {
    position: absolute;
    top: -58px;
    right: 0;
}

.plan-lightbox-close::before,
.plan-lightbox-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.plan-lightbox-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.plan-lightbox-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.plan-lightbox-nav::before {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    margin: 0 auto;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}

.plan-lightbox-prev::before {
    transform: translateX(2px) rotate(-45deg);
}

.plan-lightbox-next::before {
    transform: translateX(-2px) rotate(135deg);
}

.back-to-top {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 95;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    background: rgba(23, 33, 29, 0.84);
    color: var(--rp-white);
    box-shadow: 0 14px 34px rgba(23, 33, 29, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
    cursor: pointer;
    touch-action: manipulation;
    backdrop-filter: blur(14px);
}

.back-to-top::before {
    content: "";
    width: 11px;
    height: 11px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: translateY(3px) rotate(45deg);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(23, 33, 29, 0.94);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(235, 196, 98, 0.78);
    outline-offset: 3px;
}

@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }

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

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

    .hero {
        min-height: 720px;
    }

    .hero-inner {
        min-height: 720px;
        padding-top: 72px;
        padding-bottom: 0;
    }

    .hero-stage {
        grid-template-columns: 1fr;
        gap: 28px;
        align-self: end;
    }

    .hero-card {
        width: min(100%, 620px);
    }

    .hero-brief div:nth-child(2) {
        border-right: 0;
    }

    .signal-inner,
    .fit-cards,
    .audit-shell,
    .audit-cards,
    .project-layout,
    .presale-shell,
    .plans-head,
    .gallery-head,
    .showroom-head,
    .showroom-cta,
    .rental-shell,
    .faq-shell,
    .advisor-grid,
    .quiz-grid,
    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .presale-copy,
    .presale-price-grid,
    .presale-terms,
    .presale-bottom {
        grid-template-columns: 1fr;
    }

    .presale-bottom .btn {
        width: 100%;
    }

    .trust-grid {
        grid-template-areas:
            "copy"
            "visual";
        gap: 34px;
    }

    .fit-card-large {
        min-height: 420px;
    }

    .audit-visual,
    .audit-panel {
        min-height: 430px;
    }

    .audit-panel {
        justify-content: center;
    }

    .audit-cards {
        gap: 10px;
    }

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

    .video-slot {
        min-height: 360px;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 230px;
    }

    .plan-card {
        flex-basis: clamp(292px, 46vw, 420px);
    }

    .plan-card-wide {
        flex-basis: clamp(320px, 54vw, 520px);
    }

    .showroom-card {
        flex-basis: clamp(292px, 46vw, 420px);
    }

    .plan-unit-card {
        flex-basis: clamp(292px, 46vw, 420px);
    }

    .faq-copy {
        position: static;
    }

    .location-map-card {
        grid-template-columns: 1fr;
    }

    .location-map-copy {
        padding: 24px;
    }

    .mosaic-main {
        grid-column: span 2;
        grid-row: span 1;
    }

    .final-panel {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 28px, var(--rp-container));
    }

    h1 {
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1;
    }

    h2 {
        font-size: clamp(26px, 7vw, 32px);
        line-height: 1.08;
    }

    .site-header {
        background: rgba(23, 33, 29, 0.94);
    }

    .hero,
    .hero-inner {
        min-height: 760px;
    }

    .hero-inner {
        gap: 22px;
        padding-top: 36px;
    }

    .hero-copy {
        padding-bottom: 10px;
    }

    .hero-card {
        padding: 16px;
    }

    .hero-card-head strong {
        font-size: 20px;
    }

    .hero-lead {
        font-size: 18px;
        line-height: 1.45;
    }

    .hero-urgency {
        margin-top: 14px;
    }

    .hero-urgency span {
        max-width: 100%;
        font-size: 12px;
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

    .hero-brief {
        grid-template-columns: 1fr;
        margin-inline: 0;
    }

    .hero-brief div,
    .hero-brief div:nth-child(2) {
        min-height: auto;
        padding: 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .signal-inner {
        grid-template-columns: 1fr;
    }

    .signal-inner div {
        min-height: 76px;
        align-items: flex-start;
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(32, 81, 90, 0.18);
    }

    .fit-card p,
    .audit-panel p:not(.eyebrow),
    .audit-cards p,
    .trust-copy p:not(.eyebrow),
    .video-slot-content p,
    .gallery-head p,
    .showroom-cta p,
    .rental-copy p:not(.eyebrow),
    .rental-cards p,
    .faq-copy p:not(.eyebrow),
    .faq-list details p,
    .advisor-copy p,
    .quiz-grid p,
    .final-panel p,
    .fine-note {
        font-size: 16px;
    }

    .fit-card,
    .fit-card-large {
        min-height: 390px;
    }

    .fit-card div {
        padding: 22px;
    }

    .fit-card h3 {
        font-size: 28px;
    }

    .audit-visual,
    .audit-panel {
        min-height: 360px;
    }

    .audit-panel {
        padding: 24px;
    }

    .audit-cards article {
        min-height: 144px;
    }

    .audit-cards span {
        margin-bottom: 18px;
    }

    .snapshot-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .unit-mix-grid {
        grid-template-columns: 1fr;
    }

    .location-reasons {
        grid-template-columns: 1fr;
    }

    .location-reasons article {
        min-height: auto;
    }

    .location-reasons span {
        margin-bottom: 12px;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 18px;
    }

    .gallery-mosaic figure,
    .gallery-mosaic figure:nth-child(1),
    .gallery-mosaic figure:nth-child(2),
    .gallery-mosaic figure:nth-child(3),
    .gallery-mosaic figure:nth-child(4),
    .mosaic-main {
        grid-column: 1 / -1;
        grid-row: auto;
        height: clamp(220px, 62vw, 300px);
    }

    .gallery-mosaic figure:nth-child(1) {
        height: clamp(260px, 70vw, 340px);
    }

    .gallery-mosaic figcaption {
        left: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
        padding: 7px 12px;
        font-size: 13px;
    }

    .plans-head {
        gap: 16px;
        margin-bottom: 26px;
    }

    .plans-head p:last-child {
        font-size: 16px;
    }

    .plans-group + .plans-group {
        margin-top: 28px;
    }

    .plans-group-floor {
        padding: 14px;
        border-radius: var(--rp-radius-md);
    }

    .plans-group-floor .plan-card,
    .plans-group-floor .plan-card-wide {
        flex-basis: min(72vw, 300px);
    }

    .plans-group-units {
        margin-top: 34px;
    }

    .plans-group-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .plans-group-head span {
        text-align: left;
    }

    .plans-grid {
        gap: 12px;
    }

    .plan-card,
    .plan-card-wide {
        flex-basis: min(82vw, 360px);
    }

    .plan-unit-card {
        flex-basis: min(82vw, 360px);
    }

    .plans-arrow {
        width: 44px;
        height: 44px;
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(23, 33, 29, 0.62);
        color: var(--rp-white);
        box-shadow: 0 14px 32px rgba(23, 33, 29, 0.22);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .plans-arrow-prev {
        left: 8px;
    }

    .plans-arrow-next {
        right: 8px;
    }

    .plans-progress {
        margin-top: 14px;
    }

    .presale-copy p:not(.eyebrow),
    .showroom-head p:last-child {
        font-size: 16px;
    }

    .presale-panel {
        padding: 18px;
        border-radius: var(--rp-radius-md);
    }

    .presale-price-grid {
        grid-template-columns: 1fr;
    }

    .presale-price-grid article {
        min-height: auto;
    }

    .presale-terms div {
        min-height: auto;
    }

    .presale-terms small {
        margin-top: 0;
    }

    .showroom-head {
        gap: 16px;
        margin-bottom: 26px;
    }

    .showroom-track {
        gap: 12px;
    }

    .showroom-card {
        flex-basis: min(82vw, 360px);
        border-radius: var(--rp-radius-md);
    }

    .showroom-arrow {
        width: 44px;
        height: 44px;
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(23, 33, 29, 0.62);
        color: var(--rp-white);
        box-shadow: 0 14px 32px rgba(23, 33, 29, 0.22);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .showroom-arrow-prev {
        left: 8px;
    }

    .showroom-arrow-next {
        right: 8px;
    }

    .showroom-progress {
        margin-top: 14px;
    }

    .showroom-cta {
        gap: 14px;
        padding: 16px;
        border-radius: var(--rp-radius-md);
    }

    .rental-shell {
        gap: 24px;
    }

    .rental-cards article {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px;
    }

    .rental-cards strong {
        font-size: 20px;
    }

    .faq-shell {
        gap: 22px;
    }

    .faq-list summary {
        min-height: 54px;
        padding: 16px;
        font-size: 17px;
    }

    .faq-list details p {
        margin: -2px 16px 16px;
    }

    .plan-card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .plan-card span {
        min-height: 34px;
        font-size: 12px;
    }

    .plan-lightbox {
        padding: 12px;
    }

    .plan-lightbox-panel {
        width: 100%;
        max-height: calc(100dvh - 24px);
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .plan-lightbox-figure {
        border-radius: var(--rp-radius-md);
    }

    .plan-lightbox-figure img {
        max-height: calc(100dvh - 132px);
    }

    .plan-lightbox-figure figcaption {
        padding: 12px;
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .plan-lightbox-close {
        top: 8px;
        right: 8px;
        z-index: 2;
        background: rgba(23, 33, 29, 0.68);
    }

    .plan-lightbox-nav {
        position: absolute;
        top: 50%;
        z-index: 2;
        background: rgba(23, 33, 29, 0.56);
    }

    .plan-lightbox-prev {
        left: 8px;
    }

    .plan-lightbox-next {
        right: 8px;
    }

    .mosaic-main {
        grid-column: span 1;
    }

    .location-map-card {
        margin-top: 14px;
    }

    .location-map-copy {
        padding: 20px;
    }

    .location-map-frame,
    .location-map-frame iframe {
        min-height: 300px;
    }

    .trust-section {
        padding-block: 58px 76px;
    }

    .trust-grid {
        gap: 24px;
    }

    .trust-copy {
        max-width: none;
    }

    .trust-copy .btn {
        width: 100%;
    }

    .trust-section .video-slot {
        min-height: 260px;
    }

    .lead-card,
    .quiz-card,
    .hero-card,
    .lead-modal-panel {
        padding: 20px;
    }

    .leader-trust-card {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 14px;
        padding: 14px;
    }

    .leader-photo {
        width: 76px;
        height: 88px;
    }

    .leader-kicker {
        margin-bottom: 5px;
        font-size: 11px;
    }

    .leader-copy strong {
        font-size: 18px;
    }

    .back-to-top {
        right: max(14px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
    }
}

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity var(--rp-dur-slow) var(--rp-ease),
        transform var(--rp-dur-slow) var(--rp-ease);
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }

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