:root {
  --navy: #052754;
  --navy-2: #0a3568;
  --gold: #b58739;
  --gold-soft: #d4b36a;
  --ink: #1c2430;
  --muted: #5c6773;
  --line: #e4dccb;
  --paper: #f7f4ee;
  --white: #fffcf7;
  --max: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

/* Header */
header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; background: transparent; }
.brand span {
  font-family: Cinzel, serif;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: var(--navy);
}
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.nav-links a { color: var(--navy); }
.lang {
  display: flex; border: 1px solid var(--line); overflow: hidden;
}
.lang button {
  background: transparent; border: 0; padding: 5px 10px;
  font: 600 11px/1 "Source Sans 3", sans-serif;
  letter-spacing: 0.08em; color: var(--muted); cursor: pointer;
}
.lang button[aria-pressed="true"] { background: var(--navy); color: var(--white); }

/* Hero */
.hero {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
h1 {
  font-family: Cinzel, serif;
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.22;
  color: var(--navy);
  max-width: 16ch;
}
.lede {
  margin-top: 22px; max-width: 42em; color: var(--muted); font-size: 18px;
}
.cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 12px 22px;
  border: 1px solid var(--navy); font-size: 14px; letter-spacing: 0.06em;
}
.btn-solid { background: var(--navy); color: var(--white); }
.btn-solid:hover { background: var(--navy-2); color: var(--white); }
.btn-ghost { color: var(--navy); }
.meta-row {
  margin-top: 48px; display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted); letter-spacing: 0.04em;
}
.meta-row strong { color: var(--navy); font-weight: 600; display: block; font-size: 14px; letter-spacing: 0; }

section { padding: 72px 0; border-bottom: 1px solid var(--line); }
h2 {
  font-family: Cinzel, serif; font-weight: 500; font-size: 26px;
  color: var(--navy); margin-bottom: 10px;
}
.section-intro { color: var(--muted); max-width: 40em; margin-bottom: 36px; }

.grid-3, .grid-4 {
  display: grid; gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px 22px 26px;
}
.card h3 {
  font-family: Cinzel, serif; font-size: 16px; color: var(--navy);
  font-weight: 500; margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 15px; }
.step-n {
  font-family: Cinzel, serif; color: var(--gold); font-size: 12px;
  letter-spacing: 0.16em; margin-bottom: 8px;
}

.sectors { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--gold);
  color: var(--navy);
  padding: 8px 14px;
  font-size: 13px; letter-spacing: 0.06em;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about p + p { margin-top: 14px; color: var(--muted); }
.about-logo { width: 100%; background: var(--paper); }
.kicker { color: var(--gold); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; }

.contact-box {
  background: var(--navy); color: var(--white); padding: 40px 36px;
}
.contact-box h2 { color: var(--white); }
.contact-box p { color: #d7dee8; margin: 12px 0 22px; }
.mail {
  display: inline-block;
  color: var(--gold-soft);
  font-family: Cinzel, serif;
  font-size: 22px;
}
.mail:hover { color: #e4c37a; }
.addr { color: #c5ced8; font-size: 15px; margin-top: 22px; line-height: 1.6; }

footer {
  padding: 28px 0 40px; font-size: 12px; color: var(--muted);
}
.foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.legal { max-width: 52em; margin-top: 14px; line-height: 1.5; }

[hidden] { display: none !important; }

@media (max-width: 860px) {
  .grid-3, .grid-4, .split, .contact-paths { grid-template-columns: 1fr; }
  .nav-links a:not(.cta-nav) { display: none; }
  h1 { max-width: none; }
  .hero { padding: 56px 0 48px; }
  section { padding: 52px 0; }
}
