:root {
  --ink: #151515;
  --ink-2: #2a2926;
  --gold: #c9a45c;
  --paper: #f7f5f0;
  --white: #ffffff;
  --muted: #6b6b6b;
  --line: #e5e1d8;
  --shadow: 0 18px 50px rgba(21, 21, 21, .08);
  --radius: 8px;
  --container: min(100% - 40px, 1360px);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section { padding: 112px 0; }
.section-tight { padding: 82px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head p { max-width: 560px; margin: 0; color: var(--muted); }
.section-actions { display: flex; justify-content: center; margin-top: 34px; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.03; margin: 0; font-weight: 700; letter-spacing: 0; }
h1 { font-size: clamp(3rem, 7vw, 7.2rem); }
h2 { font-size: clamp(2.25rem, 4vw, 4.6rem); }
h3 { font-size: clamp(1.45rem, 2vw, 2rem); }
p { margin: 0 0 1rem; }
.muted { color: var(--muted); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  color: var(--white);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled, .site-header.solid {
  background: rgba(247, 245, 240, .96);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(21, 21, 21, .06);
  backdrop-filter: blur(18px);
  padding: 12px 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  display: block;
}
.brand-name {
  color: currentColor;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: capitalize;
  white-space: nowrap;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .18);
}
.site-header.scrolled .brand-name, .site-header.solid .brand-name {
  color: var(--ink);
  text-shadow: none;
}
.site-footer .brand-logo {
  width: 58px;
  height: 58px;
}
.site-footer .brand-name {
  color: var(--gold);
  font-size: 1.5rem;
  text-shadow: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem;
}
.brand small { display: block; font-size: .66rem; letter-spacing: .22em; margin-top: 5px; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .88rem; font-weight: 700; }
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transition: right .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid currentColor; background: transparent; color: inherit; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  padding: 13px 22px;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-outline { background: transparent; color: inherit; border-color: currentColor; }
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-review { background: #f7efe0; color: var(--ink); border-color: rgba(198, 154, 72, .5); }
.btn-review:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-whatsapp { background: #25d366; color: #082b17; border-color: #25d366; }
.btn-whatsapp:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.arrow { transition: transform .2s ease; }
.btn:hover .arrow, .card-link:hover .arrow { transform: translateX(4px); }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: end;
  position: relative;
  color: var(--white);
  background: linear-gradient(90deg, rgba(21,21,21,.74), rgba(21,21,21,.28)), var(--hero) center/cover;
  padding: 150px 0 42px;
  overflow: hidden;
}
.hero-slider { background: #151515; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, rgba(21,21,21,.74), rgba(21,21,21,.28)), var(--hero) center/cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease, transform 6s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-content { position: relative; z-index: 1; max-width: 920px; padding-bottom: 120px; }
.hero p { max-width: 720px; font-size: clamp(1rem, 1.6vw, 1.25rem); color: rgba(255,255,255,.84); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.scroll-note { position: absolute; z-index: 1; left: max(20px, calc((100% - 1360px) / 2)); bottom: 32px; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); }

.search-panel {
  width: min(100% - 40px, 1180px);
  margin: -70px auto 0;
  position: relative;
  z-index: 3;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 12px;
  border-radius: var(--radius);
}
.field label { display: block; color: var(--muted); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.field select, .field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfaf7;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border-radius: 4px;
}
.field textarea { min-height: 128px; resize: vertical; }

.counter-section { padding: 52px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) repeat(4, minmax(130px, 1fr));
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-intro {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px 24px 0;
}
.stats-intro h2 { font-size: clamp(1.9rem, 3vw, 3.25rem); }
.stats-intro p { margin-bottom: 0; max-width: 560px; }
.stat {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 22px;
  border-left: 1px solid var(--line);
}
.stat strong { display: block; font-family: var(--serif); font-size: clamp(2.3rem, 3vw, 3.35rem); line-height: .95; }
.stat span { color: var(--muted); font-size: .88rem; line-height: 1.35; margin-top: 8px; }

.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.tab {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 10px 15px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: .82rem;
}
.tab.active, .tab:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.type-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 250px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.type-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.type-card img { height: 100%; object-fit: cover; }
.type-card div { padding: 24px; display: flex; flex-direction: column; align-items: flex-start; }
.type-card span { color: var(--gold); font-family: var(--serif); font-size: 2rem; line-height: 1; margin-bottom: 18px; }
.type-card h3 { margin-bottom: 12px; }
.type-card p { color: var(--muted); margin-bottom: 22px; }
.type-card .card-link { margin-top: auto; }
.property-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: #ddd; }
.media img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.property-card:hover .media img, .visual-card:hover img { transform: scale(1.06); }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(21,21,21,.86);
  color: var(--white);
  border: 1px solid rgba(201,164,92,.5);
  padding: 7px 10px;
  font-size: .7rem;
  letter-spacing: .12em;
  font-weight: 900;
}
.card-body { padding: 22px; }
.meta { color: var(--muted); font-size: .92rem; }
.price { margin: 16px 0; font-weight: 900; }
.card-link { color: var(--ink); font-weight: 900; display: inline-flex; gap: 8px; align-items: center; }

.visual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.visual-card {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
}
.visual-card img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.visual-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(21,21,21,.78)); transition: background .2s ease; }
.visual-card:hover::after { background: linear-gradient(180deg, rgba(21,21,21,.14), rgba(21,21,21,.88)); }
.visual-card h3 { position: absolute; z-index: 1; left: 24px; right: 60px; bottom: 92px; transition: transform .2s ease; }
.visual-card p {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  line-height: 1.45;
}
.visual-card span { position: absolute; z-index: 1; right: 24px; bottom: 30px; opacity: 0; transition: opacity .2s ease, transform .2s ease; }
.visual-card:hover h3 { transform: translateY(-6px); }
.visual-card:hover span { opacity: 1; transform: translateX(4px); }
.visual-card:not(:has(p)) h3 { bottom: 26px; }
.visual-card:has(p) span { bottom: 98px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: center; }
.split-img { min-height: 680px; border-radius: var(--radius); overflow: hidden; }
.split-img img { height: 100%; object-fit: cover; }
.why-split { align-items: start; }
.why-img { min-height: 560px; }
.why-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0;
}
.why-copy h2 { max-width: 620px; }
.why-copy p { max-width: 640px; }
.founder-section { padding-top: 0; }
.founder-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.founder-photo {
  min-height: 620px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--line);
}
.founder-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder-message {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}
.founder-message blockquote {
  margin: 28px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.45rem);
  line-height: 1.25;
}
.founder-advantage { margin-top: 30px; }
.founder-advantage h3 {
  font-family: var(--sans);
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 16px;
}
.advantage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.advantage-list div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.advantage-list b { display: block; margin-bottom: 6px; }
.advantage-list p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
  margin-bottom: 0;
}
.founder-signature {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 28px;
}
.founder-signature strong { font-size: 1rem; }
.founder-signature span { color: var(--muted); font-weight: 700; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.feature { border-top: 1px solid var(--line); padding-top: 18px; }
.feature b { color: var(--gold); margin-right: 12px; font-family: var(--serif); font-size: 1.4rem; }

.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--line); background: var(--white); }
.dev-logo { min-height: 118px; display: grid; place-items: center; border-right: 1px solid var(--line); color: var(--muted); font-weight: 900; text-align: center; padding: 18px; }
.dev-logo:last-child { border-right: 0; }
.dark-band { background: var(--ink); color: var(--white); }
.dark-band p { color: rgba(255,255,255,.72); }
.dark-cta { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.process-grid, .location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { border-top: 1px solid var(--line); padding-top: 24px; }
.process-step b { color: var(--gold); font-family: var(--serif); font-size: 2.1rem; }
.mission-vision { background: var(--white); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mission-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: linear-gradient(145deg, #fbfaf7, #ffffff);
  box-shadow: var(--shadow);
}
.mission-card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: .85;
  margin-bottom: auto;
}
.mission-card h3 { margin-bottom: 14px; }
.mission-card p { color: var(--muted); margin-bottom: 0; max-width: 620px; }
.vision-card { background: linear-gradient(145deg, var(--ink), #2b2925); color: var(--white); }
.vision-card p { color: rgba(255,255,255,.72); }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.principle {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.principle b { display: block; font-size: 1rem; margin-bottom: 8px; }
.principle p { margin-bottom: 0; }

.testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.quote p { font-family: var(--serif); font-size: 1.28rem; line-height: 1.35; color: var(--ink); }
.quote small { color: var(--muted); font-weight: 800; }
.review-band { background: #f8f2e8; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review-cta { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.review-cta p { color: var(--muted); margin-bottom: 0; }
.review-cta .btn { justify-self: end; }

.location-card { min-height: 220px; }
.faq { max-width: 920px; margin: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}
.faq-answer { display: none; color: var(--muted); padding: 0 0 24px; }
.faq-item.open .faq-answer { display: block; }
.image-cta {
  color: var(--white);
  background: linear-gradient(90deg, rgba(21,21,21,.78), rgba(21,21,21,.26)), var(--cta) center/cover;
}
.image-cta .container { min-height: 520px; display: flex; flex-direction: column; justify-content: center; max-width: 820px; margin-left: max(20px, calc((100% - 1360px) / 2)); }

.site-footer { background: #101010; color: var(--white); padding: 72px 0 92px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 38px; }
.footer-grid p, .footer-grid a, .footer-bottom { color: rgba(255,255,255,.68); }
.footer-grid h3 { font-family: var(--sans); font-size: .86rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: 18px; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-grid p a { display: inline; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.68); }
.footer-bottom a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; margin: 0; color: var(--white); transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 46px; padding-top: 22px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .88rem; }

.page-hero {
  min-height: 520px;
  display: flex;
  align-items: end;
  color: var(--white);
  background: linear-gradient(90deg, rgba(21,21,21,.76), rgba(21,21,21,.3)), var(--hero) center/cover;
  padding: 150px 0 76px;
}
.page-hero h1 { margin-top: 12px; }
.page-hero p { max-width: 660px; margin-top: 24px; color: rgba(255,255,255,.82); }
.legal-content { max-width: 980px; }
.legal-updated {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--muted);
  font-weight: 800;
}
.legal-block {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.legal-block:first-of-type { border-top: 0; }
.legal-block h2 {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: 0;
  margin-bottom: 14px;
}
.legal-block p {
  color: var(--muted);
  max-width: 860px;
}
.legal-block a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}
.filters-layout { display: grid; grid-template-columns: 290px 1fr; gap: 30px; align-items: start; }
.filter-panel, .enquiry-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 96px;
}
.filter-panel .field { margin-bottom: 14px; }
.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; margin-bottom: 34px; }
.gallery img { height: 100%; min-height: 230px; object-fit: cover; border-radius: var(--radius); }
.detail-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 24px 0; }
.fact { background: var(--white); border: 1px solid var(--line); padding: 18px; border-radius: var(--radius); }
.content-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; margin-bottom: 18px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { border: 1px solid var(--line); padding: 9px 12px; border-radius: 999px; color: var(--muted); background: #fbfaf7; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.captcha-field { grid-column: 1 / -1; max-width: 320px; }
.required-marker { color: #9c3636; font-weight: 900; }
.field input:invalid, .field select:invalid, .field textarea:invalid { box-shadow: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #9c3636;
  background: #fffafa;
}
.field-error {
  display: block;
  min-height: 18px;
  margin-top: 7px;
  color: #9c3636;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.35;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.form-message { margin-top: 14px; font-weight: 800; color: #1d6f42; }
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-alert {
  margin: 18px 0 22px;
  padding: 13px 15px;
  border: 1px solid rgba(201, 164, 92, .36);
  background: rgba(201, 164, 92, .11);
  color: var(--ink);
  font-weight: 700;
  border-radius: 4px;
}
.form-alert.error {
  border-color: rgba(156, 54, 54, .28);
  background: rgba(156, 54, 54, .08);
}
.form-alert.success { color: #315b40; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(21, 21, 21, .24);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(21, 21, 21, .3);
}
.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}
.review-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 18px 0 15px;
  background: var(--ink);
  color: var(--gold);
  border: 1px solid rgba(198, 154, 72, .5);
  box-shadow: 0 14px 34px rgba(21, 21, 21, .24);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.review-float:hover {
  transform: translateY(-3px);
  background: #24221d;
  box-shadow: 0 18px 44px rgba(21, 21, 21, .3);
}
.review-float svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .nav-links {
    position: fixed;
    inset: 72px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    color: var(--ink);
    padding: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-actions .btn-outline, .nav-actions .btn-review { display: none; }
  .nav-actions .btn-whatsapp { min-height: 40px; padding: 10px 14px; font-size: .78rem; }
  .search-panel { grid-template-columns: repeat(2, 1fr); }
  .search-panel .btn { grid-column: 1 / -1; }
  .property-grid, .visual-grid, .testimonial-page-grid { grid-template-columns: repeat(2, 1fr); }
  .type-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-intro { grid-column: 1 / -1; min-height: auto; padding-right: 0; padding-bottom: 26px; }
  .stat { min-height: 135px; border-top: 1px solid var(--line); }
  .stat:nth-child(2n) { border-left: 0; }
  .split, .dark-cta, .review-cta, .filters-layout, .detail-grid, .contact-grid, .founder-grid { grid-template-columns: 1fr; }
  .review-cta .btn { justify-self: start; }
  .why-copy { padding: 0; }
  .founder-photo { min-height: 520px; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid, .location-grid, .detail-facts, .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card { min-height: 300px; }
  .testimonial-track { grid-template-columns: 1fr; }
  .filter-panel, .enquiry-panel { position: static; }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 28px, 1360px); }
  .section { padding: 76px 0; }
  .section-head { display: block; }
  .hero { min-height: 860px; padding-top: 130px; }
  .hero-content { padding-bottom: 150px; }
  .counter-section { padding: 34px 0; }
  .search-panel, .property-grid, .visual-grid, .logo-grid, .process-grid, .location-grid, .detail-facts, .form-grid, .gallery, .principles-grid, .testimonial-page-grid { grid-template-columns: 1fr; }
  .captcha-field { max-width: none; }
  .form-actions { align-items: stretch; }
  .form-actions .btn { width: 100%; justify-content: center; }
  .type-card { grid-template-columns: 1fr; }
  .type-card img { height: 240px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-intro { grid-column: 1 / -1; padding-bottom: 20px; }
  .stat { min-height: 104px; padding: 14px 12px; }
  .stat strong { font-size: clamp(2rem, 10vw, 2.7rem); }
  .visual-card { min-height: 280px; }
  .visual-card:has(p) { min-height: 330px; }
  .visual-card:has(p) h3 { bottom: 124px; }
  .visual-card:has(p) span { bottom: 130px; }
  .split-img { min-height: 380px; }
  .why-img { min-height: 360px; }
  .founder-photo { min-height: 420px; }
  .founder-message { padding: 34px 0; }
  .advantage-list { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-logo { width: 46px; height: 46px; }
  .brand-name { font-size: 1.02rem; }
  .site-footer .brand-logo { width: 52px; height: 52px; }
  .page-hero { min-height: 460px; padding-bottom: 88px; }
  .page-hero h1 { margin-top: 10px; }
  .page-hero p { margin-top: 20px; }
  .mission-card { min-height: 260px; padding: 26px; }
  .nav-actions .btn-whatsapp {
    width: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 0;
  }
  .nav-actions .btn-whatsapp::after {
    content: "WA";
    font-size: .76rem;
  }
  .whatsapp-float { width: 54px; height: 54px; left: 16px; bottom: 16px; }
  .review-float {
    min-height: 48px;
    right: 16px;
    bottom: 78px;
    padding: 0 14px;
    font-size: .7rem;
    letter-spacing: .06em;
  }
  .review-float svg { width: 16px; height: 16px; }
}
