:root {
  --navy: #0b1f3a;
  --navy-deep: #071526;
  --navy-mid: #132a4d;
  --gold: #c9a227;
  --gold-bright: #e0bc4a;
  --gold-soft: #f4e7c3;
  --white: #ffffff;
  --paper: #f7f5f0;
  --muted: #5d6774;
  --ink: #152033;
  --line: #e6e2d8;
  --blue-tag: #1d4f91;
  --amber-tag: #c47a12;
  --green-tag: #2f6b3a;
  --radius: 14px;
  --shadow: 0 16px 40px rgba(11, 31, 58, 0.12);
  --header: 118px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cinzel", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

svg { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; }
svg[stroke] { fill: none; stroke: currentColor; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 14px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.08);
}

.topbar {
  background: var(--navy);
  color: #d7deea;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  gap: 12px;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
}

.topbar svg { width: 14px; height: 14px; fill: var(--gold); }

.login-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
}
.login-avatar svg { fill: var(--navy); width: 12px; height: 12px; }

.navbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img { width: 64px; height: 64px; object-fit: contain; }

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  font-size: 18px;
}
.brand-sub {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 600;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.site-nav > a,
.nav-drop-trigger {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.site-nav > a:hover,
.nav-drop-trigger:hover,
.site-nav .is-active > a,
.site-nav > a.is-active {
  color: var(--gold);
}

.site-nav > a.is-active::after,
.nav-drop.is-active .nav-drop-trigger::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
}

.nav-drop { position: relative; }
.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-top: -3px;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 220ms var(--ease);
}

.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.nav-drop-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  min-height: 44px;
}
.nav-drop-menu a:hover { background: var(--paper); color: var(--gold); }

.nav-call {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #f8efd2, #ead48a);
  border: 1px solid #d7b75a;
  padding: 8px 14px;
  min-height: 52px;
  color: var(--navy);
}

.nav-call-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
}
.nav-call-icon svg { width: 16px; height: 16px; fill: var(--gold); }
.nav-call strong { display: block; font-size: 14px; line-height: 1.1; }
.nav-call small { color: var(--muted); font-size: 11px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: 200ms;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(72vh, 680px);
  color: var(--white);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-media,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 18, 36, 0.82) 0%, rgba(7, 18, 36, 0.48) 52%, rgba(7, 18, 36, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 18, 36, 0.18), rgba(7, 18, 36, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 24px;
  padding: 64px 0 80px;
}

.hero-badge {
  display: inline-flex;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  padding: 8px 14px;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.hero h1 span { color: var(--gold-bright); display: inline; }

.hero p {
  max-width: 46ch;
  color: #e9edf4;
  margin: 0 0 28px;
  font-size: 1.05rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-seal {
  justify-self: end;
  width: min(210px, 42vw);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.35));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 3px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 220ms var(--ease);
}

.btn-gold {
  background: linear-gradient(180deg, #e3c35a, var(--gold));
  color: var(--navy);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shimmer 2.8s var(--ease) infinite;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35); }
@keyframes shimmer {
  to { transform: translateX(120%); }
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }

.btn-full { width: 100%; }
.btn svg { width: 16px; height: 16px; }

/* Quick services */
.quick-bar {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
  position: relative;
  z-index: 2;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 22px 10px;
  border-right: 1px solid var(--line);
  min-height: 118px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  transition: 220ms var(--ease);
}
.quick-item:last-child { border-right: 0; }
.quick-item svg { width: 34px; height: 34px; color: var(--gold); }
.quick-item:hover { color: var(--gold); background: #fcfaf4; }

/* Sections */
.section { padding: 84px 0; }
.section-muted { background: var(--paper); }

.section-head {
  text-align: center;
  margin-bottom: 42px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 8px;
}

.section-head h2,
.page-hero h1,
.cta-banner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
}

.gold-line {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px 14px 16px;
  text-align: center;
  transition: 250ms var(--ease);
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.category-card .icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  color: var(--gold);
}
.category-card .icon svg { width: 42px; height: 42px; }
.category-card img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  margin-bottom: 12px;
}
.category-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--navy);
}
.text-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.text-link svg { width: 14px; height: 14px; fill: currentColor; }

