:root {
  --navy: #0d1930;
  --navy-2: #142442;
  --navy-soft: #1a2c4d;
  --gold: #d8b06a;
  --gold-dark: #a87d3e;
  --taupe: #a5947d;
  --ivory: #f6f1e9;
  --paper: #fbfaf7;
  --white: #fff;
  --ink: #20232a;
  --muted: #70727a;
  --line: #ded7cc;
  --shadow: 0 24px 70px rgba(13, 25, 48, .12);
  --serif: "Gilda Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: min(1320px, calc(100vw - 9vw));
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
::selection { background: var(--gold); color: var(--navy); }
.container { width: var(--container); margin-inline: auto; }
.narrow { max-width: 880px; }
.sr-only { clip: rect(0 0 0 0); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }
.skip-link { position: fixed; z-index: 9999; left: 1rem; top: -4rem; background: var(--gold); color: var(--navy); padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-loader { position: fixed; inset: 0; z-index: 10000; display: grid; place-content: center; gap: 1rem; background: var(--navy); transition: opacity .6s ease, visibility .6s ease; }
.site-loader img { width: 74px; height: 68px; object-fit: contain; margin: auto; animation: loaderPulse 1.4s ease-in-out infinite; }
.site-loader span { width: 120px; height: 1px; background: rgba(255,255,255,.16); overflow: hidden; position: relative; }
.site-loader span:after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translateX(-100%); animation: loaderLine 1.2s ease infinite; }
body.is-loaded .site-loader { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes loaderPulse { 50% { transform: scale(.94); opacity: .65; } }
@keyframes loaderLine { to { transform: translateX(100%); } }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -.02em; }
h1 { font-size: clamp(3.4rem, 7vw, 7.4rem); }
h2 { font-size: clamp(2.5rem, 4.4vw, 5rem); }
h3 { font-size: clamp(1.45rem, 2vw, 2rem); }
.eyebrow { display: inline-flex; align-items: center; gap: .7rem; color: var(--gold-dark); font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow:before { content: ""; width: 32px; height: 1px; background: currentColor; }
.eyebrow-light { color: var(--gold); }
.lead-copy { font-family: var(--serif); color: #373a40; font-size: clamp(1.45rem, 2.4vw, 2.1rem); line-height: 1.5; }
.section { padding: clamp(5rem, 9vw, 9.5rem) 0; }
.section-soft { background: var(--ivory); }
.section-navy { background: var(--navy); color: var(--white); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3.5rem; }
.section-heading h2 { max-width: 820px; margin: .65rem 0 0; }
.section-heading > p { max-width: 460px; color: var(--muted); }
.text-link { display: inline-flex; gap: .55rem; align-items: center; border-bottom: 1px solid var(--gold-dark); padding-bottom: .25rem; color: var(--navy); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px,-3px); }
.text-link-light { color: var(--white); border-color: rgba(255,255,255,.4); }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 0; padding: .95rem 1.55rem; font-size: .75rem; font-weight: 600; letter-spacing: .13em; line-height: 1; text-transform: uppercase; transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--navy); }
.button-gold:hover { background: #e3c185; }
.button-navy { background: var(--navy); color: var(--white); }
.button-navy:hover { background: var(--navy-soft); }
.button-ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.button-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.button-small { min-height: 43px; padding: .75rem 1rem; font-size: .67rem; }
.button-full { width: 100%; }

.site-header { position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; min-height: var(--header-h); border-bottom: 1px solid var(--line); background: rgba(251,250,247,.96); backdrop-filter: blur(14px); transition: background .35s ease, min-height .35s ease, border-color .35s ease, transform .35s ease; }
.home-page .site-header:not(.is-scrolled) { background: linear-gradient(to bottom, rgba(8,17,34,.7), transparent); border-bottom-color: rgba(255,255,255,.18); }
.site-header.is-scrolled { min-height: 72px; box-shadow: 0 8px 28px rgba(13,25,48,.06); }
.site-header.is-hidden { transform: translateY(-100%); }
.nav-wrap { min-height: inherit; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 188px; height: auto; }
.home-page .site-header:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }
.primary-nav { display: flex; align-items: center; gap: clamp(1rem,2vw,2rem); }
.primary-nav > a:not(.button) { position: relative; color: #45484f; font-size: .75rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; }
.home-page .site-header:not(.is-scrolled) .primary-nav > a:not(.button) { color: rgba(255,255,255,.92); }
.primary-nav > a:not(.button):after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 1px; background: var(--gold); transition: right .25s ease; }
.primary-nav > a:hover:after, .primary-nav > a.is-active:after { right: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 12px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--navy); margin: 5px; transition: .3s ease; }
.home-page .site-header:not(.is-scrolled) .nav-toggle span { background: var(--white); }

