/* =========================================================
   ZLATA PROPERTIES — Design System
   Palette: black marble + muted gold + warm cream
   Type: Fraunces (display serif) + Jost (body/sans)
   ========================================================= */

:root {
  --black:        #0B0B0A;
  --charcoal:     #181714;
  --charcoal-2:   #211F1B;
  --gold:         #C9A961;
  --gold-bright:  #E7CD8C;
  --gold-dim:     #8A7440;
  --cream:        #F4EFE4;
  --cream-2:      #ECE4D2;
  --ink:          #1C1B19;
  --stone:        #8A8578;
  --stone-light:  #B9B3A2;
  --white:        #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1180px;
  --edge: clamp(24px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  line-height: 1.12;
  color: inherit;
}

p { margin: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-bright); }
.btn-outline {
  border-color: rgba(201,169,97,0.55);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-outline-dark {
  border-color: rgba(28,27,25,0.35);
  color: var(--ink);
  background: transparent;
}
.btn-outline-dark:hover { border-color: var(--ink); }
.btn-wa svg { width: 17px; height: 17px; flex: none; }

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,11,10,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,169,97,0.18);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--edge);
  max-width: var(--max-width);
  margin: 0 auto;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.12em;
  color: var(--cream);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.wordmark span { color: var(--gold); }
.wordmark small {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.35em;
  color: var(--stone-light);
  font-weight: 400;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-light);
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
}
.nav-cta { display: flex; align-items: center; gap: 24px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 1px; background: var(--gold); display: block; }

/* Divider — signature marble-vein rule */
.vein-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
}
.vein-divider svg { width: 100%; max-width: 420px; height: 18px; }

/* Sections */
section { position: relative; }
.section-pad { padding: clamp(60px, 9vw, 110px) 0; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,10,0.55) 0%, rgba(11,11,10,0.35) 40%, rgba(11,11,10,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.hero-content .eyebrow { justify-content: center; }
.hero-content .eyebrow::before { display: none; }
.hero-title {
  font-size: clamp(44px, 8vw, 84px);
  color: var(--cream);
  letter-spacing: 0.01em;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--stone-light);
  max-width: 520px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--stone-light);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(180deg, var(--gold), transparent); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .3 } 50% { opacity: 1 } }

/* Page header (inner pages) */
.page-header {
  position: relative;
  padding: 150px 0 70px;
  background: var(--black);
  overflow: hidden;
  text-align: center;
}
.page-header-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,10,0.75), rgba(11,11,10,0.94));
}
.page-header-content { position: relative; z-index: 2; }
.page-header .eyebrow { justify-content: center; margin-bottom: 18px; }
.page-header .eyebrow::before { display: none; }
.page-header h1 { color: var(--cream); font-size: clamp(38px, 6vw, 58px); }
.page-header p { color: var(--stone-light); max-width: 560px; margin: 18px auto 0; font-size: 16px; }

/* Pillars */
.pillars {
  background: var(--black);
  padding: 64px 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pillar { text-align: left; }
.pillar-icon { width: 34px; height: 34px; color: var(--gold); margin-bottom: 18px; }
.pillar h3 {
  color: var(--cream);
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 600;
}
.pillar p { color: var(--stone-light); font-size: 14.5px; font-weight: 300; }

/* Comparison table */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}
.compare th, .compare td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(28,27,25,0.1);
  font-size: 14.5px;
}
.compare th {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11.5px;
  color: var(--stone);
  font-weight: 500;
}
.compare td:first-child { font-weight: 500; color: var(--ink); }
.compare .no { color: var(--stone); }
.compare .yes { color: var(--gold-dim); font-weight: 500; }
.compare .yes svg { width: 14px; height: 14px; margin-right: 8px; vertical-align: -2px; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(28,27,25,0.1);
  margin-top: 48px;
  border: 1px solid rgba(28,27,25,0.1);
}
.service-card {
  background: var(--cream);
  padding: 40px 34px;
  transition: background .25s ease;
}
.service-card:hover { background: var(--cream-2); }
.service-icon { width: 28px; height: 28px; color: var(--gold-dim); margin-bottom: 22px; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 600; }
.service-card p { font-size: 14px; color: var(--stone); font-weight: 300; }

