@import url("fonts.css");

/* ==========================================================================
   Jawar Tashoma Property — Design System
   Navy + gold, editorial commercial real estate
   ========================================================================== */

:root {
  --navy: #0c1a32;
  --navy-2: #132544;
  --navy-3: #1c3358;
  --navy-soft: #243b5c;
  --gold: #c4a052;
  --gold-light: #d4b56a;
  --gold-pale: #ead9a8;
  --gold-dark: #8f732c;
  --ivory: #f6f1e7;
  --ivory-2: #eee6d6;
  --ivory-3: #e4d9c4;
  --ink: #161616;
  --muted: #5a5854;
  --line: #e3dccb;
  --white: #ffffff;
  --danger: #9b2c2c;
  --success: #2f6b4f;
  --shadow: 0 18px 50px rgba(12, 26, 50, 0.12);
  --shadow-lg: 0 30px 80px rgba(12, 26, 50, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --header-h: 88px;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1240px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 400;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--navy); padding: 10px 16px; z-index: 9999;
}
.skip:focus { left: 12px; top: 12px; }

/* -------------------------------------------------------------------------- */
/* Typography                                                                  */
/* -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}
.eyebrow.dark { color: var(--gold-dark); }
.eyebrow.dark::before { background: var(--gold-dark); }

h1, h2, h3, h4, .serif { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.02em; line-height: 1.12; }

.display {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6.4vw, 84px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h2 { font-size: clamp(32px, 4.2vw, 52px); }
h3 { font-size: clamp(22px, 2.2vw, 30px); }
h4 { font-size: 20px; }

.lede { font-size: clamp(17px, 1.4vw, 19.5px); color: var(--muted); max-width: 58ch; }

.gold { color: var(--gold); }
.navy { color: var(--navy); }

/* -------------------------------------------------------------------------- */
/* Layout                                                                      */
/* -------------------------------------------------------------------------- */
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.wrap-wide { width: min(1360px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.rev > :first-child { order: 2; }

/* -------------------------------------------------------------------------- */
/* Buttons                                                                     */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 2px; border: 1px solid transparent;
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: 0.35s var(--ease); white-space: nowrap; line-height: 1;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: var(--ivory); }
.btn-navy:hover { background: var(--navy-3); }
.btn-ghost { background: transparent; color: var(--ivory); border-color: rgba(246,241,231,0.45); }
.btn-ghost:hover { background: var(--ivory); color: var(--navy); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--ivory); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn svg { width: 16px; height: 16px; }

/* -------------------------------------------------------------------------- */
/* Header                                                                      */
/* -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: 0.35s var(--ease);
}
.site-header.scrolled {
  height: 74px;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(12,26,50,0.06);
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  width: min(1360px, calc(100% - 40px)); margin: 0 auto;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 68px; width: auto; transition: height 0.3s var(--ease); }
.site-header.scrolled .logo img { height: 56px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px; font-size: 13.5px; font-weight: 450; letter-spacing: 0.04em;
  color: var(--navy); position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px;
  height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--gold-dark); }
.mobile-cta { display: none; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  position: relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 22px; height: 1.5px; background: var(--navy); position: absolute; left: 11px;
  transition: 0.3s var(--ease);
}
.menu-toggle span { top: 21px; }
.menu-toggle span::before { content: ""; top: -7px; }
.menu-toggle span::after { content: ""; top: 7px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end; color: var(--ivory); overflow: hidden;
  background: var(--navy);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease;
  background-size: cover; background-position: center;
  transform: scale(1.06); animation: none;
}
.hero-slide.active { opacity: 1; animation: ken 14s ease forwards; }
@keyframes ken {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,26,50,0.28) 0%, rgba(12,26,50,0.18) 35%, rgba(12,26,50,0.82) 100%),
    linear-gradient(90deg, rgba(12,26,50,0.55) 0%, rgba(12,26,50,0.15) 60%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; width: min(1240px, calc(100% - 48px));
  margin: 0 auto 88px;
}
.hero-content h1 { max-width: 14ch; color: var(--ivory); margin: 16px 0 18px; }
.hero-content .lede { color: rgba(246,241,231,0.82); max-width: 46ch; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 22px; margin-top: 36px;
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-pale);
}
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.hero-nav {
  position: absolute; right: 40px; bottom: 88px; z-index: 3;
  display: flex; flex-direction: column; gap: 10px;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--gold);
  background: transparent; cursor: pointer; padding: 0;
}
.hero-dot.active { background: var(--gold); }

.scroll-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 3; color: var(--gold-pale); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint i {
  width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); display: block;
}

/* -------------------------------------------------------------------------- */
/* Page hero (inner pages)                                                     */
/* -------------------------------------------------------------------------- */
.page-hero {
  position: relative; min-height: 52vh; display: flex; align-items: flex-end;
  color: var(--ivory); background: var(--navy) center/cover no-repeat;
  padding: calc(var(--header-h) + 60px) 0 64px;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,26,50,0.35), rgba(12,26,50,0.78));
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { margin: 10px 0 8px; max-width: 16ch; }
.crumb { font-size: 13px; color: rgba(246,241,231,0.7); }
.crumb a:hover { color: var(--gold); }