.hero { position: relative; min-height: max(760px,100vh); display: flex; align-items: center; color: var(--white); overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 12s ease-out both; }
.hero-shade { background: linear-gradient(90deg, rgba(6,14,29,.88) 0%, rgba(6,14,29,.55) 42%, rgba(6,14,29,.08) 76%), linear-gradient(0deg, rgba(6,14,29,.55), transparent 44%); }
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero-content { position: relative; z-index: 1; padding-bottom: 7rem; }
.hero-content h1 { max-width: 850px; margin: .85rem 0 1.5rem; font-size: clamp(4.1rem,8.4vw,8.7rem); }
.hero-content p { max-width: 660px; color: rgba(255,255,255,.79); font-size: clamp(1rem,1.3vw,1.2rem); line-height: 1.8; }
.hero-actions { display: flex; gap: .9rem; margin-top: 2.3rem; }
.property-search { position: absolute; z-index: 2; left: 50%; bottom: 0; transform: translateX(-50%); width: var(--container); display: grid; grid-template-columns: 1fr 1fr 1fr .7fr; background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.property-search label { padding: 1rem 1.45rem; border-right: 1px solid var(--line); }
.property-search label span, .filters label span { display: block; margin-bottom: .15rem; color: var(--muted); font-size: .64rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.property-search select, .filters select { width: 100%; border: 0; background: transparent; color: var(--navy); outline: 0; font-family: var(--serif); font-size: 1.1rem; }
.property-search button { border: 0; background: var(--gold); color: var(--navy); font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.property-search button span { display: inline-block; margin-left: .4rem; }
.hero-scroll { position: absolute; right: 1.8rem; bottom: 7rem; z-index: 2; display: flex; align-items: center; gap: .7rem; writing-mode: vertical-rl; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; }
.hero-scroll span { width: 1px; height: 58px; background: rgba(255,255,255,.55); }

.trust-strip { background: var(--navy); color: var(--white); padding: 2.25rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }
.trust-grid > div { padding: .4rem 2.25rem; border-left: 1px solid rgba(255,255,255,.16); }
.trust-grid > div:first-child { border-left: 0; padding-left: 0; }
.trust-grid strong { display: block; color: var(--gold); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.trust-grid span { color: #bcc4d2; font-size: .78rem; }

.intro-section { background: var(--paper); }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(3rem,9vw,9rem); align-items: end; }
.split-heading h2 { margin: .75rem 0 0; }
.split-heading > div:last-child p { color: var(--muted); font-size: 1.03rem; line-height: 1.9; }

.property-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.65rem; }
.property-card { background: var(--white); min-width: 0; transition: transform .4s ease, box-shadow .4s ease; }
.property-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.property-card-image { position: relative; display: block; aspect-ratio: 1.34/1; overflow: hidden; background: var(--navy); }
.property-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.property-card:hover .property-card-image img { transform: scale(1.045); }
.property-purpose, .property-featured { position: absolute; top: 1rem; left: 1rem; padding: .38rem .65rem; background: rgba(13,25,48,.9); color: var(--white); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
.property-featured { left: auto; right: 1rem; background: var(--gold); color: var(--navy); }
.property-card-body { padding: 1.45rem; }
.property-card-topline { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; }
.property-card h3 { margin: .6rem 0 1.1rem; font-size: 1.65rem; }
.property-facts { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; color: var(--muted); font-size: .78rem; }
.property-facts span { position: relative; }
.property-facts span + span:before { content: ""; position: absolute; left: -.62rem; top: .62rem; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.property-card-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.property-card-bottom strong { color: var(--navy); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.verified-dot { position: relative; color: var(--muted); font-size: .65rem; padding-left: .8rem; text-align: right; }
.verified-dot:before { content: ""; position: absolute; left: 0; top: .42rem; width: 5px; height: 5px; border-radius: 50%; background: #62846a; box-shadow: 0 0 0 3px rgba(98,132,106,.12); }

.service-showcase { position: relative; background: var(--navy); color: var(--white); overflow: hidden; }
.service-showcase:after { content: "MH"; position: absolute; right: -2rem; bottom: -5rem; color: rgba(255,255,255,.025); font-family: var(--serif); font-size: 26rem; line-height: 1; }
.service-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(4rem,9vw,9rem); }
.service-sticky { align-self: start; position: sticky; top: 8rem; }
.service-sticky h2 { margin: .8rem 0 1.5rem; }
.service-sticky p { color: #b9c2d2; line-height: 1.8; }
.service-sticky .button { margin-top: 1.3rem; }
.service-list { border-top: 1px solid rgba(255,255,255,.17); }
.service-row { display: grid; grid-template-columns: 52px 1fr 28px; gap: 1rem; padding: 2.2rem 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.service-row > span { color: var(--gold); font-family: var(--serif); }
.service-row h3 { margin: 0 0 .6rem; font-size: 2rem; transition: color .25s ease; }
.service-row p { margin: 0; color: #aeb8ca; font-size: .9rem; }
.service-row b { font-weight: 400; transition: transform .25s ease; }
.service-row:hover h3 { color: var(--gold); }
.service-row:hover b { transform: translate(4px,-4px); }

.area-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: repeat(2,310px); gap: 1rem; }
.area-card { position: relative; overflow: hidden; color: var(--white); }
.area-card-large { grid-row: 1/3; }
.area-card:last-child { grid-column: 2/4; }
.area-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.65); transition: transform .8s ease, filter .5s ease; }
.area-card:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,17,34,.82), transparent 55%); }
.area-card > span, .area-card > small { position: absolute; z-index: 1; left: 1.6rem; }
.area-card > span { bottom: 2.4rem; font-family: var(--serif); font-size: 2rem; }
.area-card > small { bottom: 1.25rem; color: rgba(255,255,255,.75); }
.area-card:hover img { transform: scale(1.05); filter: brightness(.8); }

.process-section { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(4rem,10vw,10rem); }
.process-intro { align-self: start; position: sticky; top: 8rem; }
.process-intro h2 { margin: .75rem 0 1.4rem; }
.process-intro p { color: var(--muted); }
.process-steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-steps li { display: grid; grid-template-columns: 62px 1fr; gap: 1.2rem; padding: 2.3rem 0; border-bottom: 1px solid var(--line); }
.process-steps li > span { color: var(--gold-dark); font-family: var(--serif); }
.process-steps h3 { margin-bottom: .5rem; font-size: 2rem; }
.process-steps p { margin: 0; color: var(--muted); }

.testimonial-section { background: var(--taupe); color: var(--white); padding: clamp(5rem,9vw,9rem) 0; }
.testimonial-wrap { position: relative; }
.testimonial-track { min-height: 360px; position: relative; margin-top: 2.5rem; }
.testimonial { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transform: translateY(18px); transition: .5s ease; }
.testimonial.is-active { opacity: 1; visibility: visible; transform: none; }
.testimonial p { max-width: 1050px; font-family: var(--serif); font-size: clamp(2.35rem,4.4vw,4.9rem); line-height: 1.22; }
.testimonial footer { display: flex; flex-direction: column; margin-top: 2rem; font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.testimonial footer span { color: #e1d6c7; font-size: .68rem; font-weight: 400; }
.testimonial-controls { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; }
.testimonial-controls button { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); background: transparent; color: var(--white); }
.testimonial-controls span { min-width: 70px; text-align: center; font-size: .7rem; letter-spacing: .1em; }

.journal-grid, .insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.7rem; }
.journal-card img { width: 100%; aspect-ratio: 1.48/1; object-fit: cover; margin-bottom: 1.4rem; transition: transform .6s ease; }
.journal-card a { display: block; overflow: hidden; }
.journal-card a:hover img { transform: scale(1.025); }
.journal-card span, .insight-card span { color: var(--gold-dark); font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.journal-card h3 { margin: .65rem 0; }
.journal-card p { color: var(--muted); font-size: .87rem; }
.journal-card b, .insight-card b { color: var(--navy); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }

.final-cta { background: var(--navy-2); color: var(--white); padding: 5.5rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.final-cta-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 3rem; }
.final-cta h2 { max-width: 820px; margin: .7rem 0 0; }
.final-cta-actions { display: flex; flex-direction: column; align-items: start; gap: 1.2rem; }
.site-footer { background: var(--navy); color: var(--white); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 4rem; }
.footer-brand img { width: 180px; height: 180px; object-fit: contain; object-position: center; margin-top: -2rem; }
.footer-brand p { max-width: 280px; color: #aeb8c8; font-family: var(--serif); font-size: 1.1rem; }
.footer-grid h3 { margin-bottom: 1.3rem; color: var(--gold); font-family: var(--sans); font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { display: block; margin: .65rem 0; color: #b9c2d1; font-size: .78rem; }
.footer-grid a:hover { color: var(--white); }
.rera-line { font-size: .64rem !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); color: #7f8a9d; font-size: .65rem; }
.footer-bottom div { display: flex; gap: 1.3rem; }
.whatsapp-float { position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 900; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--navy); box-shadow: 0 12px 30px rgba(13,25,48,.25); }
.whatsapp-float span { position: absolute; right: 66px; padding: .35rem .65rem; background: var(--navy); color: var(--white); font-size: .65rem; opacity: 0; transform: translateX(6px); transition: .25s ease; pointer-events: none; }
.whatsapp-float:hover span { opacity: 1; transform: none; }

.page-hero { min-height: 600px; display: flex; align-items: flex-end; padding: calc(var(--header-h) + 8rem) 0 6rem; color: var(--white); background: var(--navy); position: relative; overflow: hidden; }
.page-hero:before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(7,15,30,.88),rgba(7,15,30,.3)), url('../img/urban-homes.webp') center/cover; }
.services-hero:before { background: linear-gradient(90deg,rgba(7,15,30,.9),rgba(7,15,30,.2)), url('../img/interior-home.webp') center/cover; }
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 980px; margin: .8rem 0 1rem; font-size: clamp(3.7rem,7vw,7rem); }
.page-hero p { max-width: 670px; color: #d1d6df; font-size: 1.05rem; }
.listing-toolbar { position: relative; z-index: 2; background: var(--white); border-bottom: 1px solid var(--line); }
.filters { min-height: 110px; display: grid; grid-template-columns: repeat(5,1fr) auto; align-items: center; }
.filters label { padding: 0 1.2rem; border-right: 1px solid var(--line); }
.filters label:first-child { padding-left: 0; }
.filters .button { margin-left: 1rem; }
.listing-results { padding-top: 4rem; }
.results-summary { display: flex; justify-content: space-between; margin-bottom: 2rem; color: var(--muted); font-size: .8rem; }
.results-summary strong { color: var(--navy); font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.results-summary a { text-decoration: underline; }
.empty-state { text-align: center; padding: 4rem; background: var(--white); }
.empty-state img { width: 90px; margin: 0 auto 1rem; }
.empty-state h2 { font-size: 2.5rem; }

.property-hero { position: relative; min-height: 760px; display: flex; align-items: end; color: var(--white); }
.property-hero-image, .property-hero-overlay { position: absolute; inset: 0; }
.property-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.property-hero-overlay { background: linear-gradient(0deg,rgba(6,14,28,.8),transparent 58%), linear-gradient(90deg,rgba(6,14,28,.45),transparent); }
.property-hero-content { position: relative; z-index: 1; padding-bottom: 4.5rem; }
.property-tags { display: flex; gap: .5rem; }
.property-tags span { padding: .35rem .65rem; border: 1px solid rgba(255,255,255,.42); background: rgba(13,25,48,.35); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.property-hero h1 { max-width: 900px; margin: .8rem 0 .5rem; font-size: clamp(3.2rem,6vw,6.2rem); }
.property-hero p { color: #e0e4ea; letter-spacing: .06em; }
.property-overview { position: relative; z-index: 4; margin-top: -1px; background: var(--white); border-bottom: 1px solid var(--line); }
.property-overview-grid { display: grid; grid-template-columns: 1.1fr repeat(3,.7fr) auto; align-items: center; min-height: 116px; }
.property-overview-grid > div { padding: 0 1.4rem; border-right: 1px solid var(--line); }
.property-overview-grid > div:first-child { padding-left: 0; }
.property-overview-grid span { display: block; color: var(--muted); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.property-overview-grid strong { color: var(--navy); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.property-detail-grid { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(320px,.55fr); gap: clamp(3rem,8vw,7rem); align-items: start; }
.detail-block { margin-bottom: 4rem; }
.detail-block h2 { margin: .7rem 0 1.6rem; }
.property-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin: 4rem 0; }
.property-gallery button { border: 0; padding: 0; aspect-ratio: 1.35/1; overflow: hidden; }
.property-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.property-gallery button:hover img { transform: scale(1.04); }
.detail-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.detail-block h3, .facts-table h3 { border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
.check-list, .plain-list { list-style: none; padding: 0; }
.check-list li, .plain-list li { position: relative; padding: .6rem 0 .6rem 1.5rem; border-bottom: 1px solid #ebe6df; color: var(--muted); }
.check-list li:before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); }
.plain-list li:before { content: "—"; position: absolute; left: 0; color: var(--gold-dark); }
.facts-table { margin: 1rem 0 4rem; }
.facts-table dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0; }
.facts-table dl div { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.facts-table dl div:nth-child(odd) { margin-right: 2rem; }
.facts-table dt { color: var(--muted); font-size: .75rem; }
.facts-table dd { margin: 0; color: var(--navy); font-size: .8rem; font-weight: 500; }
.verification-note { display: grid; grid-template-columns: 85px 1fr; gap: 1.5rem; padding: 2rem; background: var(--ivory); }
.verification-note img { width: 70px; }
.verification-note h3 { margin-bottom: .5rem; }
.verification-note p { margin: 0; color: var(--muted); font-size: .8rem; }
.enquiry-card { position: sticky; top: 104px; padding: 2rem; background: var(--ivory); box-shadow: var(--shadow); }
.enquiry-card h2 { margin: .65rem 0 1rem; font-size: 2.35rem; }
.enquiry-card > p { color: var(--muted); font-size: .85rem; }
.enquiry-card form > label:not(.consent), .premium-form > label:not(.consent) { display: block; margin: 1rem 0; color: var(--navy); font-size: .72rem; font-weight: 600; }
.enquiry-card input, .enquiry-card textarea, .premium-form input, .premium-form select, .premium-form textarea { width: 100%; border: 0; border-bottom: 1px solid #bbb3a8; border-radius: 0; background: transparent; padding: .65rem 0; outline: 0; color: var(--ink); }
.enquiry-card input:focus, .enquiry-card textarea:focus, .premium-form input:focus, .premium-form select:focus, .premium-form textarea:focus { border-color: var(--gold-dark); }
.enquiry-card small { color: var(--muted); font-weight: 400; }
.consent { display: grid !important; grid-template-columns: 18px 1fr; gap: .55rem; align-items: start; margin: 1.3rem 0 !important; color: var(--muted) !important; font-size: .68rem !important; font-weight: 400 !important; }
.consent input { width: 16px !important; height: 16px; }
.form-status { margin: .75rem 0 0; font-size: .75rem; }
.form-status.is-success { color: #3d7351; }
.form-status.is-error { color: #a83b36; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.editorial-hero { padding: calc(var(--header-h) + 8rem) 0 7rem; background: var(--ivory); }
.editorial-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 7rem; align-items: end; }
.editorial-hero h1 { margin: .8rem 0 0; max-width: 950px; }
.editorial-hero p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.9; }
.about-image-band { height: min(760px,70vw); overflow: hidden; }
.about-image-band img { width: 100%; height: 100%; object-fit: cover; }
.manifesto-grid { display: grid; grid-template-columns: 120px 1fr; gap: 4rem; }
.manifesto-number { color: var(--gold-dark); font-family: var(--serif); font-size: 1.4rem; }
.manifesto-grid > div { max-width: 970px; }
.manifesto-grid p:not(.lead-copy) { max-width: 760px; color: var(--muted); line-height: 1.9; }
.values-section .section-heading h2 { color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.16); }
.values-grid article { background: var(--navy); padding: 2.2rem; }
.values-grid span { color: var(--gold); font-family: var(--serif); }
.values-grid h3 { margin: 2.7rem 0 1rem; color: var(--white); }
.values-grid p { color: #aeb8ca; font-size: .82rem; }
.two-column-story { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; }
.two-column-story h2 { margin-top: .7rem; }
.two-column-story p { color: var(--muted); line-height: 1.9; }
.principles-band { padding: 5rem 0; background: var(--taupe); color: var(--white); }
.principles-band p { max-width: 1100px; margin: 0; font-family: var(--serif); font-size: clamp(2.2rem,4.6vw,5rem); line-height: 1.2; }

.service-detail-list .container { border-top: 1px solid var(--line); }
.service-detail { display: grid; grid-template-columns: 70px 1fr 180px; gap: 2rem; align-items: start; padding: 3.6rem 0; border-bottom: 1px solid var(--line); }
.service-detail > span { color: var(--gold-dark); font-family: var(--serif); }
.service-detail h2 { margin-bottom: 1rem; font-size: clamp(2.3rem,3.4vw,3.8rem); }
.service-detail p { max-width: 700px; color: var(--muted); }
.service-detail ul { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 2rem; max-width: 800px; padding-left: 1.1rem; color: var(--muted); font-size: .82rem; }
.service-detail > a { color: var(--navy); font-size: .7rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; text-align: right; }
.clarity-card { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: end; padding: 4rem; background: var(--white); }
.clarity-card h2 { margin: .8rem 0 0; font-size: clamp(2.2rem,3.7vw,4.1rem); }
.clarity-card > p { color: var(--muted); line-height: 1.9; }

.area-editorial { padding: 0 0 8rem; }
.area-feature { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; min-height: 650px; }
.area-feature img { width: 100%; height: 560px; object-fit: cover; }
.area-feature div { padding: 4rem; margin-left: -4rem; background: var(--paper); position: relative; }
.area-feature-reverse { grid-template-columns: .8fr 1.2fr; }
.area-feature-reverse img { order: 2; }
.area-feature-reverse div { order: 1; margin: 0 -4rem 0 0; z-index: 1; }
.area-feature span { color: var(--gold-dark); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; }
.area-feature h2 { margin: .8rem 0 1.3rem; font-size: clamp(2.4rem,3.8vw,4.2rem); }
.area-feature p { color: var(--muted); line-height: 1.85; }
.area-feature a { color: var(--navy); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.commute-callout { text-align: center; }
.commute-callout h2 { max-width: 1050px; margin: 1rem auto 2rem; }

.insight-card { background: var(--white); }
.insight-card a { display: block; }
.insight-card img { width: 100%; aspect-ratio: 1.35/1; object-fit: cover; }
.insight-card div { padding: 1.6rem; }
.insight-card h2 { margin: .7rem 0; font-size: 1.75rem; }
.insight-card p { color: var(--muted); font-size: .84rem; }
.article-header { padding: calc(var(--header-h) + 8rem) 0 5rem; background: var(--ivory); text-align: center; }
.article-header h1 { margin: .8rem auto 1.3rem; font-size: clamp(3.1rem,6vw,6.2rem); }
.article-header p { max-width: 720px; margin: 0 auto 1.5rem; color: var(--muted); font-size: 1.05rem; }
.article-header time { color: var(--gold-dark); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.article-cover { width: var(--container); height: min(680px,65vw); margin: 0 auto; overflow: hidden; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { max-width: 790px; padding: 6rem 0; }
.article-body p { color: #555960; font-size: 1.02rem; line-height: 1.95; }
.article-body h2 { margin: 3rem 0 1rem; font-size: 2.5rem; }
.article-note { max-width: 790px; margin-bottom: 6rem; padding: 2rem; background: var(--ivory); }
.article-note p { margin: .5rem 0 0; color: var(--muted); font-size: .8rem; }

.form-hero { padding: calc(var(--header-h) + 5rem) 0 0; background: var(--navy); color: var(--white); }
.form-hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 640px; align-items: center; gap: 5rem; }
.form-hero h1 { margin: .8rem 0 1.2rem; }
.form-hero p { color: #bdc5d3; line-height: 1.85; }
.form-hero-grid > img { width: 100%; height: 100%; max-height: 640px; object-fit: cover; }
.form-promise { display: grid; grid-template-columns: 32px 1fr; gap: .6rem 1rem; margin-top: 2rem; }
.form-promise span { color: var(--gold); font-family: var(--serif); }
.form-promise p { margin: 0; font-size: .8rem; }
.narrow-form { max-width: 920px; }
.form-heading { margin-bottom: 3rem; }
.form-heading h2 { margin: .7rem 0; }
.form-heading p { color: var(--muted); }
.premium-form { padding: 3rem; background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; }
.form-grid > label { display: block; color: var(--navy); font-size: .72rem; font-weight: 600; }
.form-grid .full { grid-column: 1/-1; }
.premium-form .button { margin-top: 1.5rem; }

.contact-page { padding: calc(var(--header-h) + 7rem) 0 8rem; background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 7rem; }
.contact-intro h1 { margin: .8rem 0 1.3rem; font-size: clamp(3.4rem,5.5vw,6rem); }
.contact-intro > p { max-width: 600px; color: var(--muted); }
.contact-intro dl { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.contact-intro dt { color: var(--gold-dark); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; }
.contact-intro dd { margin: .35rem 0 0; color: var(--navy); font-family: var(--serif); font-size: 1.2rem; }
.contact-form-wrap .premium-form { margin-top: 1rem; }

.legal-page { padding: calc(var(--header-h) + 7rem) 0 8rem; }
.legal-wrap { max-width: 820px; }
.legal-wrap h1 { margin: .7rem 0 0; }
.legal-wrap h2 { margin: 3rem 0 .8rem; font-size: 2rem; }
.legal-wrap p { color: var(--muted); line-height: 1.9; }
.legal-wrap .updated { color: var(--gold-dark); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.not-found { min-height: 85vh; display: grid; place-items: center; padding: calc(var(--header-h) + 4rem) 0 5rem; text-align: center; }
.not-found img { width: 95px; margin: 0 auto .5rem; }
.not-found > div > span { color: var(--gold-dark); letter-spacing: .2em; }
.not-found h1 { margin: .5rem 0 1rem; }
.not-found p { color: var(--muted); }
.not-found > div > div { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 2rem; }

.toast { position: fixed; z-index: 2000; right: 1.5rem; top: 7rem; max-width: 420px; padding: 1rem 1.2rem; background: var(--white); border-left: 3px solid var(--gold); box-shadow: var(--shadow); font-size: .8rem; animation: toastIn .4s ease; }
.toast-error { border-color: #a73d38; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-12px); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1160px) {
  :root { --container: min(1320px, calc(100vw - 3rem)); }
  .primary-nav { gap: 1rem; }
  .primary-nav > a:not(.button) { font-size: .68rem; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3,1fr); gap: 2rem; }
  .filters { grid-template-columns: repeat(3,1fr); padding: 1rem 0; }
  .filters label { min-height: 60px; padding: .5rem 1rem; }
  .filters .button { margin: .5rem 1rem; }
  .property-overview-grid { grid-template-columns: repeat(4,1fr); padding: 1rem 0; }
  .property-overview-grid .button { grid-column: 1/-1; margin-top: .6rem; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; --container: calc(100vw - 2rem); }
  .nav-toggle { display: block; position: relative; z-index: 2; }
  .primary-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.35rem; padding: 5rem 2rem; background: var(--navy); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .35s ease; }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav > a:not(.button), .home-page .site-header:not(.is-scrolled) .primary-nav > a:not(.button) { color: var(--white); font-family: var(--serif); font-size: 2rem; letter-spacing: 0; text-transform: none; }
  .nav-toggle[aria-expanded="true"] span { background: var(--white); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: 820px; align-items: center; }
  .hero-content { padding-bottom: 9rem; }
  .hero-content h1 { font-size: clamp(3.7rem,14vw,6.5rem); }
  .property-search { grid-template-columns: repeat(3,1fr); }
  .property-search button { grid-column: 1/-1; min-height: 55px; }
  .hero-scroll { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .trust-grid > div, .trust-grid > div:first-child { padding: .2rem 1rem; border-left: 1px solid rgba(255,255,255,.16); }
  .split-heading, .service-layout, .process-grid, .editorial-hero-grid, .two-column-story, .clarity-card, .form-hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-sticky, .process-intro { position: static; }
  .property-grid, .journal-grid, .insights-grid { grid-template-columns: repeat(2,1fr); }
  .area-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 450px 280px 280px; }
  .area-card-large { grid-column: 1/3; grid-row: auto; }
  .area-card:last-child { grid-column: auto; }
  .testimonial-track { min-height: 480px; }
  .final-cta-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .property-detail-grid { grid-template-columns: 1fr; }
  .enquiry-card { position: static; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 50px 1fr; }
  .service-detail > a { grid-column: 2; text-align: left; }
  .area-feature, .area-feature-reverse { grid-template-columns: 1fr; margin: 4rem auto; min-height: 0; }
  .area-feature img, .area-feature-reverse img { order: 1; height: 450px; }
  .area-feature div, .area-feature-reverse div { order: 2; margin: -4rem 1rem 0; padding: 3rem; }
  .form-hero-grid { padding-top: 3rem; }
  .form-hero-grid > img { max-height: 480px; }
}

@media (max-width: 640px) {
  :root { --container: calc(100vw - 1.4rem); }
  body { font-size: 15px; }
  .section { padding: 4.5rem 0; }
  .brand img { width: 154px; }
  .hero { min-height: 790px; }
  .hero-content { padding-bottom: 11rem; }
  .hero-content h1 { font-size: 3.55rem; }
  .hero-eyebrow { max-width: 300px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .property-search { width: calc(100vw - 1.4rem); grid-template-columns: 1fr 1fr; }
  .property-search label { padding: .8rem; }
  .property-search label:nth-child(3) { grid-column: 1/-1; border-top: 1px solid var(--line); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div, .trust-grid > div:first-child { border: 0; border-top: 1px solid rgba(255,255,255,.12); padding: .7rem 0; }
  .trust-grid > div:first-child { border-top: 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
  .property-grid, .journal-grid, .insights-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 40px 1fr; }
  .service-row b { display: none; }
  .area-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4,320px); }
  .area-card-large, .area-card:last-child { grid-column: auto; }
  .testimonial-track { min-height: 500px; }
  .testimonial p { font-size: 2.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; }
  .filters { grid-template-columns: 1fr 1fr; }
  .filters label { border-bottom: 1px solid var(--line); }
  .filters .button { grid-column: 1/-1; margin: 1rem 0 0; }
  .property-overview-grid { grid-template-columns: 1fr 1fr; }
  .property-overview-grid > div { min-height: 70px; padding: .6rem; border-bottom: 1px solid var(--line); }
  .property-overview-grid > div:first-child { padding-left: .6rem; }
  .property-detail-grid { gap: 2rem; }
  .detail-columns, .facts-table dl { grid-template-columns: 1fr; }
  .facts-table dl div:nth-child(odd) { margin-right: 0; }
  .verification-note { grid-template-columns: 1fr; }
  .editorial-hero { padding-top: calc(var(--header-h) + 5rem); }
  .manifesto-grid { grid-template-columns: 1fr; gap: 1rem; }
  .values-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: .8rem; }
  .service-detail > a { grid-column: auto; }
  .service-detail ul { grid-template-columns: 1fr; }
  .clarity-card { padding: 2rem; }
  .area-feature img, .area-feature-reverse img { height: 330px; }
  .area-feature div, .area-feature-reverse div { margin: -2rem .7rem 0; padding: 2rem 1.3rem; }
  .form-hero-grid { gap: 1rem; }
  .premium-form { padding: 1.4rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .contact-intro dl { grid-template-columns: 1fr; }
  .not-found > div > div { flex-direction: column; }
}


/* August 2026 navigation, branding and owner-listing improvements */
.brand { display: inline-flex; align-items: center; gap: .72rem; position: relative; z-index: 1002; flex: 0 0 auto; }
.brand .brand-mark { width: 42px; height: 38px; object-fit: contain; flex: 0 0 auto; }
.brand-copy { display: flex; flex-direction: column; gap: .16rem; line-height: 1; }
.brand .brand-wordmark { width: 148px; height: auto; }
.brand-tagline { color: #727780; font-size: .45rem; font-weight: 600; letter-spacing: .105em; line-height: 1.15; text-transform: uppercase; white-space: nowrap; }
.home-page .site-header:not(.is-scrolled) .brand-tagline { color: rgba(255,255,255,.78); }

.area-grid { grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(2,310px); }
.area-card-large, .area-card:last-child { grid-column: auto; grid-row: auto; }

.premium-form fieldset { min-width: 0; margin: 0 0 2.5rem; padding: 0 0 2.5rem; border: 0; border-bottom: 1px solid var(--line); }
.premium-form fieldset:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.form-section-title { display: block; width: 100%; margin: 0 0 1.35rem; color: var(--navy); font-family: var(--serif); font-size: 1.65rem; }
.form-section-title small { display: block; margin-top: .35rem; color: var(--muted); font-family: var(--sans); font-size: .72rem; font-weight: 400; line-height: 1.6; }
.premium-form input[type="file"] { padding: .72rem; background: var(--ivory); }
.premium-form input[type="file"]::file-selector-button { margin-right: .8rem; border: 0; background: var(--navy); color: var(--white); padding: .65rem .85rem; font-size: .66rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.upload-help, .publish-note { margin: .75rem 0 0; color: var(--muted); font-size: .72rem; line-height: 1.65; }
.publish-note { margin: 0 0 2rem; padding: 1rem 1.1rem; border-left: 3px solid var(--gold); background: var(--ivory); color: #565a62; }

@media (max-width: 1160px) and (min-width: 901px) {
  .brand { gap: .55rem; }
  .brand .brand-mark { width: 36px; height: 33px; }
  .brand .brand-wordmark { width: 128px; }
  .brand-tagline { font-size: .39rem; letter-spacing: .08em; }
  .primary-nav { gap: .75rem; }
  .primary-nav > a:not(.button) { font-size: .61rem; }
  .button-small { padding-inline: .8rem; }
}

@media (max-width: 900px) {
  :root { --header-h: 82px; }
  .site-header, .home-page .site-header:not(.is-scrolled), .site-header.is-scrolled { min-height: var(--header-h); background: rgba(13,25,48,.985); border-bottom-color: rgba(255,255,255,.14); box-shadow: 0 8px 28px rgba(5,12,24,.18); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .site-header .brand img, .home-page .site-header:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }
  .site-header .brand-tagline, .home-page .site-header:not(.is-scrolled) .brand-tagline { color: rgba(255,255,255,.74); }
  .brand .brand-mark { width: 38px; height: 35px; }
  .brand .brand-wordmark { width: 132px; }
  .brand-tagline { font-size: .4rem; letter-spacing: .085em; }
  .nav-toggle { display: block; position: relative; z-index: 1002; }
  .nav-toggle span, .home-page .site-header:not(.is-scrolled) .nav-toggle span { background: var(--white); }
  .primary-nav { position: fixed; inset: 0; z-index: 1001; width: 100%; height: 100vh; height: 100dvh; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: .48rem; padding: calc(var(--header-h) + 1.2rem) 1.5rem 2rem; background: var(--navy); overflow-y: auto; overscroll-behavior: contain; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .28s ease, visibility .28s ease, transform .28s ease; }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav > a:not(.button), .home-page .site-header:not(.is-scrolled) .primary-nav > a:not(.button) { width: 100%; padding: .32rem 0; color: var(--white); font-family: var(--serif); font-size: clamp(1.42rem,5.8vw,1.8rem); line-height: 1.08; letter-spacing: 0; text-transform: none; }
  .primary-nav > a:not(.button):after { bottom: .05rem; }
  .primary-nav .button { width: min(250px,100%); margin-top: .45rem; }
  .hero { min-height: 910px; align-items: flex-start; padding-top: calc(var(--header-h) + 4.2rem); }
  .hero-content { padding-bottom: 13rem; }
  .hero-content h1 { margin-top: .7rem; }
  .area-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3,300px); }
  .area-card-large, .area-card:last-child { grid-column: auto; grid-row: auto; }
}

@media (max-width: 640px) {
  .brand { gap: .5rem; }
  .brand .brand-mark { width: 34px; height: 31px; }
  .brand .brand-wordmark { width: 116px; }
  .brand-tagline { font-size: .34rem; letter-spacing: .07em; }
  .primary-nav { padding-inline: 1.25rem; }
  .hero { min-height: 940px; padding-top: calc(var(--header-h) + 3.5rem); }
  .hero-content { padding-bottom: 13.5rem; }
  .hero-content h1 { font-size: clamp(3rem,15vw,3.55rem); line-height: 1.02; }
  .hero-content p { line-height: 1.65; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: min(260px,100%); }
  .area-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6,300px); }
  .premium-form fieldset { margin-bottom: 2rem; padding-bottom: 2rem; }
  .form-section-title { font-size: 1.45rem; }
}

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

/* August 10, 2026 follow-up: clear desktop hero/header separation + WhatsApp mark */
@media (min-width: 901px) {
  .home-page .hero { align-items: flex-start; }
  .home-page .hero-content { padding-top: calc(var(--header-h) + 2rem); }
}

.whatsapp-float .whatsapp-icon {
  width: 27px;
  height: 27px;
  display: block;
  flex: 0 0 auto;
}

