:root {
  --ink: #1c4450;
  --muted: #5d737c;
  --paper: #f7fbfc;
  --ivory: #eef7f4;
  --forest: #1e9ec4;
  --forest-deep: #1478a8;
  --leaf: #5cbf3a;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', 'Noto Serif Devanagari', Georgia, serif;
  --font-sans: 'Figtree', 'Noto Serif Devanagari', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--forest-deep); }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.03em; line-height: 1.15; margin: 0; }
p { margin: 0 0 1rem; }
.wrap { width: min(calc(100% - 2rem), 760px); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid #d5e4e8;
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(calc(100% - 2rem), 1180px);
  margin-inline: auto;
  min-height: 4.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand-logo { height: 3.1rem; width: auto; max-width: min(280px, 52vw); object-fit: contain; }
.header-actions { display: flex; gap: 0.6rem; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-weight: 700; border-radius: 999px; padding: 0.7rem 1.15rem;
}
.btn-primary { background: var(--leaf); color: var(--white); }
.lang { color: var(--ink); font-weight: 700; text-decoration: none; }
.hero {
  background: linear-gradient(160deg, #1478a8 0%, #1e9ec4 48%, #3fa86a 100%);
  color: var(--ivory);
  padding: 4rem 0 3.2rem;
}
.hero .wrap { width: min(calc(100% - 2rem), 1180px); }
.kicker {
  display: inline-flex; gap: 0.7rem; align-items: center;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #b7ebf5; margin-bottom: 0.8rem;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); color: #fff; max-width: 18ch; }
.hero p { color: color-mix(in srgb, var(--ivory) 88%, white); max-width: 62ch; margin-top: 1rem; }
article { padding: 2.6rem 0 3.5rem; }
h2 { font-size: 1.85rem; margin: 1.8rem 0 0.8rem; }
h3 { font-size: 1.25rem; margin: 1.3rem 0 0.4rem; }
.note {
  background: #fff; border: 1px solid #d5e4e8; border-radius: 1rem; padding: 1rem 1.1rem; color: var(--muted);
}
.cta {
  display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem;
}
.btn-dark { background: var(--forest-deep); color: #fff; }
footer {
  border-top: 1px solid #d5e4e8; padding: 1.6rem 0 2rem; color: var(--muted); font-size: 0.95rem;
}
.map {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 1rem;
  margin: 1rem 0 1.4rem;
}
.pages { display: flex; flex-wrap: wrap; gap: 0.85rem; }
