/* ============================================================
   Lucerne Grand — Premium Brand Stylesheet
   Palette: warm brown-black #1C130B | brand brown #5B3B1F | accent #B0824F | cream #EEE5D7
   ============================================================ */


/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #1C130B;
  --black-soft:   #2A1D10;
  --gold:         #B0824F;
  --gold-light:   #D9BC98;
  --gold-muted:   rgba(176,130,79,0.25);
  --brown:        #5B3B1F;
  --cream:        #EEE5D7;
  --cream-dark:   #E3D5BF;
  --white:        #FFFFFF;
  --text:         #2B1E12;
  --text-muted:   #6E5D4C;
  --border:       rgba(176,130,79,0.22);
  --nav-h:        80px;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Montserrat', 'Helvetica Neue', sans-serif;

  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

html { font-size: 16px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────────── */
.serif { font-family: var(--serif); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
}

.display {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
}

.title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
}

.label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-text {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ─── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--black);
  color: var(--cream);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--cream);
}

.section--dark .body-text,
.card--dark .body-text,
.split__content .body-text {
  color: rgba(245, 239, 230, 0.75);
}

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.gold-line--center { margin: 1.5rem auto; }

.section-header {
  margin-bottom: 60px;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.nav--scrolled {
  background: rgba(10, 9, 8, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__logo {
  flex: 0 0 auto;
}

.nav__logo img {
  height: 52px;
  width: auto;
  transition: opacity 0.3s;
  /* brand reversed-colour (cream #EEE5D7) logo, used on the dark nav in both states */
  filter: drop-shadow(0 1px 5px rgba(0,0,0,0.5));
}

.nav__logo:hover img { opacity: 0.75; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

.nav__link {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  transition: color 0.3s;
  position: relative;
}

.nav--scrolled .nav__link {
  color: rgba(255,255,255,0.92);
  text-shadow: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__link:hover,
.nav__link--active {
  color: var(--cream);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 1rem;
  padding: 0.55rem 1.5rem;
  background: var(--gold);
  color: var(--black) !important;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s, opacity 0.3s;
}

.nav__cta:hover { background: var(--gold-light); }
.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-left: auto;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.65);
  transition: transform 0.3s var(--ease), opacity 0.3s;
  transform-origin: center;
}

.nav--scrolled .nav__hamburger span {
  background: var(--cream);
}

/* ─── Mobile Nav ────────────────────────────────────────────── */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--black);
  padding: calc(var(--nav-h) + 2rem) 2rem 3rem;
  flex-direction: column;
  gap: 2rem;
}

.nav__mobile--open { display: flex; }

.nav__mobile .nav__link {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(245,239,230,0.75);
}

.nav__mobile .nav__cta {
  display: inline-block;
  margin-left: 0;
  text-align: center;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.05);
  will-change: transform;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,19,11,0.92) 0%,
    rgba(28,19,11,0.6) 50%,
    rgba(28,19,11,0.25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 6rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 1px 8px rgba(0,0,0,0.75);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.75);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero__subtitle {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(238,229,215,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.75);
  letter-spacing: 0.05em;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.5);
  writing-mode: vertical-lr;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Intro Split ───────────────────────────────────────────── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-split__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.intro-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Two-col tables (site plan etc.) ───────────────────────── */
.two-col-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ─── Stats Strip ───────────────────────────────────────────── */
.stats {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  divide-y: none;
}

.stat {
  padding: 2rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat:last-child { border-right: none; }

.stats__trust {
  text-align: center;
  padding: 1.5rem 2rem 2rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.55);
  border-top: 1px solid var(--border);
}

.stat__number {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.5);
}

/* ─── Cards Grid ────────────────────────────────────────────── */
.cards {
  display: grid;
  gap: 1.5rem;
}

.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--gold);
}

.card--dark {
  background: var(--black-soft);
  border-color: var(--border);
}

.card--dark:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.card__number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.card__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Amenity Image Cards ───────────────────────────────────── */
.amenity-card {
  padding: 0;
  overflow: hidden;
}

.amenity-card__img {
  position: relative;
  height: 200px;
  background: var(--cream-dark);
  overflow: hidden;
}