/* Properties */
.property-track-wrap { position: relative; }

.property-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 2px 18px;
}
.property-track::-webkit-scrollbar { display: none; }

.property-card {
  background: var(--white);
  border: 1px solid var(--line);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: 250ms var(--ease);
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.property-media { position: relative; display: block; overflow: hidden; }
.property-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 500ms var(--ease);
}
.property-card:hover .property-media img { transform: scale(1.06); }

.property-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 9px;
}
.tag-gold { background: var(--gold); color: var(--navy); }
.tag-blue { background: var(--blue-tag); }
.tag-amber { background: var(--amber-tag); }
.tag-green { background: var(--green-tag); }

.property-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.property-body h3 { margin: 0; font-size: 18px; }
.property-body h3 a:hover { color: var(--gold); }
.property-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.property-loc svg { width: 14px; height: 14px; fill: var(--gold); }
.property-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-size: 13px;
}
.property-meta span { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
.property-meta svg { width: 14px; height: 14px; fill: var(--gold); }
.property-meta strong { color: var(--navy); }

.slider-btn {
  position: absolute;
  top: 42%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  z-index: 2;
}
.slider-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.slider-prev { left: -10px; }
.slider-next { right: -10px; }
.slider-btn:hover { background: var(--navy); color: var(--gold); }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #d5d0c4;
  padding: 0;
}
.slider-dots button.is-active { background: var(--gold); }

/* Why choose */
.why-section {
  background: var(--navy-deep);
  color: var(--white);
  padding: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.why-copy {
  padding: 72px 48px 72px 0;
}

.why-copy h2 { color: var(--white); margin: 0 0 28px; }

.why-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}

.why-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
}
.why-item svg { width: 32px; height: 32px; color: var(--gold); }
.why-item h3 { margin: 0 0 4px; font-size: 16px; }
.why-item p { margin: 0; color: #c5cedb; font-size: 13px; }

.enquiry-box {
  background: var(--white);
  color: var(--ink);
  padding: 32px 28px;
  margin: 36px 0;
  box-shadow: var(--shadow);
}

.enquiry-box h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.5rem;
}
.enquiry-box .sub {
  color: var(--gold);
  margin: 4px 0 20px;
  font-weight: 600;
}

.enquiry-form { display: grid; gap: 12px; }
.enquiry-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--navy); }
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfaf7;
  padding: 12px 12px;
  min-height: 46px;
  color: var(--ink);
}
.enquiry-form textarea { min-height: 110px; resize: vertical; }
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.form-status { min-height: 1.2em; margin: 0; font-size: 13px; font-weight: 500; }
.form-status.is-ok { color: var(--green-tag); }
.form-status.is-err { color: #b42318; }

/* Stats */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
}
.stat {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 8px;
}
.stat svg { width: 36px; height: 36px; color: var(--gold); }
.stat strong { display: block; font-size: 1.6rem; color: var(--navy); line-height: 1; }
.stat span { color: var(--muted); font-size: 13px; }

