:root {
  --sky: #0994df;
  --sky-deep: #0078c8;
  --navy: #06295a;
  --navy-2: #0a356d;
  --blue: #047fd0;
  --panel: rgba(229, 244, 255, 0.88);
  --panel-strong: rgba(236, 248, 255, 0.94);
  --line: rgba(255, 255, 255, 0.78);
  --stroke: rgba(6, 41, 90, 0.16);
  --shadow: 0 22px 55px rgba(0, 72, 140, 0.24);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content: 1500px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 154px; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(0, 121, 204, 0.12), rgba(0, 121, 204, 0.08)),
    url("assets/images/sky-bg.jpg") center top / cover repeat-y;
  font-size: 16px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 10%, rgba(255,255,255,.2), transparent 38%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 12px 16px;
  background: #fff;
  color: var(--navy);
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.shell,
.page-shell {
  width: min(var(--content), calc(100% - 72px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  padding-block: 14px 8px;
}
.nav-card,
.mobile-menu-card {
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(232, 247, 255, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(0, 72, 140, .22);
}
.nav-card {
  height: 128px;
  border-radius: 24px;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { height: 106px; width: auto; max-width: 178px; object-fit: contain; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 40px);
  font-weight: 750;
  font-size: 15px;
  white-space: nowrap;
}
.desktop-nav a,
.language-switcher a {
  transition: color .2s ease, opacity .2s ease;
}
.desktop-nav a:hover,
.language-switcher a:hover { color: var(--blue); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(6,41,90,.68);
  font-weight: 700;
  white-space: nowrap;
}
.language-switcher .is-active { color: var(--blue); }
.nav-cta,
.trial-form button {
  background: linear-gradient(180deg, #08366f, #041f4a);
  color: #fff;
  border: 0;
  border-radius: 9px;
  min-height: 48px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 31, 79, .24);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.nav-cta:hover,
.trial-form button:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(0, 31, 79, .3); }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 48px;
  height: 48px;
  padding: 0;
  margin-left: auto;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px auto;
  background: var(--navy);
  border-radius: 999px;
}
.mobile-menu { margin-top: 8px; }
.mobile-menu-card {
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 14px;
}
.mobile-menu-card a { font-weight: 800; padding: 8px 6px; }
.mobile-lang { display: flex; gap: 8px; font-weight: 800; color: rgba(6,41,90,.66); padding: 8px 6px; }
.mobile-lang strong { color: var(--blue); }
.mobile-cta { width: 100%; }

.page-shell {
  display: grid;
  gap: 18px;
  padding: 2px 0 34px;
}
.panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(244,251,255,.94), rgba(215,238,254,.88));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-panel {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 26px;
  padding: 28px;
  min-height: 330px;
}
.hero-copy {
  align-self: center;
  padding: clamp(18px, 3vw, 48px) clamp(14px, 3.4vw, 54px);
}
.eyebrow {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: .34em;
  color: #006fbd;
  font-weight: 800;
}
h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  letter-spacing: -.04em;
  line-height: .98;
  margin: 0;
}
h1 { font-size: clamp(46px, 5.1vw, 92px); }
.lead {
  margin: 24px 0 0;
  max-width: 610px;
  font-size: clamp(17px, 1.26vw, 21px);
  line-height: 1.55;
  font-weight: 560;
}
.hero-image {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 300px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-panel {
  padding: 24px 28px 28px;
}
.gallery-panel h2,
.contacts-panel h2,
.utility-panel h2,
.form-panel h2 {
  font-size: clamp(30px, 2.5vw, 48px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.58);
  aspect-ratio: 16 / 9;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}
.gallery-grid figure:hover img { transform: scale(1.035); }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 18px;
}
.utility-panel,
.form-panel {
  min-height: 142px;
  padding: 26px 32px;
}
.utility-panel {
  display: grid;
  grid-template-columns: 126px 1fr;
  align-items: center;
  gap: 22px;
}
.utility-icon {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy-2);
  background: rgba(184, 222, 250, .6);
}
.utility-icon svg { width: 72px; height: 72px; }
.utility-panel p,
.form-note {
  margin: 12px 0 0;
  line-height: 1.55;
  font-weight: 560;
}
.form-panel {
  display: grid;
  align-content: center;
}
.trial-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 18px;
  margin-top: 20px;
}
.trial-form label { display: grid; gap: 7px; font-weight: 750; }
.trial-form span { font-size: 14px; }
.trial-form input {
  width: 100%;
  min-height: 46px;
  border-radius: 9px;
  border: 1px solid rgba(6, 41, 90, .14);
  background: rgba(255,255,255,.92);
  padding: 0 16px;
  color: var(--navy);
  outline: none;
  box-shadow: inset 0 1px 2px rgba(5, 33, 82, .06);
}
.trial-form input:focus { border-color: rgba(0, 126, 209, .58); box-shadow: 0 0 0 4px rgba(0, 126, 209, .13); }
.trial-form button { min-width: 170px; height: 46px; padding-inline: 28px; }
.form-note.is-success { color: #08763d; font-weight: 800; }

.contacts-panel {
  display: grid;
  grid-template-columns: minmax(270px, 360px) 1fr;
  gap: 28px;
  padding: 24px 28px;
  align-items: stretch;
}
.contacts-info {
  padding: 4px 0 4px 8px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 18px;
  display: grid;
  gap: 13px;
  font-size: 18px;
  font-weight: 650;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(6,41,90,.2);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(6,41,90,.17);
  font-weight: 900;
  color: var(--navy);
}
.map-card {
  min-height: 205px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.6);
  background: #e9f3fb;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 205px;
  border: 0;
  filter: saturate(.78) brightness(1.06);
}

