/* ============================================================
   Easter Stays — Shared Design System
   ============================================================ */

/* ── Tokens ── */
:root {
  --obsidian:    #07100D;
  --charcoal:    #0C1714;
  --surface:     #111B18;
  --surface-2:   #162220;
  --teal:        #1B5E52;
  --gold:        #C9A552;
  --gold-light:  #E2C272;
  --gold-dim:    rgba(201,165,82,0.14);
  --gold-border: rgba(201,165,82,0.22);
  --ice:         #7DDDE8;
  --ice-dim:     rgba(125,221,232,0.09);
  --white:       #F4F2ED;
  --w80:         rgba(244,242,237,0.80);
  --w60:         rgba(244,242,237,0.58);
  --w30:         rgba(244,242,237,0.28);
  --w10:         rgba(244,242,237,0.07);
  --glass:       rgba(255,255,255,0.04);
  --glass-b:     rgba(255,255,255,0.07);
  --success:     #3DBA7E;
  --error:       #E05C5C;
  --ease-out:    cubic-bezier(0.23,1,0.32,1);
  --ease-io:     cubic-bezier(0.77,0,0.175,1);
  --r-sm: 10px; --r-md: 18px; --r-lg: 26px; --r-xl: 44px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--obsidian);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* ── Navbar ── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 200;
  padding: 26px 52px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 280ms var(--ease-out), background 300ms ease, backdrop-filter 300ms ease;
}
.nav.stuck {
  padding: 15px 52px;
  background: rgba(7,16,13,0.82);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--glass-b);
}
.logo { display: flex; align-items: center; gap: 13px; }
.logo-egg { width: 28px; height: 34px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 16px; font-weight: 600; color: var(--gold); letter-spacing: -0.2px; }
.logo-sub  { font-size: 9px; font-weight: 300; color: var(--w30); letter-spacing: 1.2px; text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13.5px; color: var(--w60); transition: color 160ms ease; }
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--gold); }
.nav-btn {
  font-size: 13px; font-weight: 600; color: var(--obsidian);
  background: var(--gold); padding: 10px 22px; border-radius: 50px;
  transition: background 160ms ease, transform 130ms ease, box-shadow 180ms ease;
}
.nav-btn:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 10px 28px var(--gold-dim); }
.nav-btn:active { transform: scale(0.97); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--w60); border-radius: 2px; transition: all 220ms ease; }

/* ── Footer ── */
footer {
  background: var(--charcoal);
  border-top: 1px solid var(--glass-b);
  padding: 80px 52px 44px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 52px; max-width: 1300px; margin: 0 auto 60px;
}
.footer-tagline { font-size: 24px; font-weight: 700; letter-spacing: -0.6px; line-height: 1.2; margin: 18px 0 12px; }
.footer-tagline em { font-style: normal; color: var(--gold); }
.footer-desc { font-size: 13px; font-weight: 300; color: var(--w30); line-height: 1.74; max-width: 260px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--glass-b);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 180ms ease, background 180ms ease;
}
.footer-social:hover { border-color: var(--gold-border); background: var(--gold-dim); }
.footer-social svg { width: 16px; height: 16px; stroke: var(--w60); fill: none; }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--w30); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13.5px; color: var(--w60); transition: color 160ms ease; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 26px; border-top: 1px solid var(--glass-b); gap: 24px;
}
.footer-copy { font-size: 12px; color: var(--w30); }
.footer-blinks { display: flex; gap: 24px; }
.footer-blinks a { font-size: 12px; color: var(--w30); transition: color 160ms ease; }
.footer-blinks a:hover { color: var(--w60); }

/* ── WhatsApp pill ── */
.wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 190;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface-2); border: 1px solid var(--glass-b);
  border-radius: 50px; padding: 12px 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.42);
  transition: border-color 220ms ease, background 220ms ease, transform 190ms var(--ease-out), box-shadow 200ms ease;
}
.wa:hover { border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.07); transform: translateY(-2px); box-shadow: 0 18px 52px rgba(0,0,0,0.5); }
.wa:active { transform: scale(0.97); }
.wa-icon { width: 18px; height: 18px; color: #25D366; flex-shrink: 0; }
.wa-text { font-size: 13px; font-weight: 500; }
.wa-dot { width: 7px; height: 7px; border-radius: 50%; background: #25D366; animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }

/* ── Layout ── */
.container { max-width: 1300px; margin: 0 auto; }
section { padding: 110px 52px; }
.gold-line { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-border), transparent); }