.amenity-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.amenity-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-dark) 0%, #d9cfc3 100%);
}

.amenity-card__img--placeholder::after {
  content: attr(data-label);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.amenity-card__img--dark {
  background: #241809;
}

.amenity-card__img--dark.amenity-card__img--placeholder {
  background: linear-gradient(135deg, #241809 0%, #33230f 100%);
}

.amenity-card__img-label {
  display: none;
}

.amenity-card__body {
  padding: 1.75rem;
}

/* ─── Image-Text Split ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

/* Two stacked images on the image side */
.split--duo .split__images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.split--duo .split__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  display: block;
}
.split--duo:hover .split__images img { transform: scale(1.04); }

.split__image {
  position: relative;
  overflow: hidden;
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.split:hover .split__image img { transform: scale(1.04); }

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  background: var(--black);
}

.split__content--light { background: var(--cream); }

/* ─── Tables ────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

thead th {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1rem 1.5rem;
  background: var(--black);
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid rgba(181,151,92,0.12);
  transition: background 0.2s;
}

tbody tr:last-child { border-bottom: none; }

tbody tr:hover { background: rgba(181,151,92,0.04); }

tbody td {
  padding: 1rem 1.5rem;
  font-weight: 300;
  color: var(--text);
  vertical-align: top;
  line-height: 1.6;
}

tbody td:first-child {
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
}

.table--dark tbody td {
  color: rgba(245,239,230,0.8);
}

.table--dark tbody td:first-child {
  color: var(--cream);
}

.table--dark tbody tr {
  border-color: var(--border);
}

.table--dark tbody tr:hover {
  background: rgba(181,151,92,0.06);
}

/* ─── FAQ Accordion ─────────────────────────────────────────── */
.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left;
  gap: 1.5rem;
}

.faq-question__text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
}

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.faq-question__icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s var(--ease);
}

.faq-item--open .faq-question__icon {
  background: var(--gold);
  border-color: var(--gold);
}

.faq-item--open .faq-question__icon svg {
  stroke: var(--black);
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}

.faq-answer__inner {
  padding-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-answer__inner p + p { margin-top: 0.75rem; }

/* ─── Page Hero (Sub-pages) ─────────────────────────────────── */
.page-hero {
  position: relative;
  height: calc(55vh + var(--nav-h));
  min-height: calc(400px + var(--nav-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,19,11,0.92) 0%,
    rgba(28,19,11,0.6) 60%,
    rgba(28,19,11,0.28) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 4rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.page-hero__content h1,
.page-hero__content p,
.page-hero__content .label {
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.4);
  margin-bottom: 1.25rem;
}

.page-hero__breadcrumb a {
  color: rgba(245,239,230,0.4);
  transition: color 0.3s;
}

.page-hero__breadcrumb a:hover { color: var(--gold); }

.page-hero__breadcrumb .sep { color: rgba(245,239,230,0.2); }

.page-hero__breadcrumb .current { color: var(--gold); }

/* ─── Selling Points ────────────────────────────────────────── */
.selling-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.selling-point {
  padding: 3rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.selling-point:nth-child(3n) { border-right: none; }
.selling-point:nth-child(n+7) { border-bottom: none; }

.selling-point::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}

.selling-point:hover::before { width: 100%; }

.selling-point__num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.selling-point__title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.selling-point__text {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Page Nav Links ────────────────────────────────────────── */
.page-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.page-nav__item {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
  position: relative;
}

.page-nav__item:last-child { border-right: none; }

.page-nav__item:hover { background: rgba(181,151,92,0.05); }

.page-nav__item::after {
  content: '→';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s, right 0.3s var(--ease);
}

.page-nav__item:hover::after {
  opacity: 1;
  right: 1.25rem;
}

.page-nav__num {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--gold);
}

.page-nav__title {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.75);
}

/* ─── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gold);
}

.btn--outline-dark:hover {
  background: var(--gold);
  color: var(--black);
}

.btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Facility Icon Grid ─────────────────────────────────────── */
.fac-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem 2rem;
  margin-top: 4rem;
}

