/* ============================================================
   ZW CAPITAL NEST — Professional Theme
   Palette: Navy #0B1D30 | Gold #C9A24B | Ivory #F8F6F1
   Fonts:  Playfair Display (display) / Inter (body)
   ============================================================ */

:root {
  --navy: #0b1d30;
  --navy-2: #12283f;
  --navy-3: #1a3552;
  --gold: #c9a24b;
  --gold-2: #b08a35;
  --ivory: #f8f6f1;
  --white: #ffffff;
  --text: #33414f;
  --muted: #7b8794;
  --line: #e6e2d8;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(11, 29, 48, 0.07);
  --shadow-md: 0 12px 34px rgba(11, 29, 48, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 29, 48, 0.18);
  --container: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, .display {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--ivory { background: var(--ivory); }
.section--navy { background: var(--navy); }
.section--navy h2, .section--navy h3 { color: var(--white); }

/* ---------- Section headings ---------- */
.sec-head { max-width: 640px; margin-bottom: 40px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 12px; font-weight: 600; color: var(--gold-2);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.sec-head--center .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--gold); }
.sec-head h2 { font-size: clamp(28px, 4vw, 42px); }
.sec-head p { margin-top: 14px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 32px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.02em;
  cursor: pointer; border: 1.5px solid transparent;
  transition: all 0.25s ease;
}
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-2); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light { border-color: rgba(255,255,255,0.55); color: var(--white); background: transparent; }
.btn--outline-light:hover { background: var(--white); color: var(--navy); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(rgba(8, 20, 34, 0.72), rgba(8, 20, 34, 0));
}
.site-header.is-solid { background: var(--navy); box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-emblem { flex: none; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }
.brand-name { color: var(--white); font-family: "Playfair Display", serif; font-size: 21px; font-weight: 600; letter-spacing: 0.04em; }
.brand-name span { color: var(--gold); font-style: italic; }
.brand-tag { display: block; font-family: "Inter", sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.46em; text-transform: uppercase; color: var(--gold); opacity: 0.92; margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  color: rgba(255,255,255,0.88); font-size: 14.5px; font-weight: 500;
  padding: 6px 0; position: relative; transition: color 0.2s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width 0.25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-cta .btn { padding: 11px 24px; font-size: 14px; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.3);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); margin: 4px auto; transition: 0.3s; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999; background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a { color: var(--white); font-size: 22px; font-family: "Playfair Display", serif; padding: 12px; }
.mobile-nav a:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: var(--white);
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,20,34,0.88) 20%, rgba(8,20,34,0.45) 60%, rgba(8,20,34,0.25));
}
.hero-content { position: relative; z-index: 1; max-width: 720px; padding: 160px 0 120px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px; font-weight: 600;
}
.hero-kicker::before { content: ""; width: 44px; height: 1px; background: var(--gold); }
.hero h1 {
  color: var(--white); font-size: clamp(38px, 5.6vw, 64px); font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lead { font-size: 18.5px; color: rgba(255,255,255,0.85); max-width: 540px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero quick search */
.hero-search {
  position: relative; z-index: 2; margin-top: -62px;
}
.hero-search-box {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 0; overflow: hidden;
}
.hs-field { padding: 22px 26px; border-right: 1px solid var(--line); }
.hs-field label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.hs-field input, .hs-field select {
  border: none; outline: none; width: 100%; font-size: 15.5px; color: var(--navy);
  font-family: inherit; background: transparent; font-weight: 500;
}
.hs-submit { display: flex; align-items: stretch; }
.hs-submit .btn { border-radius: 0; padding: 0 42px; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; padding: 10px; }
.stat .num {
  font-family: "Playfair Display", serif; font-size: clamp(34px, 4vw, 52px);
  color: var(--gold); font-weight: 700;
}
.stat .lbl { color: rgba(255,255,255,0.75); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px; }

/* ---------- Property cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-4 .prop-media { aspect-ratio: 4/3.9; }
.grid-4 .prop-body { padding: 24px 20px 26px; gap: 10px; }
.grid-4 .prop-body h3 { font-size: 17.5px; }
.grid-4 .prop-specs { gap: 12px; flex-wrap: wrap; }
.grid-4 .prop-specs span { font-size: 12.5px; }
.grid-4 .prop-price { font-size: 15px; padding: 7px 13px; }

.prop-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prop-media { position: relative; overflow: hidden; aspect-ratio: 16/10.5; }
.prop-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prop-card:hover .prop-media img { transform: scale(1.06); }
.prop-badge {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  background: var(--gold); color: var(--navy); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px;
}
.prop-badge--lux { background: var(--navy); color: var(--gold); border: 1px solid var(--gold); }
.prop-price {
  position: absolute; bottom: 16px; left: 16px; z-index: 1;
  background: rgba(11,29,48,0.85); backdrop-filter: blur(4px);
  color: var(--white); font-weight: 700; font-size: 17px; padding: 8px 16px; border-radius: 10px;
}
.prop-price small { font-weight: 500; font-size: 12px; color: var(--gold); display: block; letter-spacing: 0.06em; }
.prop-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.prop-body h3 { font-size: 21px; }
.prop-body h3 a:hover { color: var(--gold-2); }
.prop-loc { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 14px; }
.prop-loc svg { flex: none; }
.prop-specs {
  display: flex; gap: 20px; border-top: 1px solid var(--line);
  padding-top: 16px; margin-top: auto;
}
.prop-specs span { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--text); font-weight: 500; }
.prop-specs svg { color: var(--gold-2); }
.prop-dev { font-size: 13px; color: var(--muted); }
.prop-dev b { color: var(--navy); font-weight: 600; }

/* ---------- Feature / About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/4.6; object-fit: cover; }
.split-media .accent {
  position: absolute; inset: 26px -26px -26px 26px; border: 2px solid var(--gold);
  border-radius: var(--radius); z-index: -1;
}
.exp-chip {
  position: absolute; bottom: 30px; left: -34px; background: var(--navy); color: var(--white);
  padding: 22px 28px; border-radius: 12px; box-shadow: var(--shadow-md); text-align: center;
}
.exp-chip .n { font-family: "Playfair Display", serif; font-size: 34px; color: var(--gold); font-weight: 700; }
.exp-chip .t { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.ticks { margin-top: 26px; display: grid; gap: 14px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--navy); }
.ticks li svg { flex: none; margin-top: 3px; color: var(--gold-2); }

/* ---------- Service cards ---------- */
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 32px; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 66px; height: 66px; border-radius: 18px;
  background: linear-gradient(135deg, #fdfbf5, var(--ivory));
  border: 1px solid rgba(201, 162, 75, 0.35);
  box-shadow: 0 4px 14px rgba(201, 162, 75, 0.14), inset 0 1px 0 rgba(255,255,255,0.9);
  display: grid; place-items: center; margin-bottom: 24px; color: var(--gold-2);
  position: relative; transition: all 0.35s ease;
}
.svc-icon::after {
  content: ""; position: absolute; inset: -5px; border-radius: 22px;
  border: 1px solid rgba(201, 162, 75, 0.18); transition: all 0.35s ease;
}
.svc-card:hover .svc-icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold); border-color: var(--navy);
  box-shadow: 0 8px 22px rgba(11, 29, 48, 0.28);
}
.svc-card:hover .svc-icon::after { inset: -7px; border-color: rgba(201, 162, 75, 0.45); }
.svc-card h3 { font-size: 20px; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 14.5px; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 600; font-size: 14px; color: var(--gold-2); }
.svc-link:hover { gap: 12px; color: var(--navy); }

