/* ==========================================================================
   Sarah Mitchell Homes - styles
   Palette:  navy #1B2A4A | gold #C9A84C | white #FFFFFF | light gray #F8F9FA
   Type:     Cormorant Garamond (display) + Mulish (body)
   Radius system: pills for buttons, 16px for media/cards, 8px for inputs
   ========================================================================== */

:root {
  --navy: #1B2A4A;
  --navy-700: #15213a;
  --navy-soft: #2c3f68;
  --navy-tint: #eef1f6;
  --gold: #C9A84C;
  --gold-dark: #b3923f;
  --gold-tint: #f8f1de;
  --white: #FFFFFF;
  --gray-light: #F8F9FA;
  --ink: #1B2A4A;
  --body-text: #525a70;
  --border: #e6e8f0;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 18px rgba(27, 42, 74, 0.08);
  --shadow-md: 0 16px 48px rgba(27, 42, 74, 0.16);

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --nav-height: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* Custom "key" pointer used everywhere on the site - tip points up-left like a
   normal pointer, with the hotspot at the key's tip */
html {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='3' x2='15' y2='15'/%3E%3Cline x1='6' y1='4' x2='9' y2='7'/%3E%3Cline x1='4' y1='6' x2='7' y2='9'/%3E%3Ccircle cx='17' cy='17' r='4'/%3E%3C/g%3E%3C/svg%3E") 3 3, auto;
}
a,
button,
.btn,
input[type="submit"],
input[type="button"],
input[type="checkbox"],
input[type="radio"],
select,
label,
.nav-toggle,
summary,
[role="button"] {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='3' x2='15' y2='15'/%3E%3Cline x1='6' y1='4' x2='9' y2='7'/%3E%3Cline x1='4' y1='6' x2='7' y2='9'/%3E%3Ccircle cx='17' cy='17' r='4'/%3E%3C/g%3E%3C/svg%3E") 3 3, pointer;
}

@media (max-width: 768px) {
  html {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='2' y1='2' x2='11' y2='11'/%3E%3Cline x1='4.5' y1='3' x2='6.5' y2='5'/%3E%3Cline x1='3' y1='4.5' x2='5' y2='6.5'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E") 2 2, auto;
  }
  a,
  button,
  .btn,
  input[type="submit"],
  input[type="button"],
  input[type="checkbox"],
  input[type="radio"],
  select,
  label,
  .nav-toggle,
  summary,
  [role="button"] {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='2' y1='2' x2='11' y2='11'/%3E%3Cline x1='4.5' y1='3' x2='6.5' y2='5'/%3E%3Cline x1='3' y1='4.5' x2='5' y2='6.5'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E") 2 2, pointer;
  }
}

/* Hover "lift" - clickable elements grow slightly on hover */
a,
button,
.nav-toggle,
summary,
label {
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center;
}
a:hover,
button:hover,
.nav-toggle:hover,
summary:hover,
label:hover {
  transform: scale(1.06);
}
.btn:hover { transform: scale(1.05); }
h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

/* ---------- Site loader ---------- */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.site-loader-icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  opacity: 0;
  animation: loaderFadeIn 0.5s ease 0.1s forwards, loaderPulse 1.6s ease-in-out 0.6s infinite;
}
.site-loader-icon svg { width: 100%; height: 100%; }
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
body.is-loading { overflow: hidden; }