/* -------------------------------------------------------------------------- */
/* Trust / stats                                                               */
/* -------------------------------------------------------------------------- */
.trust {
  background: var(--navy); color: var(--ivory); padding: 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.trust-item {
  padding: 28px 22px; text-align: center; border-right: 1px solid rgba(196,160,82,0.18);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block; font-family: var(--font-serif); font-size: 28px; font-weight: 500;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.trust-item span { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,241,231,0.7); }

/* -------------------------------------------------------------------------- */
/* Cards                                                                       */
/* -------------------------------------------------------------------------- */
.amenity-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px;
}
.amenity {
  background: var(--white); padding: 32px 28px; border: 1px solid var(--line);
  transition: 0.4s var(--ease);
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-pale); }
.amenity .ico {
  width: 48px; height: 48px; border: 1px solid var(--gold);
  display: grid; place-items: center; margin-bottom: 20px; color: var(--navy);
}
.amenity .ico svg { width: 22px; height: 22px; }
.amenity h3 { margin-bottom: 8px; color: var(--navy); }
.amenity p { color: var(--muted); font-size: 15px; }

.property-card {
  display: grid; grid-template-columns: 1.15fr 1fr; background: var(--white);
  border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow);
}
.property-card .media { position: relative; min-height: 420px; overflow: hidden; }
.property-card .media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: 0.8s var(--ease); }
.property-card:hover .media img { transform: scale(1.05); }
.badge {
  position: absolute; top: 18px; left: 18px; z-index: 1;
  background: var(--gold); color: var(--navy); padding: 7px 12px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
}
.property-card .body { padding: 42px 40px; display: flex; flex-direction: column; }
.property-card .addr { color: var(--muted); font-size: 14.5px; margin: 6px 0 18px; }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin: 18px 0 28px; }
.spec { border-top: 1px solid var(--line); padding-top: 10px; }
.spec small { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.spec b { font-weight: 500; color: var(--navy); font-size: 15px; }
.card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }

/* -------------------------------------------------------------------------- */
/* Gallery                                                                     */
/* -------------------------------------------------------------------------- */
.bento {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 240px 240px;
  gap: 12px; margin-top: 40px;
}
.bento a {
  position: relative; overflow: hidden; display: block; background: var(--navy);
}
.bento a:first-child { grid-row: 1 / 3; }
.bento img { width: 100%; height: 100%; object-fit: cover; transition: 0.7s var(--ease); }
.bento a:hover img { transform: scale(1.06); opacity: 0.88; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.gallery-grid a { overflow: hidden; aspect-ratio: 4/3; display: block; background: var(--navy); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(12,26,50,0.94); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; object-fit: contain; box-shadow: var(--shadow-lg); }
.lightbox button {
  position: absolute; border: 0; background: transparent; color: var(--ivory); cursor: pointer;
  font-size: 32px; width: 48px; height: 48px;
}
.lightbox .lb-close { top: 18px; right: 22px; }
.lightbox .lb-prev { left: 16px; }
.lightbox .lb-next { right: 16px; }

/* -------------------------------------------------------------------------- */
/* Facility blocks                                                             */
/* -------------------------------------------------------------------------- */
.facility {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding: 72px 0; border-bottom: 1px solid var(--line);
}
.facility:last-child { border-bottom: 0; }
.facility.reverse { direction: rtl; }
.facility.reverse > * { direction: ltr; }
.facility img { width: 100%; height: 460px; object-fit: cover; }
.ticks { margin-top: 22px; display: grid; gap: 10px; }
.ticks li {
  display: flex; gap: 12px; align-items: flex-start; color: var(--navy); font-size: 15.5px;
}
.ticks li svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--gold-dark); margin-top: 3px; }