/* ---------- Developers strip ---------- */
.dev-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px 60px; }
.dev-strip img { height: 52px; width: auto; opacity: 0.65; filter: grayscale(1) brightness(1.6); transition: 0.3s; }
.dev-strip img:hover { opacity: 1; filter: none; }
.dev-name { font-family: "Playfair Display", serif; font-size: 22px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; transition: 0.3s; }
.dev-name:hover { color: var(--gold); }

/* ---------- Blog cards ---------- */
.blog-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-media { aspect-ratio: 16/9.5; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-media img { transform: scale(1.05); }
.blog-body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; margin-bottom: 10px; }
.blog-body h3 { font-size: 19.5px; margin-bottom: 10px; }
.blog-body h3 a:hover { color: var(--gold-2); }
.blog-body p { color: var(--muted); font-size: 14.5px; }
.blog-more { margin-top: auto; padding-top: 16px; font-weight: 600; font-size: 14px; color: var(--navy); display: inline-flex; gap: 8px; align-items: center; }
.blog-more:hover { color: var(--gold-2); gap: 12px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--navy); color: var(--white);
  padding: 70px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-band::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px;
  border: 2px solid rgba(201,162,75,0.35); border-radius: 50%;
}
.cta-band::after {
  content: ""; position: absolute; right: 40px; bottom: -120px; width: 260px; height: 260px;
  border: 2px solid rgba(201,162,75,0.2); border-radius: 50%;
}
.cta-band h2 { color: var(--white); font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 480px; }
.cta-band .btn { flex: none; position: relative; z-index: 1; }

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  position: relative; padding: 190px 0 90px; color: var(--white);
  background-size: cover; background-position: center;
}
.page-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(8,20,34,0.82), rgba(8,20,34,0.68)); }
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); font-size: clamp(32px, 4.6vw, 52px); }
.crumbs { display: flex; gap: 10px; align-items: center; font-size: 13.5px; color: rgba(255,255,255,0.7); margin-bottom: 16px; letter-spacing: 0.05em; }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { color: var(--gold); }