@keyframes loaderFadeIn {
  to { opacity: 1; }
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.88); opacity: 0.6; }
}
@media (prefers-reduced-motion: reduce) {
  .site-loader-icon { animation: loaderFadeIn 0.3s ease forwards; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.9rem;
  min-height: 44px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn:active { transform: scale(0.98) translateY(1px); }

.btn-gold {
  background: linear-gradient(180deg, #ddc585 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 -3px 6px rgba(120, 92, 24, 0.35) inset, var(--shadow-sm);
}
.btn-gold:hover {
  background: linear-gradient(180deg, #e6d191 0%, var(--gold-dark) 55%, #93782f 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 -3px 6px rgba(120, 92, 24, 0.4) inset, var(--shadow-md);
}
.btn-gold:active {
  box-shadow: 0 2px 6px rgba(120, 92, 24, 0.45) inset;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.btn-navy {
  background: linear-gradient(180deg, var(--navy-soft) 0%, var(--navy) 60%, var(--navy-700) 100%);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 -3px 6px rgba(0, 0, 0, 0.25) inset, var(--shadow-sm);
}
.btn-navy:hover {
  background: linear-gradient(180deg, #3a4f7d 0%, var(--navy-soft) 60%, var(--navy) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 -3px 6px rgba(0, 0, 0, 0.3) inset, var(--shadow-md);
}
.btn-navy:active {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35) inset;
}

/* ---------- Section heading ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
}
.eyebrow-light { color: var(--gold); }

.section-heading {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-heading h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 0.75rem;
}
.section-heading p {
  font-size: 1.05rem;
  line-height: 1.6;
}

section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

/* ---------- Decorative section watermarks ---------- */
.section-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: #1B2947;
  opacity: 0.045;
}
.section-watermark svg { width: 100%; height: 100%; display: block; }
.section-watermark--light { color: rgba(255, 255, 255, 0.05); }

@media (max-width: 640px) {
  .section-watermark { display: none; }
}
@media (prefers-reduced-motion: no-preference) {
  .section-watermark--spin { animation: watermarkDrift 70s linear infinite; }
  .section-watermark--float { animation: heroFloat 16s ease-in-out infinite; }
}
@keyframes watermarkDrift {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.watermark-house-about {
  width: 460px;
  height: 460px;
  top: -90px;
  right: -110px;
}
.watermark-building-services {
  width: 320px;
  height: 480px;
  bottom: -90px;
  left: -60px;
}
.watermark-key-listings {
  width: 380px;
  height: 380px;
  top: -70px;
  right: -60px;
  transform: rotate(-12deg);
}
.watermark-quote-testimonials {
  width: 400px;
  height: 400px;
  top: -50px;
  left: -60px;
  opacity: 0.04;
}
.watermark-document-contact {
  width: 360px;
  height: 360px;
  bottom: -70px;
  right: -50px;
}
.watermark-skyline-footer {
  width: 640px;
  height: 130px;
  bottom: 0;
  right: -40px;
  opacity: 0.06;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.hero-sentinel {
  position: absolute;
  top: var(--nav-height);
  height: 1px;
  width: 1px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: height 0.3s ease;
}
.navbar.scrolled {
  height: 68px;
}
/* Frosted background lives on a pseudo-element (not on .navbar itself) so that
   backdrop-filter doesn't create a new containing block for the fixed-position
   .nav-links mobile menu, which would otherwise break its inset/transform. */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled::before {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
          backdrop-filter: blur(14px) saturate(160%);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Scroll progress line */
.navbar-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.navbar.scrolled .navbar-progress {
  opacity: 1;
  background: rgba(27, 42, 74, 0.08);
}
.navbar-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark, var(--gold)), var(--gold));
  transition: width 0.1s linear;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
}
.navbar.scrolled .logo { color: var(--navy); }
.logo-icon { width: 26px; height: 26px; flex-shrink: 0; }
.logo-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 0.15rem;
}
.footer .logo { color: var(--white); }
.footer .logo-text small { color: var(--gold); }

/* Mobile nav toggle */
.nav-toggle {
  position: relative;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--white);
  transition: color 0.3s ease, transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.navbar.scrolled .nav-toggle { color: var(--navy); }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] { color: var(--white); }

/* Mobile nav panel */
.nav-links {
  position: fixed;
  inset: 0;
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  background: var(--navy);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links.open { transform: translateY(0); }

@media (max-width: 1023px) {
  .nav-links .nav-link {
    color: var(--white) !important;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
  }
  .nav-links .nav-cta { margin-top: 1rem; }
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-links {
    position: static;
    inset: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    background: transparent;
    gap: 2rem;
    transition: none;
  }
  .nav-links .nav-link {
    position: relative;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    padding-bottom: 0.3rem;
    transition: color 0.3s ease, opacity 0.2s ease, transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .nav-links .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--gold);
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links .nav-link:hover { opacity: 0.85; }
  .nav-links .nav-link:hover::after { right: 0; }
  .navbar.scrolled .nav-links .nav-link { color: var(--navy); }
  .nav-links .nav-cta { margin-top: 0; padding: 0.7rem 1.5rem; }
  .nav-links .nav-cta::after { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1B2947;
  padding: 0;
}

/* ---------- Hero background effects ---------- */
.hero-bg-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero-glow--1 {
  width: 32rem;
  height: 32rem;
  top: -9rem;
  right: -7rem;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.32), transparent 70%);
  animation: heroGlowPulse 14s ease-in-out infinite;
}
.hero-glow--2 {
  width: 26rem;
  height: 26rem;
  bottom: -7rem;
  left: -6rem;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.16), transparent 70%);
  animation: heroGlowPulse 18s ease-in-out infinite reverse;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 75%);
          mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 75%);
}
.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* Distant blueprint skyline - lighter, fewer lit windows, sits behind the foreground silhouette */
.hero-skyline--back {
  height: 64%;
  min-height: 230px;
  opacity: 0.55;
}
.hero-buildings .building-shell {
  fill: rgba(255, 255, 255, 0.015);
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1;
}
.hero-buildings .hero-window {
  fill: rgba(255, 255, 255, 0.035);
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 0.5;
}
.hero-buildings .win--lit-a,
.hero-buildings .win--lit-b,
.hero-buildings .win--lit-c,
.hero-buildings .win--lit-d {
  fill: rgba(201, 168, 76, 0.55);
  stroke: rgba(201, 168, 76, 0.2);
}

