/* ===================================================
   THE LAVERY GROUP — Global Design System
   Navy + Warm Gold | Cinzel + Josefin Sans
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Josefin+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* --- Custom Properties --- */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #1A2F45;
  --navy-light:  #263C52;
  --gold:        #C9A460;
  --gold-light:  #E8C97B;
  --gold-pale:   #F5E9C8;
  --gold-dark:   #A07B34;
  --cream:       #F8F7F4;
  --off-white:   #F1EFE9;
  --white:       #FFFFFF;
  --slate:       #64748B;
  --slate-light: #94A3B8;
  --border:      #E2DDD6;
  --text-primary: #0D1B2A;
  --text-muted:   #5C6B7A;

  --font-heading: 'Cinzel', Georgia, serif;
  --font-body:    'Josefin Sans', system-ui, sans-serif;

  --nav-h: 100px;
  --section-gap: clamp(4rem, 8vw, 8rem);
  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm:  0 2px 8px rgba(13,27,42,0.08);
  --shadow-md:  0 8px 24px rgba(13,27,42,0.12);
  --shadow-lg:  0 20px 60px rgba(13,27,42,0.18);
  --shadow-gold: 0 4px 20px rgba(201,164,96,0.25);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:    150ms;
  --dur-normal:  300ms;
  --dur-slow:    600ms;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* Hard-stop horizontal panning on mobile: clip on BOTH html and body —
   body overflow-x alone is ignored for viewport panning on Android Chrome
   when reveal animations translate elements past the right edge */
html, body { overflow-x: clip; max-width: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* --- Accessibility: skip link + visible focus --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: top var(--dur-fast);
}
.skip-link:focus { top: 1rem; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* --- Sticky mobile action bar --- */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,164,96,0.25);
  padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
}
.mobile-action-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.5rem;
  white-space: nowrap;
}
.mobile-action-bar__btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.mobile-action-bar__btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
@media (max-width: 768px) {
  .mobile-action-bar { display: flex; }
  body { padding-bottom: 58px; }        /* keep footer clear of the bar */
  body.menu-open .mobile-action-bar { display: none; }  /* hide behind full-screen menu */
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Container --- */
.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
}
.container--wide { --container: 1400px; }
.container--narrow { --container: 800px; }

/* ===================================================
   NAVIGATION
=================================================== */
.nav {
  position: fixed;
  top: 1rem; left: 1.5rem; right: 1.5rem;
  z-index: 100;
  height: var(--nav-h);
  border-radius: var(--radius-md);
  background: rgba(13, 27, 42, 0.35);
  backdrop-filter: blur(6px);
  transition: background var(--dur-normal) var(--ease-in-out),
              box-shadow var(--dur-normal) var(--ease-in-out),
              top var(--dur-normal) var(--ease-in-out);
}
.nav.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,164,96,0.2), var(--shadow-lg);
  top: 0.75rem;
}
.nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1;
}
.nav__logo img {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--dur-fast);
  position: relative;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--dur-normal) var(--ease-out);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { right: 0; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  z-index: 1;
}

/* Services dropdown */
.nav__item--dropdown {
  position: relative;
}
.nav__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}
.nav__link--dropdown svg {
  width: 10px;
  height: 10px;
  transition: transform var(--dur-fast);
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: rgba(13,27,42,0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,164,96,0.2);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown,
.nav__item--dropdown.open .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__item--dropdown:hover .nav__link--dropdown svg,
.nav__item--dropdown.open .nav__link--dropdown svg {
  transform: rotate(180deg);
}
.nav__dropdown-link {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast), color var(--dur-fast);
  white-space: nowrap;
}
.nav__dropdown-link:hover {
  background: rgba(201,164,96,0.12);
  color: var(--gold);
}
.nav__mobile-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 1.4svh, 0.9rem);
  flex-shrink: 0;
}
.nav__mobile-sublink {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.8svh, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast);
}
.nav__mobile-sublink:hover { color: var(--gold); }

.nav__cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast), box-shadow var(--dur-fast);
}
.nav__cta:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  color: var(--navy);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur-normal) var(--ease-out),
              opacity var(--dur-fast);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — sized so every item fits on one screen, no scrolling */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 2.2svh, 1.5rem);
  padding: calc(var(--nav-h) + 1rem) 1.5rem 2rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-normal) var(--ease-in-out);
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: auto;
}
.nav__mobile-link {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3.2svh, 1.7rem);
  color: var(--white);
  letter-spacing: 0.06em;
  transition: color var(--dur-fast);
  flex-shrink: 0;
}
.nav__mobile-link:hover { color: var(--gold); }

