:root {
  --navy: #071422;
  --navy-2: #0c2138;
  --navy-3: #14304d;
  --blue: #1c6aa3;
  --blue-2: #2b86c4;
  --ice: #f3f7fb;
  --ice-2: #e6eef6;
  --gold: #c9a227;
  --gold-2: #e0b93a;
  --text: #14202c;
  --muted: #5b6b7c;
  --line: #d4e0ea;
  --white: #ffffff;
  --ok: #1f7a4d;
  --err: #b42318;
  --shadow: 0 18px 50px rgba(7, 20, 34, 0.12);
  --radius: 18px;
  --font-d: "Sora", system-ui, sans-serif;
  --font-b: "Source Sans 3", system-ui, sans-serif;
  --header: 78px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.55;
}

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

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-d);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
  z-index: 100;
  font-weight: 600;
}

.skip:focus {
  top: 12px;
}

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

.topbar {
  background: var(--navy);
  color: #c9d7e6;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 36px;
}

.topbar a {
  color: #e8f1f8;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--gold-2);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(7, 20, 34, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}

.logo svg {
  width: 42px;
  height: 42px;
}

.logo-name {
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 15px;
  line-height: 1.1;
}

.logo-name span {
  display: block;
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--blue);
}

.nav-panel {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
}

.nav a:hover,
.nav a.is-active {
  background: var(--ice);
  color: var(--navy);
}

.lang {
  display: flex;
  gap: 2px;
  margin-left: 8px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.lang button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 6px 8px;
  border-radius: 999px;
  cursor: pointer;
}

.lang button[aria-pressed="true"] {
  background: var(--navy);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--navy);
}

.btn-gold:hover {
  color: var(--navy);
}

.btn-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

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

.btn-navy:hover {
  color: #fff;
  background: var(--navy-3);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 114px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--navy) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 34, 0.88) 0%, rgba(7, 20, 34, 0.55) 48%, rgba(7, 20, 34, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 20, 34, 0.55), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 88px;
  max-width: 740px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-2);
  margin-bottom: 16px;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  margin-bottom: 16px;
}

.lead {
  font-size: clamp(18px, 2.2vw, 24px);
  max-width: 38rem;
}

.hero .lead,
.page-hero .lead {
  color: #e7eef5;
}

.sub {
  max-width: 40rem;
}

.hero .sub,
.page-hero .sub {
  color: #c5d3e0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stats {
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: var(--font-d);
  font-size: 22px;
  color: var(--navy);
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 88px 0;
}

.section-ice {
  background: var(--ice);
}

.section-navy {
  background:
    linear-gradient(180deg, rgba(7, 20, 34, 0.82), rgba(7, 20, 34, 0.9)),
    var(--navy) center / cover no-repeat;
  color: #fff;
}

.section-head {
  max-width: 680px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.muted {
  color: var(--muted);
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 20px;
}

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

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 20, 34, 0.06);
  border: 1px solid var(--line);
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card h3 {
  font-size: 22px;
}

.icon-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.icon-card .mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ice);
  color: var(--blue);
  margin-bottom: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.split img,
.media {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 24px;
}

.media {
  position: relative;
  overflow: hidden;
}

.media img {
  min-height: 420px;
  border-radius: 24px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.badge {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding: 12px 0 12px 36px;
  border-bottom: 1px solid var(--line);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--gold) 0 4px, transparent 5px),
    var(--ice-2);
}

.band-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.band-inner h2 {
  margin-bottom: 8px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 72px 0 56px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 34, 0.88), rgba(7, 20, 34, 0.5));
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-card h2,
.contact-card h3 {
  font-size: 20px;
}

.dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 16px;
  margin: 0;
}

.dl dt {
  color: var(--muted);
  font-size: 14px;
}

.dl dd {
  margin: 0;
  font-weight: 600;
}

.map {
  border: 0;
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  filter: grayscale(0.15);
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.req {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--ice);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--blue-2);
  background: #fff;
}

.phone-field {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
}

.phone-prefix {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.form-note,
.form-ok,
.form-err {
  margin-top: 12px;
  font-size: 15px;
}

.form-ok {
  color: var(--ok);
}

.form-err {
  color: var(--err);
}

.footer {
  background: var(--navy);
  color: #c5d3e0;
  padding: 48px 0 20px;
}

.footer a {
  color: #e8f1f8;
  text-decoration: none;
}

.footer a:hover {
  color: var(--gold-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h3 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  font-size: 13px;
  color: #8ea0b3;
}

.footer-credit {
  color: #c5d3e0;
}

.footer-credit a {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-credit a:hover {
  color: var(--gold-2);
}

.footer .logo {
  color: #fff;
}

.footer .logo-name span {
  color: var(--gold-2);
}

@media (max-width: 980px) {
  .stats-grid,
  .cards-3,
  .cards-4,
  .split,
  .contact-grid,
  .footer-grid,
  .band-inner {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .band-inner {
    align-items: start;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .header.is-open .nav-panel {
    display: flex;
  }

  .nav {
    margin: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .header-cta {
    display: none;
  }

  .lang {
    margin: 8px 0 0;
    width: max-content;
  }

  .hero {
    min-height: 70vh;
  }

  .stats-grid,
  .cards-3,
  .cards-4,
  .split,
  .contact-grid,
  .footer-grid,
  .band-inner {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dl {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }

  .dl dd {
    margin-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}