/* Two-column split */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: 2px; }
.split-quote {
  position: absolute;
  bottom: -28px;
  left: -28px;
  right: 28px;
  background: var(--black);
  padding: 26px 30px;
  border-left: 2px solid var(--gold);
}
.split-quote p {
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 17px;
  font-style: normal;
  line-height: 1.4;
}

/* Process timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.timeline-step { text-align: left; }
.timeline-num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
  border: 1px solid rgba(201,169,97,0.4);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.timeline-step h4 { font-size: 15.5px; margin-bottom: 8px; font-weight: 600; }
.timeline-step p { font-size: 13px; color: var(--stone); font-weight: 300; }

/* CTA banner */
.cta-banner {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner .eyebrow { justify-content: center; margin-bottom: 20px; }
.cta-banner .eyebrow::before { display: none; }
.cta-banner h2 {
  color: var(--cream);
  font-size: clamp(30px, 5vw, 46px);
  max-width: 620px;
  margin: 0 auto 30px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Property cards / catalog */
.filter-bar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px 0 10px;
  border-bottom: 1px solid rgba(28,27,25,0.12);
  margin-bottom: 46px;
}
.filter-chip {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(28,27,25,0.2);
  border-radius: 20px;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  transition: all .2s ease;
}
.filter-chip.active, .filter-chip:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.property-card {
  background: var(--white);
  border: 1px solid rgba(28,27,25,0.08);
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}
.property-card:hover { box-shadow: 0 18px 40px rgba(28,27,25,0.12); transform: translateY(-3px); }
.property-media { position: relative; aspect-ratio: 4/3; background: var(--cream-2); overflow: hidden; }
.property-media-link { display: block; }
.property-media img { width: 100%; height: 100%; object-fit: cover; }
.property-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 13px;
  font-weight: 500;
}
.property-body { padding: 24px; }
.property-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
}
.property-zone { font-size: 13px; color: var(--stone); margin-bottom: 16px; letter-spacing: 0.02em; }
.property-specs {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: var(--ink);
  border-top: 1px solid rgba(28,27,25,0.08);
  padding-top: 16px;
  margin-bottom: 18px;
}
.property-specs span { display: flex; align-items: center; gap: 6px; }
.property-specs svg { width: 15px; height: 15px; color: var(--gold-dim); }
.property-desc {
  font-size: 13.5px;
  color: var(--stone);
  line-height: 1.55;
  margin-bottom: 18px;
  font-weight: 300;
}
.property-cta {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: 12.5px;
}

/* Empty state */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 90px 40px;
  border: 1px dashed rgba(28,27,25,0.22);
}
.empty-state svg { width: 44px; height: 44px; color: var(--gold-dim); margin: 0 auto 24px; }
.empty-state h3 { font-size: 24px; margin-bottom: 14px; }
.empty-state p { color: var(--stone); max-width: 420px; margin: 0 auto 30px; font-size: 15px; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.contact-info-block { display: flex; gap: 18px; margin-bottom: 32px; }
.contact-info-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(201,169,97,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--gold-dim); }
.contact-info-block h4 { font-size: 15px; margin-bottom: 6px; font-weight: 600; }
.contact-info-block p { font-size: 14.5px; color: var(--stone); }
.contact-map { margin-top: 20px; border: 1px solid rgba(28,27,25,0.1); }
.contact-map iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(0.3); }

.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.form-field input, .form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(28,27,25,0.25);
  background: transparent;
  padding: 12px 2px;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold-dim); }