/* ===================================================
   HERO
=================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.82) 0%,
    rgba(13,27,42,0.55) 60%,
    rgba(13,27,42,0.35) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 2rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 90px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line-inner {
  display: block;
  transform: translateY(100%);
  animation: slideUp 1s var(--ease-out) forwards;
}
.hero__title .line:nth-child(1) .line-inner { animation-delay: 0.5s; }
.hero__title .line:nth-child(2) .line-inner { animation-delay: 0.65s; }
.hero__title .line:nth-child(3) .line-inner { animation-delay: 0.8s; }
.hero__title em {
  font-style: normal;
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.3s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,164,96,0.8), transparent);
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  background: var(--navy);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,164,96,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-top: 1rem;
  max-width: 500px;
}

/* ===================================================
   BUTTONS
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-out);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--ghost:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===================================================
   MARQUEE STRIP
=================================================== */
.marquee-strip {
  background: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,164,96,0.2);
  border-bottom: 1px solid rgba(201,164,96,0.2);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.marquee-item::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===================================================
   SECTIONS
=================================================== */
.section { padding: var(--section-gap) 0; }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--cream { background: var(--cream); }
.section--off { background: var(--off-white); }

.section__header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__header--center { text-align: center; }

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section__eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section__header--center .section__eyebrow { flex-direction: column; }
.section__header--center .section__eyebrow::before {
  width: 40px;
  height: 1px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section--dark .section__title { color: var(--white); }
.section__sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.section--dark .section__sub { color: rgba(255,255,255,0.65); }
.section__header--center .section__sub { margin-inline: auto; }

/* ===================================================
   CARDS
=================================================== */
/* Service Card */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-normal) var(--ease-out),
              box-shadow var(--dur-normal) var(--ease-out),
              border-color var(--dur-normal);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-pale), rgba(201,164,96,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-dark);
}
.service-card__number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(13,27,42,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.service-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Property Card */
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--dur-normal) var(--ease-out),
              box-shadow var(--dur-normal) var(--ease-out);
  cursor: pointer;
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.property-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.property-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.property-card:hover .property-card__img img { transform: scale(1.06); }
.property-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  background: var(--gold);
  color: var(--navy);
}
.property-card__body { padding: 1.75rem; }
.property-card__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.property-card__price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}
.property-card__address {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.property-card__address svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.property-card__features {
  display: flex;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.property-card__feat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.property-card__feat svg { width: 16px; height: 16px; color: var(--gold-dark); }

/* ===================================================
   STATS STRIP
=================================================== */
.stats-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 0;
  border-top: 1px solid rgba(201,164,96,0.15);
  border-bottom: 1px solid rgba(201,164,96,0.15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.stats-divider {
  width: 1px;
  background: rgba(201,164,96,0.15);
  margin: 0 auto;
}

/* ===================================================
   ABOUT SPLIT
=================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-split--reverse { direction: rtl; }
.about-split--reverse > * { direction: ltr; }
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img__accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  z-index: -1;
}
.about-img__badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(13,27,42,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,164,96,0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: var(--white);
}
.about-img__badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
}
.about-img__badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.about-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-list__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.about-list__icon svg { width: 13px; height: 13px; color: var(--gold-dark); }
.about-list__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-list__text strong { color: var(--text-primary); font-weight: 600; }

/* ===================================================
   CTA BANNER
=================================================== */
.cta-banner {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A460' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner__gold-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-banner__content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.cta-banner__title em {
  font-style: normal;
  color: var(--gold);
}
.cta-banner__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ===================================================
   TESTIMONIAL
=================================================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--gold-pale);
  pointer-events: none;
}
.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  position: relative;
  margin-bottom: 2rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.stars svg { width: 14px; height: 14px; color: var(--gold); fill: var(--gold); }

/* ===================================================
   FORM
=================================================== */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  appearance: none;
}
.form-control::placeholder { color: var(--slate-light); }
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,164,96,0.15);
}
textarea.form-control {
  resize: vertical;
  min-height: 140px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ===================================================
   PROPERTY FILTERS
=================================================== */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  min-width: 120px;
}
.filter-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.filter-group select {
  padding: 0.65rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream);
  outline: none;
  cursor: pointer;
  transition: border-color var(--dur-fast);
}
.filter-group select:focus { border-color: var(--gold); }

/* ===================================================
   PROPERTY STATUS TABS
=================================================== */
.property-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.property-tab {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: all var(--dur-fast);
}
.property-tab:hover { border-color: var(--gold); color: var(--gold-dark); }
.property-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