/* Foreground silhouette skyline - original simple buildings */
.hero-skyline--front {
  height: 38%;
  min-height: 160px;
  color: #314c80;
  opacity: 0.65;
}

/* Drifting clouds above the skyline */
.hero-clouds { fill: #ffffff; opacity: 0.05; }
.hero-cloud--1 { animation: cloudDrift 70s linear infinite; }
.hero-cloud--2 { animation: cloudDrift 95s linear infinite; animation-delay: -30s; }
.hero-cloud--3 { animation: cloudDrift 80s linear infinite reverse; animation-delay: -10s; }

@media (prefers-reduced-motion: no-preference) {
  .hero-buildings .win--lit-a { animation: windowFlicker 6s ease-in-out infinite; }
  .hero-buildings .win--lit-b { animation: windowFlicker 8s ease-in-out infinite; animation-delay: -2.5s; }
  .hero-buildings .win--lit-c { animation: windowFlicker 7s ease-in-out infinite; animation-delay: -4s; }
  .hero-buildings .win--lit-d { animation: windowFlicker 9s ease-in-out infinite; animation-delay: -1s; }
}
@keyframes windowFlicker {
  0%, 38%, 42%, 100% { opacity: 1; }
  40% { opacity: 0.15; }
  70%, 74% { opacity: 0.3; }
  72% { opacity: 1; }
}
@keyframes cloudDrift {
  from { transform: translateX(-12%); }
  to { transform: translateX(12%); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.1); }
}

/* ---------- Hero content ---------- */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-top: calc(var(--nav-height) + 0.5rem);
  padding-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
          backdrop-filter: blur(14px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 8px 24px rgba(0, 0, 0, 0.18);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.85);
  flex-shrink: 0;
}
.hero-sub {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 46ch;
  margin-bottom: 1.25rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 480px) {
  .hero-actions .btn { flex: 1 1 auto; }
}