.form-field textarea { resize: vertical; min-height: 100px; }

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--stone-light);
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(201,169,97,0.15);
}
.footer-top h4 {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-top p, .footer-top a { font-size: 14px; color: var(--stone-light); font-weight: 300; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,97,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 15px; height: 15px; color: var(--gold); }
.footer-social a:hover { background: var(--gold); }
.footer-social a:hover svg { color: var(--black); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 12.5px;
  color: var(--stone);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ PROPERTY DETAIL PAGE ============ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-light);
  padding: 20px 0 0;
}
.back-link:hover { color: var(--gold-bright); }
.back-link svg { width: 14px; height: 14px; }

.detail-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.detail-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.detail-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,10,0.15) 0%, rgba(11,11,10,0.35) 55%, rgba(11,11,10,0.95) 100%);
}
.detail-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 46px;
}
.detail-badge {
  display: inline-block;
  border: 1px solid rgba(201,169,97,0.6);
  color: var(--gold-bright);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 22px;
  font-weight: 500;
}
.detail-hero-content h1 {
  color: var(--cream);
  font-size: clamp(32px, 5.5vw, 56px);
  margin-bottom: 12px;
  max-width: 760px;
}
.detail-hero-content .detail-zone {
  color: var(--stone-light);
  font-size: 13.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-specbar {
  background: var(--black);
  border-top: 1px solid rgba(201,169,97,0.18);
  padding: 34px 0;
}
.detail-specbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.detail-price .eyebrow { margin-bottom: 10px; }
.detail-price .eyebrow::before { display: none; }
.detail-price-value {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--cream);
}
.detail-specs-row {
  display: flex;
  gap: clamp(24px, 4vw, 52px);
  flex-wrap: wrap;
}
.detail-spec {
  text-align: left;
}
.detail-spec strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-bright);
  font-weight: 600;
}
.detail-spec span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-light);
}

.feature-block { padding: clamp(56px, 8vw, 90px) 0; }
.feature-block:nth-child(even) { background: var(--cream-2); }
.feature-block-text { max-width: 720px; margin-bottom: 40px; }
.feature-block-text p {
  color: var(--stone);
  font-size: 15.5px;
  margin-top: 16px;
  font-weight: 300;
}
.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.detail-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 1px;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.amenity-card {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 1px;
}
.amenity-card img { width: 100%; height: 100%; object-fit: cover; }
.amenity-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,11,10,0.75), transparent 55%);
}
.amenity-label {
  position: absolute;
  bottom: 16px; left: 18px;
  z-index: 2;
  color: var(--cream);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}
.location-card {
  background: var(--white);
  border: 1px solid rgba(28,27,25,0.08);
  padding: 30px;
}
.location-card h4 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 14px;
  font-weight: 600;
}
.location-card p { font-size: 14.5px; color: var(--stone); line-height: 1.65; }
.admin-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--black);
  padding: 22px 30px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-bar span:first-child {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-light);
}
.admin-bar span:last-child {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-bright);
}
.river-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.river-gallery img { width: 100%; height: 220px; object-fit: cover; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid rgba(28,27,25,0.08);
}
.spec-table tr:not(:last-child) td { border-bottom: 1px solid rgba(28,27,25,0.08); }
.spec-table td {
  padding: 18px 26px;
  font-size: 14.5px;
}
.spec-table td:first-child { color: var(--stone); }
.spec-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--ink);
  font-family: var(--font-display);
}

@media (max-width: 900px) {
  .detail-gallery-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .river-gallery { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .detail-gallery-grid { grid-template-columns: 1fr; }
  .detail-gallery-grid img { height: 220px; }
  .detail-specbar-inner { flex-direction: column; align-items: flex-start; }
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; color: white; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split-quote { position: static; margin-top: 20px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .property-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .property-grid { grid-template-columns: 1fr; }
  .compare { font-size: 13px; }
  .compare th, .compare td { padding: 14px 12px; }
}
