:root {
  --navy: #0b1f3a;
  --navy-deep: #071526;
  --sea: #12355b;
  --teal: #1a6b7a;
  --teal-bright: #2a8f9a;
  --gold: #c4a35a;
  --gold-soft: #e4c989;
  --sand: #f6f3ec;
  --paper: #fffdf8;
  --ink: #1c1917;
  --muted: #5b5a56;
  --line: rgba(11, 31, 58, 0.12);
  --shadow: 0 18px 50px rgba(7, 21, 38, 0.14);
  --radius: 18px;
  --max: 1160px;
  --header: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 12px;
  z-index: 80;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.flag-bar {
  height: 5px;
  background: linear-gradient(90deg, #000 0 18%, #d21c22 18% 50%, #fdc82f 50% 68%, #009543 68% 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 21, 38, 0.94);
  backdrop-filter: blur(14px);
  color: #fff;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--header);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 42px;
  height: 42px;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.brand-name span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  text-decoration: none;
  padding: 8px 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.86);
  border-radius: 999px;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav .cta {
  margin-left: 6px;
  background: var(--gold);
  color: var(--navy-deep) !important;
  font-weight: 600;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 10px;
  padding: 8px 10px;
}

.hero {
  position: relative;
  min-height: calc(88vh - var(--header));
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7,21,38,0.55), rgba(7,21,38,0.78)),
    url("https://images.unsplash.com/photo-1494412576121-d7645a170292?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 20px 80px;
  width: 100%;
}
.kicker {
  display: inline-block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.hero h1,
.page-hero h1,
h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  max-width: 14ch;
  margin: 0 0 18px;
}
.lede {
  max-width: 62ch;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.88);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 600;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-line { background: transparent; color: var(--navy); border: 1px solid var(--line); }

.section { padding: 80px 20px; }
.section-narrow { max-width: var(--max); margin: 0 auto; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}
.section-head h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.muted { color: var(--muted); }

.cards, .grid-2, .grid-3, .offices, .stats {
  display: grid;
  gap: 18px;
}
.cards { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.offices { grid-template-columns: repeat(2, 1fr); }
.stats { grid-template-columns: repeat(3, 1fr); }

.card, .panel, .news-card, .office, .form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card { padding: 24px; }
.card h3 { margin: 8px 0 8px; }
.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(26,107,122,0.12);
  color: var(--teal);
  font-size: 1.2rem;
}
.panel { padding: 28px; }
.photo-panel {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(11,31,58,0.05), rgba(11,31,58,0.35)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 64px 20px 56px;
}
.page-hero .section-narrow p { max-width: 68ch; color: rgba(255,255,255,0.82); }

.office { padding: 28px; }
.office h3 { margin-top: 0; }
.office a { color: var(--teal); }
.list {
  margin: 0;
  padding-left: 18px;
}
.list li { margin: 8px 0; }

.news-card { overflow: hidden; }
.news-card img { height: 180px; width: 100%; object-fit: cover; }
.news-card div { padding: 20px 22px 24px; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

form { display: grid; gap: 14px; }
label { font-size: 0.9rem; font-weight: 600; }
input, select, textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.9rem; }

.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  border-radius: 28px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  padding: 48px 20px 24px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.legal {
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 980px) {
  .cards, .grid-3, .stats { grid-template-columns: 1fr 1fr; }
  .grid-2, .offices, .footer-grid, .cta-band { grid-template-columns: 1fr; }
  .cta-band { display: block; }
  .menu-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    inset: calc(var(--header) + 5px) 12px auto;
    background: #102844;
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .nav .cta { margin: 8px 0 0; }
}

@media (max-width: 640px) {
  .cards, .grid-3, .stats { grid-template-columns: 1fr; }
  .section { padding: 56px 16px; }
}
