
:root {
  color-scheme: light;
  --bg: #f8f8f6;
  --paper: #ffffff;
  --ink: #071421;
  --muted: #3f3f3b;
  --line: #dedbd7;
  --navy: #0a1a2a;
  --navy-soft: #102538;
  --bronze: #b88a45;
  --bronze-soft: #efe1c5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Manrope, "Source Sans 3", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  align-items: center;
  background: rgba(248, 248, 246, 0.94);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto auto;
  min-height: 76px;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  color: var(--navy);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}
.main-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a:hover,
.lang:hover { color: var(--bronze); }
.lang {
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 10px;
}

.hero {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 420px);
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(100vh - 76px);
  padding: 72px 5vw 52px;
}
.hero-copy {
  align-self: center;
}
.eyebrow {
  color: var(--bronze);
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  color: var(--navy);
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  margin-bottom: 22px;
}
h2 {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  margin-bottom: 16px;
}
h3 {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.lead {
  color: var(--navy-soft);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
}
.hero-copy p {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}
.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
}
.button.primary {
  background: var(--navy);
  color: white;
}
.button.secondary {
  border-color: var(--line);
  color: var(--navy);
}
.button.light {
  background: white;
  color: var(--navy);
}
.button:hover {
  border-color: var(--bronze);
}
.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.principles span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 10px;
}
.portrait-card {
  align-self: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(10, 26, 42, 0.12);
  overflow: hidden;
}
.portrait-card img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 5vw;
  padding-right: 5vw;
}
.narrow { max-width: 880px; }
.section { padding-bottom: 72px; padding-top: 72px; }
.compact { padding-top: 24px; }
.band {
  background: white;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 64px 0;
}
.two-col {
  display: grid;
  gap: 32px;
  grid-template-columns: 0.8fr 1.2fr;
}
.two-col p {
  color: var(--muted);
  font-size: 18px;
}
.section-head {
  margin-bottom: 30px;
  max-width: 780px;
}
.section-head p,
.page-hero p,
.card p,
.notice,
.map-panel p,
.site-footer p {
  color: var(--muted);
}
.grid {
  display: grid;
  gap: 18px;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.card-meta {
  color: var(--bronze);
  font-size: 13px;
  font-weight: 800;
}
.news-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #eef3f7, #ffffff 54%, #faf6ed);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 18px;
}
.text-link {
  color: var(--bronze);
  font-weight: 800;
}
.page-hero {
  background: var(--navy);
  color: white;
  padding: 76px 0;
}
.page-hero h1 {
  color: white;
  font-size: clamp(42px, 6vw, 64px);
}
.page-hero p {
  color: #d7e2ea;
  font-size: 18px;
}
.notice {
  background: white;
  border: 1px solid var(--bronze-soft);
  border-radius: 8px;
  margin-bottom: 28px;
  padding: 18px;
}
.process {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.process li {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  padding: 18px;
}
.cta {
  background: var(--navy);
  color: white;
  margin-top: 20px;
  padding: 72px 5vw;
  text-align: center;
}
.cta h2 {
  color: white;
}
.cta p {
  color: #d7e2ea;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.contact-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: 28px;
}
.contact-form,
.map-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
input,
textarea {
  border: 1px solid var(--line);
  border-radius: 6px;
  display: block;
  margin-bottom: 12px;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}
textarea {
  min-height: 130px;
  resize: vertical;
}
.consent {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  margin: 12px 0 18px;
}
.consent input {
  min-height: auto;
  width: auto;
}
.map-placeholder {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: #eef3f7;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  justify-content: center;
  margin: 18px 0 28px;
  padding: 18px;
  text-align: center;
}
.socials,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-link {
  color: var(--navy);
  font-weight: 800;
}
.legal-card {
  font-size: 18px;
}
.site-footer {
  background: #071421;
  color: white;
  padding: 54px 5vw 28px;
}
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  margin: 0 auto;
  max-width: 1180px;
}
.site-footer h2,
.site-footer h3 {
  color: white;
}
.site-footer a:hover {
  color: var(--bronze);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #d7e2ea;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin: 36px auto 0;
  max-width: 1180px;
  padding-top: 22px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
  }
  .lang {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding-bottom: 14px;
  }
  .hero,
  .two-col,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .grid.three,
  .grid.four,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main-nav {
    gap: 12px;
  }
  .hero {
    min-height: auto;
    padding: 42px 20px 38px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section,
  .band,
  .page-hero,
  .cta {
    padding-bottom: 44px;
    padding-top: 44px;
  }
  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
