:root {
  --surface: #f5f2ed;
  --surface-low: #e0ddd7;
  --surface-high: #d8d5cf;
  --ink: #1a1a1a;
  --ink-soft: rgba(26, 26, 26, 0.7);
  --ink-muted: rgba(26, 26, 26, 0.55);
  --ink-faint: rgba(26, 26, 26, 0.4);
  --accent: #d44e2e;
  --border: rgba(26, 26, 26, 0.1);
  --border-strong: rgba(26, 26, 26, 0.2);
  --shadow-soft: 0 24px 50px rgba(26, 26, 26, 0.08);
  --shadow-card: 0 18px 40px rgba(26, 26, 26, 0.08);
  --shell-wide: 1380px;
  --shell-narrow: 1040px;
  --rail-width: 80px;
  --headline: "Cormorant Garamond", serif;
  --body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--body);
  min-height: 100vh;
}

::selection {
  background: var(--accent);
  color: #fff;
}

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
}

.site-shell {
  display: flex;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
}

.site-main {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.site-rail {
  position: sticky;
  top: 0;
  display: flex;
  width: var(--rail-width);
  height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
  border-right: 1px solid var(--border);
  background: rgba(245, 242, 237, 0.4);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.rail-label {
  writing-mode: vertical-rl;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-soft);
  transform: rotate(180deg);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.site-rail:hover .rail-label {
  opacity: 1;
}

.rail-label-muted {
  color: var(--ink-faint);
}

.shell {
  width: min(100% - 48px, var(--shell-narrow));
  margin: 0 auto;
}

.shell-wide {
  width: min(100% - 48px, var(--shell-wide));
  margin: 0 auto;
}

.shell-wide--gallery {
  width: min(100% - 32px, 1440px);
}

.table-card {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
}

.shell-narrow {
  width: min(100% - 48px, 980px);
  margin: 0 auto;
}

.section {
  padding: 96px 0 112px;
}

.section--flush {
  padding-top: 0;
}

.section--muted {
  background: var(--surface-low);
}

.section--dark {
  background: var(--ink);
  color: #fff;
}

.section--dark .section-title,
.section--dark .section-copy {
  color: #fff;
}

.section--dark .eyebrow {
  color: #fecaca;
  opacity: 1;
}

.grid-2, .grid-3 {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.faq-article-list {
  display: grid;
  gap: 48px;
  margin: 64px 0;
}

.faq-group {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.faq-group:last-child {
  border-bottom: 0;
}

.faq-question {
  margin: 0 0 20px;
  font-family: var(--headline);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.faq-answer {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.surface-panel--centered {
  text-align: center;
}

.section--gallery {
  overflow: hidden;
}

.section--article {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 120px 0;
}

.article-content {
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.8;
}

.article-content h2.section-title {
  margin-bottom: 48px;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.article-content h3 {
  margin: 56px 0 24px;
  font-family: var(--headline);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
}

.article-content p {
  margin-bottom: 32px;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content strong {
  color: var(--ink);
  font-weight: 600;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 242, 237, 0.82);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}

.brand {
  font-family: var(--headline);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand--image {
  display: inline-flex;
  align-items: center;
}

.brand--image img {
  width: auto;
  height: 42px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--headline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.topbar__link {
  position: relative;
  padding-bottom: 4px;
  font-family: var(--headline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.3s ease;
}

.topbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.topbar__link:hover {
  color: var(--ink);
}

.topbar__link:hover::after {
  width: 100%;
}

.topbar__action-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar__link.is-active {
  color: var(--ink);
}

.topbar__link.is-active::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  padding: 16px 32px;
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

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

.button--ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.button--ghost:hover {
  background: var(--ink);
  color: var(--surface);
}

.button--solid {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.button--solid:hover {
  background: transparent;
  color: var(--ink);
}

.button--text {
  padding-inline: 0;
  color: #7c2d12;
}

.button--text:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 8px;
}

.button--block {
  width: 100%;
}

.button--light {
  background: var(--surface);
  color: var(--ink);
}

.button--light:hover {
  background: var(--accent);
  color: #fff;
}

.button--outline-light {
  border: 1px solid rgba(245, 242, 237, 0.3);
  color: var(--surface);
}

.button--outline-light:hover {
  background: rgba(245, 242, 237, 0.1);
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  font-family: var(--headline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.link-button i {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.link-button:hover i {
  transform: translateX(4px);
}

.link-button--accent {
  color: var(--accent);
  border-bottom-color: rgba(212, 78, 46, 0.2);
}

.eyebrow,
.kicker,
.spec-list dt,
.detail-list__item p,
.location-map__caption,
.inventory-table th,
.footer__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.kicker {
  display: block;
  margin-bottom: 22px;
  color: #7a2717;
}

.section--muted .eyebrow,
.section--muted .kicker {
  color: #5c1f13;
}

.section--article .eyebrow {
  color: #5c2e24;
}

.inventory-note__badges {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #4a372f;
}

.kicker {
  margin-bottom: 10px;
  font-size: 10px;
}

.section-head {
  margin-bottom: 64px;
}

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.section-head--centered {
  text-align: center;
}

.section-head--simple {
  margin-bottom: 56px;
}

.section-head__copy {
  max-width: 800px;
}

.section-title,
.feature-card__title,
.floor-panel__title,
.cta-banner__title,
.detail-list__item h3,
.detail-list__item h4,
.location-map__title,
.inventory-table__title,
.masterplan-badge strong,
.faq-header span {
  margin: 0;
  font-family: var(--headline);
  font-style: italic;
}

.section-title {
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-title--tight {
  line-height: 1;
}

.section-head--centered .section-title {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title--faq {
  margin-bottom: 0;
  max-width: 800px;
}

.section-copy,
.feature-card__copy,
.inventory-note,
.faq-content__inner,
.masterplan-copy .section-copy {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.section-copy--spacious {
  margin-bottom: 40px;
}

.section-copy--centered {
  max-width: 800px;
  margin: 18px auto 0;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 98px);
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 96px 0 80px;
}

.hero__copy {
  max-width: 850px;
}

.hero__title {
  margin: 0 0 28px;
  font-family: var(--headline);
  font-size: clamp(3.2rem, 8vw, 8.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.05em;
  /* Removed white-space: nowrap to allow wrapping on smaller screens */
}

.hero__lede {
  max-width: clamp(320px, 60vw, 840px);
  margin: 0 0 40px;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  color: rgba(26, 26, 26, 0.8);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.hero__floating-card {
  position: absolute;
  top: 40px;
  right: clamp(40px, 7vw, 96px);
  z-index: 1;
  width: min(440px, 35vw);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.06);
  background: var(--surface-low);
}

.hero__floating-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(212, 78, 46, 0.08), transparent);
}

.hero__floating-card .media {
  transition: transform 3s ease;
}

.hero__floating-card:hover .media {
  transform: scale(1.08);
}

.hero__index {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: var(--headline);
  font-size: clamp(7rem, 20vw, 15rem);
  font-weight: 700;
  line-height: 0.72;
  color: #b0aaa2;
  user-select: none;
  pointer-events: none;
}

.hero__index::before {
  content: "163";
}

.media {
  height: 100%;
  object-fit: cover;
}

.media--blend {
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.media--hover {
  transition: transform 1s ease;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.feature-card:hover .media--hover,
.gallery-card:hover .media--hover {
  transform: scale(1.06);
}

.media--mono {
  transition: filter 1s ease;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  opacity: 0.82;
}

.masterplan-visual:hover .media--mono {
  filter: grayscale(0);
}

.media--luminous {
  mix-blend-mode: luminosity;
  opacity: 0.3;
}

.frame {
  overflow: hidden;
  background: var(--surface-low);
}

.frame--portrait {
  aspect-ratio: 4 / 5;
}

.frame--video {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: var(--shadow-soft);
}

.frame--paper {
  padding: 32px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

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

.feature-card__media {
  margin-bottom: 32px;
}

.feature-card__title {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 80px;
  align-items: center;
}

.split-layout--location {
  align-items: center;
}

.location-map__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(212, 78, 46, 0.05);
}

.location-map__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.location-map__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.location-map__card i {
  width: 44px;
  height: 44px;
  color: var(--accent);
  fill: rgba(212, 78, 46, 0.2);
}

.location-map__title {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 700;
}

.location-map__caption {
  color: var(--ink-faint);
}

.detail-list--compact {
  gap: 20px;
}

.detail-list {
  display: grid;
  gap: 24px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.detail-list__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detail-list__item i,
.detail-list__item svg {
  display: block;
  flex-shrink: 0;
  width: 32px !important;
  height: 32px !important;
  margin-top: 2px;
  color: var(--accent);
  stroke-width: 1.5px;
}

.detail-list__item h3,
.detail-list__item h4 {
  margin: 0 0 4px !important;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.detail-list__item p {
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px 24px;
  align-items: stretch;
}

.gallery-card,
.gallery-stack {
  min-height: 0;
}

.gallery-card {
  overflow: hidden;
  background: var(--surface-low);
}

.gallery-card--tall {
  min-height: 800px;
}

.gallery-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gallery-stack--offset {
  grid-template-rows: 2fr 1fr;
}

.gallery-card--double {
  min-height: 0;
}

.masterplan-visual {
  position: relative;
  overflow: hidden;
}

.masterplan-badge {
  position: absolute;
  right: -24px;
  bottom: -24px;
  display: flex;
  width: clamp(160px, 18vw, 224px);
  aspect-ratio: 1;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: var(--accent);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.masterplan-visual:hover .masterplan-badge {
  transform: scale(1.03);
}

.masterplan-badge strong {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--surface);
  line-height: 0.92;
}

.masterplan-badge span {
  margin-top: 14px;
  font-family: var(--headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.8);
}

.quote-block {
  margin: 0 0 32px;
  padding-left: 28px;
  border-left: 2px solid var(--accent);
  color: rgba(26, 26, 26, 0.8);
  font-family: var(--headline);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.7;
}

.floor-tabs {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 48px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.floor-tabs::-webkit-scrollbar,
.table-card::-webkit-scrollbar {
  display: none;
}

.floor-plan-btn {
  position: relative;
  flex: 0 0 auto;
  padding: 0 0 16px;
  color: rgba(26, 26, 26, 0.62);
  font-family: var(--headline);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.floor-plan-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.3s ease;
}

.floor-plan-btn:hover,
.floor-plan-btn.is-active {
  color: #5c2e24;
}

.floor-plan-btn.is-active::after {
  transform: scaleX(1);
}

.floor-panel {
  padding: clamp(28px, 4vw, 72px);
  border: 1px solid rgba(26, 26, 26, 0.06);
  background: var(--surface-low);
}

.floor-panel__grid {
  max-width: 640px;
  margin: 0 auto;
}

.floor-panel__image {
  height: auto;
  transition: opacity 0.3s ease;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.floor-panel__image.is-fading {
  opacity: 0;
}

.floor-panel__title {
  margin-bottom: 32px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.spec-list {
  margin: 0 0 40px;
}

.spec-list__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--border);
}

.spec-list__row + .spec-list__row {
  margin-top: 20px;
}

.spec-list dt {
  color: var(--ink-faint);
}

.spec-list dd {
  margin: 0;
  font-family: var(--headline);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 700;
}

.table-card {
  overflow-x: auto;
}

.inventory-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: var(--surface);
}

.inventory-table th,
.inventory-table td {
  padding: 24px 28px;
  text-align: left;
}

.inventory-table thead tr {
  border-bottom: 2px solid var(--ink);
}

.inventory-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease;
}

.inventory-table tbody tr:hover {
  background: var(--surface-low);
}

.inventory-table__title {
  font-size: 1.2rem;
  font-weight: 700;
}

.inventory-table__price {
  color: var(--accent);
  font-family: var(--headline);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-pill--available {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.status-pill--sold {
  border: 1px solid rgba(26, 26, 26, 0.2);
  color: var(--ink-faint);
}

.status-pill--limited {
  border: 1px solid var(--border-strong);
  color: var(--ink);
}

.section-action {
  margin-top: 40px;
}

.section-action--centered {
  text-align: center;
}

.inventory-note {
  margin: 0 0 28px;
  font-style: italic;
}

.split-layout--amenities {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.35fr);
  align-items: start;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(26, 26, 26, 0.05);
  background: rgba(26, 26, 26, 0.05);
}

.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;
  padding: 36px 24px;
  background: var(--surface);
  text-align: center;
  transition: background-color 0.3s ease;
}

.amenity-card:hover {
  background: var(--surface-low);
}

.amenity-card i {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--accent);
  stroke-width: 1px;
  transition: transform 0.5s ease;
}

.amenity-card:hover i {
  transform: scale(1.1);
}

.amenity-card h4 {
  margin: 0 0 10px;
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.amenity-card p {
  margin: 0;
  color: var(--ink-faint);
  font-family: var(--headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.06);
  background: var(--surface);
}

.faq-header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 32px;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-header:hover {
  background: var(--surface-low);
}

.faq-header span {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq-item.is-open .faq-content {
  grid-template-rows: 1fr;
}

.faq-content__inner {
  overflow: hidden;
  padding: 0 32px 0;
}

.faq-item.is-open .faq-content__inner {
  padding-bottom: 30px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.cta-banner__backdrop {
  position: absolute;
  inset: 0;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  padding: 128px 0 140px;
  text-align: center;
}

.cta-banner__title {
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 400;
  color: var(--surface);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.cta-banner__copy {
  max-width: 760px;
  margin: 0 auto 40px;
  color: rgba(245, 242, 237, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  padding: 56px 0;
}

.footer__meta {
  display: flex;
  gap: 48px;
}

.footer__meta > div,
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__label {
  color: rgba(26, 26, 26, 0.62);
}

.footer__value {
  font-size: 13px;
  font-weight: 700;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 32px;
}

.footer__links a {
  color: rgba(26, 26, 26, 0.72);
  font-family: var(--headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__links a:hover {
  color: var(--ink);
}

.footer__social {
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.footer__social i {
  width: 20px;
  height: 20px;
  color: rgba(26, 26, 26, 0.62);
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer__social i:hover {
  color: var(--accent);
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.page-hero--compact .page-hero__content {
  padding-top: 112px;
  padding-bottom: 120px;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 0 132px;
}

.page-hero__copy {
  max-width: 720px;
}

.page-hero__copy .section-title,
.page-hero__copy .section-copy,
.page-breadcrumbs,
.page-hero__copy .eyebrow {
  color: var(--surface);
}

.page-hero__copy .section-copy {
  max-width: 680px;
  color: rgba(245, 242, 237, 0.78);
}

.page-breadcrumbs {
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 40px 56px;
  align-items: start;
}

.contact-aside .section-title {
  margin-bottom: 28px;
}

.surface-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(26, 26, 26, 0.08);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-card);
}

.surface-panel__title {
  margin: 0 0 12px;
  font-family: var(--headline);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 600;
}

.surface-panel__copy {
  margin: 0 0 28px;
  color: var(--ink-soft);
  line-height: 1.8;
}

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

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

.field {
  display: grid;
  gap: 10px;
}

.field label,
.contact-form legend {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form fieldset {
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 20px;
}

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

.interest-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
}

.interest-grid input {
  width: auto;
  margin: 0;
}

.form-message {
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid transparent;
}

.form-message.success {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}

.form-message.error {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}

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

.note-card {
  padding: 28px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.note-card h3 {
  margin: 0 0 12px;
  font-family: var(--headline);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
}

.note-card p,
.site-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.site-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.site-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-scale {
  transform: scale(0.95);
  transition-duration: 1s;
}

.animate-in {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

.reveal-delay-50 { transition-delay: 0.05s; }
.reveal-delay-100 { transition-delay: 0.1s; }
.reveal-delay-150 { transition-delay: 0.15s; }
.reveal-delay-200 { transition-delay: 0.2s; }
.reveal-delay-250 { transition-delay: 0.25s; }
.reveal-delay-300 { transition-delay: 0.3s; }
.reveal-delay-400 { transition-delay: 0.4s; }
.reveal-delay-500 { transition-delay: 0.5s; }

@media (max-width: 1180px) {
  .topbar__links {
    gap: 24px;
  }

  .feature-grid,
  .gallery-grid,
  .amenity-grid {
    gap: 20px;
  }

  .hero__title {
    font-size: clamp(3rem, 10vw, 6rem);
  }

  .hero__content {
    padding-top: 64px;
  }

  .hero__floating-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 0;
    margin-bottom: 40px;
    aspect-ratio: 16 / 9;
  }

  .hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-top: 40px;
    min-height: auto;
  }

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

  .gallery-card--tall {
    min-height: 380px;
  }

  .gallery-stack,
  .gallery-stack--offset {
    grid-template-rows: repeat(2, minmax(220px, 1fr));
  }

  .split-layout,
  .split-layout--amenities,
  .floor-panel__grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-rail {
    display: none;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 80px 0 92px;
  }

  .footer__inner,
  .section-head--split {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar__inner {
    padding: 12px 0;
  }

  /* Reduce enquiry button size on mobile */
  #topbar-enquire {
    padding: 10px 18px;
    font-size: 10px;
  }

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

  .topbar__links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 24px 20px;
    border: 1px solid var(--border);
    background: var(--surface);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow-card);
    z-index: 100;
  }

  .topbar__links.is-open {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero__content {
    padding: 24px 0 72px;
  }

  .hero__floating-card {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    margin-bottom: 24px;
    aspect-ratio: 16 / 9;
  }

  .hero__index {
    font-size: clamp(6rem, 28vw, 10rem);
  }

  .feature-grid,
  .amenity-grid,
  .grid-3,
  .footer__meta,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .amenity-grid {
    display: grid;
  }

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

  .inventory-table__desktop {
    display: none;
  }

  .footer__links,
  .footer__social {
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .shell,
  .shell-wide,
  .shell-narrow,
  .shell-wide--gallery {
    width: min(100% - 32px, 100%);
  }

  .section {
    padding: 72px 0 84px;
  }

  .button {
    width: 100%;
  }

  .hero__actions,
  .cta-banner__actions {
    flex-direction: column;
  }

  .hero__content {
    padding-top: 24px;
  }

  .hero__floating-card {
    position: relative;
    right: 0;
    width: 100%;
    margin-top: 24px;
  }

  .feature-grid,
  .gallery-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .gallery-stack,
  .gallery-stack--offset {
    grid-template-rows: unset;
  }

  .gallery-card,
  .gallery-card--tall,
  .gallery-card--double,
  .gallery-stack > .gallery-card {
    min-height: 300px;
  }

  .floor-tabs {
    justify-content: flex-start;
  }

  .detail-list__item i,
  .detail-list__item svg {
    width: 32px !important;
    height: 32px !important;
    margin-top: 2px;
  }

  .spec-list__row,
  .footer__meta,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-header,
  .faq-content__inner,
  .inventory-table th,
  .inventory-table td {
    padding-inline: 20px;
  }

  .inventory-table {
    min-width: 640px;
  }
}
