/* ============================================================
   Nanu Properties Consultancy — site styles
   Brand: deep indigo-navy + vivid orange, warm cream canvas.
   Aesthetic: modern editorial real-estate, generous, artistic.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --navy: #2a2a7a;
  --navy-700: #232268;
  --navy-900: #16153f;
  --orange: #f2871e;
  --orange-600: #e0750c;
  --orange-soft: #fdecd6;
  --cream: #f8f3ea;
  --cream-2: #f1e9da;
  --ink: #1b1b2a;
  --muted: #6b6b7e;
  --line: #e6ddcd;
  --white: #ffffff;

  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(22, 21, 63, 0.06);
  --shadow-md: 0 16px 40px rgba(22, 21, 63, 0.10);
  --shadow-lg: 0 30px 70px rgba(22, 21, 63, 0.16);
  --shadow-orange: 0 14px 30px rgba(242, 135, 30, 0.35);

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.04; letter-spacing: -0.02em; font-weight: 700; color: var(--ink); }
p { margin: 0; }
::selection { background: var(--orange); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-600);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }
.text-muted { color: var(--muted); }

/* ---------- Logo (crops the white disc out of the purple square) ---------- */
.logo-mark {
  width: 48px; height: 48px; flex: none;
  border-radius: 50%;
  background: #fff center / 123% no-repeat;
  background-image: url('assets/nanu-logo.jpg');
  box-shadow: 0 2px 10px rgba(22,21,63,0.18);
}
.logo-lockup { display: flex; align-items: center; gap: 12px; }
.logo-lockup .name { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; line-height: 1; }
.logo-lockup .name b { color: var(--orange); font-weight: 800; }
.logo-lockup .name span { display: block; font-family: var(--font-sans); font-weight: 600; font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 700; font-size: 15.5px;
  padding: 14px 26px; border-radius: var(--radius-pill); border: none; cursor: pointer;
  transition: transform 0.18s var(--ease-spring), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(242,135,30,0.45); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 12px 26px rgba(42,42,122,0.3); }
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-700); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 17px 32px; font-size: 17px; }

.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 15px;
  border-radius: var(--radius-pill); font-size: 13.5px; font-weight: 600;
  background: #fff; border: 1.5px solid var(--line); color: var(--ink); cursor: pointer;
  transition: all 0.18s var(--ease);
}
.chip:hover { border-color: var(--navy); }
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.chip svg { width: 15px; height: 15px; }

.tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px;
  border-radius: var(--radius-pill); font-size: 12.5px; font-weight: 700; letter-spacing: 0.01em;
}
.tag-orange { background: var(--orange-soft); color: var(--orange-600); }
.tag-navy { background: #e7e7f5; color: var(--navy); }
.tag-green { background: #def0e4; color: #1f7a44; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,243,234,0.82); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230,221,205,0.7);
}
.site-header .wrap { display: flex; align-items: center; gap: 28px; height: 78px; }
.nav { display: flex; gap: 6px; margin-left: 14px; }
.nav a {
  padding: 9px 16px; border-radius: var(--radius-pill); font-weight: 600; font-size: 15px;
  color: var(--muted); transition: all 0.18s var(--ease);
}
.nav a:hover { color: var(--ink); background: rgba(255,255,255,0.7); }
.nav a.active { color: var(--navy); background: #fff; box-shadow: var(--shadow-sm); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--navy); }
.header-phone svg { width: 17px; height: 17px; color: var(--orange); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.menu-toggle svg { width: 26px; height: 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.72); margin-top: 80px; }
.site-footer .wrap { padding: 64px 28px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; }
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-sans); font-weight: 700; opacity: 0.55; }
.site-footer a { display: block; padding: 6px 0; color: rgba(255,255,255,0.72); font-size: 15px; transition: color 0.18s; }
.site-footer a:hover { color: var(--orange); }
.footer-logo .name { color: #fff; }
.footer-logo .name span { color: rgba(255,255,255,0.5); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 48px; padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; padding: 0; }
.footer-social a:hover { background: var(--orange); }
.footer-social svg { width: 18px; height: 18px; }

/* ---------- Sections / reveal ---------- */
.section { padding: 92px 0; }
.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(34px, 5vw, 54px); margin: 16px 0 16px; }
.section-head p { font-size: 18px; color: var(--muted); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Property card ---------- */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.prop-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer; display: flex; flex-direction: column;
}
.prop-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.prop-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.prop-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.prop-card:hover .prop-media img { transform: scale(1.07); }
.prop-media .tags { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; }
.prop-media .fav { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.18s; }
.prop-media .fav:hover { background: #fff; transform: scale(1.1); }
.prop-media .fav svg { width: 18px; height: 18px; color: var(--navy); }
.prop-media .fav.on svg { color: var(--orange); fill: var(--orange); }
.prop-price-tag { position: absolute; bottom: 14px; left: 14px; background: var(--navy); color: #fff; padding: 8px 15px; border-radius: var(--radius-pill); font-weight: 800; font-family: var(--font-display); font-size: 16px; }
.prop-price-tag span { font-weight: 500; font-size: 12px; opacity: 0.7; font-family: var(--font-sans); }
.prop-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.prop-body h3 { font-size: 20px; }
.prop-loc { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; }
.prop-loc svg { width: 15px; height: 15px; color: var(--orange); }
.prop-specs { display: flex; gap: 16px; padding-top: 14px; margin-top: auto; border-top: 1px solid var(--line); }
.prop-specs .spec { display: flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.prop-specs .spec svg { width: 17px; height: 17px; color: var(--navy); opacity: 0.7; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(44px, 6.4vw, 82px); letter-spacing: -0.035em; }
.hero h1 .accent { color: var(--orange); position: relative; }
.hero .lead { font-size: 20px; color: var(--muted); margin: 26px 0 32px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 44px; }
.hero-stats .n { font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--navy); letter-spacing: -0.02em; }
.hero-stats .l { font-size: 13.5px; color: var(--muted); font-weight: 500; }
.hero-visual { position: relative; }
.hero-visual .frame { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.4; }
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(8px); z-index: -1; }
.hero-float {
  position: absolute; background: #fff; border-radius: 18px; box-shadow: var(--shadow-md);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.hero-float .ico { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex: none; }
.hero-float .ico svg { width: 22px; height: 22px; }
.hero-float .t { font-weight: 800; font-family: var(--font-display); font-size: 16px; line-height: 1.1; }
.hero-float .s { font-size: 12.5px; color: var(--muted); }
.float-a { top: 30px; left: -34px; }
.float-b { bottom: 40px; right: -28px; }

/* ---------- Search bar ---------- */
.search-bar {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 12px; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 8px; align-items: stretch;
  border: 1px solid var(--line);
}
.search-field { display: flex; flex-direction: column; gap: 2px; padding: 8px 16px; border-radius: 12px; transition: background 0.18s; cursor: pointer; }
.search-field:hover { background: var(--cream); }
.search-field label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.search-field select, .search-field input { border: none; background: none; font-family: var(--font-sans); font-size: 15.5px; font-weight: 600; color: var(--ink); outline: none; width: 100%; cursor: pointer; padding: 0; }
.search-divider { width: 1px; background: var(--line); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-card .ico { width: 60px; height: 60px; border-radius: 18px; background: var(--orange-soft); color: var(--orange-600); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: all 0.3s var(--ease-spring); }
.svc-card:hover .ico { background: var(--navy); color: #fff; transform: rotate(-6deg) scale(1.05); }
.svc-card .ico svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 22px; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 15.5px; }

/* ---------- Areas ---------- */
.area-band { background: var(--navy); color: #fff; border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.area-band .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 56px; align-items: center; }
.area-band h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.area-pill { padding: 9px 18px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16); font-weight: 600; font-size: 14.5px; transition: all 0.2s; cursor: default; }
.area-pill:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.area-map { position: relative; }
.area-map .map-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(4px); }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box { text-align: center; }
.stat-box .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 5vw, 60px); letter-spacing: -0.03em; background: linear-gradient(120deg, var(--navy), var(--orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-box .l { color: var(--muted); font-weight: 600; margin-top: 4px; }

/* ---------- Why / features list ---------- */
.feat-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.feat-row:last-child { border-bottom: none; }
.feat-row .ico { width: 48px; height: 48px; border-radius: 14px; flex: none; display: flex; align-items: center; justify-content: center; background: var(--orange-soft); color: var(--orange-600); }
.feat-row .ico svg { width: 23px; height: 23px; }
.feat-row h3 { font-size: 19px; margin-bottom: 5px; }
.feat-row p { color: var(--muted); font-size: 15px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px;
  display: flex; flex-direction: column; gap: 18px;
}
.testi .stars { display: flex; gap: 3px; color: var(--orange); }
.testi .stars svg { width: 18px; height: 18px; fill: var(--orange); }
.testi p { font-size: 16px; color: var(--ink); line-height: 1.6; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi .av { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); }
.testi .who .nm { font-weight: 700; font-size: 15px; }
.testi .who .rl { font-size: 13px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); background: linear-gradient(130deg, var(--navy) 0%, var(--navy-700) 60%, #3a3a96 100%); color: #fff; padding: 64px 56px; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 16px; }
.cta-band p { font-size: 19px; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(242,135,30,0.55), transparent 70%); filter: blur(30px); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 700; font-size: 14px; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 16px; color: var(--ink);
  padding: 14px 16px; border-radius: 14px; border: 1.5px solid var(--line); background: #fff;
  outline: none; transition: border-color 0.18s, box-shadow 0.18s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(42,42,122,0.12); }
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 56px 0 40px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 68px); letter-spacing: -0.035em; }
.page-hero p { font-size: 19px; color: var(--muted); margin-top: 16px; max-width: 560px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ---------- Filter bar (listings) ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 14px; }
.results-row { display: flex; justify-content: space-between; align-items: center; margin: 26px 0 24px; flex-wrap: wrap; gap: 12px; }
.results-row .count { font-weight: 600; color: var(--muted); }
.results-row .count b { color: var(--ink); font-family: var(--font-display); }
.sort-select { padding: 10px 16px; border-radius: var(--radius-pill); border: 1.5px solid var(--line); background: #fff; font-family: var(--font-sans); font-weight: 600; font-size: 14.5px; cursor: pointer; outline: none; }

/* ---------- Detail page ---------- */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; border-radius: var(--radius-lg); overflow: hidden; }
.gallery .g-main { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: filter 0.2s, transform 0.5s var(--ease); }
.gallery .g-item { position: relative; overflow: hidden; }
.gallery .g-item:hover img { filter: brightness(1.05); transform: scale(1.05); }
.gallery .more { position: absolute; inset: 0; background: rgba(22,21,63,0.55); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.detail-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: start; margin-top: 36px; }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 26px 0; }
.spec-box { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; text-align: center; }
.spec-box svg { width: 24px; height: 24px; color: var(--navy); margin: 0 auto 8px; }
.spec-box .v { font-weight: 800; font-family: var(--font-display); font-size: 19px; }
.spec-box .k { font-size: 12.5px; color: var(--muted); }
.amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
.amenities .am { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.amenities .am svg { width: 18px; height: 18px; color: #1f7a44; flex: none; }
.enquiry-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); position: sticky; top: 100px; }
.agent-row { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.agent-row .av { width: 56px; height: 56px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-display); font-size: 22px; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(15,14,40,0.92); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 24px; right: 28px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.14); border: none; color: #fff; font-size: 24px; cursor: pointer; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.14); border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox .lb-nav svg { width: 24px; height: 24px; }
.lightbox .lb-prev { left: 24px; } .lightbox .lb-next { right: 24px; }

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer { position: fixed; inset: 0; z-index: 200; display: none; }
.mobile-drawer.open { display: block; }
.mobile-drawer .scrim { position: absolute; inset: 0; background: rgba(22,21,63,0.4); backdrop-filter: blur(3px); }
.mobile-drawer .panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(82vw, 340px); background: var(--cream); padding: 24px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 6px; }
.mobile-drawer .panel a { padding: 14px 16px; border-radius: 14px; font-weight: 600; font-size: 17px; }
.mobile-drawer .panel a:hover, .mobile-drawer .panel a.active { background: #fff; color: var(--navy); }
.mobile-drawer .panel .close { align-self: flex-end; background: none; border: none; cursor: pointer; padding: 8px; margin-bottom: 8px; }
.mobile-drawer .panel .close svg { width: 26px; height: 26px; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--navy-900); color: #fff; padding: 15px 24px; border-radius: var(--radius-pill); box-shadow: var(--shadow-lg); font-weight: 600; z-index: 1100; transition: transform 0.4s var(--ease-spring); display: flex; align-items: center; gap: 10px; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 20px; height: 20px; color: var(--orange); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav, .header-phone { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 460px; }
  .float-a { left: 0; } .float-b { right: 0; }
  .prop-grid, .svc-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .area-band .inner { grid-template-columns: 1fr; padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .detail-grid { grid-template-columns: 1fr; }
  .enquiry-card { position: static; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .g-main { grid-row: auto; grid-column: 1 / 3; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .search-bar { grid-template-columns: 1fr 1fr; }
  .search-divider { display: none; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .prop-grid, .svc-grid, .testi-grid, .stats-band { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band, .area-band .inner { padding: 40px 26px; }
  .search-bar { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .g-main { grid-column: auto; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .results-row { align-items: flex-start; }
}
