/* ============================================
   Atlantic Prop Hub Ltd — MTR Gardens, Isheri
   Design tokens: navy + gold, from company logo
   ============================================ */

:root {
  --navy: #16305C;
  --navy-deep: #0E2044;
  --navy-light: #24447D;
  --gold: #C9A227;
  --gold-light: #E3C665;
  --cream: #FAF9F6;
  --white: #FFFFFF;
  --ink: #14213D;
  --muted: #52607A;
  --border: #E4E1D8;

  --font-head: "Cinzel", serif;
  --font-body: "Josefin Sans", sans-serif;

  --radius: 14px;
  --shadow-soft: 0 10px 30px rgba(14, 32, 68, 0.10);
  --shadow-lift: 0 20px 50px rgba(14, 32, 68, 0.18);
  --dur: 250ms;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --cream: #10182B;
    --ink: #F4F5F8;
    --muted: #AEB6C9;
    --border: #2A3554;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--navy-deep);
}
@media (prefers-color-scheme: dark) {
  h1, h2, h3, h4 { color: var(--gold-light); }
}
p { margin: 0 0 1em; color: var(--muted); max-width: 65ch; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

.kicker {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75em;
}
.kicker.center { text-align: center; }
h2.center { text-align: center; max-width: 40ch; margin-left: auto; margin-right: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: var(--white);
  padding: 12px 20px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  min-height: 44px;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(14,32,68,0.10);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(14,32,68,0.16);
}
@media (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(16, 24, 43, 0.92);
    box-shadow: 0 2px 24px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo-chip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 6px 16px;
  border-radius: 10px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.brand:hover .brand-logo-chip { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.brand-logo { display: block; height: 34px; width: auto; }
.footer-brand .brand-logo-chip { padding: 10px 20px; }
.footer-brand .brand-logo { height: 42px; }

.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
  transition: color var(--dur) var(--ease);
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active { color: var(--gold); }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.phone-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.phone-pill:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px; min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-toggle:hover span { background: var(--gold); }

/* Dark-mode header contrast: light text on the dark navy bar */
@media (prefers-color-scheme: dark) {
  .main-nav a { color: #EDEFF5; }
  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active { color: var(--gold-light); }
  .main-nav a::after { background: var(--gold-light); }
  .phone-pill { border-color: rgba(255,255,255,0.45); color: #EDEFF5; }
  .phone-pill:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
  .nav-toggle span { background: #EDEFF5; }
  .nav-toggle:hover span { background: var(--gold-light); }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { color: var(--white); font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .phone-pill span { display: none; }
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1200ms ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,32,68,0.75) 0%, rgba(14,32,68,0.55) 45%, rgba(14,32,68,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 80px; }
.hero-welcome {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1em;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: 0.3em;
}
.accent-dot { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 46ch; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 1.5em; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 2;
}
.hero-scroll span {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.hero .reveal { transition-delay: 120ms; }

/* ---------- Overview ---------- */
.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.stat-row { display: flex; gap: 40px; margin-top: 2em; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-head); font-size: 2rem; color: var(--navy); font-weight: 700; }
@media (prefers-color-scheme: dark) { .stat-num { color: var(--gold-light); } }
.stat-label { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.overview-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 900px) {
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .overview-media { order: -1; }
}

/* ---------- Price ---------- */
.price-tag {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1em 0 0;
}
.price-tag span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (prefers-color-scheme: dark) { .price-tag { color: var(--gold-light); } }

/* ---------- Listing page ---------- */
.listing-intro { padding-bottom: 0; }
.listing-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: rgba(201, 162, 39, 0.10);
  border: 1px solid rgba(201, 162, 39, 0.35);
  margin-bottom: 40px;
}
.price-label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); font-weight: 600; margin: 0 0 4px;
}
.price-value {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700;
  color: var(--navy); margin: 0;
}
.price-value span {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em;
}
@media (prefers-color-scheme: dark) { .price-value { color: var(--gold-light); } }
.listing-lede p { font-size: 1.08rem; }
.listing-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .listing-body { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .listing-price-bar { flex-direction: column; align-items: flex-start; }
  .listing-price-bar .btn { width: 100%; }
}

/* ---------- Carousel ---------- */
.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  background: var(--navy-deep);
  cursor: pointer;
  user-select: none;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 500ms var(--ease);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 32, 68, 0.55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  z-index: 2;
}
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-btn.carousel-prev { left: 12px; }
.carousel-btn.carousel-next { right: 12px; }
.carousel-btn:hover { background: var(--gold); color: var(--navy-deep); }
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--dur) var(--ease), width var(--dur) var(--ease);
}
.carousel-dot.is-active { background: var(--gold); width: 22px; }
.carousel-count {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(14, 32, 68, 0.6);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 2;
  font-variant-numeric: tabular-nums;
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.feature-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.feature-card.glass {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
@media (prefers-color-scheme: dark) {
  .feature-card.glass { background: rgba(255,255,255,0.06); }
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold);
}
.feature-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold-light);
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.feature-card p { margin: 0; font-size: 0.95rem; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
  margin-top: 56px;
}
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  min-height: 44px;
}
.gallery-item.span-2 { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms var(--ease);
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,32,68,0.55), transparent 50%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.span-2 { grid-column: span 2; grid-row: span 1; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(14,32,68,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: var(--shadow-lift); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 1.8rem;
  line-height: 1;
  transition: background var(--dur) var(--ease);
}
.lightbox-close:hover { background: var(--gold); color: var(--navy-deep); }

/* ---------- Location ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.location-list { list-style: none; padding: 0; margin: 1.5em 0 0; display: flex; flex-direction: column; gap: 12px; }
.location-list li {
  position: relative; padding-left: 28px;
  color: var(--ink); font-weight: 500;
}
.location-list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}
.location-map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Trust (Why Atlantic Property Hub) ---------- */
.trust { background: var(--navy-deep); color: var(--white); }
.trust .kicker { color: var(--gold-light); }
.trust h2 { color: var(--white); }
.trust p { color: rgba(255, 255, 255, 0.78); }
.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-stat {
  padding: 28px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.trust-stat:hover { transform: translateY(-4px); border-color: var(--gold); }
.trust-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}
.trust-label {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .trust-stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- Contact ---------- */
.contact { background: var(--navy-deep); color: var(--white); }
.contact .kicker { color: var(--gold-light); }
.contact h2 { color: var(--white); }
.contact p { color: rgba(255,255,255,0.75); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 2em; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.contact-detail a { font-weight: 600; }
.contact-detail a:hover { color: var(--gold-light); }
.contact-detail span { color: rgba(255,255,255,0.8); }

.enquiry-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(10px);
}
.form-row { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-row label { font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: rgba(255,255,255,0.85); }
.form-row input, .form-row textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  min-height: 44px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.form-row input:invalid[data-touched="true"] { border-color: #E27070; }
.form-error {
  color: #F0A6A6;
  font-size: 0.8rem;
  min-height: 1.2em;
  margin-top: 6px;
}
.form-status { margin-top: 16px; font-weight: 600; min-height: 1.4em; }
.form-status.success { color: var(--gold-light); }
.form-status.error { color: #F0A6A6; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.footer-tagline { font-style: italic; color: var(--gold-light); margin: 8px 0 0; font-size: 0.9rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 12px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1em; }
.footer-col p { margin-bottom: 0.7em; font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  padding: 168px 0 80px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(14,32,68,0.90), rgba(14,32,68,0.86)),
              url('../images/gallery-5-building-facade.jpg') center/cover;
}
.page-hero .kicker { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 0.25em; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 60ch; margin-bottom: 0; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  margin-bottom: 1.25em; text-transform: uppercase; letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Home teasers ---------- */
.teaser-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-weight: 600; font-size: 0.95rem;
  margin-top: 1.4em;
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.teaser-link svg { width: 16px; height: 16px; }
.teaser-link:hover { gap: 13px; color: var(--gold-light); }

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 900px) { .teaser-grid { grid-template-columns: 1fr; } }

.teaser-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.teaser-gallery a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.teaser-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms var(--ease);
}
.teaser-gallery a:hover img { transform: scale(1.06); }
@media (max-width: 700px) { .teaser-gallery { grid-template-columns: 1fr; } }

.section-footer-link { text-align: center; margin-top: 48px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy));
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.8); margin: 0 auto 1.6em; }
.cta-banner .hero-cta { justify-content: center; }

/* ---------- WhatsApp chat button ---------- */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(14, 32, 68, 0.35);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 36px rgba(14, 32, 68, 0.45);
  color: #fff;
}
.whatsapp-fab svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.whatsapp-fab-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: whatsappPing 2.2s ease-out infinite;
}
@keyframes whatsappPing {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab-ping { animation: none; display: none; }
}
@media (max-width: 560px) {
  .whatsapp-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}