/* -------------------------------------------------------------------------- */
/* CTA banner                                                                  */
/* -------------------------------------------------------------------------- */
.cta-banner {
  position: relative; overflow: hidden; color: var(--ivory);
  background: var(--navy) center/cover no-repeat; padding: 90px 0;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0; background: rgba(12,26,50,0.78);
}
.cta-banner .wrap { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.cta-banner h2 { max-width: 14ch; }

/* -------------------------------------------------------------------------- */
/* Forms                                                                       */
/* -------------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
input, select, textarea {
  width: 100%; background: var(--white); border: 1px solid var(--line); border-radius: 2px;
  padding: 13px 14px; font-size: 15.5px; color: var(--navy); outline: none; transition: border 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 10px; }
.form-error {
  display: none; background: #f8ecec; border: 1px solid #e2b6b6; color: var(--danger);
  padding: 12px 14px; margin: 12px 0 0; font-size: 14.5px;
}
.form-error.show { display: block; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success {
  display: none; background: var(--white); border: 1px solid var(--gold-pale); padding: 36px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--navy); margin: 10px 0 8px; }

/* Booking wizard */
.wizard { background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.wizard-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line);
}
.wstep {
  padding: 18px 12px; text-align: center; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); background: var(--ivory); border-right: 1px solid var(--line);
}
.wstep:last-child { border-right: 0; }
.wstep.active { background: var(--navy); color: var(--gold); }
.wstep.done { background: var(--ivory-2); color: var(--navy); }
.wizard-body { padding: 36px 36px 40px; }
.wizard-pane { display: none; }
.wizard-pane.active { display: block; }
.wizard-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }

