:root {
  --brand: #ea580c;
  --brand-dark: #c2410c;
  --navy: #0f172a;
  --navy-2: #1e293b;
  --ink: #1e293b;
  --muted: #64748b;
  --cream: #fff7ed;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Top bar */
.topbar {
  background: var(--navy);
  color: #cbd5e1;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #fed7aa; }

/* Header / nav */
header.site-header {
  border-bottom: 1px solid #f1f5f9;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 50;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand .name { font-weight: 700; font-size: 18px; color: var(--navy); line-height: 1.1; }
.brand .tag { font-size: 11px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

nav.primary-nav { display: flex; gap: 28px; align-items: center; }
nav.primary-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-2);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
nav.primary-nav a:hover, nav.primary-nav a.active { color: var(--brand); border-bottom-color: var(--brand); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { background: #fff; color: var(--navy); border: 1.5px solid #e2e8f0; }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--navy); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e2f4f 55%, var(--brand-dark) 130%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero .container { padding-top: 84px; padding-bottom: 84px; position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fed7aa;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: .03em;
}
.hero h1 { font-size: 42px; line-height: 1.15; margin: 0 0 18px; font-weight: 800; }
.hero p.lead { font-size: 16.5px; color: #dbe4f3; max-width: 520px; margin-bottom: 28px; line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  aspect-ratio: 1/1;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 130px;
  backdrop-filter: blur(2px);
}

/* Sections */
section { padding: 78px 0; }
.section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.section-head .kicker {
  color: var(--brand);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 { font-size: 30px; color: var(--navy); margin: 0 0 12px; font-weight: 800; }
.section-head p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.bg-soft { background: #f8fafc; }
.bg-cream { background: var(--cream); }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(15,23,42,.08); }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.card h3 { font-size: 17px; color: var(--navy); margin: 0 0 8px; font-weight: 700; }
.card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0; }

.certified-band {
  background: #f8fafc;
  border-bottom: 1px solid #eef2f7;
  padding: 22px 0;
}
.certified-title {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.certified-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cert-item { display: flex; align-items: center; }
.cert-logo { height: 34px; width: auto; }
.cert-text { display: flex; flex-direction: column; text-align: left; border-left: 1px solid #e2e8f0; padding-left: 24px; }
.cert-name { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.cert-number { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }

.photo-band {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
  text-align: center;
  color: #fff;
}
.photo-band-inner { max-width: 620px; margin: 0 auto; }
.photo-band h2 { font-size: 30px; font-weight: 800; margin: 0 0 12px; }
.photo-band p { color: #f1f5f9; margin: 0 0 26px; line-height: 1.7; font-size: 15.5px; }

.card.photo-card { padding: 0; overflow: hidden; }
.card.photo-card .card-photo {
  height: 140px;
  background-size: cover;
  background-position: center;
}
.card.photo-card .card-body { padding: 22px 22px 26px; }
.card.photo-card h3 { margin-top: 0; }

.stats { background: var(--navy); color: #fff; }
.stats .grid-4 { text-align: center; }
.stat .num { font-size: 38px; font-weight: 800; color: #fdba74; }
.stat .label { color: #cbd5e1; font-size: 13.5px; margin-top: 6px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img, .split .art { border-radius: 18px; }
.art-block {
  aspect-ratio: 4/3.2;
  border-radius: 18px;
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  display: flex; align-items: center; justify-content: center;
  font-size: 96px;
}
ul.check-list { list-style: none; padding: 0; margin: 20px 0 0; }
ul.check-list li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 15px; color: var(--navy-2); align-items: flex-start; }
ul.check-list li .tick {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

table.profile-table { width: 100%; border-collapse: collapse; font-size: 15px; }
table.profile-table tr { border-bottom: 1px solid #eef2f7; }
table.profile-table td { padding: 14px 4px; vertical-align: top; }
table.profile-table td:first-child { color: var(--muted); font-weight: 600; width: 220px; }
table.profile-table td:last-child { color: var(--navy-2); font-weight: 600; }

.cta-band {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 22px;
  padding: 52px;
  text-align: center;
}
.cta-band h2 { font-size: 28px; margin: 0 0 10px; font-weight: 800; }
.cta-band p { color: #ffedd5; margin: 0 0 26px; }

footer.site-footer { background: var(--navy); color: #cbd5e1; padding-top: 60px; }
footer.site-footer .grid-4 { gap: 40px; }
footer.site-footer h4 { color: #fff; font-size: 15px; margin: 0 0 16px; }
footer.site-footer a { color: #cbd5e1; font-size: 14px; display: block; margin-bottom: 10px; }
footer.site-footer a:hover { color: var(--brand); }
footer.site-footer p { font-size: 14px; line-height: 1.7; color: #94a3b8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0;
}
.social-row a:hover { background: var(--brand); color: #fff; }

.breadcrumb-bar {
  background: var(--navy);
  color: #fff;
  padding: 46px 0;
}
.breadcrumb-bar h1 { margin: 0 0 8px; font-size: 30px; font-weight: 800; }
.breadcrumb-bar .crumbs { color: #cbd5e1; font-size: 14px; }
.breadcrumb-bar .crumbs a { color: #fdba74; }

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  color: #fff;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.gallery-item .cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(15,23,42,.72);
  color: #fff; font-size: 13.5px; font-weight: 600;
  padding: 10px 14px;
}

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; }
.info-card {
  background: #fff; border: 1px solid #eef2f7; border-radius: 16px; padding: 24px;
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px;
}
.info-card .icon { width: 44px; height: 44px; border-radius: 10px; background: var(--cream); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.info-card h4 { margin: 0 0 6px; font-size: 15px; color: var(--navy); }
.info-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.6; }

form.contact-form { background: #fff; border: 1px solid #eef2f7; border-radius: 16px; padding: 34px; }
form.contact-form label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy-2); margin-bottom: 6px; }
form.contact-form input, form.contact-form select, form.contact-form textarea {
  width: 100%; padding: 12px 14px; border-radius: 8px; border: 1.5px solid #e2e8f0;
  font-size: 14.5px; margin-bottom: 18px; font-family: inherit;
}
form.contact-form input:focus, form.contact-form textarea:focus { outline: none; border-color: var(--brand); }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.map-embed { border-radius: 16px; overflow: hidden; border: 1px solid #eef2f7; height: 260px; }

.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

@media (max-width: 900px) {
  nav.primary-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 32px; }
  .hero-art { font-size: 80px; }
  .form-row2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cta-band { padding: 34px 22px; }
}

nav.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  padding: 10px 24px 20px;
}
nav.mobile-nav.open { display: flex; }
nav.mobile-nav a { padding: 12px 0; font-weight: 600; color: var(--navy-2); border-bottom: 1px solid #f1f5f9; }
