:root {
  --navy: #12233F;
  --navy-deep: #0B1830;
  --gold: #C9A24C;
  --gold-light: #E4C878;
  --cream: #F7F5F1;
  --ink: #1B2430;
  --muted: #6B7280;
  --border: #E7E1D3;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--cream);
}

h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; margin: 0; }

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

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

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}
.eyebrow-dark { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.55); }
.btn-lg { font-size: 18px; padding: 18px 32px; }
.btn-header { font-size: 14px; padding: 10px 20px; }

/* Header */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img { display: block; height: 58px; width: auto; }
.footer-brand .logo img { height: 64px; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.5px;
}
.logo-text small {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.3px;
}
.footer-brand .logo strong { color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 18px; }
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  font-weight: 600;
}
.main-nav a:hover { color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,24,48,0.35) 0%, rgba(11,24,48,0.55) 45%, rgba(11,24,48,0.92) 100%);
}
.hero-content {
  position: relative;
  padding: 64px 24px;
  max-width: 720px;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
}
.hero .lead {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin: 0 0 32px 0;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Trust strip */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 28px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
}
.trust-item svg { flex-shrink: 0; }

/* Services */
.services { padding: 80px 0; background: var(--cream); }
.services h2 { font-size: 32px; max-width: 640px; line-height: 1.25; color: var(--navy); }
.services-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card svg { color: var(--navy); }
.card h3 { font-size: 17px; color: var(--navy); }
.card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }

/* Gallery */
.gallery { padding: 80px 0; background: var(--navy); }
.gallery h2 { font-size: 32px; color: #fff; }
.gallery .eyebrow { color: var(--gold); }
.gallery-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.gallery-grid img { height: 220px; width: 100%; object-fit: cover; border-radius: 12px; }
.gallery-note { margin: 20px 0 0 0; font-size: 13.5px; color: rgba(255,255,255,0.55); }

/* Coverage */
.coverage { padding: 80px 0; background: var(--cream); }
.coverage-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.coverage-text { flex: 1 1 380px; }
.coverage-text h2 { font-size: 30px; color: var(--navy); line-height: 1.25; margin: 0 0 16px 0; }
.coverage-text p { font-size: 15.5px; color: var(--muted); line-height: 1.6; max-width: 440px; margin: 0 0 20px 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  padding: 7px 16px;
}
.coverage-map {
  flex: 1 1 380px;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  border: 1px solid var(--border);
}
.coverage-map iframe { width: 100%; height: 100%; border: 0; }

/* CTA band */
.cta-band { background: var(--gold); padding: 48px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: 26px; color: var(--navy); }
.cta-band p { margin: 6px 0 0 0; color: rgba(18,35,63,0.75); font-size: 15px; }

/* Footer */
.site-footer { background: var(--navy-deep); padding: 56px 0 0 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-brand { max-width: 300px; }
.footer-brand .logo { margin-bottom: 6px; }
.footer-brand p { margin: 0; font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-heading { font-size: 12.5px; font-weight: 700; color: var(--gold); letter-spacing: 1.3px; text-transform: uppercase; margin-bottom: 2px; }
.footer-col a, .footer-col span { font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .verse { font-style: italic; }

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 60;
}

/* Responsive */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-grid img:nth-child(4), .gallery-grid img:nth-child(5) { grid-column: span 1; }
  .hero h1 { font-size: 38px; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .btn-header { display: none; }
  .hero { min-height: 560px; }
  .hero h1 { font-size: 32px; }
  .hero .lead { font-size: 16.5px; }
  .hero-content { padding: 40px 20px 48px; }
  .hero-actions .btn-ghost { display: none; }
  .trust-inner { gap: 20px; }
  .services, .gallery, .coverage { padding: 56px 0; }
  .services h2, .coverage-text h2 { font-size: 26px; }
  .gallery h2 { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; gap: 28px; }
}
