/* =============================================
   NIKOO HOMES 8 – style.css
   Design: Navy + Gold | Cormorant + Inter
   ============================================= */

/* ---- RESET & ROOT ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1A1A2E;
  --navy-mid:#252540;
  --gold:    #C9A84C;
  --gold-lt: #DFC07A;
  --cream:   #F8F6F1;
  --text:    #2D2D2D;
  --text-lt: #666;
  --white:   #ffffff;
  --radius:  6px;
  --shadow:  0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 300; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 300; }
h3 { font-size: 1.4rem; font-weight: 400; }
em { font-style: italic; color: var(--gold); }

p { line-height: 1.75; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.eyebrow.light { color: var(--gold-lt); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.35); }

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

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.btn-wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-wa:hover { background: #1ebe5b; }

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.78rem; }

.full-width { width: 100%; justify-content: center; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.dark-section {
  background: var(--navy);
  color: var(--white);
}

.dark-section h2 { color: var(--white); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse .col-image { order: 2; }
.two-col.reverse .col-content { order: 1; }

.col-image { position: relative; }

.col-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-badge {
  position: absolute;
  bottom: -18px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-lt);
  margin-top: 0.75rem;
}

.dark-section .section-sub { color: #aaa; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy);
  color: #ccc;
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 8px 24px;
  letter-spacing: 0.04em;
}

.top-bar-cta {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
}

.top-bar-cta:hover { color: var(--gold-lt); }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
}

.nav-cta:hover { background: var(--gold-lt) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.82) 0%, rgba(26,26,46,0.45) 60%, rgba(26,26,46,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 2;
}

.hero-price-strip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
}

.price-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.25rem;
}

.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
}

.price-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.3);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.6rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ---- STICKY CTA ---- */
.sticky-cta {
  position: fixed;
  top: -80px;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 14px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: top 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.sticky-cta.visible { top: 0; }

/* ---- OVERVIEW ---- */
.overview { background: var(--cream); }

.col-content .body-text {
  color: var(--text-lt);
  font-size: 1rem;
  margin: 1.5rem 0 2rem;
}

.stats-row {
  display: flex;
  gap: 3rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lt);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text);
}

.check { color: var(--gold); font-size: 0.8rem; }

/* ---- PLANS ---- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.plan-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.plan-img-wrap {
  overflow: hidden;
  height: 200px;
}

.plan-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.plan-card:hover .plan-img-wrap img { transform: scale(1.05); }

.plan-info {
  padding: 1.5rem;
}

.plan-info h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.plan-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.plan-area {
  font-size: 0.82rem;
  color: #aaa;
  letter-spacing: 0.04em;
}

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
}

.plan-btn { width: 100%; justify-content: center; }

/* ---- AMENITIES ---- */
.amenities { background: var(--white); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 24px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  background: var(--cream);
}

.amenity-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.amenity-icon { font-size: 2rem; }

.amenity-item span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item.large { grid-row: 1 / 3; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  min-height: 220px;
}

.gallery-item.large img { min-height: 460px; }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 0.5rem 1.5rem;
  border-radius: 2px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox-close:hover { opacity: 1; color: var(--gold); }

/* ---- LOCATION ---- */
.location { background: var(--cream); }

.location-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0 2.5rem;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dist {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  min-width: 56px;
  text-align: center;
}

.map-placeholder {
  width: 100%;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- ABOUT BUILDER ---- */
.about .col-image img {
  height: 480px;
  object-fit: cover;
}

.builder-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.bstat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.bstat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}

/* ---- CONTACT ---- */
.contact { background: var(--white); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }

.contact-info .body-text { color: var(--text-lt); margin: 1.25rem 0 2rem; }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-detail a {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--transition);
}

.contact-detail a:hover { color: var(--gold); }

.enquiry-form {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.enquiry-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group input.error,
.form-group select.error { border-color: #e53935; }

.err {
  font-size: 0.75rem;
  color: #e53935;
  margin-top: 0.3rem;
  display: block;
}

.disclaimer {
  font-size: 0.7rem;
  color: var(--text-lt);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.form-success span { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }

.form-success p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: #aaa;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { margin-bottom: 1rem; opacity: 0.9; }

.footer-brand p { font-size: 0.85rem; line-height: 1.8; }

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.85rem;
  color: #aaa;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 1.5rem 24px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

/* ---- FLOATING WA ---- */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 700;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .two-col { gap: 48px; }
  .contact-wrap { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 1rem 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-cta {
    background: var(--gold) !important;
    margin: 1rem 24px;
    border-radius: var(--radius);
    text-align: center;
  }

  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col.reverse .col-image { order: 0; }
  .two-col.reverse .col-content { order: 0; }

  .col-image img { height: 300px; }

  .hero-price-strip {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .price-divider { width: 80%; height: 1px; }

  .hero-actions { flex-direction: column; }

  .plans-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }

  .gallery-item.large { grid-row: auto; }

  .gallery-item.large img { min-height: 260px; }

  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .top-bar { flex-direction: column; gap: 0.25rem; text-align: center; }

  .sticky-cta { flex-wrap: wrap; gap: 0.75rem; font-size: 0.78rem; }

  .amenities-grid { grid-template-columns: repeat(3, 1fr); }

  .stats-row { gap: 1.5rem; }

  .builder-stats { gap: 1.5rem; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .price-item { padding: 0.75rem 1.2rem; }
  .enquiry-form { padding: 1.75rem; }
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---- PLAN ROOMS LINE ---- */
.plan-rooms {
  font-size: 0.72rem;
  color: #888;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* ---- PLANS NOTE ---- */
.plans-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #888;
  font-style: italic;
}

/* ---- AMENITIES PHOTO ---- */
.amenities-photo {
  margin-bottom: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.amenities-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- MASTERPLAN ---- */
.masterplan-wrap {
  position: relative;
  text-align: center;
}

.masterplan-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.masterplan-cta {
  margin-top: 2rem;
  display: inline-flex;
}

/* ---- GALLERY 7-IMAGE GRID ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
}

.gallery-item.large {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.gallery-item img { min-height: 180px; }
.gallery-item.large img { min-height: 380px; }

/* ---- LOCATION: image instead of map ---- */
.col-image.location-img img {
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---- CONTACT PRICE IMAGE ---- */
.contact-img {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-img img {
  width: 100%;
  height: auto;
}

/* ---- STATS ROW 4-col ---- */
.stats-row { flex-wrap: wrap; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large {
    grid-row: auto;
    grid-column: auto;
  }
  .gallery-item.large img { min-height: 200px; }
}