/* ── Typography helpers ── */
.s-label { font-size: 10.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 13px; }
.s-title { font-size: clamp(34px,3.8vw,56px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.06; margin-bottom: 16px; }
.s-sub   { font-size: 16px; font-weight: 300; color: var(--w60); line-height: 1.76; max-width: 460px; }

/* ── Buttons ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: var(--obsidian);
  background: var(--gold); padding: 13px 26px; border-radius: 50px;
  transition: background 160ms ease, transform 130ms ease, box-shadow 180ms ease;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 12px 32px var(--gold-dim); }
.btn-gold:active { transform: scale(0.97); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--white);
  background: transparent; padding: 12px 24px; border-radius: 50px;
  border: 1px solid var(--glass-b);
  transition: border-color 160ms ease, background 160ms ease, transform 130ms ease;
}
.btn-outline:hover { border-color: var(--gold-border); background: var(--gold-dim); transform: translateY(-1px); }
.btn-outline:active { transform: scale(0.97); }
.btn-ghost {
  font-size: 13px; font-weight: 500; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 160ms ease;
}
.btn-ghost:hover { gap: 10px; }

/* ── Form elements ── */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--w30); }
.form-input,
.form-select,
.form-textarea {
  background: var(--surface-2); border: 1px solid var(--glass-b);
  border-radius: var(--r-md); padding: 14px 18px;
  font-size: 14px; color: var(--white);
  outline: none; width: 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--w30); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(244,242,237,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; cursor: pointer; }
.form-select option { background: var(--charcoal); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: 11.5px; color: var(--error); margin-top: 4px; display: none; }
.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea { border-color: rgba(224,92,92,0.5); }
.form-group.has-error .form-error { display: block; }

/* ── Property card (shared: index + properties pages) ── */
.pcard {
  background: var(--surface); border: 1px solid var(--glass-b);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 260ms ease;
  cursor: pointer;
}
.pcard:hover {
  transform: translateY(-7px);
  box-shadow: 0 36px 72px rgba(0,0,0,0.55), 0 0 0 1px var(--gold-border), 0 0 70px -24px var(--gold-dim);
  border-color: var(--gold-border);
}
.pcard-img { position: relative; height: 230px; overflow: hidden; }
.pcard-img-bg { position: absolute; inset: 0; transition: transform 580ms var(--ease-out); }
.pcard:hover .pcard-img-bg { transform: scale(1.06); }
.pcard-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(255,255,255,0.018) 0,rgba(255,255,255,0.018) 1px,transparent 1px,transparent 26px); }
.pcard-glow { position: absolute; width: 220px; height: 220px; border-radius: 50%; filter: blur(64px); top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform 580ms var(--ease-out); }
.pcard:hover .pcard-glow { transform: translate(-50%,-50%) scale(1.3); }
.pcard-hood {
  position: absolute; top: 14px; left: 14px;
  background: rgba(7,16,13,0.78); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-b); border-radius: 50px;
  padding: 5px 13px; font-size: 10px; font-weight: 600; letter-spacing: 0.9px; text-transform: uppercase; color: var(--gold);
}
.pcard-save {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(7,16,13,0.78); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-b);
  display: flex; align-items: center; justify-content: center;
  transition: background 160ms ease, border-color 160ms ease;
}
.pcard-save:hover { background: rgba(201,165,82,0.14); border-color: var(--gold-border); }
.pcard-save svg { width: 15px; height: 15px; stroke: var(--white); fill: none; transition: stroke 160ms, fill 160ms; }
.pcard-save.saved svg { stroke: var(--gold); fill: var(--gold); }
.pcard-body { padding: 20px; }
.pcard-name { font-size: 17px; font-weight: 300; letter-spacing: -0.3px; margin-bottom: 8px; }
.pcard-rating { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--w60); margin-bottom: 10px; }
.pcard-rating .star { color: var(--gold); font-size: 13px; }
.pcard-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.pcard-meta-i { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--w60); }
.pcard-meta-i svg { width: 13px; height: 13px; stroke: currentColor; fill: none; }
.amenity-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.am { font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 50px; background: var(--w10); color: var(--w60); }
.pcard-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--glass-b);
}
.price { display: flex; flex-direction: column; gap: 2px; }
.price-amt { font-size: 20px; font-weight: 600; color: var(--gold); letter-spacing: -0.4px; }
.price-unit { font-size: 11px; color: var(--w30); }
.book-btn {
  font-size: 12.5px; font-weight: 700; color: var(--obsidian);
  background: var(--gold); padding: 9px 20px; border-radius: 50px;
  transition: background 160ms ease, transform 130ms ease, box-shadow 180ms ease;
}
.book-btn:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px var(--gold-dim); }
.book-btn:active { transform: scale(0.97); }

