:root {
  --bg: #eef6fb;
  --bg-soft: #dcebf5;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(247, 251, 255, 0.92);
  --text: #14263b;
  --muted: #4e657d;
  --line: rgba(20, 38, 59, 0.12);
  --brand: #3aa7e0;
  --brand-strong: #1085ca;
  --accent: #149b8a;
  --shadow: 0 24px 80px rgba(34, 74, 114, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(58, 167, 224, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(20, 155, 138, 0.12), transparent 22%),
    linear-gradient(160deg, #f6fbff 0%, #edf6fb 48%, #e7f1f8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 38, 59, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 38, 59, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 90%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(52, 91, 131, 0.12);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(140px, 18vw, 210px);
  height: auto;
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.main-nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  transform: translateY(-1px);
}

.lang-switch {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(20, 38, 59, 0.04);
  border: 1px solid rgba(20, 38, 59, 0.08);
}

.lang-btn {
  border: 0;
  min-width: 48px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--text);
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  transform: translateY(-1px);
}

.lang-btn span {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}

main {
  display: grid;
  gap: 28px;
}

.hero,
.split-hero,
.contact-layout,
.highlight,
.info-grid {
  animation: rise 700ms ease both;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.split-copy,
.contact-card {
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 248, 253, 0.84));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-media,
.feature-visual,
.map-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.72);
}

.hero-media img,
.feature-visual img,
.map-card img,
.map-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card {
  align-self: start;
  max-width: 320px;
  justify-self: center;
}

.map-card img,
.map-card iframe {
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
}

.map-card iframe {
  min-height: 320px;
  border: 0;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  max-width: 18ch;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.card h2,
.highlight h2 {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  max-width: 24ch;
}

p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 16px 40px rgba(58, 167, 224, 0.24);
}

.button-secondary {
  border: 1px solid rgba(20, 38, 59, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card,
.highlight {
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.accent-card {
  background:
    radial-gradient(circle at top right, rgba(58, 167, 224, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(233, 243, 250, 0.92));
}

.highlight {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.highlight-grid div {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(20, 38, 59, 0.08);
}

.highlight-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.split-hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.feature-visual img {
  object-fit: cover;
  object-position: center top;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.contact-details {
  display: grid;
  gap: 4px;
  margin-top: 24px;
}

.contact-details a {
  color: var(--accent);
}

.site-footer {
  padding: 26px 8px 8px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .split-hero,
  .contact-layout,
  .highlight,
  .info-grid,
  .two-column-tight {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .feature-visual,
  .map-card {
    min-height: 320px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--content-width));
    padding-top: 12px;
  }

  .site-header {
    top: 10px;
    gap: 16px;
    padding: 14px;
  }

  .brand img {
    width: 132px;
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
  }

  .hero-copy,
  .split-copy,
  .contact-card,
  .card,
  .highlight {
    padding: 22px;
  }

  h1 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
