/* ─── SBC Lodge — Shared Styles ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Manrope:wght@300;400;500;600&display=swap');
:root {
  --navy:        #16203a;
  --navy-mid:    #1d2944;
  --navy-light:  #28335a;
  --gold:        #c4973a;
  --gold-dim:    rgba(196,151,58,0.55);
  --gold-subtle: rgba(196,151,58,0.10);
  --cream:       #f5f0e8;
  --cream-mid:   #ede7dc;
  --cream-dark:  #ddd6c8;
  --charcoal:    #2a2826;
  --charcoal-mid:#3d3a36;
  --white:       #fdfbf8;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Manrope', system-ui, sans-serif;
  --max-w:      1320px;
  --pad-x:      clamp(20px, 5vw, 80px);
  --section-v:  clamp(72px, 9vw, 130px);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--ff-body); }
/* ─── Typography ──────────────────────────────────────────────────────────── */
.t-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-display {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.t-serif {
  font-family: var(--ff-display);
  font-weight: 400;
}
.t-body {
  font-family: var(--ff-body);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
  color: var(--charcoal-mid);
  font-weight: 300;
}
/* ─── Layout helpers ──────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section {
  padding: var(--section-v) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section--full {
  padding: var(--section-v) 0;
}
.section--dark {
  background: var(--navy);
  color: var(--cream);
  max-width: none;
  padding: var(--section-v) var(--pad-x);
}
.section--dark .t-body { color: rgba(245,240,232,0.78); }
.section--dark .t-label { color: var(--gold); }
.section--cream {
  background: var(--cream);
  max-width: none;
  padding: var(--section-v) var(--pad-x);
}
.section--mid {
  background: var(--cream-mid);
  max-width: none;
  padding: var(--section-v) var(--pad-x);
}
.inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
/* ─── Gold rule ───────────────────────────────────────────────────────────── */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }
/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: #d4a84a; }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.4);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(42,40,38,0.3);
}
.btn--ghost-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn--arrow::after { content: '→'; font-size: 14px; font-weight: 300; letter-spacing: 0; }
/* ─── Image Placeholders ──────────────────────────────────────────────────── */
.img-ph {
  position: relative;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0px, transparent 12px,
      rgba(255,255,255,0.025) 12px, rgba(255,255,255,0.025) 24px
    ),
    linear-gradient(145deg, #18223e 0%, #243057 55%, #141d35 100%);
  overflow: hidden;
}
.img-ph--warm {
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0px, transparent 12px,
      rgba(255,255,255,0.02) 12px, rgba(255,255,255,0.02) 24px
    ),
    linear-gradient(145deg, #1a1208 0%, #2e2010 55%, #120d06 100%);
}
.img-ph--light {
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0px, transparent 12px,
      rgba(0,0,0,0.02) 12px, rgba(0,0,0,0.02) 24px
    ),
    linear-gradient(145deg, #e8e2d8 0%, #d8d0c4 55%, #ece6da 100%);
}
.img-ph__label {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  text-align: center;
}
.img-ph--light .img-ph__label { color: rgba(0,0,0,0.2); }
/* ─── Navigation ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--pad-x);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(22,32,58,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(196,151,58,0.15);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav--scrolled {
  background: rgba(22,32,58,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(196,151,58,0.15);
}
.nav--light-page {
  background: rgba(245,240,232,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(42,40,38,0.08);
}
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.nav__logo-main {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--cream);
  line-height: 1;
}
.nav__logo-sub {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.nav--light-page .nav__logo-main { color: var(--navy); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.85);
  transition: color 0.2s;
}
.nav--light-page .nav__links a { color: rgba(42,40,38,0.75); }
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav--light-page .nav__links a:hover { color: var(--gold); }
.nav__cta {
  padding: 10px 22px;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: #d4a84a !important; color: var(--navy) !important; }
/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}
.nav--light-page .nav__burger span { background: var(--navy); }
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
/* Mobile overlay menu */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav__overlay.open { opacity: 1; }
.nav__overlay a {
  font-family: var(--ff-display);
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__overlay a:hover { color: var(--gold); }
.nav__overlay .nav__overlay-cta {
  margin-top: 16px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
/* ─── Hero sections ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vh, 100px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0px, transparent 18px,
      rgba(255,255,255,0.015) 18px, rgba(255,255,255,0.015) 36px
    ),
    linear-gradient(160deg, #16203a 0%, #1f2c4d 45%, #121a30 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18,26,48,0.65) 0%,
    rgba(18,26,48,0.2) 50%,
    rgba(18,26,48,0.1) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 20px;
  max-width: 820px;
}
.hero__subtitle {
  font-family: var(--ff-body);
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__tagline {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,232,0.85);
  margin-bottom: 40px;
  max-width: 600px;
}
.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  font-family: var(--ff-body);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}
/* ─── Section headers ─────────────────────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section-header--center { text-align: center; }
.section-header__title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-header__body {
  max-width: 620px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.8;
  color: var(--charcoal-mid);
  font-weight: 300;
}
.section--dark .section-header__body { color: rgba(245,240,232,0.78); }
.section-header--center .section-header__body {
  margin: 0 auto;
}
/* ─── Cards ───────────────────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  padding: 36px;
  border-top: 1px solid var(--cream-dark);
}
.card--dark {
  background: var(--navy-light);
  border-top: 1px solid rgba(196,151,58,0.2);
  color: var(--cream);
}
.card--gold-border {
  border: 1px solid var(--gold);
}
.card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  opacity: 0.7;
}
.card__title {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
}
.card__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal-mid);
  font-weight: 300;
}
.card--dark .card__body { color: rgba(245,240,232,0.75); }
/* ─── Pillar grid ─────────────────────────────────────────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(196,151,58,0.2);
}
.pillar {
  padding: 40px 32px;
  border-right: 1px solid rgba(196,151,58,0.2);
  position: relative;
}
.pillar:last-child { border-right: none; }
.pillar__num {
  font-family: var(--ff-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar__title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.25;
}
.pillar__body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,240,232,0.75);
  font-weight: 300;
}
/* ─── Property preview cards ─────────────────────────────────────────────── */
.prop-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.prop-card__img {
  height: 520px;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.prop-card:hover .prop-card__img { transform: scale(1.04); }
.prop-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,26,48,0.7) 0%, rgba(18,26,48,0.05) 60%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.prop-card__content {}
.prop-card__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.prop-card__title {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
}
.prop-card__desc {
  font-size: 15px;
  color: rgba(245,240,232,0.8);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.6;
}
.prop-card__link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
/* ─── Stats / facts ───────────────────────────────────────────────────────── */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
}
.fact {
  background: var(--white);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.fact__dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.fact__text {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--charcoal);
}
/* ─── Destination / full-bleed mid-section ───────────────────────────────── */
.full-bleed-section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  overflow: hidden;
}
.full-bleed-section__bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0, transparent 20px,
      rgba(255,255,255,0.012) 20px, rgba(255,255,255,0.012) 40px
    ),
    linear-gradient(160deg, #1a2840 0%, #243958 50%, #18243e 100%);
}
.full-bleed-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,26,48,0.45);
}
.full-bleed-section__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
/* ─── Accommodation table ─────────────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--cream-dark);
  background: var(--cream-dark);
  gap: 1px;
  margin-bottom: 32px;
}
.rooms-cell {
  background: var(--white);
  padding: 20px 24px;
}
.rooms-cell--head {
  background: var(--navy);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.rooms-cell__label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}
.rooms-cell__value {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
}
.rooms-cell__sub {
  font-size: 13px;
  color: var(--charcoal-mid);
  font-weight: 300;
  margin-top: 4px;
}
/* Mobile card-list for rooms */
.rooms-list { display: none; }
.room-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.room-item:last-child { border-bottom: none; }
.room-item__type {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
}
.room-item__meta {
  text-align: right;
  font-size: 14px;
  color: var(--charcoal-mid);
}
/* ─── Callout box ─────────────────────────────────────────────────────────── */
.callout {
  border-left: 2px solid var(--gold);
  padding: 20px 28px;
  background: var(--gold-subtle);
  margin: 0;
}
.callout--dark {
  background: rgba(196,151,58,0.08);
  border-color: var(--gold);
}
.callout__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.callout__text {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}
/* ─── Acquisition option cards ────────────────────────────────────────────── */
.option-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.option-card {
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.option-card--1 {
  background: #F2D598;
  border: 1px solid #F2D598;
}
.option-card--2 {
  background: var(--white);
}
.option-card__tag {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.option-card--1 .option-card__tag { color: rgba(11,15,30,0.7); }
.option-card--2 .option-card__tag { color: rgba(11,15,30,0.7); }
.option-card__title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 300;
  margin-bottom: 8px;
  line-height: 1.1;
}
.option-card--1 .option-card__title { color: var(--navy); }
.option-card--2 .option-card__title { color: var(--navy); }
.option-card__sub {
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.6;
}
.option-card--1 .option-card__sub { color: rgba(11,15,30,0.85); }
.option-card--2 .option-card__sub { color: rgba(11,15,30,0.85); }
.option-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}
.option-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
.option-card--1 .option-card__list li { color: rgba(11,15,30,0.92); }
.option-card--2 .option-card__list li { color: rgba(11,15,30,0.92); }
.option-card__list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 300;
}
.option-card--2 .option-card__list li::before { color: var(--navy); opacity: 0.5; }
.option-card--1 .option-card__list li::before { color: var(--navy); opacity: 0.5; }
.option-card__ideal {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}
.option-card--1 .option-card__ideal { color: rgba(11,15,30,0.8); border-top-color: rgba(11,15,30,0.15); }
.option-card--2 .option-card__ideal { color: rgba(11,15,30,0.8); border-top-color: rgba(11,15,30,0.15); }
.option-card__ideal strong {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  display: block;
  margin-bottom: 4px;
}
/* ─── Tax section ─────────────────────────────────────────────────────────── */
.tax-section {
  background: var(--navy-mid);
  border: 1px solid rgba(196,151,58,0.2);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.tax-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.tax-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.tax-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,240,232,0.82);
  line-height: 1.6;
}
.tax-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.caveat-box {
  background: var(--navy-light);
  border: none;
  padding: 28px 32px;
  margin-top: 28px;
}
.caveat-box p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,232,0.85);
  font-style: normal;
}
/* ─── Buyer cards ─────────────────────────────────────────────────────────── */
.buyer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.buyer-card {
  padding: 40px 32px;
  border-top: 2px solid rgba(196,151,58,0.3);
  background: var(--navy-light);
}
.buyer-card__title {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}
.buyer-card__body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245,240,232,0.75);
  font-weight: 300;
}
/* ─── Closing CTA section ─────────────────────────────────────────────────── */
.closing-cta {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.closing-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.closing-cta__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.closing-cta__sub {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  font-weight: 400;
  margin-bottom: 48px;
}
/* ─── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: #121a30;
  padding: 56px var(--pad-x) 36px;
  border-top: 1px solid rgba(196,151,58,0.15);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer__brand {}
.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer__brand-sub {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.footer__tagline {
  font-family: var(--ff-display);
  font-size: 16px;
  font-style: italic;
  color: rgba(245,240,232,0.5);
  margin-top: 16px;
}
.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer__nav a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  font-weight: 400;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__note {
  font-size: 13px;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
  line-height: 1.6;
}
.footer__copy {
  font-size: 12px;
  color: rgba(245,240,232,0.4);
}
/* ─── Contact form ────────────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal-mid);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 18px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-submit {
  margin-top: 8px;
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.form-reassurance {
  font-size: 13px;
  color: var(--charcoal-mid);
  font-weight: 300;
  line-height: 1.6;
}
/* ─── Outdoor facilities grid ─────────────────────────────────────────────── */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.facility-item {
  padding: 18px 20px;
  border: 1px solid rgba(196,151,58,0.15);
  background: var(--navy-light);
}
.facility-item__name {
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.4;
}
/* ─── Floor plan section ──────────────────────────────────────────────────── */
.floor-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.floor-plan-card {
  position: relative;
}
.floor-plan-card__img {
  height: 420px;
  background:
    repeating-linear-gradient(
      0deg, transparent, transparent 24px,
      rgba(196,151,58,0.04) 24px, rgba(196,151,58,0.04) 25px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 24px,
      rgba(196,151,58,0.04) 24px, rgba(196,151,58,0.04) 25px
    ),
    var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.floor-plan-card__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196,151,58,0.5);
  font-family: 'Courier New', monospace;
  text-align: center;
  padding: 20px;
}
.floor-plan-card__caption {
  padding: 16px 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  font-weight: 500;
}
/* ─── Responsive Floor Plan Fix ─── */
.floor-plan-card__img {
  height: auto; /* Removes the fixed 420px height */
  min-height: 240px; /* Keeps the fallback background visible if an image fails to load */
}