/* Gradient image stand-ins */
.g-marina   { background: linear-gradient(140deg,#0B2A3C 0%,#0D1E2E 60%,#071418 100%); }
.g-downtown { background: linear-gradient(140deg,#261508 0%,#3A2010 60%,#140806 100%); }
.g-bay      { background: linear-gradient(140deg,#071228 0%,#0B1C3C 60%,#040A18 100%); }
.g-jvc      { background: linear-gradient(140deg,#051405 0%,#0C220C 60%,#040C04 100%); }
.g-marina2  { background: linear-gradient(140deg,#0A1C30 0%,#142840 60%,#060E18 100%); }
.g-bay2     { background: linear-gradient(140deg,#100720 0%,#1E0F38 60%,#080412 100%); }

/* ── Price toggle ── */
.toggle { display: inline-flex; background: var(--glass); border: 1px solid var(--glass-b); border-radius: 50px; padding: 4px; }
.tb { font-size: 12.5px; font-weight: 500; padding: 7px 18px; border-radius: 50px; color: var(--w60); background: transparent; transition: color 160ms, background 160ms; }
.tb.on { color: var(--obsidian); background: var(--gold); }

/* ── Page header ── */
.page-header {
  padding: 160px 52px 80px;
  background: var(--charcoal);
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(244,242,237,0.025) 1px,transparent 1px),linear-gradient(90deg,rgba(244,242,237,0.025) 1px,transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black 30%,transparent 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(40px,5vw,68px); font-weight: 700; letter-spacing: -2px; line-height: 1.04; margin-bottom: 16px; }
.page-header p { font-size: 17px; font-weight: 300; color: var(--w60); max-width: 480px; line-height: 1.7; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--w30); padding: 16px 0;
}
.breadcrumb a { color: var(--w60); transition: color 160ms ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--w30); font-size: 11px; }
.breadcrumb .current { color: var(--w60); }

/* ── Booking calendar ── */
.cal-wrap {  }
.cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.cal-nav-title { font-size: 15px; font-weight: 600; }
.cal-nav-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--glass-b);
  display: flex; align-items: center; justify-content: center;
  transition: background 160ms ease, border-color 160ms ease;
}
.cal-nav-btn:hover { background: var(--gold-dim); border-color: var(--gold-border); }
.cal-nav-btn svg { width: 14px; height: 14px; stroke: var(--white); fill: none; }
.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cal-month-title { font-size: 13px; font-weight: 600; text-align: center; margin-bottom: 14px; color: var(--white); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 8px; }
.cal-wd { font-size: 10.5px; font-weight: 600; color: var(--w30); text-align: center; padding: 4px 0; letter-spacing: 0.5px; }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 400; border-radius: 50%;
  cursor: pointer; transition: background 140ms ease, color 140ms ease;
  position: relative; z-index: 1;
}
.cal-day:hover:not(.past):not(.blocked) { background: var(--gold-dim); color: var(--gold); }
.cal-day.today { border: 1px solid var(--gold-border); color: var(--gold); }
.cal-day.check-in, .cal-day.check-out { background: var(--gold); color: var(--obsidian); font-weight: 700; }
.cal-day.in-range { background: var(--gold-dim); border-radius: 0; color: var(--gold-light); }
.cal-day.check-in { border-radius: 50% 0 0 50%; }
.cal-day.check-out { border-radius: 0 50% 50% 0; }
.cal-day.check-in.check-out { border-radius: 50%; }
.cal-day.past { color: var(--w30); cursor: not-allowed; pointer-events: none; }
.cal-day.blocked { color: var(--w30); cursor: not-allowed; pointer-events: none; text-decoration: line-through; }
.cal-day.empty { pointer-events: none; }
.cal-legend { display: flex; align-items: center; gap: 20px; margin-top: 16px; }
.cal-legend-i { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--w60); }
.cal-legend-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ── Price summary card ── */
.price-summary {
  background: var(--surface-2); border: 1px solid var(--glass-b);
  border-radius: var(--r-lg); padding: 22px;
  margin-top: 16px;
}
.price-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: 14px; color: var(--w60); }
.price-summary-row:not(:last-child) { border-bottom: 1px solid var(--glass-b); }
.price-summary-row.total { color: var(--white); font-weight: 600; font-size: 16px; }
.price-summary-row.total .price-summary-val { color: var(--gold); }

/* ── Scroll reveal ── */
.r { opacity: 0; transform: translateY(24px); transition: opacity 560ms var(--ease-out), transform 560ms var(--ease-out); }
.r.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 70ms; }
.d2 { transition-delay: 140ms; }
.d3 { transition-delay: 210ms; }
.d4 { transition-delay: 280ms; }
.d5 { transition-delay: 350ms; }

/* ── Keyframes ── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.75)} }
@keyframes fade-up { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fade-in { from{opacity:0} to{opacity:1} }
@keyframes aurora { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(40px,-28px) scale(1.09)} 66%{transform:translate(-18px,16px) scale(.93)} }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes slide-in-right { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes slide-out-left { from{opacity:1;transform:translateX(0)} to{opacity:0;transform:translateX(-40px)} }

/* ── Toasts / notifications ── */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--surface-2); border: 1px solid var(--glass-b);
  border-radius: 50px; padding: 12px 22px;
  font-size: 13.5px; color: var(--white); white-space: nowrap;
  backdrop-filter: blur(20px);
  opacity: 0; transition: opacity 280ms ease, transform 280ms var(--ease-out);
  z-index: 300; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-color: rgba(61,186,126,0.35); }

/* ── Anchor scroll offset (fixed nav compensation) ── */
[id] { scroll-margin-top: 96px; }

/* ── Dark date/number inputs ── */
input[type="date"],
input[type="number"] { color-scheme: dark; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.65); cursor: pointer; opacity: 0.7; }
input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }

/* ── Focus-visible ring (accessibility) ── */
:focus-visible { outline: 2px solid var(--gold-border); outline-offset: 3px; border-radius: 4px; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--gold-border); outline-offset: 3px; }

/* ── Selection color ── */
::selection { background: var(--gold-dim); color: var(--gold); }

/* ── Smooth image loading ── */
img { transition: opacity 300ms ease; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .r { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ── Print ── */
@media print {
  .nav, footer, .wa, .toast { display: none !important; }
  body { background: white; color: black; }
}

/* ── Stat strip (replaces pills) ── */
.stat-strip { background: var(--charcoal); padding: 72px 52px; }
.stats-row { display: flex; align-items: center; justify-content: center; max-width: 960px; margin: 0 auto; }
.stat-block { flex: 1; text-align: center; padding: 0 28px; }
.stat-num { font-size: clamp(52px, 6.5vw, 80px); font-weight: 700; color: var(--gold); letter-spacing: -3px; line-height: 1; margin-bottom: 12px; }
.stat-lbl { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--w30); }
.stat-bar { width: 1px; height: 68px; background: linear-gradient(to bottom, transparent, var(--glass-b) 30%, var(--glass-b) 70%, transparent); flex-shrink: 0; }

/* ── Trust strip ── */
.trust-strip { background: var(--surface); border-top: 1px solid var(--glass-b); border-bottom: 1px solid var(--glass-b); padding: 22px 52px; }
.trust-row { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.trust-i { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; color: var(--w60); white-space: nowrap; }
.trust-i svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; flex-shrink: 0; }
.trust-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--glass-b); flex-shrink: 0; }

