:root {
  --bg: #f3f8fd;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(20, 66, 132, 0.12);
  --text: #133154;
  --muted: #59718d;
  --primary: #0d49c3;
  --primary-deep: #0a317f;
  --accent: #1aa0bb;
  --accent-soft: #dff8fb;
  --shadow: 0 24px 60px rgba(26, 58, 102, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 73, 195, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(26, 160, 187, 0.18), transparent 22%),
    linear-gradient(180deg, #f9fcff 0%, #edf5fb 45%, #e8f0f6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 92%);
}

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

.hero,
.section,
.footer {
  backdrop-filter: blur(18px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(235, 248, 252, 0.78)),
    linear-gradient(120deg, rgba(13, 73, 195, 0.08), transparent 40%);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% 35%;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(13, 73, 195, 0.16), rgba(26, 160, 187, 0.18));
  filter: blur(48px);
}

.topbar,
.hero-grid,
.intro-strip,
.section-heading,
.services-grid,
.info-grid,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.topbar-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(13, 73, 195, 0.18);
}

.brand-kicker,
.section-label,
.eyebrow {
  display: block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--accent);
}

.brand strong {
  display: block;
  margin-top: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 66, 132, 0.08);
}

.language-button {
  border: 0;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.language-button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 10px 24px rgba(13, 73, 195, 0.24);
}

.topbar-links a,
.button,
.contact-link,
.inline-link {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.topbar-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(20, 66, 132, 0.08);
}

.topbar-links a:hover,
.button:hover,
.contact-link:hover,
.inline-link:hover {
  transform: translateY(-2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  padding: 18px 6px 18px 6px;
}

.hero-copy h1,
.section-heading h2,
.intro-panel h2,
.info-card h2 {
  margin: 10px 0 16px;
  font-family: "Outfit", sans-serif;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 5.7rem);
  max-width: 9ch;
}

.hero-text,
.intro-panel p,
.section-heading p,
.service-card p,
.info-card p,
.stats-caption {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 12px 30px rgba(13, 73, 195, 0.3);
}

.button-secondary {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 73, 195, 0.14);
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.highlights li {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(13, 73, 195, 0.08), rgba(26, 160, 187, 0.14));
  border: 1px solid rgba(13, 73, 195, 0.08);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-card,
.map-frame,
.service-card,
.info-card,
.intro-panel,
.stats-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-card img,
.map-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-logo {
  max-width: 230px;
  justify-self: end;
  border-radius: 50%;
  background: var(--surface-strong);
}

.hero-card-poster {
  transform: rotate(-1.8deg);
}

.section {
  margin-top: 22px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 252, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.intro-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.intro-panel,
.stats-card,
.info-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.stats-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(13, 73, 195, 0.96), rgba(18, 154, 180, 0.88));
  color: #fff;
}

.stats-number {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.stats-caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2,
.intro-panel h2,
.info-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.service-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 18px 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

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

.hours-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
}

.hours-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.hours-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-list dt {
  font-weight: 700;
}

.hours-list dd {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-link {
  display: inline-flex;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13, 73, 195, 0.1), rgba(26, 160, 187, 0.14));
  color: var(--primary-deep);
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.inline-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 22px 0 36px;
  padding: 18px 24px;
  border-radius: 22px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-strip,
  .info-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-card-logo {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    margin: 10px auto;
  }

  .hero,
  .section {
    padding: 22px;
    border-radius: 24px;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-controls {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    margin-bottom: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 16vw, 4rem);
  }

  .intro-panel,
  .stats-card,
  .info-card,
  .service-card {
    padding: 22px;
  }

  .footer {
    margin-bottom: 20px;
  }
}
