:root {
    --ink: #1b1e1c;
    --ink-soft: #353a36;
    --paper: #f5f2ec;
    --paper-deep: #ebe6dd;
    --white: #fff;
    --copper: #956c49;
    --copper-light: #c8aa8b;
    --sage: #68776a;
    --line: rgba(27, 30, 28, 0.14);
    --available: #567761;
    --reserved: #ba8845;
    --sold: #a2544b;
    --shadow: 0 24px 70px rgba(20, 25, 21, 0.14);
    --radius: 4px;
    --content: min(1380px, calc(100vw - 80px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

[hidden] {
    display: none !important;
}

.screen-reader-text,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    z-index: 1000;
    left: 16px;
    top: 16px;
    padding: 12px 18px;
    background: var(--white);
    color: var(--ink);
}

.site-header {
    align-items: center;
    color: var(--white);
    display: flex;
    height: 92px;
    justify-content: space-between;
    left: 0;
    padding: 0 max(40px, calc((100vw - 1380px) / 2));
    position: fixed;
    right: 0;
    top: 0;
    transition: background-color 220ms ease, box-shadow 220ms ease, height 220ms ease;
    z-index: 100;
}

.site-header::after {
    background: rgba(255, 255, 255, 0.28);
    bottom: 0;
    content: "";
    height: 1px;
    left: max(40px, calc((100vw - 1380px) / 2));
    position: absolute;
    right: max(40px, calc((100vw - 1380px) / 2));
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(24, 28, 25, 0.97);
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.14);
    height: 76px;
}

.brand {
    align-items: center;
    display: inline-flex;
    gap: 13px;
}

.brand-mark {
    align-items: center;
    border: 1px solid currentColor;
    display: inline-flex;
    font-family: Georgia, serif;
    font-size: 25px;
    height: 44px;
    justify-content: center;
    line-height: 1;
    transform: rotate(45deg);
    width: 44px;
}

.brand-mark i {
    font-style: normal;
    transform: rotate(-45deg);
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 18px;
    letter-spacing: 0.24em;
}

.brand-copy small {
    font-size: 9px;
    letter-spacing: 0.16em;
    margin-top: 5px;
    text-transform: uppercase;
}

.site-navigation {
    align-items: center;
    display: flex;
    gap: 34px;
}

.site-navigation a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    text-transform: uppercase;
}

.site-navigation > a:not(.nav-cta)::after {
    background: var(--white);
    bottom: -7px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
    width: 100%;
}

.site-navigation > a:hover::after,
.site-navigation > a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
}

.menu-toggle {
    background: transparent;
    border: 0;
    display: none;
    height: 44px;
    padding: 10px;
    width: 44px;
}

.menu-toggle span:not(.screen-reader-text) {
    background: currentColor;
    display: block;
    height: 1px;
    margin: 6px 0;
    transition: transform 180ms ease, opacity 180ms ease;
    width: 24px;
}

.hero {
    color: var(--white);
    min-height: 860px;
    overflow: hidden;
    position: relative;
}

.hero-image,
.hero-shade {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.hero-image {
    object-fit: cover;
    object-position: center 42%;
    transform: scale(1.01);
}

.hero-shade {
    background: linear-gradient(90deg, rgba(15, 19, 17, 0.78) 0%, rgba(15, 19, 17, 0.28) 55%, rgba(15, 19, 17, 0.06) 100%), linear-gradient(0deg, rgba(15, 19, 17, 0.36), transparent 55%);
}

.hero-content {
    margin: 0 auto;
    padding-top: 220px;
    position: relative;
    width: var(--content);
    z-index: 2;
}

.eyebrow {
    align-items: center;
    color: var(--copper);
    display: flex;
    font-size: 11px;
    font-weight: 700;
    gap: 12px;
    letter-spacing: 0.2em;
    margin: 0 0 18px;
    text-transform: uppercase;
}

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

.eyebrow-light {
    color: rgba(255, 255, 255, 0.82);
}

.hero h1,
.intro-grid h2,
.section-heading h2,
.selector-heading h2,
.about-content h2,
.contact-copy h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.98;
    margin: 0;
}