/* ── Filter bar (properties page) ── */
.filter-bar-wrap { background: var(--charcoal); border-bottom: 1px solid var(--glass-b); }
.filter-bar { max-width: 1300px; margin: 0 auto; padding: 14px 52px; display: flex; align-items: center; gap: 12px; }
.filter-bar-scroll { display: flex; align-items: center; gap: 8px; flex: 1; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.filter-bar-scroll::-webkit-scrollbar { display: none; }
.fq-pills { display: flex; gap: 7px; flex-shrink: 0; }
.fq-sep { width: 1px; height: 22px; background: var(--glass-b); flex-shrink: 0; margin: 0 6px; }
.fq-pill { font-size: 12.5px; font-weight: 500; padding: 7px 16px; border-radius: 50px; background: transparent; border: 1px solid var(--glass-b); color: var(--w60); white-space: nowrap; cursor: pointer; transition: all 160ms ease; }
.fq-pill:hover { border-color: var(--gold-border); color: var(--white); }
.fq-pill.on { background: var(--gold-dim); border-color: var(--gold-border); color: var(--gold); }
.filter-bar-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.filter-more-btn { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; padding: 8px 16px; border-radius: 50px; border: 1px solid var(--glass-b); background: transparent; color: var(--white); transition: all 160ms ease; white-space: nowrap; cursor: pointer; }
.filter-more-btn:hover { border-color: var(--gold-border); background: var(--gold-dim); }
.filter-more-btn.has-active { border-color: var(--gold-border); background: var(--gold-dim); color: var(--gold); }
.filter-more-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
.filter-count-badge { background: var(--gold); color: var(--obsidian); font-size: 10px; font-weight: 800; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.filter-sort-inline { background: transparent; border: 1px solid var(--glass-b); border-radius: 50px; padding: 8px 34px 8px 14px; font-size: 12.5px; font-weight: 500; color: var(--white); cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(244,242,237,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; font-family: inherit; transition: border-color 160ms ease; }
.filter-sort-inline:focus { border-color: var(--gold-border); outline: none; }
.filter-sort-inline option { background: var(--charcoal); }

/* Active filter chips */
.active-chips-wrap { background: var(--charcoal); padding: 0 0 12px; border-bottom: 1px solid var(--glass-b); }
.active-chips-inner { max-width: 1300px; margin: 0 auto; padding: 0 52px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.act-chip { display: flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 500; padding: 5px 10px 5px 13px; border-radius: 50px; background: var(--gold-dim); border: 1px solid var(--gold-border); color: var(--gold); }
.act-chip-x { display: flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; background: rgba(201,165,82,0.2); cursor: pointer; transition: background 160ms ease; }
.act-chip-x:hover { background: rgba(201,165,82,0.45); }
.act-chip-x svg { width: 8px; height: 8px; stroke: var(--gold); fill: none; }
.clear-all-link { font-size: 11.5px; color: var(--w30); cursor: pointer; transition: color 160ms ease; padding: 4px 8px; background: none; border: none; font-family: inherit; }
.clear-all-link:hover { color: var(--w60); }

/* Results area — full width, 3 col */
.results-area { max-width: 1300px; margin: 0 auto; padding: 36px 52px 100px; }
.results-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Filter modal / overlay */
.filter-overlay { position: fixed; inset: 0; z-index: 350; background: rgba(7,16,13,0.76); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity 260ms ease; }
.filter-overlay.open { opacity: 1; pointer-events: all; }
.filter-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-54%) scale(0.96); z-index: 360; background: var(--surface); border: 1px solid var(--glass-b); border-radius: var(--r-lg); padding: 32px; width: min(460px, 92vw); opacity: 0; pointer-events: none; transition: transform 300ms var(--ease-out), opacity 260ms ease; box-shadow: 0 32px 80px rgba(0,0,0,0.6); }
.filter-modal.open { transform: translate(-50%,-50%) scale(1); opacity: 1; pointer-events: all; }
.filter-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.filter-modal-head h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.4px; }
.filter-modal-x { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--glass-b); background: var(--glass); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 160ms ease; }
.filter-modal-x:hover { border-color: var(--gold-border); background: var(--gold-dim); }
.filter-modal-x svg { width: 13px; height: 13px; stroke: var(--white); fill: none; }
.filter-modal-sec { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--glass-b); }
.filter-modal-sec:last-of-type { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.filter-modal-sec-lbl { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--w30); margin-bottom: 16px; }
.filter-modal-apply { width: 100%; background: var(--gold); color: var(--obsidian); font-size: 14px; font-weight: 700; padding: 14px; border-radius: 50px; margin-top: 24px; transition: background 160ms ease, transform 130ms ease; cursor: pointer; }
.filter-modal-apply:hover { background: var(--gold-light); transform: translateY(-1px); }
.filter-modal-apply:active { transform: scale(0.97); }

