:root {
  --navy: #0b1f3a;
  --navy-2: #132c52;
  --navy-3: #1b3a68;
  --gold: #c99612;
  --gold-2: #e8b923;
  --gold-soft: #f7e7b4;
  --ink: #142033;
  --muted: #5c6b80;
  --bg: #f4f1ea;
  --bg-2: #fffdf8;
  --white: #ffffff;
  --line: #e4dccb;
  --danger: #9b2c2c;
  --ok: #1f6b4a;
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.12);
  --radius: 18px;
  --header-h: 78px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", "Noto Sans Devanagari", sans-serif;
  color: var(--ink);
  background: var(--bg-2);
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

/* Topbar */
.topbar {
  background: var(--navy);
  color: #d7e2f2;
  font-size: 13px;
  letter-spacing: .01em;
}
.topbar .container {
  display: flex; justify-content: space-between; gap: 16px;
  align-items: center; min-height: 38px; flex-wrap: wrap;
  padding: 6px 0;
}
.topbar span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar a { color: #fff; }
.topbar b { color: var(--gold-2); font-weight: 700; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,253,248,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.brand img {
  height: 58px; width: auto; background: #fff; border-radius: 10px;
  padding: 4px 8px; border: 1px solid var(--line);
}
.brand small { display: block; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.brand strong { display: block; font-size: 14px; line-height: 1.2; color: var(--navy); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a, .nav-drop > span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--navy-2); cursor: pointer;
}
.nav a:hover, .nav a.active, .nav-drop:hover > span { background: #efe8d6; color: var(--navy); }
.nav-drop { position: relative; }
.nav-drop .sub {
  display: none; position: absolute; top: calc(100% - 2px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  min-width: 230px; padding: 8px; box-shadow: var(--shadow);
}
.nav-drop:hover .sub, .nav-drop:focus-within .sub { display: block; }
.nav-drop .sub a { display: block; width: 100%; border-radius: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px; padding: 12px 18px;
  font-weight: 700; cursor: pointer; transition: .2s ease;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-3); }
.btn-line { background: transparent; border: 1px solid #d7cbae; color: var(--navy); }
.btn-line:hover { background: #fff; }
.btn-wa { background: #128C7E; color: #fff; }
.menu-toggle {
  display: none; border: 1px solid var(--line); background: #fff;
  width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 400px at 90% -10%, rgba(232,185,35,.22), transparent 50%),
    linear-gradient(180deg, #f7f2e6 0%, #fffdf8 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px;
  align-items: center; padding: 64px 0 48px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: #8a6a10; font-weight: 700; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 14px;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05;
  color: var(--navy); letter-spacing: -.03em; margin-bottom: 16px;
}
.lead { font-size: 18px; color: var(--muted); max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 22px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 14px; }
.hero-card {
  background: var(--navy); color: #e8eef8; border-radius: 28px;
  padding: 28px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero-card::after {
  content: ""; position: absolute; right: -40px; bottom: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,185,35,.35), transparent 70%);
}
.hero-card h2 { font-size: 22px; color: #fff; margin-bottom: 10px; }
.hero-card p { color: #b7c6db; }
.flag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: #fff; padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 600;
}

/* Sections */
section { padding: 72px 0; }
.section-kicker { color: var(--gold); font-weight: 800; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.section-title {
  font-family: "Fraunces", Georgia, serif; font-size: clamp(28px, 3.4vw, 42px);
  color: var(--navy); letter-spacing: -.02em; margin: 8px 0 14px;
}
.muted { color: var(--muted); }
.center { text-align: center; }
.center .muted, .center .lead { margin-inline: auto; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: -28px; position: relative; z-index: 2;
}
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 20px; box-shadow: 0 10px 24px rgba(11,31,58,.05);
}
.stat b {
  display: block; font-family: "Fraunces", Georgia, serif;
  font-size: 32px; color: var(--navy); line-height: 1;
}
.stat span { color: var(--muted); font-size: 13px; font-weight: 600; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.photo-stack { position: relative; min-height: 420px; }
.photo-stack img {
  width: 62%; border-radius: 24px; object-fit: cover; height: 340px;
  border: 6px solid #fff; box-shadow: var(--shadow);
}
.photo-stack img:last-child {
  position: absolute; right: 0; bottom: 0; width: 54%; height: 280px;
}
.badge-float {
  position: absolute; left: 18px; bottom: 70px; background: var(--navy); color: #fff;
  padding: 14px 16px; border-radius: 16px; box-shadow: var(--shadow);
}
.badge-float b { display: block; font-size: 22px; color: var(--gold-2); }

.checks { margin-top: 18px; display: grid; gap: 10px; }
.checks li { list-style: none; padding-left: 28px; position: relative; color: var(--navy-2); font-weight: 600; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold-soft); box-shadow: inset 0 0 0 4px var(--gold);
}

.process { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px;
  min-height: 220px;
}
.step em {
  font-style: normal; font-family: "Fraunces", Georgia, serif;
  color: var(--gold); font-size: 28px; display: block; margin-bottom: 8px;
}
.step h3 { font-size: 15px; color: var(--navy); margin-bottom: 8px; letter-spacing: .02em; }
.step p { font-size: 14px; color: var(--muted); }

.quote-box {
  background: var(--navy); color: #d5deec; border-radius: 28px; padding: 36px;
  display: grid; grid-template-columns: 160px 1fr; gap: 28px; align-items: center;
}
.avatar {
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(160deg, #23487a, #0b1f3a);
  display: grid; place-items: center; color: var(--gold-2);
  font-family: "Fraunces", Georgia, serif; font-size: 42px; border: 4px solid rgba(232,185,35,.4);
}
.quote-box blockquote {
  font-family: "Fraunces", Georgia, serif; font-size: 22px; color: #fff;
  line-height: 1.35; margin-bottom: 14px;
}
.quote-box cite { color: var(--gold-2); font-style: normal; font-weight: 700; }

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px;
}
.card h3 { color: var(--navy); margin: 6px 0 10px; font-size: 22px; }

.jobs-empty {
  border: 1px dashed #d2c6a6; background: #fffaf0; border-radius: 22px;
  padding: 42px; text-align: center;
}
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 320px)); gap: 18px; justify-content: center; }
.person {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
}
.person img { width: 100%; height: 340px; object-fit: cover; object-position: top; background: #efe8d6; }
.person-fallback {
  height: 340px; display: grid; place-items: center;
  background: linear-gradient(180deg, #1b3a68, #0b1f3a); color: var(--gold-2);
  font-family: "Fraunces", Georgia, serif; font-size: 64px;
}
.person figcaption { padding: 16px 18px 20px; }
.person h3 { color: var(--navy); }
.person p { color: var(--muted); font-size: 14px; }

.page-hero {
  background: linear-gradient(180deg, #0b1f3a, #16325a);
  color: #fff; padding: 54px 0 42px;
}
.page-hero h1 { font-family: "Fraunces", Georgia, serif; font-size: clamp(32px, 4vw, 48px); }
.crumbs { color: #b7c6db; font-size: 14px; margin-bottom: 10px; }
.crumbs a { color: var(--gold-2); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 22px; }
.info-list { display: grid; gap: 12px; }
.info {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px;
}
.info b { display: block; color: var(--navy); }
.info a { color: var(--navy-3); font-weight: 700; }
form {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 24px;
  display: grid; gap: 12px;
}
label { font-size: 13px; font-weight: 700; color: var(--navy); }
input, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fffdf8;
}
textarea { min-height: 140px; resize: vertical; }
.map-wrap { margin-top: 22px; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); min-height: 320px; }
.map-wrap iframe { width: 100%; height: 320px; border: 0; }

.site-footer { background: var(--navy); color: #c5d0e0; padding: 48px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr; gap: 28px; margin-bottom: 28px; }
.site-footer h4 { color: #fff; margin-bottom: 12px; }
.site-footer a:hover { color: var(--gold-2); }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.legal {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px;
}

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  background: #25D366; color: #062; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; box-shadow: 0 10px 24px rgba(37,211,102,.4);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

@media (max-width: 980px) {
  .hero-grid, .split, .quote-box, .two, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats, .steps { grid-template-columns: 1fr 1fr; }
  .photo-stack { min-height: 360px; }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    display: none; position: absolute; left: 18px; right: 18px; top: calc(38px + var(--header-h));
    background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 10px;
    flex-direction: column; align-items: stretch; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-drop .sub { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 0 10px; }
  .header-cta { display: none; }
}
@media (max-width: 640px) {
  .stats, .steps, .team-grid { grid-template-columns: 1fr; }
  .hero { padding-bottom: 12px; }
  .brand small, .brand strong { display: none; }
}