.hero h1 {
    font-size: clamp(64px, 7vw, 112px);
    max-width: 1000px;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.7;
    margin: 30px 0 38px;
    max-width: 570px;
}

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

.button {
    align-items: center;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.12em;
    min-height: 52px;
    padding: 14px 25px;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--copper);
    color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: #7f5838;
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
    background: var(--white);
    color: var(--ink);
}

.button-dark {
    background: var(--ink);
    color: var(--white);
}

.hero-facts {
    align-items: center;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    position: absolute;
    right: max(40px, calc((100vw - 1380px) / 2));
    z-index: 3;
}

.hero-facts > div {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(27, 30, 28, 0.72);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 118px;
    padding: 18px 40px;
}

.hero-facts > div:first-child {
    background: var(--copper);
}

.hero-facts strong {
    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}

.hero-facts span {
    font-size: 10px;
    letter-spacing: 0.14em;
    margin-top: 10px;
    text-transform: uppercase;
}

.intro-section,
.gallery-section,
.selector-section,
.inventory-section {
    margin: 0 auto;
    padding: 120px 0;
    width: var(--content);
}

.section-kicker {
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    margin-bottom: 52px;
    padding-bottom: 18px;
}

.section-kicker span {
    color: var(--copper);
    font-family: Georgia, serif;
    font-size: 22px;
}

.intro-grid {
    display: grid;
    gap: 8vw;
    grid-template-columns: 1.15fr 0.85fr;
}

.intro-grid h2 {
    font-size: clamp(48px, 5.5vw, 82px);
    max-width: 760px;
}

.intro-grid > div {
    color: var(--ink-soft);
    font-size: 18px;
    padding-top: 12px;
}

.intro-grid p {
    margin: 0 0 24px;
}

.gallery-section {
    padding-top: 20px;
}

.section-heading,
.selector-heading {
    align-items: end;
    display: grid;
    gap: 60px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    margin-bottom: 48px;
}

.section-heading h2,
.selector-heading h2,
.about-content h2,
.contact-copy h2 {
    font-size: clamp(48px, 5vw, 76px);
}

.section-heading > p,
.selector-heading > p {
    color: #59605b;
    margin: 0;
}

.project-gallery {
    display: grid;
    gap: 12px;
    grid-template-columns: 1.35fr 0.65fr 0.65fr;
    grid-template-rows: 360px 280px;
}

.gallery-item {
    background: #d9d5cd;
    border: 0;
    cursor: zoom-in;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
    width: 100%;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.035);
}

.gallery-item > span {
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    bottom: 18px;
    display: flex;
    font-size: 24px;
    height: 42px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    right: 18px;
    transition: opacity 180ms ease;
    width: 42px;
}

.gallery-item:hover > span,
.gallery-item:focus-visible > span {
    opacity: 1;
}

.gallery-item-1 {
    grid-row: 1 / span 2;
}

.gallery-item-4 {
    grid-column: 2 / span 2;
}

.gallery-item-5 {
    display: none;
}

.selector-section {
    padding-bottom: 40px;
}

.selector-workspace {
    background: var(--white);
    box-shadow: var(--shadow);
    min-height: 760px;
}

.building-view {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    min-height: 760px;
}

.building-canvas {
    background: #c9c7c1;
    min-height: 760px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 901px) {
    .selector-workspace,
    .building-view,
    .building-canvas {
        min-height: clamp(650px, calc(100svh - 100px), 760px);
    }
}