.hero-visual { position: relative; display: flex; justify-content: center; padding-bottom: 1.75rem; }
.hero-float-photo {
  position: absolute;
  top: -1.25rem;
  right: 0.5rem;
  width: 92px;
  height: 92px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 14px 30px rgba(10, 16, 32, 0.45);
  z-index: 2;
  animation: heroFloat 8s ease-in-out infinite;
}
.hero-float-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (min-width: 600px) {
  .hero-float-photo { width: 120px; height: 120px; top: -1.75rem; right: -1.25rem; }
}
@media (min-width: 960px) {
  .hero-float-photo { width: 140px; height: 140px; top: -2.25rem; right: -2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-float-photo { animation: none; }
}
.hero-photo-card {
  position: relative;
  width: min(100%, 460px);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(201, 168, 76, 0.35);
  border: 4px solid rgba(255, 255, 255, 0.08);
}
.hero-photo-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  left: 1.25rem;
  bottom: -1.5rem;
  background: linear-gradient(165deg, #ffffff 0%, #f3f0e8 100%);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.1rem;
  box-shadow: 0 12px 24px rgba(27, 42, 74, 0.28), 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 -2px 6px rgba(27, 42, 74, 0.08) inset;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.2;
}
.hero-badge svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  fill: var(--gold);
  flex-shrink: 0;
}
.hero-badge-text { display: flex; flex-direction: column; }
.hero-badge-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-badge-label {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body-text);
  max-width: 10ch;
}

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
  .hero-text { margin-bottom: 142px; }
  .hero-visual { justify-content: flex-end; padding-bottom: 0; }
  .hero-photo-card { width: 100%; max-width: 440px; }
  .hero-badge { bottom: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow, .hero-cloud--1, .hero-cloud--2, .hero-cloud--3 { animation: none; }
}

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats {
  background: var(--navy);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18), 0 3px 8px rgba(0, 0, 0, 0.35);
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stat {
    border-bottom: none;
    padding-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0 1rem;
  }
  .stat:first-child { border-left: none; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--gray-light); position: relative; overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-media {
  position: relative;
  padding-bottom: 1.5rem;
  padding-right: 1.5rem;
}
.about-media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
}
.about-media-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 28px rgba(27, 42, 74, 0.32), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
  border: 1px solid rgba(201, 168, 76, 0.35);
}
.about-media-badge svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}
.about-media-float {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 88px;
  height: 116px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 3px solid var(--white);
  outline: 2px solid var(--gold);
  outline-offset: -1px;
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.about-media-float img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 600px) {
  .about-media-float { width: 110px; height: 145px; top: -2rem; left: -1.75rem; }
}
@media (min-width: 900px) {
  .about-media-float { width: 130px; height: 172px; top: -2.5rem; left: -2.25rem; }
}
@media (prefers-reduced-motion: no-preference) {
  .about-media-float { animation: heroFloat 10s ease-in-out infinite; animation-delay: -4s; }
}
@media (prefers-reduced-motion: reduce) {
  .about-media-float { animation: none; }
}
.about-content h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 1.25rem;
}
.about-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.about-credential {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
  }
}

/* ==========================================================================
   Approach / Pain points
   ========================================================================== */
