/* ═══════════════════════════════════════════════════════
   EiroMaja — Public Site Design System
   ═══════════════════════════════════════════════════════ */

:root {
  --navy:        #0d1b2a;
  --navy-light:  #1a2f45;
  --blue:        #1b4f8a;
  --blue-light:  #2563ab;
  --gold:        #c8a96e;
  --gold-dark:   #a88a52;
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --gray-100:    #f0f2f5;
  --gray-200:    #e2e8f0;
  --gray-400:    #a0aec0;
  --gray-600:    #718096;
  --text:        #1a202c;
  --text-muted:  #64748b;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);

  --transition:  all .22s ease;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --header-h:    72px;
  --container:   1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; line-height: 1;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold    { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-outline-dark { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-dark:hover { background: var(--blue); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(13,27,42,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 28px; }

.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo-mark {
  width: 36px; height: 36px; background: var(--blue); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: var(--white); letter-spacing: -1px;
}
.header-logo-text { font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.header-logo-text span { color: var(--gold); }

.header-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.header-nav a {
  padding: 8px 12px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.7); border-radius: var(--radius-sm); transition: var(--transition);
}
.header-nav a:hover, .header-nav a.active { color: var(--white); background: rgba(255,255,255,.08); }

.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { font-size: 14px; font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 6px; }
.header-phone svg { color: var(--gold); }

.lang-switcher { display: flex; align-items: center; gap: 1px; }
.lang-switcher a {
  padding: 4px 7px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.45);
  border-radius: var(--radius-sm); transition: var(--transition); text-transform: uppercase;
}
.lang-switcher a:hover  { color: var(--white); }
.lang-switcher a.active { color: var(--gold); }

.header-cta { font-size: 14px; padding: 9px 18px; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--header-h); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0a1520 0%, #1a3558 55%, #0d1b2a 100%); }
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://www.aplestate.com/files/a2024/588a0509-2.webp');
  background-size: cover; background-position: center; opacity: .15;
}
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,27,42,.9) 50%, transparent 100%); }

.hero-content { position: relative; z-index: 1; padding: 80px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: rgba(200,169,110,.15);
  border: 1px solid rgba(200,169,110,.3); border-radius: 100px;
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: .8px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-title {
  font-size: clamp(32px, 5vw, 60px); font-weight: 800; color: var(--white);
  line-height: 1.08; letter-spacing: -2px; max-width: 700px; margin-bottom: 20px;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,.6); max-width: 500px; line-height: 1.7; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat-num { font-size: 34px; font-weight: 800; color: var(--white); letter-spacing: -1px; line-height: 1; }
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════
   SEARCH BAR
   ═══════════════════════════════════════════════════════ */
.search-wrap { margin-top: -32px; position: relative; z-index: 10; }
.search-box {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 12px;
  max-width: 880px;
}
.search-tabs { display: flex; gap: 4px; padding: 0 4px 10px; border-bottom: 1px solid var(--gray-100); margin-bottom: 10px; }
.search-tab {
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  background: none; border: none; cursor: pointer; transition: var(--transition);
}
.search-tab.active { background: var(--blue); color: var(--white); }
.search-tab:hover:not(.active) { background: var(--gray-100); color: var(--text); }

.search-fields { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 8px; align-items: end; }
.search-field label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 5px; }
.search-field select, .search-field input {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-size: 14px; font-family: var(--font);
  color: var(--text); background: var(--white); outline: none; transition: var(--transition);
}
.search-field select:focus, .search-field input:focus { border-color: var(--blue); }

/* ═══════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════ */
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--navy); }
.section-gray { background: var(--off-white); }

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-eyebrow { font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.section-title { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--text); letter-spacing: -1px; line-height: 1.15; }
.section-dark .section-title { color: var(--white); }
.section-subtitle { font-size: 16px; color: var(--text-muted); margin-top: 12px; max-width: 560px; line-height: 1.65; }
.section-dark .section-subtitle { color: rgba(255,255,255,.5); }
.section-header.center .section-subtitle { margin: 12px auto 0; }

.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 16px; }
.section-link { font-size: 14px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 4px; white-space: nowrap; flex-shrink: 0; }
.section-link:hover { color: var(--blue-light); }
.section-dark .section-link { color: var(--gold); }
.section-dark .section-link:hover { color: #e8c882; }

/* ═══════════════════════════════════════════════════════
   PROJECT CARDS
   ═══════════════════════════════════════════════════════ */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.project-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.project-card-img { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--gray-100); }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.project-card:hover .project-card-img img { transform: scale(1.05); }