/* Available dot on property cards */
.pcard-avail { position: absolute; bottom: 14px; left: 14px; display: flex; align-items: center; gap: 5px; background: rgba(7,16,13,0.82); backdrop-filter: blur(12px); border: 1px solid rgba(61,186,126,0.3); border-radius: 50px; padding: 4px 10px; }
.pcard-avail-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
.pcard-avail-txt { font-size: 10px; font-weight: 600; letter-spacing: 0.5px; color: var(--success); }

/* Scroll-to-top button */
.scroll-top-btn { position: fixed; bottom: 104px; right: 28px; z-index: 180; width: 42px; height: 42px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--glass-b); backdrop-filter: blur(20px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity 250ms ease, transform 250ms var(--ease-out), border-color 160ms ease, background 160ms ease; cursor: pointer; }
.scroll-top-btn.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top-btn:hover { border-color: var(--gold-border); background: var(--gold-dim); }
.scroll-top-btn svg { width: 16px; height: 16px; stroke: var(--white); fill: none; }

/* About page */
.about-story { max-width: 760px; margin: 0 auto; }
.about-story p { font-size: 17px; font-weight: 300; color: var(--w80); line-height: 1.85; margin-bottom: 28px; }
.about-timeline { display: flex; gap: 0; margin-top: 56px; border-top: 1px solid var(--glass-b); padding-top: 44px; }
.about-tl-item { flex: 1; padding-right: 36px; }
.about-tl-item:not(:last-child) { border-right: 1px solid var(--glass-b); margin-right: 36px; }
.about-tl-year { font-size: 30px; font-weight: 700; color: var(--gold); letter-spacing: -0.8px; margin-bottom: 8px; }
.about-tl-text { font-size: 13.5px; color: var(--w60); line-height: 1.65; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.value-card { background: var(--surface); border: 1px solid var(--glass-b); border-radius: var(--r-lg); padding: 36px 30px; transition: border-color 220ms ease, transform 260ms var(--ease-out), box-shadow 260ms ease; }
.value-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 50px -22px var(--gold-dim); }
.value-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.value-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; }
.value-title { font-size: 20px; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 12px; }
.value-desc { font-size: 14px; font-weight: 300; color: var(--w60); line-height: 1.78; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cal-months { grid-template-columns: 1fr; }
  .results-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-timeline { flex-direction: column; gap: 28px; }
  .about-tl-item { border-right: none !important; margin-right: 0 !important; padding-right: 0 !important; border-bottom: 1px solid var(--glass-b); padding-bottom: 28px; }
  .about-tl-item:last-child { border-bottom: none; padding-bottom: 0; }
}
@media (max-width: 768px) {
  section { padding: 80px 24px; }
  .nav { padding: 18px 24px; }
  .nav.stuck { padding: 13px 24px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  footer { padding: 60px 24px 36px; }
  .page-header { padding: 130px 24px 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-desc { max-width: 100%; }
  .stat-strip { padding: 56px 24px; }
  .stats-row { gap: 0; }
  .stat-block { padding: 0 16px; }
  .trust-strip { padding: 18px 24px; }
  .trust-row { gap: 18px; }
  .trust-sep { display: none; }
  .filter-bar { padding: 12px 20px; gap: 8px; }
  .results-area { padding: 24px 20px 80px; }
  .results-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .active-chips-inner { padding: 0 20px; }
  .values-grid { grid-template-columns: 1fr; gap: 14px; }
  .scroll-top-btn { bottom: 90px; right: 20px; }
}
@media (max-width: 500px) {
  .results-grid-3 { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 32px; }
  .stat-bar { width: 40px; height: 1px; }
}