/* ---------- Property detail ---------- */
.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }
.detail-main > * + * { margin-top: 40px; }
.detail-title-row { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-end; }
.detail-title-row h1 { font-size: clamp(28px, 3.6vw, 40px); }
.detail-price { text-align: right; }
.detail-price .from { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.detail-price .amount { font-family: "Playfair Display", serif; font-size: 32px; color: var(--gold-2); font-weight: 700; white-space: nowrap; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  background: var(--ivory); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-size: 14px; font-weight: 500; color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
}
.chip svg { color: var(--gold-2); }
.detail-hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.detail-hero-img img { width: 100%; aspect-ratio: 16/8.4; object-fit: cover; }
.detail-sec h2 { font-size: 26px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); display: inline-block; }
.detail-sec .rich { color: var(--text); }
.detail-sec .rich p { margin-bottom: 14px; }
.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.amen {
  display: flex; align-items: center; gap: 10px; background: var(--ivory);
  border-radius: 10px; padding: 14px 18px; font-size: 14.5px; font-weight: 500; color: var(--navy);
}
.amen svg { color: var(--gold-2); flex: none; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid a { border-radius: 12px; overflow: hidden; display: block; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s; }
.gallery-grid a:hover img { transform: scale(1.06); }

/* Lead form card */
.lead-card {
  position: sticky; top: 108px; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); border-top: 4px solid var(--gold); padding: 34px 32px;
}
.lead-card h3 { font-size: 22px; margin-bottom: 6px; }
.lead-card .sub { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.form-grid { display: grid; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 110px 1fr; gap: 12px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.03em; }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 16px; font-size: 15px; font-family: inherit; color: var(--navy);
  outline: none; transition: border-color 0.2s; background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 12px; }