.project-card-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.badge-construction { background: #e67e22; color: #fff; }
.badge-planning     { background: #6c757d; color: #fff; }
.badge-completed    { background: #27ae60; color: #fff; }
.badge-sale         { background: var(--blue); color: #fff; }

.project-card-body { padding: 20px; }
.project-card-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 5px; line-height: 1.3; }
.project-card-address { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; display: flex; align-items: center; gap: 4px; }

.project-card-stats { display: flex; gap: 16px; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.project-card-stat  { font-size: 12px; color: var(--text-muted); }
.project-card-stat strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.2; }

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.service-card {
  padding: 32px 24px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
.service-card:hover { background: rgba(255,255,255,.07); border-color: rgba(200,169,110,.25); transform: translateY(-2px); }
.service-icon {
  width: 48px; height: 48px; background: rgba(200,169,110,.12);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--gold);
}
.service-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-desc  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 20px; }
.service-link  { font-size: 13px; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 5px; transition: var(--transition); }
.service-link:hover { gap: 8px; }

/* ═══════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════ */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.stat-item  { background: var(--white); padding: 40px 32px; text-align: center; }
.stat-num   { font-size: 48px; font-weight: 800; color: var(--navy); letter-spacing: -2px; line-height: 1; }
.stat-num span { color: var(--blue); }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 8px; }

/* ═══════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════ */
.cta-section { background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%); padding: 80px 0; text-align: center; }
.cta-title    { font-size: clamp(24px,3vw,40px); font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 14px; }
.cta-subtitle { font-size: 17px; color: rgba(255,255,255,.6); margin-bottom: 36px; }
.cta-actions  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   LEAD MODAL
   ═══════════════════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(13,27,42,.8); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 40px; width: 100%; max-width: 460px;
  box-shadow: var(--shadow-lg); position: relative;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--gray-100); border: none; width: 32px; height: 32px;
  border-radius: 50%; font-size: 16px; display: flex; align-items: center;
  justify-content: center; cursor: pointer; color: var(--text-muted);
}
.modal-close:hover { background: var(--gray-200); }
.modal-title { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 5px; }
.modal-sub   { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.form-group  { margin-bottom: 14px; }
.form-label  { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-control {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-size: 14px; font-family: var(--font);
  color: var(--text); outline: none; transition: var(--transition);
}
.form-control:focus { border-color: var(--blue); }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 10px; text-align: center; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-mark { width: 34px; height: 34px; background: var(--blue); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 900; color: var(--white); letter-spacing: -1px; }
.footer-logo-text { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.footer-logo-text span { color: var(--gold); }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.65; max-width: 280px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-social {
  width: 34px; height: 34px; background: rgba(255,255,255,.06);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.4); transition: var(--transition);
}
.footer-social:hover { background: var(--blue); color: var(--white); }
.footer-col-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.45); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-newsletter {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 28px 0;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer-newsletter-left { flex: 1; min-width: 200px; }
.footer-newsletter-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-newsletter-sub { font-size: 13px; color: rgba(255,255,255,.45); }
.footer-newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-newsletter-input {
  padding: 10px 16px; border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius); background: rgba(255,255,255,.07);
  color: var(--white); font-size: 14px; font-family: var(--font);
  outline: none; min-width: 220px; transition: border-color .2s;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,.3); }
.footer-newsletter-input:focus { border-color: var(--gold); }
.footer-newsletter-btn {
  padding: 10px 20px; background: var(--gold); color: var(--navy);
  border: none; border-radius: var(--radius); font-size: 14px; font-weight: 700;
  font-family: var(--font); cursor: pointer; transition: background .2s;
  white-space: nowrap;
}
.footer-newsletter-btn:hover { background: #dab96a; }
.footer-newsletter-btn:disabled { opacity: .6; cursor: not-allowed; }

.footer-bottom {
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; font-size: 12px;
  color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════ */
.page-hero { background: var(--navy); padding: calc(var(--header-h) + 48px) 0 56px; }
.page-hero-eyebrow { font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.page-hero-title { font-size: clamp(28px,4vw,48px); font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 10px; }
.page-hero-sub   { font-size: 16px; color: rgba(255,255,255,.55); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .search-fields { grid-template-columns: 1fr 1fr; }
}
/* ─── Burger button ─── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--navy, #1b3a5c);
  border-radius: 2px;
  transition: transform .25s, opacity .25s, width .25s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile menu ─── */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100dvh;
  background: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,.12);
}
.mobile-menu.open  { transform: translateX(0); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1099;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-overlay.open { display: block; opacity: 1; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu-close {
  width: 32px; height: 32px;
  background: none; border: none;
  font-size: 22px; line-height: 1;
  cursor: pointer; color: #555;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-close:hover { background: #f5f5f5; }
.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.mobile-nav-item {
  display: block;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #1a202c;
  text-decoration: none;
  border-bottom: 1px solid #f7f7f7;
  transition: background .15s, color .15s;
}
.mobile-nav-item:hover,
.mobile-nav-item.active { background: #f7f9fc; color: var(--blue, #1b4f8a); }
.mobile-menu-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid #f0f0f0;
}
.mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 600;
  color: #1a202c;
  text-decoration: none;
  margin-bottom: 12px;
}
.mobile-langs {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.mobile-langs a {
  padding: 4px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.mobile-langs a.active,
.mobile-langs a:hover { background: var(--blue, #1b4f8a); color: #fff; border-color: transparent; }

/* ─── 768px breakpoint ─── */
@media (max-width: 768px) {
  .header-nav, .header-phone, .lang-switcher, .header-cta { display: none; }
  .burger { display: flex; }
  .projects-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .search-fields { grid-template-columns: 1fr; }
  .hero-stats    { gap: 24px; }
  .section       { padding: 56px 0; }
  .hero-content  { padding: 56px 0; }
}

/* ─── 480px breakpoint ─── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .btn { padding: 10px 18px; }
  .unit-grid, .buy-grid, .rent-grid { grid-template-columns: 1fr; }
  .project-card-meta { flex-wrap: wrap; }
}