.fac-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.fac-icon__wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(181,151,92,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.fac-icon:hover .fac-icon__wrap {
  border-color: var(--gold);
  background: rgba(181,151,92,0.08);
}

.fac-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fac-icon__label {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .fac-icons { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
  .fac-icons { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1rem; }
}

/* ─── Form ──────────────────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.section--dark .form-group input,
.section--dark .form-group select,
.section--dark .form-group textarea {
  background: rgba(181,151,92,0.04);
  border-color: var(--border);
  color: var(--cream);
}

.section--dark .form-group input::placeholder,
.section--dark .form-group textarea::placeholder {
  color: rgba(245,239,230,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── fSelect: multi-select dropdown ───────────────────────── */
.fselect {
  position: relative;
  font-family: var(--sans);
}

.fselect__trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-height: 48px;
  padding: 0.5rem 2.5rem 0.5rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
}

.fselect__trigger:hover { border-color: var(--gold); }
.fselect.is-open .fselect__trigger { border-color: var(--gold); border-bottom-color: transparent; border-radius: 3px 3px 0 0; }

.fselect__placeholder {
  font-size: 0.8rem;
  color: #aaa;
  pointer-events: none;
  user-select: none;
}

.fselect__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gold-muted);
  border: 1px solid rgba(181,151,92,0.4);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem 0.2rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
}

.fselect__tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(181,151,92,0.3);
  color: var(--black);
  font-size: 0.65rem;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
}

.fselect__tag-remove:hover { background: var(--gold); color: var(--white); }

.fselect__arrow {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gold);
  transition: transform 0.2s;
}

.fselect.is-open .fselect__arrow { transform: translateY(-50%) rotate(180deg); }

.fselect__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--gold);
  border-top: none;
  border-radius: 0 0 3px 3px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.fselect.is-open .fselect__menu { display: block; }

.fselect__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(181,151,92,0.08);
}

.fselect__option:last-child { border-bottom: none; }
.fselect__option:hover { background: var(--cream); }
.fselect__option.is-selected { background: rgba(181,151,92,0.08); }

.fselect__tick {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}

.fselect__option.is-selected .fselect__tick {
  background: var(--gold);
  border-color: var(--gold);
}

.fselect__tick::after {
  content: '';
  display: none;
  width: 4px;
  height: 7px;
  border: 1.5px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.fselect__option.is-selected .fselect__tick::after { display: block; }

.fselect__option-label { flex: 1; font-weight: 400; }

.fselect__option-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ─── Toggle pills (assist section) ────────────────────────── */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.pill-option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s;
  user-select: none;
}

.pill-option:hover { border-color: var(--gold); color: var(--black); }

.pill-option.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.pill-option input[type="checkbox"] { display: none; }

.gated-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--cream);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ─── Developer Cards ───────────────────────────────────────── */
.dev-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  margin-bottom: 1.25rem;
}

.dev-card__logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

/* Frasers logo has white text — show on dark pill */
.dev-card__logo--dark {
  background: var(--black);
  border-radius: 6px;
  padding: 1rem 1.5rem;
}

/* ─── Developer Logos ────────────────────────────────────────── */
.dev-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.dev-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.dev-logo:hover { opacity: 1; }

.dev-logo__mark {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dev-logo__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.06em;
}

/* ─── PDF Modal ─────────────────────────────────────────────── */
.pdf-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.pdf-modal--open { display: flex; }

.pdf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(6px);
}

.pdf-modal__box {
  position: relative;
  z-index: 1;
  width: min(92vw, 1000px);
  height: min(88vh, 800px);
  background: var(--black-soft);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.pdf-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.pdf-modal__title {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.pdf-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  color: rgba(245,239,230,0.5);
  font-size: 1.5rem;
  transition: color 0.2s;
}

.pdf-modal__close:hover { color: var(--cream); }

.pdf-modal__body {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.pdf-modal__frame {
  flex: 1;
  width: 100%;
  min-height: 100%;
  border: none;
  display: block;
}

/* ─── Location Highlights ────────────────────────────────────── */
.location-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.location-highlight {
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: var(--cream-dark);
}

.location-highlight__label {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brown);
  line-height: 1.2;
}

.location-highlight__text {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.6;
}

/* ─── Unit Collection Cards ──────────────────────────────────── */
.unit-collection__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.25rem;
}