.alert-success {
  background: #eef7ee; border: 1px solid #bfe3bf; color: #1e6b2e;
  border-radius: 10px; padding: 14px 18px; font-size: 14.5px; margin-bottom: 20px;
}
.alert-error {
  background: #fdf0ef; border: 1px solid #f2c6c2; color: #a13a30;
  border-radius: 10px; padding: 14px 18px; font-size: 14.5px; margin-bottom: 20px;
}

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 400px 1fr; gap: 50px; align-items: start; }
.info-card { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 42px 38px; }
.info-card h3 { color: var(--white); font-size: 24px; margin-bottom: 8px; }
.info-card > p { color: rgba(255,255,255,0.7); font-size: 14.5px; margin-bottom: 28px; }
.info-item { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.info-item .ic {
  width: 44px; height: 44px; flex: none; border-radius: 10px;
  background: rgba(201,162,75,0.15); color: var(--gold); display: grid; place-items: center;
}
.info-item b { display: block; color: var(--white); font-size: 14px; letter-spacing: 0.04em; }
.info-item span, .info-item a { color: rgba(255,255,255,0.75); font-size: 14.5px; }
.info-item a:hover { color: var(--gold); }
.contact-form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 42px; box-shadow: var(--shadow-sm); }

/* ---------- Blog detail ---------- */
.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
.article-body { font-size: 16.5px; }
.article-body img { border-radius: var(--radius); margin: 24px 0; }
.article-body h2, .article-body h3 { margin: 30px 0 14px; }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 22px; list-style: disc; }
.side-widget { background: var(--ivory); border-radius: var(--radius); padding: 30px 28px; margin-bottom: 26px; }
.side-widget h4 { font-size: 18px; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.mini-post { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mini-post:last-child { border-bottom: none; }
.mini-post img { width: 76px; height: 62px; object-fit: cover; border-radius: 8px; flex: none; }
.mini-post b { font-size: 14px; color: var(--navy); font-weight: 600; line-height: 1.4; display: block; }
.mini-post b:hover { color: var(--gold-2); }
.mini-post span { font-size: 12px; color: var(--muted); }

/* ---------- Pagination ---------- */
.pagi { display: flex; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.pagi a, .pagi span {
  min-width: 44px; height: 44px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; border: 1.5px solid var(--line); font-weight: 600; font-size: 14.5px; color: var(--navy);
  transition: 0.2s;
}
.pagi a:hover { border-color: var(--gold); color: var(--gold-2); }
.pagi .current { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pagi .disabled { opacity: 0.4; }

/* ---------- Footer ---------- */
.site-footer { background: #081524; color: rgba(255,255,255,0.72); }
.footer-top { padding: 74px 0 54px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 50px; }
.footer-top h4 { color: var(--white); font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase; font-family: "Inter", sans-serif; font-weight: 700; margin-bottom: 20px; }
.footer-about p { font-size: 14.5px; margin: 18px 0 22px; max-width: 320px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14.5px; transition: 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: "→"; color: var(--gold); font-size: 12px; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  display: grid; place-items: center; color: var(--white); transition: 0.25s;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14.5px; align-items: flex-start; }
.footer-contact svg { color: var(--gold); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(8,18,30,0.94);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 26px; right: 32px; background: none; border: none;
  color: var(--white); font-size: 38px; cursor: pointer; line-height: 1;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.1); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .header-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 60px; }
  .detail-layout, .article-layout { grid-template-columns: 1fr; }
  .lead-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-search-box { grid-template-columns: 1fr 1fr; }
  .hs-submit { grid-column: 1 / -1; }
  .hs-submit .btn { width: 100%; padding: 18px; }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .amen-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { flex-direction: column; text-align: center; padding: 54px 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; }
  .hero-search-box { grid-template-columns: 1fr; }
  .hs-field { border-right: none; border-bottom: 1px solid var(--line); }
  .detail-title-row { flex-direction: column; align-items: flex-start; }
  .detail-price { text-align: left; }
  .form-row-2 { grid-template-columns: 90px 1fr; }
  .exp-chip { left: 12px; }
  .split-media .accent { display: none; }
}