.building-canvas > img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.building-overlay {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.building-slice {
    cursor: pointer;
    outline: none;
}

.building-slice polygon,
.building-slice polyline {
    fill: rgba(149, 108, 73, 0);
    stroke: rgba(255, 255, 255, 0);
    stroke-width: 3;
    transition: fill 180ms ease, stroke 180ms ease;
}

.building-slice:hover polygon,
.building-slice:hover polyline,
.building-slice:focus-visible polygon,
.building-slice:focus-visible polyline,
.building-slice.is-active polygon,
.building-slice.is-active polyline {
    fill: rgba(149, 108, 73, 0.52);
    stroke: rgba(255, 255, 255, 0.92);
}

.building-slice.is-garage:hover polygon,
.building-slice.is-garage:focus-visible polygon {
    fill: rgba(61, 73, 65, 0.62);
}

.selector-hover-card {
    background: rgba(24, 28, 25, 0.91);
    bottom: 26px;
    color: var(--white);
    display: grid;
    left: 26px;
    max-width: 310px;
    padding: 20px 23px;
    pointer-events: none;
    position: absolute;
    z-index: 3;
}

.selector-hover-card span {
    color: var(--copper-light);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.selector-hover-card strong {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    margin: 3px 0 4px;
}

.selector-hover-card small {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.45;
}

.building-sidebar {
    display: flex;
    flex-direction: column;
    padding: 62px 40px 42px;
}

.building-sidebar h3 {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 20px;
}

.building-sidebar > p:not(.eyebrow) {
    color: #676d68;
    margin: 0 0 34px;
}

.status-legend {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: grid;
    gap: 12px;
    padding: 22px 0;
}

.status-legend span {
    align-items: center;
    display: flex;
    font-size: 12px;
    gap: 10px;
    letter-spacing: 0.04em;
}

.status-dot {
    border-radius: 50%;
    display: inline-block;
    height: 9px;
    width: 9px;
}

.status-dot.is-available,
.inventory-status.status-available::before {
    background: var(--available);
}

.status-dot.is-reserved,
.inventory-status.status-reserved::before {
    background: var(--reserved);
}

.status-dot.is-sold,
.inventory-status.status-sold::before {
    background: var(--sold);
}

.availability-summary {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    margin: 18px 0 30px;
    padding-top: 28px;
}

.availability-summary > div {
    display: grid;
}

.availability-summary strong {
    font-family: Georgia, serif;
    font-size: 31px;
    font-weight: 400;
    line-height: 1;
}

.availability-summary span {
    color: #757b76;
    font-size: 9px;
    letter-spacing: 0.08em;
    margin-top: 6px;
    text-transform: uppercase;
}

.text-button {
    align-items: center;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    cursor: pointer;
    display: flex;
    font-size: 11px;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: 0.1em;
    margin-top: auto;
    padding: 22px 0 0;
    text-align: left;
    text-transform: uppercase;
}

.text-button span {
    font-size: 22px;
    transition: transform 180ms ease;
}

.text-button:hover span {
    transform: translateX(5px);
}

.floor-view {
    min-height: 760px;
}

.floor-toolbar {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: 86px;
    padding: 14px 30px;
}

.back-button {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    justify-self: start;
    letter-spacing: 0.08em;
    padding: 12px 0;
    text-transform: uppercase;
}

.back-button span {
    display: inline-block;
    font-size: 18px;
    margin-right: 7px;
    transition: transform 180ms ease;
}

.back-button:hover span {
    transform: translateX(-4px);
}

.floor-toolbar > div {
    display: grid;
    text-align: center;
}

.floor-toolbar-label,
.floor-select-label > span {
    color: #7a807b;
    font-size: 9px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.floor-toolbar > div strong {
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 400;
}

.floor-select-label {
    display: grid;
    justify-self: end;
}

.floor-select-label select {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ink);
    border-radius: 0;
    font-size: 13px;
    min-width: 132px;
    padding: 4px 20px 4px 0;
}

.floor-content {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.58fr);
    min-height: 674px;
}

.floor-plan-column {
    background: #efede7;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 34px;
}

.floor-plan-stage {
    align-items: center;
    aspect-ratio: 1800 / 1219;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    max-height: calc(100vh - 300px);
    max-height: min(760px, calc(100svh - 300px));
    min-height: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.floor-plan-image,
.floor-plan-svg {
    height: 100%;
    inset: 0;
    object-fit: contain;
    position: absolute;
    width: 100%;
}

.floor-plan-svg {
    z-index: 2;
}

.floor-plan-svg.has-image .floor-unit path {
    fill-opacity: 0;
    stroke-opacity: 0;
}

.floor-plan-svg.has-image.is-intro .floor-unit path,
.floor-plan-svg.has-image.is-availability-visible .floor-unit path {
    fill-opacity: 0.32;
    stroke-opacity: 0.92;
}

.floor-plan-svg.has-image .floor-unit.is-selected path {
    fill-opacity: 0.36;
    filter: drop-shadow(0 5px 7px rgba(20, 24, 21, 0.16));
    stroke-opacity: 1;
    stroke-width: 8;
}

.floor-plan-svg.has-image .floor-unit:hover path,
.floor-plan-svg.has-image .floor-unit:focus-visible path {
    fill-opacity: 0.68;
    stroke-opacity: 1;
}

.floor-unit {
    cursor: pointer;
    outline: none;
}

.floor-unit path {
    fill: rgba(86, 119, 97, 0.7);
    stroke: rgba(24, 32, 27, 0.82);
    stroke-linejoin: round;
    stroke-width: 6;
    transition: fill 160ms ease, fill-opacity 320ms ease, filter 160ms ease, stroke-opacity 160ms ease, stroke-width 160ms ease;
}

.floor-unit.status-reserved path {
    fill: rgba(186, 136, 69, 0.74);
}

.floor-unit.status-sold path {
    fill: rgba(162, 84, 75, 0.72);
}

.floor-unit:hover path,
.floor-unit:focus-visible path {
    fill-opacity: 0.94;
    filter: drop-shadow(0 8px 10px rgba(20, 24, 21, 0.2));
}

.floor-plan-note {
    background: rgba(255, 255, 255, 0.9);
    bottom: 12px;
    color: #555b56;
    font-size: 11px;
    left: 12px;
    letter-spacing: 0.04em;
    padding: 10px 13px;
    position: absolute;
    z-index: 3;
}

.floor-plan-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
    padding-top: 14px;
}

.floor-status-controls {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.floor-legend {
    border: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
}

.availability-toggle {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(29, 32, 30, 0.24);
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    font-size: 9px;
    font-weight: 700;
    gap: 12px;
    letter-spacing: 0.08em;
    min-height: 36px;
    padding: 8px 13px;
    text-transform: uppercase;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.availability-toggle > i {
    background: var(--available);
    border-radius: 50%;
    box-shadow: 11px 0 0 var(--reserved), 22px 0 0 var(--sold);
    display: block;
    height: 7px;
    margin-right: 22px;
    width: 7px;
}

.availability-toggle:hover,
.availability-toggle:focus-visible,
.availability-toggle[aria-pressed="true"] {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.availability-toggle:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.floor-unit-preview {
    align-items: baseline;
    border-left: 1px solid rgba(29, 32, 30, 0.16);
    column-gap: 9px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
    min-width: 250px;
    padding: 3px 0 3px 22px;
    row-gap: 2px;
    text-align: right;
}

.floor-unit-preview > span {
    color: #777d78;
    font-size: 9px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.floor-unit-preview > strong {
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.2;
}

.floor-unit-preview > small {
    color: #676d68;
    font-size: 10px;
    letter-spacing: 0.025em;
}

.floor-unit-preview[data-state="available"] > small {
    color: var(--available);
}

.floor-unit-preview[data-state="reserved"] > small {
    color: var(--reserved);
}

.floor-unit-preview[data-state="sold"] > small {
    color: var(--sold);
}

.floor-unit-preview.is-intro > strong {
    color: var(--copper);
}

.garage-panel {
    align-items: center;
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: center;
    padding: 50px;
    position: absolute;
    text-align: center;
    z-index: 4;
}

.garage-panel-mark {
    align-items: center;
    border: 1px solid var(--copper);
    color: var(--copper);
    display: flex;
    font-family: Georgia, serif;
    font-size: 42px;
    height: 90px;
    justify-content: center;
    margin-bottom: 20px;
    width: 90px;
}

.garage-panel h3 {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    margin: 0 0 10px;
}

.garage-panel p {
    color: #666d67;
    max-width: 520px;
}

.garage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.garage-chip {
    background: var(--white);
    border: 1px solid var(--line);
    display: grid;
    min-width: 120px;
    padding: 12px 16px;
}

.garage-chip small {
    color: #777d78;
}

.unit-details {
    min-width: 0;
    padding: 36px 40px;
}

.unit-details-empty {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.empty-number {
    color: rgba(149, 108, 73, 0.18);
    font-family: Georgia, serif;
    font-size: 110px;
    line-height: 0.8;
}

.unit-details-empty h3 {
    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    margin: 25px 0 12px;
}

.unit-details-empty p {
    color: #6a706b;
    max-width: 410px;
}

.unit-details-head {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
}

.unit-details-head p {
    color: var(--copper);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin: 0 0 2px;
    text-transform: uppercase;
}

.unit-details-head h3 {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

.status-pill {
    border: 1px solid currentColor;
    color: var(--available);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.11em;
    padding: 7px 10px;
    text-transform: uppercase;
}

.status-pill.status-reserved {
    color: var(--reserved);
}

.status-pill.status-sold {
    color: var(--sold);
}

.unit-metrics {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 24px 0 18px;
    padding: 16px 0;
}

.unit-metrics > div {
    display: grid;
}

.unit-metrics > div + div {
    border-left: 1px solid var(--line);
    padding-left: 22px;
}

.unit-metrics span {
    color: #777d78;
    font-size: 9px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.unit-metrics strong {
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 400;
}

.plan-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.plan-tabs button {
    background: transparent;
    border: 0;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    padding: 8px 0;
    text-transform: uppercase;
}

.plan-tabs button + button {
    margin-left: 20px;
}

.plan-tabs button.is-active {
    border-color: var(--copper);
    color: var(--copper);
}

.unit-plan-frame {
    align-items: center;
    aspect-ratio: 1;
    background: #efede7;
    border: 0;
    cursor: zoom-in;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    touch-action: pan-y;
    user-select: none;
    width: 100%;
}

.unit-plan-frame.is-swiping {
    cursor: grabbing !important;
}

.unit-plan-frame img {
    -webkit-user-drag: none;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    width: 100%;
}

.unit-plan-placeholder {
    align-items: center;
    color: #777d78;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}

.unit-plan-placeholder i {
    border: 1px solid #aeb3ae;
    display: block;
    height: 42px;
    margin-bottom: 9px;
    position: relative;
    width: 54px;
}

.unit-plan-placeholder i::after {
    border-bottom: 1px solid #aeb3ae;
    border-left: 1px solid #aeb3ae;
    content: "";
    height: 18px;
    left: 15px;
    position: absolute;
    top: 9px;
    transform: rotate(-45deg);
    width: 24px;
}

.unit-plan-placeholder strong {
    color: var(--ink-soft);
    font-size: 12px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.unit-plan-placeholder small {
    font-size: 10px;
    margin-top: 3px;
}

.room-breakdown {
    margin-top: 20px;
}

.room-breakdown-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.room-breakdown-head h4 {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
}

.room-breakdown-head span {
    color: var(--copper);
    font-family: Georgia, serif;
}

.room-row {
    align-items: center;
    border-top: 1px solid var(--line);
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    padding: 7px 0;
}

.room-row strong {
    font-weight: 600;
}

.unit-inquiry {
    margin-top: 20px;
    width: 100%;
}

.inventory-section {
    padding-top: 100px;
}

.inventory-heading {
    border-bottom: 1px solid var(--line);
    padding-bottom: 40px;
}

.inventory-filters {
    align-items: end;
    display: grid;
    gap: 14px;
    grid-template-columns: 1.1fr 1fr 1.1fr 0.8fr 0.8fr auto;
    margin: 36px 0;
}

.inventory-filters label {
    display: grid;
    gap: 6px;
}

.inventory-filters label > span {
    color: #6d736e;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.inventory-filters select,
.inventory-filters input {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 0;
    min-height: 48px;
    padding: 10px 12px;
    width: 100%;
}

.filter-reset {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ink);
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    margin-bottom: 12px;
    padding: 2px 0;
    text-transform: uppercase;
}

.inventory-results-bar {
    align-items: center;
    background: var(--ink);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    padding: 17px 22px;
}

.inventory-results-bar strong {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 400;
}

.inventory-results-bar > span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    letter-spacing: 0.05em;
}

.inventory-table-wrap {
    overflow-x: auto;
}

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

.inventory-table th,
.inventory-table td {
    border-bottom: 1px solid var(--line);
    padding: 17px 18px;
    text-align: left;
}

.inventory-table th {
    color: #747a75;
    font-size: 9px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.inventory-table td {
    font-size: 14px;
}

.inventory-table tbody tr {
    cursor: pointer;
    transition: background-color 160ms ease;
}

.inventory-table tbody tr:hover,
.inventory-table tbody tr:focus-within {
    background: rgba(149, 108, 73, 0.07);
}

.inventory-number {
    font-family: Georgia, serif;
    font-size: 21px;
    font-weight: 400;
}

.inventory-status {
    align-items: center;
    display: inline-flex;
    font-size: 11px;
    gap: 8px;
}

.inventory-status::before {
    border-radius: 50%;
    content: "";
    height: 8px;
    width: 8px;
}

.inventory-action {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 20px;
}

.inventory-empty {
    border: 1px solid var(--line);
    padding: 38px;
    text-align: center;
}

.inventory-empty button {
    background: transparent;
    border: 0;
    color: var(--copper);
    cursor: pointer;
    display: block;
    margin: 8px auto 0;
    text-decoration: underline;
}

.about-section {
    background: var(--white);
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    margin-top: 60px;
}

.about-image-wrap {
    min-height: 850px;
    overflow: hidden;
    position: relative;
}

.about-image-wrap img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.about-image-wrap > span {
    bottom: -32px;
    color: rgba(255, 255, 255, 0.72);
    font-family: Georgia, serif;
    font-size: clamp(90px, 11vw, 180px);
    left: 25px;
    letter-spacing: -0.07em;
    position: absolute;
}

.about-content {
    align-self: center;
    max-width: 720px;
    padding: 100px clamp(45px, 7vw, 120px);
}

.about-content > p:not(.eyebrow) {
    color: #5d645f;
    font-size: 17px;
    margin: 26px 0 0;
}

.about-values {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0;
    margin-top: 50px;
}

.about-values > div {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 14px;
    grid-template-columns: 42px 150px 1fr;
    padding: 18px 0;
}

.about-values span {
    color: var(--copper);
    font-family: Georgia, serif;
}

.about-values strong {
    font-size: 12px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.about-values small {
    color: #767c77;
}

.contact-section {
    background: var(--ink);
    color: var(--white);
    display: grid;
    gap: 8vw;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    padding: 120px max(40px, calc((100vw - 1380px) / 2));
}

.contact-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.63);
    font-size: 17px;
    margin: 25px 0 40px;
    max-width: 490px;
}

.contact-lines {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-lines > a,
.contact-lines > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    padding: 15px 0;
}

.contact-lines span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-lines strong {
    font-size: 15px;
    font-weight: 500;
}

.contact-form {
    align-content: start;
    display: grid;
    gap: 24px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form label > span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 9px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 0;
    color: var(--white);
    outline: none;
    padding: 10px 0;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--copper-light);
}

.contact-form .field-full {
    grid-column: 1 / -1;
}

.contact-form .button {
    justify-self: start;
    min-width: 210px;
}

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

.form-message {
    font-size: 13px;
    margin: -8px 0 0;
}

.form-message.is-success {
    color: #a8d2b3;
}

.form-message.is-error {
    color: #efaaa2;
}

.site-footer {
    align-items: center;
    background: #121513;
    color: var(--white);
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr auto 1fr;
    padding: 40px max(40px, calc((100vw - 1380px) / 2));
}

.footer-brand .brand-mark {
    height: 36px;
    width: 36px;
}

.site-footer nav {
    display: flex;
    gap: 26px;
}

.site-footer nav a,
.site-footer > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer > p {
    justify-self: end;
    margin: 0;
}

.lightbox {
    align-items: center;
    background: rgba(12, 15, 13, 0.94);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 70px;
    position: fixed;
    z-index: 300;
}

.lightbox > img {
    cursor: grab;
    max-height: calc(100vh - 70px);
    max-width: min(1100px, calc(100vw - 150px));
    object-fit: contain;
    touch-action: pan-y;
    user-select: none;
}

.lightbox > img.is-swiping {
    cursor: grabbing;
}

.lightbox > button {
    background: transparent;
    border: 0;
    color: var(--white);
    cursor: pointer;
    position: absolute;
}

.lightbox-close {
    font-size: 42px;
    right: 28px;
    top: 20px;
}

.lightbox-nav {
    align-items: center;
    background: rgba(12, 15, 13, 0.52) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 50%;
    display: flex;
    font-size: 42px;
    height: 58px;
    justify-content: center;
    line-height: 1;
    opacity: 0.82;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 160ms ease, background-color 160ms ease;
    width: 58px;
    z-index: 2;
}

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

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
    background: rgba(12, 15, 13, 0.82) !important;
    opacity: 1;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

@media (max-width: 1180px) {
    :root {
        --content: min(100% - 48px, 1080px);
    }

    .site-header {
        padding-left: 24px;
        padding-right: 24px;
    }

    .site-navigation {
        gap: 20px;
    }

    .building-view {
        grid-template-columns: minmax(0, 1fr) 310px;
    }

    .building-sidebar {
        padding: 45px 30px 32px;
    }

    .floor-content {
        grid-template-columns: minmax(0, 1fr) 350px;
    }

    .inventory-filters {
        grid-template-columns: repeat(3, 1fr);
    }

    .filter-reset {
        justify-self: start;
    }
}

@media (max-width: 900px) {
    .site-header {
        height: 76px;
    }

    .menu-toggle {
        color: var(--white);
        display: block;
        position: relative;
        z-index: 2;
    }

    .site-header.is-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-navigation {
        align-items: flex-start;
        background: var(--ink);
        display: none;
        flex-direction: column;
        gap: 26px;
        left: 0;
        padding: 110px 28px 40px;
        position: fixed;
        right: 0;
        top: 0;
    }

    .site-header.is-open .site-navigation {
        display: flex;
    }

    .site-navigation a {
        font-size: 15px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding-top: 180px;
    }

    .hero h1 {
        font-size: clamp(54px, 11vw, 82px);
    }

    .hero-facts {
        left: 24px;
        right: 24px;
    }

    .hero-facts > div {
        min-height: 96px;
        padding: 14px;
    }

    .intro-section,
    .gallery-section,
    .selector-section,
    .inventory-section {
        padding-bottom: 80px;
        padding-top: 80px;
    }

    .intro-grid,
    .section-heading,
    .selector-heading,
    .about-section,
    .contact-section {
        gap: 36px;
        grid-template-columns: 1fr;
    }

    .intro-grid > div {
        max-width: 680px;
    }

    .project-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 420px 260px;
    }

    .gallery-item-1 {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery-item-4 {
        display: none;
    }

    .building-view {
        grid-template-columns: 1fr;
    }

    .building-canvas {
        min-height: min(70vw, 650px);
    }

    .building-sidebar {
        min-height: 440px;
    }

    .floor-content {
        grid-template-columns: 1fr;
    }

    .floor-plan-column {
        border-bottom: 1px solid var(--line);
        border-right: 0;
        min-height: 630px;
    }

    .unit-details {
        min-height: 560px;
    }

    .about-image-wrap {
        min-height: 620px;
    }

    .about-content {
        max-width: none;
    }

    .contact-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .site-footer > p {
        justify-self: start;
    }
}

@media (max-width: 620px) {
    :root {
        --content: calc(100% - 32px);
    }

    .site-header {
        padding: 0 16px;
    }

    .brand-copy small {
        display: none;
    }

    .brand-mark {
        height: 37px;
        width: 37px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-image {
        object-position: 63% center;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(15, 19, 17, 0.82), rgba(15, 19, 17, 0.1) 80%);
    }

    .hero-content {
        padding-top: 160px;
    }

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

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-facts {
        gap: 1px;
        left: 0;
        right: 0;
    }

    .hero-facts > div {
        min-width: 0;
        padding: 10px 5px;
    }

    .hero-facts strong {
        font-size: 28px;
    }

    .hero-facts span {
        font-size: 8px;
    }

    .intro-grid h2,
    .section-heading h2,
    .selector-heading h2,
    .about-content h2,
    .contact-copy h2 {
        font-size: 44px;
    }

    .intro-section,
    .gallery-section,
    .selector-section,
    .inventory-section {
        padding-bottom: 64px;
        padding-top: 64px;
    }

    .project-gallery {
        grid-template-rows: 350px 190px;
    }

    .selector-workspace {
        margin-left: -16px;
        margin-right: -16px;
    }

    .building-canvas {
        min-height: 72vw;
    }

    .selector-hover-card {
        bottom: 12px;
        left: 12px;
        max-width: calc(100% - 24px);
        padding: 13px 15px;
    }

    .selector-hover-card strong {
        font-size: 19px;
    }

    .selector-hover-card small {
        font-size: 10px;
    }

    .building-sidebar {
        min-height: 430px;
    }

    .floor-toolbar {
        gap: 10px;
        grid-template-columns: 1fr 1fr;
        padding: 13px 16px;
    }

    .floor-toolbar > div {
        display: none;
    }

    .floor-plan-column {
        min-height: 440px;
        padding: 14px;
    }

    .floor-plan-stage {
        aspect-ratio: auto;
        flex: 1;
        min-height: 350px;
    }

    .floor-plan-note {
        font-size: 9px;
    }

    .floor-plan-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .floor-status-controls {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .floor-unit-preview {
        border-left: 0;
        border-top: 1px solid rgba(29, 32, 30, 0.16);
        justify-content: flex-start;
        margin-left: 0;
        min-width: 0;
        padding: 12px 0 0;
        text-align: left;
        width: 100%;
    }

    .unit-details {
        min-height: 520px;
        padding: 30px 22px;
    }

    .inventory-filters {
        grid-template-columns: repeat(2, 1fr);
    }

    .inventory-results-bar > span {
        display: none;
    }

    .inventory-table th:nth-child(4),
    .inventory-table td:nth-child(4) {
        display: none;
    }

    .inventory-table th,
    .inventory-table td {
        padding: 13px 10px;
        white-space: nowrap;
    }

    .about-image-wrap {
        min-height: 470px;
    }

    .about-content {
        padding: 64px 24px;
    }

    .about-values > div {
        align-items: start;
        grid-template-columns: 35px 1fr;
    }

    .about-values small {
        grid-column: 2;
    }

    .contact-section {
        padding: 80px 24px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form label,
    .contact-form .field-full {
        grid-column: 1;
    }

    .site-footer {
        padding: 36px 24px;
    }

    .site-footer nav {
        flex-direction: column;
        gap: 12px;
    }

    .lightbox {
        padding: 55px 14px;
    }

    .lightbox > img {
        max-width: 100%;
    }

    .lightbox-nav {
        font-size: 34px;
        height: 44px;
        width: 44px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

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