:root {
  color-scheme: light;
  --navy: #05356f;
  --navy-dark: #031f43;
  --gold: #f5bf24;
  --gold-soft: #fff4c2;
  --red: #b5262e;
  --green: #176f43;
  --ink: #1c2530;
  --muted: #596273;
  --line: #d9dfeb;
  --paper: #ffffff;
  --paper-soft: #f7f9fc;
  --focus: #b5262e;
  --shadow: 0 20px 45px rgba(3, 31, 67, 0.12);
  --radius: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 223, 235, 0.85);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.header-inner,
.section,
.footer-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
  text-decoration: none;
  min-width: 13rem;
}

.brand-logo {
  width: 64px;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold);
}

.brand-name {
  display: grid;
  gap: 0.05rem;
  line-height: 1.2;
}

.brand-name strong {
  font-size: 1rem;
  color: var(--navy-dark);
}

.brand-name span {
  color: var(--muted);
  font-size: 0.875rem;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  color: var(--navy-dark);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--gold-soft);
  color: var(--navy-dark);
}

.language-switcher {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  font-size: 0.92rem;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.35rem 0.55rem;
  color: var(--navy-dark);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(5, 53, 111, 0.95), rgba(3, 31, 67, 0.96)),
    radial-gradient(circle at 82% 16%, rgba(245, 191, 36, 0.35), transparent 32%);
  color: white;
}

.hero .section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.55fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  min-height: 78vh;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 56rem;
  margin: 1.3rem 0 0;
  color: #eef5ff;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-media {
  justify-self: center;
  width: min(320px, 80vw);
}

.hero-media img {
  border-radius: 50%;
  border: 8px solid var(--gold);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0.72rem 1.05rem;
  background: var(--gold);
  color: var(--navy-dark);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  background: #ffd456;
  color: var(--navy-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
  color: white;
}

.button.secondary:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: white;
}

.page-hero .section {
  display: grid;
  gap: 1.25rem;
  padding: clamp(3.25rem, 8vw, 6rem) 0;
}

.page-hero p {
  max-width: 54rem;
  margin: 0;
  color: #eef5ff;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.section.compact {
  padding-block: clamp(2.25rem, 6vw, 4rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2,
h3 {
  color: var(--navy-dark);
  line-height: 1.16;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3vw, 3rem);
}

h3 {
  margin: 0 0 0.6rem;
  font-size: 1.32rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  max-width: 66rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  box-shadow: 0 10px 28px rgba(3, 31, 67, 0.06);
}

.card.accent {
  border-top: 6px solid var(--gold);
}

.card.green {
  border-top-color: var(--green);
}

.card.red {
  border-top-color: var(--red);
}

.band {
  background: var(--paper-soft);
}

.highlight {
  border-left: 6px solid var(--gold);
  background: var(--gold-soft);
  padding: 1.25rem;
  border-radius: var(--radius);
}

.check-list,
.plain-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.55rem;
  margin-bottom: 0.75rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 191, 36, 0.28);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.7rem;
  height: 2px;
  background: var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-panel {
  border-radius: var(--radius);
  background: var(--navy-dark);
  color: white;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-panel h2,
.contact-panel h3,
.contact-panel a {
  color: white;
}

.contact-panel p {
  color: #eef5ff;
}

.hours {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 0.55rem;
}

.form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

label {
  color: var(--navy-dark);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(245, 191, 36, 0.55);
  outline-offset: 2px;
}

.required {
  color: var(--red);
}

.small-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-content {
  max-width: 74ch;
}

.legal-content h2 {
  margin-top: 2.25rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.site-footer {
  background: var(--navy-dark);
  color: white;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 3.25rem) 0;
}

.site-footer a {
  color: white;
}

.site-footer h2 {
  margin: 0 0 0.75rem;
  color: white;
  font-size: 1rem;
  line-height: 1.3;
}

.footer-logo {
  width: 86px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  margin-bottom: 0.85rem;
}

.footer-nav {
  display: grid;
  gap: 0.35rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1rem;
  text-align: center;
  color: #dbe7f8;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav ul {
    justify-content: flex-start;
  }

  .language-switcher {
    justify-content: flex-start;
  }

  .hero .section,
  .two,
  .three,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero .section {
    min-height: auto;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 520px) {
  .header-inner,
  .section,
  .footer-inner {
    width: min(100% - 1.25rem, 1120px);
  }

  .brand-logo {
    width: 54px;
  }

  .site-nav a {
    padding-inline: 0.55rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