.floor-plan-card__img img {
  position: relative !important; /* Pulls the image into the normal document flow */
  height: auto !important; /* Allows the image to scale naturally without distortion */
  z-index: 1; /* Keeps the image above the fallback label */
}

.floor-plan-card__label {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 0;
}
/* ─── Two-col text + media layout ─────────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split-section--reversed { direction: rtl; }
.split-section--reversed > * { direction: ltr; }
.split-section__media {
  position: relative;
}
.split-section__img {
  width: 100%;
  aspect-ratio: 4/3;
}
/* ─── Scroll animations ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
/* ─── Mobile sticky CTA ───────────────────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 98;
  background: var(--navy);
  border-top: 1px solid rgba(196,151,58,0.3);
  padding: 12px var(--pad-x);
}
.mobile-cta-bar a {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-bottom: 1px solid rgba(196,151,58,0.2); }
  .pillar:nth-child(2n) { border-right: none; }
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
  .buyer-cards { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  /* Remove hero buttons and scroll indicator on mobile */
  .hero__btns,
  .hero__content .btn,
  .hero__scroll {
    display: none !important;
  }
  /* Push the hero tagline down slightly on mobile */
  .hero__tagline {
    margin-top: 12px !important; /* Increase or decrease this number to dial it in perfectly */
  }

  /* ─── Fix 1: Mobile Hero Height, Image Alignment & Text Readability ─── */
  .hero {
    /* svh fixes the iPhone address bar bug. 64px is exactly the size of your sticky footer */
    height: calc(100svh - 64px) !important; 
    min-height: 520px !important;
    /* Pushes the text down into the dark ground */
    padding-bottom: 0px !important; 
  }
  
  .hero__bg img {
    object-position: center bottom !important; 
  }

  .hero__overlay {
    background: linear-gradient(
      to top,
      rgba(18,26,48,0.95) 0%, 
      rgba(18,26,48,0.5) 25%,
      rgba(18,26,48,0.05) 100%
    ) !important;
  }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 64px; }
  .card-grid--2,
  .card-grid--3,
  .card-grid--4 { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(196,151,58,0.2); }
  .pillar:last-child { border-bottom: none; }
  .option-cards { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-section--reversed { direction: ltr; }
  .floor-plan-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .buyer-cards { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .rooms-grid { display: none; }
  .rooms-list { display: block; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .prop-card__img { height: 340px; }
  .hero__title { font-size: clamp(38px, 10vw, 56px); }
  .tax-section { padding: 36px 24px; }
  .option-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
  :root {
    --pad-x: 20px;
    --section-v: 56px;
  }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
}
