/* ============================================================
   99 Real Estate — shared stylesheet
   Palette derived from brand logo: gold + charcoal on white
   Layout: clean, card-based ("Zoopla-clean"), premium accents
   ============================================================ */

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

:root {
  /* brand */
  --charcoal:   #16181d;
  --charcoal-2: #1e2128;
  --ink:        #23262e;
  --gold:       #c79a3b;
  --gold-light: #e7c566;
  --gold-deep:  #9a6e22;
  --gold-grad:  linear-gradient(135deg, #f0d98a 0%, #d7ad46 45%, #9a6e22 100%);

  /* surfaces */
  --bg:        #ffffff;
  --bg-soft:   #f7f5f0;
  --bg-warm:   #faf8f3;
  --line:      #e8e4da;
  --line-soft: #f0ede5;

  /* text */
  --text:  #22252c;
  --muted: #6c7076;
  --muted-2:#9a9ea6;

  --radius:    14px;
  --radius-sm: 10px;
  --shadow:    0 6px 24px rgba(24, 26, 32, 0.08);
  --shadow-lg: 0 18px 50px rgba(24, 26, 32, 0.16);
  --shadow-gold: 0 10px 30px rgba(154, 110, 34, 0.22);

  --maxw: 1200px;
  --nav-h: 76px;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- layout helpers ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-grad); }
.eyebrow.center-line { justify-content: center; }
.eyebrow.center-line::after { content: ""; width: 26px; height: 2px; background: var(--gold-grad); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 14px; }
.section-sub { color: var(--muted); max-width: 620px; font-size: 1.02rem; }
.center .section-sub { margin-left: auto; margin-right: auto; }

.gold-text {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-deep);
}

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  padding: 13px 26px; border-radius: 10px; border: 0; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-gold { background: var(--gold-grad); color: #2a1e06; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(154,110,34,.32); }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--charcoal-2); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-outline-gold { background: transparent; color: var(--gold-deep); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #2a1e06; }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(22,24,29, 0.0);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.nav.solid { background: rgba(22,24,29, 0.97); backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(255,255,255,.06); height: 68px; }
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__mark img, .brand__mark svg { width: 100%; height: 100%; }
.brand__text { line-height: 1.05; }
.brand__text .t1 { font-family: var(--font-head); font-weight: 800; font-size: 1.02rem; color: #fff; letter-spacing: .02em; }
.brand__text .t1 b { color: var(--gold-light); }
.brand__text .t2 { display: block; font-size: 0.58rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(231,197,102,.85); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.82); font-size: 0.9rem; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--gold-light); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { color: rgba(255,255,255,.9); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 8px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--gold-light); }
.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .25s; border-radius: 2px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 490; background: rgba(22,24,29,.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden; transition: opacity .3s; padding: 40px;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { color: #fff; font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; padding: 12px; }
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .btn { margin-top: 18px; font-size: 1rem; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; padding: calc(var(--nav-h) + 40px) 0 60px;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,16,20,.92) 0%, rgba(15,16,20,.72) 42%, rgba(15,16,20,.35) 100%);
}
.hero__inner { max-width: 720px; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light);
  border: 1px solid rgba(231,197,102,.3); padding: 7px 16px; border-radius: 40px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p.lead { font-size: 1.12rem; color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 30px; }

/* search bar */
.searchbar {
  background: rgba(255,255,255,.97); border-radius: 16px; padding: 14px;
  box-shadow: var(--shadow-lg); display: grid; gap: 10px;
  grid-template-columns: 1.4fr 1fr 1fr auto; align-items: end; max-width: 780px;
}
.searchbar .field { text-align: left; padding: 4px 6px; }
.searchbar label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.searchbar select, .searchbar input {
  width: 100%; border: 0; background: transparent; font-family: var(--font-body);
  font-size: .96rem; color: var(--ink); font-weight: 600; padding: 4px 0; cursor: pointer; outline: none;
}
.searchbar .field + .field { border-left: 1px solid var(--line); padding-left: 16px; }
.searchbar .btn { height: 52px; }
.hero__stats { display: flex; gap: 34px; margin-top: 34px; flex-wrap: wrap; }
.hero__stats .n { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--gold-light); }
.hero__stats .l { font-size: .82rem; color: rgba(255,255,255,.7); }

/* ============================================================
   LISTINGS / CARDS
   ============================================================ */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

