*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── SVG ICONS ── */
svg use { color: inherit; }
.strip-icon svg,
.why-dot svg,
.value-icon svg,
.contact-icon-wrap svg,
.career-sector svg,
.service-img-badge svg { stroke: currentColor; vertical-align: middle; }
.strip-icon svg { stroke: var(--gold); }
.why-dot svg { stroke: var(--gold); }
.value-icon svg { stroke: var(--gold); }
.contact-icon-wrap svg { stroke: var(--gold); }
.career-sector svg { stroke: var(--gold); }
.service-img-badge svg { stroke: var(--gold); }

:root {
  --navy: #0D1B2A;
  --navy-mid: #152338;
  --navy-light: #1E3250;
  --gold: #C8972A;
  --gold-light: #E8B84B;
  --off-white: #F5F3EE;
  --slate: #4A5568;
  --sky: #3B82F6;
  --white: #FFFFFF;
  --muted: #8896A7;
  --border: rgba(200,151,42,0.18);
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(13,27,42,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; height: 72px; }
.logo-img {
  height: 140px;
  width: auto;
  display: block;
  background: transparent;
  padding: 0;
  object-fit: contain;
  margin-top: 34px;
}
.logo-img-footer {
  height: 120px;
  background: transparent;
  padding: 0;
  object-fit: contain;
}

/* keep old classes inert */
.logo-mark { display: none; }
.logo-text { display: none; }
.logo-name { display: none; }
.logo-tagline { display: none; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  padding: 7px 14px; border-radius: 7px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold); color: var(--navy) !important;
  font-weight: 700; padding: 9px 22px;
  transition: background 0.2s, transform 0.15s;
}
.nav-links .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--off-white); transition: all 0.3s; }

.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  z-index: 199; padding: 20px 5vw 28px;
  flex-direction: column; gap: 4px;
}
.mobile-nav a {
  color: var(--off-white); text-decoration: none;
  font-size: 1rem; font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-nav a.active { color: var(--gold); }
.mobile-nav.open { display: flex; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 8px;
  font-size: 0.93rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  cursor: pointer; border: none; font-family: 'Inter', sans-serif;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--off-white); border: 1.5px solid rgba(255,255,255,0.22); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTION SHARED ── */
.section { padding: 100px 5vw; }
.section-sm { padding: 64px 5vw; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.eyebrow-dot::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-right: 8px;
  vertical-align: middle; animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

h1.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white);
}
h2.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 700; line-height: 1.15;
  color: var(--white);
}
h3.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.lead {
  font-size: 1.05rem; color: var(--muted); line-height: 1.78;
}
.lead-sm { font-size: 0.91rem; color: var(--muted); line-height: 1.72; }

/* ── CARDS ── */
.card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(200,151,42,0.38); }

.card-icon {
  width: 52px; height: 52px;
  background: rgba(200,151,42,0.1);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}

/* ── PHOTO HERO ── */
.page-hero {
  min-height: 60vh;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding: 72px 5vw 0;
}
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,1) 0%, rgba(13,27,42,0.6) 50%, rgba(13,27,42,0.3) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 64px 0 72px;
  max-width: 700px;
}

/* ── PHOTO CARDS ── */
.photo-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative;
}
.photo-card img, .photo-card .photo-bg {
  width: 100%; height: 260px;
  object-fit: cover; display: block;
  background-size: cover; background-position: center;
}
.photo-card-body { padding: 24px 22px; background: var(--navy-mid); }

/* ── STAT BAR ── */
.stat-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 32px 5vw; gap: 20px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 0.75rem; color: var(--muted);
  font-weight: 500; margin-top: 6px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── TAG PILL ── */
.pill {
  display: inline-block;
  background: rgba(200,151,42,0.12);
  border: 1px solid rgba(200,151,42,0.25);
  border-radius: 100px; padding: 4px 13px;
  font-size: 0.72rem; color: var(--gold); font-weight: 600;
}

/* ── FORM ── */
.form-wrap {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(13,27,42,0.7);
  border: 1px solid rgba(200,151,42,0.2);
  border-radius: 8px; padding: 12px 16px;
  color: var(--off-white); font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s; outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy-mid); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 60px 5vw 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-about p { font-size: 0.87rem; color: var(--muted); line-height: 1.75; margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── TESTIMONIAL CARD ── */
.testi-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s, border-color 0.2s;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(200,151,42,0.35); }
.testi-quote { font-size: 2.4rem; color: var(--gold); font-family: 'Playfair Display', serif; opacity: 0.5; line-height: 1; margin-bottom: 14px; }
.testi-text { font-size: 0.91rem; color: var(--off-white); line-height: 1.76; font-style: italic; margin-bottom: 22px; }
.testi-meta { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem;
  color: var(--navy); flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.testi-origin { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }
.testi-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 2px; margin-left: auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-bar { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 60px 4vw; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  h1.display { font-size: 2rem; }
  h2.display { font-size: 1.7rem; }
  .lead { font-size: 0.95rem; }
  .logo { height: 72px; }
  .logo-img { height: 110px; margin-top: 26px; background: transparent; }

  /* page hero — tighten on mobile */
  .page-hero { min-height: 52vw; }
  .page-hero-content { padding: 40px 0 52px; }
  .page-hero-content h1.display { font-size: 1.75rem; }

  /* stat bar — 2 cols */
  .stat-bar { grid-template-columns: 1fr 1fr; padding: 24px 4vw; }
  .stat-num { font-size: 1.8rem; }

  /* testi cards */
  .testi-card { padding: 22px 18px; }
  .testi-text { font-size: 0.85rem; }
}