.unit-collection__subtitle {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.unit-collection__list {
  list-style: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.unit-collection__list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.unit-collection__list li span {
  color: var(--text-muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

/* ─── Float Actions ──────────────────────────────────────────── */
/* ─── Facilities Image Strip ─────────────────────────────────── */
.facilities-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  height: 400px;
  overflow: hidden;
  margin-top: 3rem;
}

.facilities-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.facilities-images:hover img { transform: scale(1.03); }

/* ─── Mobile Nav Book-A-Viewing button ──────────────────────── */
.nav__book-btn {
  display: none;
  padding: 0.45rem 0.85rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  align-items: center;
}

/* ─── WhatsApp Float ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  background: var(--gold);
  color: var(--black);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(181,151,92,0.5);
  z-index: 150;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.wa-float svg {
  width: 18px;
  height: 18px;
  fill: var(--black);
  flex-shrink: 0;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(181,151,92,0.65);
  color: var(--black);
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer__tagline {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(238,229,215,0.6);
  line-height: 1.6;
}

.footer__heading {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245,239,230,0.5);
  transition: color 0.3s;
}

.footer__link:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__copy {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(245,239,230,0.75);
  margin-bottom: 0.75rem;
}

.footer__disclaimer {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(245,239,230,0.45);
  max-width: 820px;
  margin: 0 auto 1rem;
  line-height: 1.7;
  text-align: center;
}

.footer__agency {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer__agency-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__era-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin: 0 auto 1rem;
  display: block;
}

.footer__agency-info {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(245,239,230,0.85);
  line-height: 1.7;
  margin-bottom: 0.2rem;
}

.footer__agency-sales {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(245,239,230,0.65);
  margin-top: 0.75rem;
  line-height: 1.7;
}

.footer__legal-links {
  font-size: 0.68rem;
  color: rgba(245,239,230,0.3);
  margin-top: 0.75rem;
}

.footer__legal-links a {
  color: rgba(245,239,230,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal-links a:hover { color: var(--gold); }

.footer__legal-sep {
  margin: 0 0.5rem;
  opacity: 0.4;
}

/* ─── Unit Type Cards ───────────────────────────────────────── */
.unit-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.unit-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.unit-card__header {
  background: var(--black);
  padding: 2rem;
  border-bottom: 1px solid var(--border);
}

.unit-card__type {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  display: block;
  margin-bottom: 0.25rem;
}

.unit-card__size {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.unit-card__body {
  background: var(--white);
  padding: 1.5rem 2rem;
}

.unit-card__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(181,151,92,0.1);
  font-size: 0.8rem;
}

.unit-card__detail:last-child { border-bottom: none; }

.unit-card__detail-label {
  font-weight: 400;
  color: var(--text-muted);
}

.unit-card__detail-value {
  font-weight: 500;
  color: var(--text);
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.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; }

/* ─── Facilities Grid ───────────────────────────────────────── */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.facility-item {
  padding: 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background 0.3s;
}

.facility-item:hover { background: rgba(181,151,92,0.04); }

.facility-item:nth-child(3n) { border-right: none; }

.facility-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.facility-item__name {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}

/* ─── Spacers ───────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats__inner { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3n) { border-right: none; }
  .stat:nth-child(3) { border-right: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .selling-points { grid-template-columns: repeat(2, 1fr); }
  .selling-point:nth-child(3n) { border-right: 1px solid var(--border); }
  .selling-point:nth-child(2n) { border-right: none; }
  .selling-point:nth-child(n+7) { border-bottom: 1px solid var(--border); }
  .selling-point:nth-child(n+9) { border-bottom: none; }
  .page-nav { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .facility-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav { padding: 0 1.25rem; }

  .section { padding: 70px 0; }

  .pdf-modal__box {
    width: 100%;
    height: 100dvh;
    height: 100vh;
    border: none;
  }
  .pdf-modal__header { padding: 0.75rem 1rem; }
  .pdf-modal__body { -webkit-overflow-scrolling: touch; }
  .pdf-modal__frame { min-height: 500px; }
  .container { padding: 0 1.25rem; }

  .intro-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .intro-split__image {
    order: -1;
    aspect-ratio: 4/3;
  }

  .two-col-tables { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Section CTAs — full-width block on mobile */
  .container .btn,
  .container--narrow .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .hero__content { padding: 0 1.25rem 5rem; }
  .stats { padding-bottom: 1.5rem; }
  .page-hero { height: auto; min-height: 0; padding: 6rem 0 3rem; align-items: center; }
  .page-hero__content { padding: 1.5rem 1.25rem 2rem; }

  .split { grid-template-columns: 1fr; }
  .split__image { height: 300px; }
  .split__content { padding: 3rem 1.5rem; }

  .split--duo { grid-template-columns: 1fr; }
  .split--duo .split__images { height: 500px; grid-template-rows: 1fr 1fr; }

  .facilities-images { height: 260px; gap: 2px; }

  .cards--2,
  .cards--3 { grid-template-columns: 1fr; }
  .cards--4 { grid-template-columns: 1fr; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3n) { border-right: 1px solid var(--border); }
  .stat:nth-child(2n) { border-right: none; }
  .location-highlights { grid-template-columns: 1fr; }

  .selling-points { grid-template-columns: 1fr; }
  .selling-point { border-right: none; }
  .selling-point:nth-child(n) { border-bottom: 1px solid var(--border); }
  .selling-point:last-child { border-bottom: none; }

  .page-nav { grid-template-columns: 1fr 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__disclaimer { text-align: center; max-width: 100%; }

  .form-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .facility-item:nth-child(n) { border-right: none; }

  /* Tables — stacked card layout on mobile, no horizontal scroll */
  .table-wrap { overflow-x: visible; font-size: 0.85rem; }
  table { min-width: 0; width: 100%; }
  thead { display: none; }
  tbody tr {
    display: block;
    border: 1px solid var(--border);
    margin-bottom: 0.75rem;
    padding: 0.25rem 0;
  }
  tbody tr:last-child { border-bottom: 1px solid var(--border); margin-bottom: 0; }
  tbody tr:hover { background: inherit; }
  tbody td {
    display: block;
    padding: 0.5rem 1rem 0.35rem;
    white-space: normal;
    border-bottom: 1px solid rgba(181,151,92,0.08);
  }
  tbody td:last-child { border-bottom: none; padding-bottom: 0.6rem; }
  tbody td:first-child { white-space: normal; }
  tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
  }
  .table--dark tbody tr { border-color: rgba(181,151,92,0.25); }
  .table--dark tbody td { border-bottom-color: rgba(181,151,92,0.1); }

  /* Larger readable text on mobile */
  .body-text { font-size: 1rem; line-height: 1.8; }
  .selling-point__title { font-size: 1.05rem; }
  .selling-point__text { font-size: 0.88rem; }
  .page-nav__title { font-size: 0.72rem; }
  .page-nav__num { font-size: 0.95rem; }
  .page-nav { grid-template-columns: 1fr 1fr; }
  thead th { padding: 0.75rem 1rem; }
}

/* ─── Floor Plan Lightbox ──────────────────────────────────── */
.fp-thumb {
  cursor: zoom-in;
  transition: opacity 0.2s;
}
.fp-thumb:hover { opacity: 0.88; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
  padding: 3.5rem 1.5rem 2rem;
}
.lightbox.is-open {
  display: block;
  animation: lb-in 0.22s var(--ease) both;
}
@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox__inner {
  position: relative;
  width: min(780px, 95vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  background: #f5f0ea;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  animation: lb-scale 0.24s var(--ease) both;
}
@keyframes lb-scale {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.lightbox__caption {
  margin-top: 0.85rem;
  color: rgba(245,239,230,0.75);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: -2.6rem;
  right: 0;
  background: none;
  border: 1px solid rgba(181,151,92,0.35);
  color: var(--gold);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.lightbox__close:hover {
  background: rgba(181,151,92,0.15);
  border-color: var(--gold);
}

/* ─── Quick Booking Modal ────────────────────────────────────── */
.booking-modal {
  display: none; position: fixed; inset: 0; z-index: 9500;
  background: rgba(10,9,8,0.88); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.booking-modal.is-open { display: flex; animation: lb-in 0.22s var(--ease) both; }
.booking-modal__box {
  background: var(--cream); width: min(480px, 100%); border-radius: 4px;
  padding: 2.5rem 2rem 2rem; position: relative;
}
.booking-modal__close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  font-size: 1.4rem; color: var(--text-muted); cursor: pointer; line-height: 1;
}
.booking-modal__close:hover { color: var(--black); }
.booking-modal__label {
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; display: block;
}
.booking-modal__title {
  font-family: var(--serif); font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--black); margin-bottom: 0.4rem; line-height: 1.15;
}
.booking-modal__sub {
  font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.booking-modal__field { margin-bottom: 1rem; }
.booking-modal__field input {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid #d6cfc5;
  background: #fff; font-family: var(--sans); font-size: 0.85rem;
  color: var(--black); border-radius: 2px; box-sizing: border-box;
  transition: border-color 0.2s;
}
.booking-modal__field input:focus { outline: none; border-color: var(--gold); }
.booking-modal__field input::placeholder { color: #aaa; }
.booking-modal__submit {
  width: 100%; margin-top: 0.5rem; padding: 0.9rem;
  background: var(--gold); color: #fff; border: none; border-radius: 2px;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s;
}
.booking-modal__submit:hover { background: #8f6a3d; }
.booking-modal__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.booking-modal__note {
  text-align: center; font-size: 0.68rem; color: var(--text-muted);
  margin-top: 0.85rem;
}
.booking-modal--full .booking-modal__box {
  width: min(620px, 100%); max-height: 90vh; overflow-y: auto; padding-bottom: 2.5rem;
}
.booking-modal--full .booking-modal__box .form-group { margin-bottom: 1.25rem; }
.booking-modal--full .booking-modal__box .form-group label {
  display: block; font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.booking-modal--full .booking-modal__box .form-group input,
.booking-modal--full .booking-modal__box .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid #d6cfc5;
  background: #fff; font-family: var(--sans); font-size: 0.85rem;
  color: var(--black); border-radius: 2px; box-sizing: border-box;
  transition: border-color 0.2s;
}
.booking-modal--full .booking-modal__box .form-group input:focus,
.booking-modal--full .booking-modal__box .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.booking-modal--full .booking-modal__box textarea { resize: vertical; min-height: 80px; }
.booking-modal--full .booking-modal__pdpa {
  font-size: 0.68rem; color: var(--text-muted); line-height: 1.6; margin: 0.5rem 0 1rem;
}
.vm-progress { display: flex; gap: 0.4rem; margin-bottom: 1.5rem; }
.vm-dot { height: 3px; flex: 1; background: #ddd; border-radius: 2px; transition: background 0.3s; }
.vm-dot--active { background: var(--gold); }
.vm-step { display: none; }
.vm-step.vm-step--active { display: block; animation: lb-in 0.2s var(--ease) both; }
.vm-step-label { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.vm-actions { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.vm-back {
  padding: 0.9rem 1.25rem; background: transparent; border: 1px solid #d6cfc5;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer; border-radius: 2px; color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s; white-space: nowrap;
}
.vm-back:hover { border-color: var(--gold); color: var(--gold); }

.footer__credit-link { color: rgba(245,239,230,0.3); text-decoration: none; transition: color 0.2s; }
.footer__credit-link:hover { color: var(--gold); }

/* ─── PDPA Consent Checkbox ────────────────────────────────── */
.pdpa-check { display: flex; align-items: flex-start; gap: 0; }
.pdpa-label { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; }
.pdpa-label input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; accent-color: var(--gold); width: 14px; height: 14px; cursor: pointer; }
.pdpa-label span { font-family: var(--sans); font-size: 0.72rem; color: var(--text-muted); line-height: 1.6; }
.pdpa-label span a { color: var(--gold); text-decoration: none; }
.pdpa-label span a:hover { text-decoration: underline; }