/* Calendar */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-head h3 { font-size: 26px; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 38px; height: 38px; border: 1px solid var(--line); background: var(--ivory); cursor: pointer; color: var(--navy);
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow { text-align: center; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 6px 0; }
.cal-day {
  aspect-ratio: 1; border: 1px solid var(--line); background: var(--white); cursor: pointer;
  font-size: 14px; color: var(--navy); transition: 0.2s;
}
.cal-day:hover:not(:disabled) { border-color: var(--gold); }
.cal-day.selected { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.cal-day:disabled { opacity: 0.28; cursor: not-allowed; background: var(--ivory); }
.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 8px; }
.slot {
  padding: 12px; border: 1px solid var(--line); background: var(--ivory); cursor: pointer;
  text-align: center; font-size: 14.5px; color: var(--navy);
}
.slot.selected { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.summary-box { background: var(--ivory); border: 1px solid var(--line); padding: 22px; margin-bottom: 22px; }
.summary-box dt { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.summary-box dd { margin: 0 0 12px; color: var(--navy); font-weight: 500; }

/* -------------------------------------------------------------------------- */
/* Contact                                                                     */
/* -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.info-list { display: grid; gap: 22px; margin-top: 28px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ico {
  width: 44px; height: 44px; border: 1px solid var(--gold); display: grid; place-items: center; flex-shrink: 0;
}
.info-item .ico svg { width: 18px; height: 18px; }
.info-item small { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.info-item p, .info-item a { color: var(--navy); font-weight: 500; }
.email-dir { display: grid; gap: 12px; margin-top: 8px; }
.email-dir a { color: var(--navy); font-weight: 500; }
.email-dir span { display: block; font-size: 13px; color: var(--muted); font-weight: 400; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.wa-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 140;
  width: 56px; height: 56px; border-radius: 50%;
  background: #1f8a4c; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(12, 26, 50, 0.28);
  transition: 0.3s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); background: #177a42; }
.wa-float svg { width: 26px; height: 26px; }
.map-wrap { min-height: 420px; border: 1px solid var(--line); overflow: hidden; background: var(--ivory-2); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.35) contrast(1.05); }

/* -------------------------------------------------------------------------- */
/* Footer                                                                      */
/* -------------------------------------------------------------------------- */
.site-footer { background: var(--navy); color: rgba(246,241,231,0.78); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px;
}
.footer-logo { background: var(--ivory); display: inline-flex; padding: 8px 12px; margin-bottom: 16px; }
.footer-logo img { height: 72px; width: auto; }
.site-footer h4 {
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.site-footer a { color: rgba(246,241,231,0.78); }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { display: grid; gap: 8px; }
.footer-bar {
  border-top: 1px solid rgba(196,160,82,0.2); padding: 18px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(246,241,231,0.55);
}

/* -------------------------------------------------------------------------- */
/* Reveal                                                                      */
/* -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Cookie / POPIA */
.privacy-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 150;
  background: var(--navy); color: var(--ivory); padding: 16px 20px;
  display: none; align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: var(--shadow-lg); max-width: 920px; margin: 0 auto;
}
.privacy-bar.show { display: flex; }
.privacy-bar p { font-size: 14px; }
.privacy-bar a { color: var(--gold); text-decoration: underline; }

/* -------------------------------------------------------------------------- */
/* Property detail extras                                                      */
/* -------------------------------------------------------------------------- */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); margin: 36px 0;
}
.stat-row div { background: var(--white); padding: 22px 18px; text-align: center; }
.stat-row strong { display: block; font-family: var(--font-serif); font-size: 28px; color: var(--navy); }
.stat-row span { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.about-visual { position: relative; }
.about-visual img { width: 100%; height: 560px; object-fit: cover; }
.about-visual .float-card {
  position: absolute; left: -28px; bottom: 32px; background: var(--navy); color: var(--ivory);
  padding: 22px 24px; max-width: 230px;
}
.about-visual .float-card strong { display: block; font-family: var(--font-serif); font-size: 36px; color: var(--gold); line-height: 1; }
.about-visual .float-card span { font-size: 13px; }

/* -------------------------------------------------------------------------- */
/* Responsive                                                                  */
/* -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .split, .property-card, .facility, .facility.reverse, .contact-grid, .cta-banner .wrap {
    grid-template-columns: 1fr; direction: ltr; display: flex; flex-direction: column;
  }
  .split.rev > :first-child { order: 0; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-bottom: 1px solid rgba(196,160,82,0.18); }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .bento a:first-child { grid-row: auto; grid-column: 1 / -1; height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .about-visual .float-card { left: 12px; }
  .nav, .header-cta .btn { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; position: fixed; inset: 74px 0 0 0;
    background: var(--ivory); padding: 24px; gap: 4px; z-index: 99;
    border-top: 1px solid var(--line);
  }
  .nav.open a { font-size: 22px; font-family: var(--font-serif); padding: 12px 8px; }
  .mobile-cta { display: none; }
  .nav.open .mobile-cta { display: inline-flex; margin-top: 16px; width: fit-content; }
  .hero-nav { right: 16px; bottom: 70px; }
  .hero-content { margin-bottom: 70px; }
  .form-grid, .slots, .wizard-steps { grid-template-columns: 1fr 1fr; }
  .wizard-body { padding: 22px 18px 28px; }
  .privacy-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .amenity-grid, .gallery-grid, .footer-grid, .trust-grid, .form-grid, .slots, .wizard-steps, .cal-grid {
    grid-template-columns: 1fr;
  }
  .cal-grid { grid-template-columns: repeat(7, 1fr); }
  .wizard-steps { grid-template-columns: 1fr 1fr; }
  .header-inner { width: calc(100% - 20px); }
  .logo img { height: 54px; }
  .property-card .media { min-height: 240px; }
  .property-card .body { padding: 24px 20px; }
  .facility img { height: 280px; }
  .about-visual img { height: 360px; }
  .section { padding: 72px 0; }
  .hero-meta { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