/* property listing card */
.plot { display: block; }
.plot__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.plot__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.plot:hover .plot__media img { transform: scale(1.06); }
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gold-grad); color: #2a1e06; font-size: .72rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; padding: 6px 12px; border-radius: 6px;
}
.badge.dark { background: rgba(22,24,29,.9); color: var(--gold-light); }
.plot__price { position: absolute; bottom: 12px; left: 14px; z-index: 2; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.plot__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5), transparent 45%); }
.plot__body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.plot__title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.plot__loc { color: var(--muted); font-size: .9rem; display: flex; align-items: center; gap: 7px; margin-bottom: 16px; }
.plot__loc svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.plot__meta { display: flex; gap: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); margin-top: auto; }
.plot__meta .m { display: flex; align-items: center; gap: 7px; font-size: .86rem; color: var(--ink); font-weight: 600; }
.plot__meta .m svg { width: 17px; height: 17px; color: var(--gold-deep); }
.plot__cta { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.plot__cta .link { color: var(--gold-deep); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.plot:hover .plot__cta .link svg { transform: translateX(3px); }
.plot__cta .link svg { width: 16px; height: 16px; transition: transform .2s; }

/* coming-soon placeholder card */
.plot.soon { pointer-events: none; }
.plot.soon .plot__media { background: repeating-linear-gradient(135deg, #f2efe8, #f2efe8 14px, #eeeae1 14px, #eeeae1 28px); display: flex; align-items: center; justify-content: center; }
.plot.soon .plot__media span { color: var(--muted-2); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(199,154,59,.5); }
.svc__icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #2a2d35, #16181d); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.svc__icon svg { width: 26px; height: 26px; color: var(--gold-light); }
.svc h3 { font-size: 1.28rem; margin-bottom: 10px; }
.svc p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   STATS BAND
   ============================================================ */
.statband { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.statband::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(199,154,59,.16), transparent 45%); }
.statband .grid { position: relative; }
.stat { text-align: center; padding: 12px; }
.stat .n { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .l { color: rgba(255,255,255,.72); font-size: .9rem; margin-top: 4px; letter-spacing: .02em; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   ABOUT / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split__media .float {
  position: absolute; bottom: -22px; right: -22px; background: #fff; border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.split__media .float .n { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--gold-deep); }
.split__media .float .l { font-size: .82rem; color: var(--muted); }
.ticks { list-style: none; margin: 22px 0 30px; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.ticks svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; margin-top: 1px; }

/* ============================================================
   FORMS / ENQUIRY
   ============================================================ */
.enquiry { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.enquiry__aside { background: var(--charcoal); color: #fff; padding: 48px 44px; position: relative; overflow: hidden; }
.enquiry__aside::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 90%, rgba(199,154,59,.18), transparent 50%); }
.enquiry__aside > * { position: relative; }
.enquiry__aside h2 { color: #fff; font-size: 2rem; margin-bottom: 14px; }
.enquiry__aside p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.contact-list { list-style: none; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: center; }
.contact-list .ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(231,197,102,.12); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-list .ic svg { width: 19px; height: 19px; color: var(--gold-light); }
.contact-list .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); }
.contact-list .v { font-weight: 600; color: #fff; }
.enquiry__form { background: #fff; padding: 46px 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--bg-warm); transition: border-color .2s, background .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: .78rem; color: var(--muted-2); margin-top: 10px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--gold-deep); margin: 0 auto 14px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0f1116; color: rgba(255,255,255,.72); padding: 66px 0 26px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand__text .t1 { font-size: 1.1rem; }
.footer p.desc { margin-top: 18px; font-size: .92rem; max-width: 300px; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { font-size: .92rem; transition: color .2s; }
.footer ul a:hover { color: var(--gold-light); }
.footer .fcontact li { display: flex; gap: 10px; font-size: .92rem; margin-bottom: 12px; align-items: flex-start; }
.footer .fcontact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.socials a:hover { background: var(--gold); }
.socials svg { width: 17px; height: 17px; color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .82rem; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 10px; }
.footer__bottom a { color: rgba(255,255,255,.6); }

/* ============================================================
   PROPERTY DETAIL PAGE
   ============================================================ */
.subhead { background: var(--charcoal); color: #fff; padding: calc(var(--nav-h) + 34px) 0 30px; }
.crumbs { font-size: .84rem; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.crumbs a:hover { color: var(--gold-light); }
.subhead .row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.subhead h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); }
.subhead .loc { color: rgba(255,255,255,.7); display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; }
.subhead .loc svg { width: 17px; height: 17px; color: var(--gold-light); }
.subhead .price { text-align: right; }
.subhead .price .p { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--gold-light); }
.subhead .price .s { font-size: .82rem; color: rgba(255,255,255,.6); }

/* gallery */
.gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; margin-top: 26px; }
.gallery__main { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/2.05; cursor: zoom-in; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__side { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.gallery__side .cell { position: relative; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; }
.gallery__side .cell img { width: 100%; height: 100%; object-fit: cover; }
.gallery__more { position: absolute; inset: 0; background: rgba(15,16,20,.6); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; gap: 8px; }

/* two-column detail body */
.detail-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 46px; align-items: start; }

/* key facts */
.keyfacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.keyfacts .kf { background: #fff; padding: 22px 20px; display: flex; gap: 14px; align-items: center; }
.keyfacts .kf svg { width: 26px; height: 26px; color: var(--gold-deep); flex: none; }
.keyfacts .kf .v { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--ink); line-height: 1; }
.keyfacts .kf .l { font-size: .8rem; color: var(--muted); margin-top: 3px; }

.block { margin-bottom: 46px; }
.block > h2 { font-size: 1.7rem; margin-bottom: 16px; position: relative; padding-bottom: 12px; }
.block > h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 46px; height: 3px; background: var(--gold-grad); border-radius: 2px; }
.block p { color: #43474e; margin-bottom: 14px; }

/* unit types table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.units { width: 100%; min-width: 540px; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.units thead { background: var(--charcoal); color: #fff; }
.units th { text-align: left; padding: 15px 18px; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; }
.units td { padding: 15px 18px; border-top: 1px solid var(--line); font-size: .95rem; }
.units tbody tr:nth-child(even) { background: var(--bg-warm); }
.units tbody tr:hover { background: rgba(199,154,59,.08); }
.units .type-tag { font-family: var(--font-head); font-weight: 800; color: var(--gold-deep); }
.units .plan-link { color: var(--gold-deep); font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; }
.units .plan-link svg { width: 15px; height: 15px; }

/* plans grid */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; cursor: zoom-in; transition: box-shadow .2s, transform .2s; }
.plan-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.plan-card img { width: 100%; aspect-ratio: 1/1.15; object-fit: cover; object-position: top center; background: var(--bg-soft); }
.plan-card .cap { padding: 13px 16px; font-weight: 600; font-size: .9rem; display: flex; justify-content: space-between; align-items: center; }
.plan-card .cap svg { width: 16px; height: 16px; color: var(--gold-deep); }

/* amenities */
.amenities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.amenity { display: flex; gap: 13px; align-items: center; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; transition: border-color .2s, background .2s; }
.amenity:hover { border-color: rgba(199,154,59,.5); background: var(--bg-warm); }
.amenity svg { width: 24px; height: 24px; color: var(--gold-deep); flex: none; }
.amenity span { font-weight: 600; font-size: .93rem; }

/* sidebar */
.sidebar { position: sticky; top: calc(var(--nav-h) + 16px); display: grid; gap: 22px; }
.side-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.side-card__head { background: var(--charcoal); color: #fff; padding: 22px 24px; }
.side-card__head .p { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--gold-light); }
.side-card__head .s { font-size: .82rem; color: rgba(255,255,255,.65); }
.side-card__body { padding: 22px 24px; background: #fff; }
.side-card__body .form-group:last-of-type { margin-bottom: 18px; }
.dev-credit { padding: 20px 24px; background: var(--bg-warm); border: 1px solid var(--line); border-radius: var(--radius); }
.dev-credit .k { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.dev-credit .v { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 1.1rem; margin-top: 3px; }
.dev-credit .v small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* map */
.map-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 360px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 900; background: rgba(12,13,16,.95); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.1); border: 0; color: #fff; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox__close { top: 24px; right: 24px; width: 48px; height: 48px; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: #2a1e06; }
.lightbox__close svg, .lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; }
.lightbox__nav.prev { left: 24px; }
.lightbox__nav.next { right: 24px; }
.lightbox__cap { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: .9rem; letter-spacing: .04em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .enquiry { grid-template-columns: 1fr; }
  .split { gap: 40px; }
  .split__media .float { right: 16px; }
  .detail-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .plans, .amenities { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 62px 0; }
  .searchbar { grid-template-columns: 1fr; }
  .searchbar .field + .field { border-left: 0; padding-left: 6px; border-top: 1px solid var(--line); padding-top: 8px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .keyfacts { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .grid-3, .grid-4, .plans, .amenities { grid-template-columns: 1fr; }
  .gallery__side { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
  .enquiry__form, .enquiry__aside { padding: 34px 24px; }
}