/* CTA */
.cta-banner {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 90px 0;
  overflow: hidden;
}
.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 36, 0.72);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { margin: 0 0 22px; color: #dbe3ef; }

/* Footer */
.site-footer {
  background: #0a1830;
  color: #d5dce8;
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.1fr 0.8fr;
  gap: 28px;
  padding-bottom: 36px;
}
.footer-logo img { width: 70px; height: 70px; }
.footer-logo .brand-name { color: var(--white); }
.site-footer p { color: #b7c1d0; }
.site-footer h3 {
  color: var(--white);
  font-size: 16px;
  margin: 8px 0 16px;
  position: relative;
}
.site-footer h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
}
.site-footer li { margin-bottom: 8px; }
.site-footer a:hover { color: var(--gold); }
.contact-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}
.contact-list svg { width: 16px; height: 16px; fill: var(--gold); margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #2a3f5e;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.socials a:hover { background: var(--gold); color: var(--navy); }
.socials svg { width: 14px; height: 14px; fill: currentColor; }
.footer-seal .seal { width: 140px; }
.footer-bottom {
  border-top: 1px solid #1d304d;
  padding: 14px 0;
  font-size: 13px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom a { margin-left: 16px; color: #b7c1d0; }

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 220ms;
  z-index: 40;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

.seal svg { width: 100%; height: auto; display: block; }

/* Inner pages */
.page-hero {
  background:
    linear-gradient(90deg, rgba(7,18,36,.82), rgba(7,18,36,.55)),
    url("/assets/images/hero.jpg") center/cover;
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: #dbe3ef; margin: 10px 0 0; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-bar a {
  border: 1px solid var(--line);
  padding: 8px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.filter-bar a.is-active,
.filter-bar a:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.prose h2, .prose h3 { color: var(--navy); }
.prose p { color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  border: 1px solid var(--line);
  padding: 28px 22px;
  background: var(--white);
  transition: 250ms var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card svg { width: 40px; height: 40px; color: var(--gold); }
.service-card h3 { margin: 14px 0 8px; color: var(--navy); }

.detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
}
.detail-media img { width: 100%; height: 420px; object-fit: cover; }
.feature-list { display: grid; gap: 8px; margin: 18px 0; }
.feature-list li {
  display: flex;
  gap: 8px;
  align-items: center;
}
.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.login-card {
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.empty {
  text-align: center;
  padding: 40px;
  color: var(--muted);
}

[data-reveal] { opacity: 0; transform: translateY(18px); }
.js-ready [data-reveal] { will-change: transform, opacity; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .btn-gold::after { display: none; }
}

@media (max-width: 1100px) {
  .navbar-inner { grid-template-columns: auto auto 1fr; }
  .nav-call { justify-self: end; }
  .site-nav {
    position: absolute;
    top: 118px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .nav-drop-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    display: none;
  }
  .nav-drop.is-open .nav-drop-menu { display: block; }
  .nav-toggle { display: block; justify-self: end; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .property-track { grid-auto-columns: calc((100% - 18px) / 2); }
  .why-grid { grid-template-columns: 1fr; }
  .why-copy { padding: 56px 0 12px; }
  .enquiry-box { margin: 0 0 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-seal { justify-self: start; width: 140px; }
  .listing-grid, .service-grid { grid-template-columns: 1fr 1fr; }
  .split, .detail-grid { grid-template-columns: 1fr; }
}

.mobile-call {
  display: none;
}

@media (max-width: 760px) {
  .topbar-email { font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 62vw; }
  .nav-call { display: none; }
  .mobile-call {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 45;
    background: var(--navy);
    color: var(--gold);
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: var(--shadow);
  }
  .mobile-call svg { width: 16px; height: 16px; fill: var(--gold); }
  body { padding-bottom: 72px; }
  .to-top { bottom: 72px; }
  .navbar-inner { grid-template-columns: 1fr auto; min-height: 72px; }
  .brand img { width: 52px; height: 52px; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-item { border-bottom: 1px solid var(--line); }
  .category-grid, .listing-grid, .service-grid, .stats-grid, .why-items { grid-template-columns: 1fr; }
  .property-track { grid-auto-columns: 86%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero {
    min-height: 0;
    height: auto;
  }
  .hero-content {
    padding: 28px 0 24px;
    gap: 14px;
  }
  .hero-badge {
    margin-bottom: 12px;
    font-size: 11px;
    padding: 6px 10px;
  }
  .hero h1 {
    max-width: none;
    font-size: clamp(1.55rem, 7.5vw, 2.15rem);
    margin-bottom: 10px;
  }
  .hero p {
    margin-bottom: 16px;
    font-size: 0.95rem;
  }
  .hero-seal {
    position: absolute;
    top: 16px;
    right: 8px;
    width: 72px;
    justify-self: end;
  }
  .quick-item {
    min-height: 0;
    padding: 14px 8px;
    font-size: 12px;
  }
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 24px; }
  .slider-prev { left: 0; }
  .slider-next { right: 0; }
  .detail-media img { height: 240px; }
}

@media (min-width: 1101px) {
  .site-header.is-compact .navbar-inner { min-height: 68px; }
  .site-header.is-compact .brand img { width: 52px; height: 52px; }
}

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