/* ===================================================
   LONG-FORM CONTENT (About / Sales / Lettings / Fees)
=================================================== */
.prose {
  max-width: 760px;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.prose p + p { margin-top: 1.25rem; }
.prose--wide { max-width: 900px; }

.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.content-card + .content-card { margin-top: 1.5rem; }
.content-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

/* Checklist grid (tailored property support list, features, etc.) */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 2rem;
}
.check-grid__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.check-grid__item svg {
  width: 15px;
  height: 15px;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

/* SLA / service-standard cards */
.sla-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
}
.sla-card + .sla-card { margin-top: 1.25rem; }
.sla-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.sla-card__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.sla-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.sla-card p + p { margin-top: 0.6rem; }
.sla-card--emergency { border-left-color: #B5473B; }
.sla-card--emergency .sla-card__label { color: #B5473B; }

.legal-note {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.legal-note strong { color: var(--text-primary); }
.legal-note--warning {
  background: #FBEFEC;
  border-color: #E6C3BB;
  color: #7A2E22;
}

/* Compliance link list (Fees & Compliance page) */
.compliance-list {
  display: flex;
  flex-direction: column;
}
.compliance-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-primary);
}
.compliance-list__item:last-child { border-bottom: none; }
.compliance-list__status {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  white-space: nowrap;
}

/* Tailored working-style toggle cards (hands-free vs collaborative) */
.style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.style-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.style-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.style-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================================================
   PROPERTY GRID
=================================================== */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

/* ===================================================
   PROPERTY DETAIL
=================================================== */
.property-detail {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery__main {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 4px;
}
.gallery__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity var(--dur-fast);
}
.gallery__thumb:hover,
.gallery__thumb.active { opacity: 1; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.property-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.property-sidebar__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.property-sidebar__header {
  background: var(--navy);
  padding: 1.75rem;
  color: var(--white);
}
.property-sidebar__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.property-sidebar__price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}
.property-sidebar__status {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(201,164,96,0.2);
  color: var(--gold);
  border: 1px solid rgba(201,164,96,0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}
.property-sidebar__body { padding: 1.75rem; }
.property-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.prop-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.prop-feat svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.contact-mini {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}
.contact-mini svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.contact-mini span { font-size: 0.85rem; color: var(--text-muted); }
.contact-mini strong { display: block; font-size: 0.9rem; color: var(--text-primary); margin-top: 2px; }

/* ===================================================
   CONTACT PAGE
=================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  align-items: flex-start;
}
.contact-info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-pale), rgba(201,164,96,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card__icon svg { width: 20px; height: 20px; color: var(--gold-dark); }
.contact-info-card__title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.contact-info-card__detail {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-info-card__detail a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--dur-fast);
}
.contact-info-card__detail a:hover { text-decoration-color: var(--gold-dark); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-card__sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ===================================================
   FOOTER
=================================================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.footer__brand-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
  margin-bottom: 1.75rem;
}
.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast);
  margin-bottom: 0.5rem;
}
.footer__contact-link svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.footer__contact-link:hover { color: var(--white); }
.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer__link::before {
  content: '';
  display: block;
  width: 12px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--dur-fast), width var(--dur-fast);
}
.footer__link:hover { color: var(--white); }
.footer__link:hover::before { opacity: 1; width: 16px; }
.footer__bottom {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--dur-fast);
}
.footer__legal a:hover { color: var(--gold); }

/* ===================================================
   ANIMATIONS
=================================================== */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  to { transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.reveal--left {
  transform: translateX(-40px);
}
.reveal.reveal--right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===================================================
   GRID HELPERS
=================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.gap-gold { gap: 1rem; }

/* ===================================================
   GOLD DIVIDER
=================================================== */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-divider__icon { color: var(--gold); width: 20px; height: 20px; flex-shrink: 0; }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split--reverse { direction: ltr; }
  .about-img { aspect-ratio: 16/9; max-width: 600px; }
  .property-detail { grid-template-columns: 1fr; }
  .property-sidebar { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  /* Full-width flush nav bar on mobile — no floating card inset */
  .nav,
  .nav.scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(16px);
  }
  .nav__inner { padding: 0 1.25rem; }
  .nav__logo img { height: 52px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
  /* Scroll indicator collides with hero trust line on small screens */
  .hero__scroll { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .properties-grid { grid-template-columns: 1fr; }
  /* Brand block full width, Services + Compliance side by side */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .filter-bar { flex-direction: column; }
  .filter-group { min-width: 100%; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .gallery__thumbs { grid-template-columns: repeat(2, 1fr); }
  .property-features-list { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .check-grid { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: 1fr; }
  .nav__dropdown { position: static; }
  .compliance-list__item { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 1.75rem; }
}
