:root {
  --navy: #071c34;
  --navy-soft: #123250;
  --gold: #b58b43;
  --gold-soft: #d6bc7a;
  --text: #172235;
  --muted: #637083;
  --line: rgba(7, 28, 52, 0.12);
  --card: rgba(255, 255, 255, 0.78);
  --bg: #f7f8fb;
  --shadow: 0 24px 70px rgba(7, 28, 52, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 18%, rgba(181, 139, 67, 0.16), transparent 28rem),
    radial-gradient(circle at 5% 90%, rgba(18, 50, 80, 0.14), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, var(--bg) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(7, 28, 52, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 28, 52, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 78%);
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand img { width: 320px; max-width: 74vw; display: block; height: auto; }

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(7, 28, 52, 0.06);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 9px 13px;
  border-radius: 999px;
}

.lang-btn.active {
  background: var(--navy);
  color: #fff;
}

main { flex: 1; display: grid; align-content: center; padding: 18px 0 22px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  padding: 34px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.15rem, 5.2vw, 4.45rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.lead {
  margin: 20px 0 0;
  max-width: 650px;
  color: var(--navy-soft);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.55;
  font-weight: 600;
}

.body-text {
  margin: 16px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 24px; }

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(7, 28, 52, 0.2);
}

.status-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--navy-soft);
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.contact-card,
.details-grid article {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.contact-card { padding: 28px; }
.contact-card h2, .details-grid h3 { margin: 0 0 14px; color: var(--navy); }
.contact-card dl { margin: 0; display: grid; gap: 16px; }
.contact-card dt { color: var(--gold); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; margin-bottom: 7px; }
.contact-card dd { margin: 0; color: var(--navy); font-weight: 700; line-height: 1.45; }
a { color: inherit; }

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.details-grid article { padding: 22px; box-shadow: 0 16px 44px rgba(7, 28, 52, 0.08); }
.details-grid p { margin: 0; color: var(--muted); line-height: 1.7; }
.details-grid strong { color: var(--navy); }

.site-footer {
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--navy); }

@media (max-width: 860px) {
  .page-shell { width: min(100% - 28px, 680px); }
  .site-header, .site-footer { align-items: flex-start; }
  .hero { grid-template-columns: 1fr; gap: 12px; }
  .hero-copy { padding: 38px 0 20px; }
  .details-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 520px) {
  .site-header { flex-direction: column; }
  .brand img { width: 260px; }
  .contact-card { padding: 26px; }
  .status-pill, .primary-btn { width: 100%; }
}

.back-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.7);
}

.legal-page main {
  align-content: start;
}

.legal-content {
  max-width: 880px;
  margin: 24px 0 64px;
  padding: 44px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.legal-content h2 {
  color: var(--navy);
  margin: 30px 0 10px;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.58;
}

@media (max-width: 520px) {
  .legal-content { padding: 28px; }
}