@media (max-width: 1180px) {
  .shell,
  .page-shell { width: min(100% - 36px, var(--content)); }
  .nav-card { height: 112px; grid-template-columns: 170px 1fr auto; gap: 18px; padding-inline: 22px; }
  .brand img { height: 88px; max-width: 150px; }
  .desktop-nav { gap: 16px; font-size: 13px; }
  .header-actions { gap: 16px; }
  .hero-panel { grid-template-columns: 1fr; }
  .hero-image { min-height: 360px; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  body { background-size: auto 900px; }
  .site-header { top: 8px; padding-top: 8px; }
  .nav-card { height: 92px; grid-template-columns: 132px 1fr; padding: 10px 16px; }
  .brand img { height: 70px; width: auto; max-width: 112px; }
  .desktop-nav,
  .header-actions { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .page-shell { gap: 14px; padding-bottom: 18px; }
  .panel { border-radius: 22px; }
  .hero-panel { padding: 16px; gap: 16px; }
  .hero-copy { padding: 24px 14px 10px; }
  h1 { font-size: clamp(44px, 14vw, 70px); }
  .lead { font-size: 16px; margin-top: 18px; }
  .hero-image { min-height: 250px; border-radius: 16px; }
  .gallery-panel { padding: 18px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-grid figure { aspect-ratio: 16 / 10; }
  .utility-panel { grid-template-columns: 1fr; padding: 22px; }
  .utility-icon { width: 84px; height: 84px; }
  .trial-form { grid-template-columns: 1fr; }
  .trial-form button { width: 100%; }
  .contacts-panel { grid-template-columns: 1fr; padding: 22px; }
  .map-card, .map-card iframe { min-height: 260px; }
}

@media (max-width: 520px) {
  .shell,
  .page-shell { width: calc(100% - 20px); }
  .eyebrow { font-size: 11px; letter-spacing: .24em; }
  .gallery-panel h2,
  .contacts-panel h2,
  .utility-panel h2,
  .form-panel h2 { font-size: 34px; }
  .utility-panel,
  .form-panel { padding: 20px; }
  .contact-list { font-size: 16px; }
}
.placeholder-page { padding-top: 10px; }
.placeholder-panel { min-height: 440px; }