.approach { background: var(--white); position: relative; overflow: hidden; }
.watermark-pin-approach {
  width: 360px;
  height: 360px;
  bottom: -80px;
  left: -80px;
  transform: rotate(8deg);
}
.approach-rows {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.approach-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}
.approach-media-wrap {
  position: relative;
}
.approach-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.approach-media-float {
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  width: 84px;
  height: 112px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 3px solid var(--white);
  outline: 2px solid var(--gold);
  outline-offset: -1px;
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.approach-media-float img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 600px) {
  .approach-media-float { width: 104px; height: 138px; right: -1.5rem; bottom: -2rem; }
}
@media (min-width: 860px) {
  .approach-media-float { width: 120px; height: 158px; right: -2rem; bottom: -2.25rem; }
}
@media (prefers-reduced-motion: no-preference) {
  .approach-media-float { animation: heroFloat 11s ease-in-out infinite; animation-delay: -2s; }
}
@media (prefers-reduced-motion: reduce) {
  .approach-media-float { animation: none; }
}
.approach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.approach-content h3 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 0.5rem 0 1.1rem;
}
.approach-content p {
  font-size: 1rem;
  line-height: 1.7;
}
.approach-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}
.approach-tag--pain { background: rgba(179, 65, 63, 0.1); color: #b3413f; }
.approach-tag--solution { background: var(--gold-tint); color: var(--gold-dark); margin-top: 0.5rem; }

@media (min-width: 860px) {
  .approach-row { grid-template-columns: 1.1fr 1fr; gap: 3.5rem; }
  .approach-row--reverse .approach-media { order: 2; }
  .approach-row--reverse .approach-content { order: 1; }
}

/* Scroll-driven zoom on images, progressively enhanced */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .scroll-zoom {
      animation: scrollZoom linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 40%;
    }
  }
}
@keyframes scrollZoom {
  from { transform: scale(1.18); filter: saturate(0.85); }
  to { transform: scale(1); filter: saturate(1); }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services { position: relative; overflow: hidden; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.service-card {
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card h3 {
  font-size: 1.4rem;
}
.service-card p {
  font-size: 0.98rem;
  line-height: 1.65;
}
.service-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.service-icon {
  width: 32px;
  height: 32px;
}

.service-card--navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}
.service-card--navy h3 { color: var(--white); }
.service-card--navy .service-icon { color: var(--gold); }
.service-card--navy .service-icon-wrap {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 -3px 6px rgba(0, 0, 0, 0.3) inset, 0 6px 14px rgba(0, 0, 0, 0.2);
}

.service-card--white {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--body-text);
}
.service-card--white .service-icon { color: var(--navy); }
.service-card--white .service-icon-wrap {
  background: linear-gradient(155deg, #ffffff 0%, var(--gray-light) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 4px 4px 10px rgba(27, 42, 74, 0.08), -4px -4px 10px rgba(255, 255, 255, 0.9);
}

.service-card--gold {
  background: var(--gold-tint);
  color: var(--body-text);
}
.service-card--gold .service-icon { color: var(--gold-dark); }
.service-card--gold .service-icon-wrap {
  background: linear-gradient(155deg, #fffdf7 0%, var(--gold-tint) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 4px 4px 10px rgba(201, 168, 76, 0.18), -4px -4px 10px rgba(255, 255, 255, 0.9);
}

@media (min-width: 700px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ==========================================================================
   Listings
   ========================================================================== */
.listings { background: var(--gray-light); position: relative; overflow: hidden; }
.listings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
.listing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.listing-image {
  position: relative;
  aspect-ratio: 4 / 3;
}
.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listing-price {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(165deg, #e6d191 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 -2px 4px rgba(120, 92, 24, 0.3) inset, 0 6px 14px rgba(27, 42, 74, 0.25);
}
.listing-body { padding: 1.4rem 1.5rem 1.6rem; }
.listing-specs {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 0.6rem;
}
.spec {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}
.spec svg { width: 19px; height: 19px; }
.listing-address {
  font-size: 0.95rem;
  color: var(--body-text);
}

@media (min-width: 760px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .listings-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { position: relative; overflow: hidden; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.testimonial {
  margin: 0;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.testimonial--featured {
  background: var(--navy-tint);
  border: 1px solid var(--border);
}
.stars {
  display: flex;
  gap: 0.25rem;
  color: var(--gold);
}
.stars svg { width: 18px; height: 18px; }
.testimonial blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-soft) 0%, var(--navy) 60%, var(--navy-700) 100%);
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 -2px 4px rgba(0, 0, 0, 0.3) inset, 0 4px 10px rgba(27, 42, 74, 0.25);
}
.cite-text { display: flex; flex-direction: column; }
.cite-name { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.cite-location { font-size: 0.85rem; color: var(--body-text); }

@media (min-width: 860px) {
  .testimonials-grid {
    grid-template-columns: 1.3fr 1fr;
    grid-template-areas:
      "featured second"
      "featured third";
  }
  .testimonial--featured { grid-area: featured; justify-content: center; }
  .testimonials-grid .testimonial:nth-child(2) { grid-area: second; }
  .testimonials-grid .testimonial:nth-child(3) { grid-area: third; }
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--navy); color: rgba(255, 255, 255, 0.85); position: relative; overflow: hidden; }
.contact-bg-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.contact-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.contact-glow--1 {
  width: 28rem;
  height: 28rem;
  top: -10rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 70%);
}
.contact-glow--2 {
  width: 24rem;
  height: 24rem;
  bottom: -8rem;
  right: -6rem;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 70%);
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.contact-info h2 { color: var(--white); margin-bottom: 1rem; font-size: clamp(2rem, 5vw, 2.75rem); }
.contact-info > p { font-size: 1.05rem; line-height: 1.7; max-width: 46ch; }

.contact-details {
  margin: 2rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.contact-details li:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateX(4px);
}
.contact-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 -3px 6px rgba(0, 0, 0, 0.3) inset;
  flex-shrink: 0;
}
.contact-icon-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}
.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.contact-details a:hover { color: var(--gold); }
.contact-detail-text > span:not(.contact-detail-label) { color: var(--white); }
.contact-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}
.contact-meta svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-form {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
}
.contact-form-head h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.contact-form-head p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--body-text);
  margin: 0;
}
.form-row-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: flex; flex-direction: column; gap: 0.5rem; }
.form-row label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}
.form-row input,
.form-row textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--gray-light);
  color: var(--ink);
  box-shadow: inset 0 2px 5px rgba(27, 42, 74, 0.06);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: inset 0 1px 3px rgba(27, 42, 74, 0.08), 0 0 0 4px rgba(201, 168, 76, 0.15);
}
.form-helper {
  font-size: 0.82rem;
  color: var(--body-text);
}
.form-submit { margin-top: 0.25rem; width: 100%; }
.form-status {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  min-height: 1.2em;
  margin: 0;
}

@media (min-width: 560px) {
  .form-row-group { flex-direction: row; }
  .form-row-group .form-row { flex: 1 1 0; }
}

@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
  .contact-form { padding: 2.75rem; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy-700); color: rgba(255, 255, 255, 0.7); position: relative; overflow: hidden; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
}
.social-links { display: flex; gap: 0.85rem; margin-top: 0.5rem; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-links a:hover { background: var(--gold); color: var(--navy); }
.social-links svg { width: 18px; height: 18px; }

.footer-links { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-links h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.footer-links a,
.footer-links span { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); }
.footer-links a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 699px) {
  .footer-grid { text-align: center; justify-items: center; }
  .footer-brand { align-items: center; }
  .footer-links { align-items: center; }
  .footer-bottom-inner { text-align: center; align-items: center; }
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { transform: translate(-48px, 0); }
.reveal-right { transform: translate(48px, 0); }
.reveal-left.is-visible,
.reveal-right.is-visible { transform: translate(0, 0); }
.testimonials-grid .testimonial:nth-child(2).is-visible { transition-delay: 0.08s; }
.testimonials-grid .testimonial:nth-child(3).is-visible { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(2).is-visible { transition-delay: 0.06s; }
.services-grid .service-card:nth-child(3).is-visible { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(4).is-visible { transition-delay: 0.18s; }
.listings-grid .listing-card:nth-child(2).is-visible { transition-delay: 0.08s; }
.listings-grid .listing-card:nth-child(3).is-visible { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-card, .listing-card, .navbar, .nav-links, .btn {
    transition: none;
  }
}
