:root {
  --bg: #f5f3ef;
  --surface: #faf8f4;
  --surface-strong: #e8f4f4;
  --surface-muted: #d0e8e8;
  --text: #253247;
  --heading: #091a3a;
  --muted: #5a6e72;
  --primary: #006D6F;
  --primary-light: #008a8c;
  --primary-dark: #004d4f;
  --primary-soft: #e0f4f4;
  --accent: #b55b2c;
  --accent-dark: #8a3d18;
  --accent-soft: #f4dfcf;
  --gold: #c4974f;
  --line: rgba(0, 109, 111, 0.12);
  --line-strong: rgba(0, 109, 111, 0.22);
  --shadow-sm: 0 12px 28px rgba(0, 77, 79, 0.10);
  --shadow: 0 26px 70px rgba(0, 77, 79, 0.18);
  --shadow-lg: 0 40px 100px rgba(0, 77, 79, 0.22);
  --radius: 8px;
  --radius-lg: 14px;
  --container: min(1180px, calc(100% - 28px));
  --font: "Noto Sans Devanagari", "Inter", Arial, sans-serif;
  --display: "Noto Sans Devanagari", "Outfit", "Inter", Arial, sans-serif;
  --latin: "Outfit", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.28), transparent 38%),
    radial-gradient(circle at bottom right, rgba(181, 91, 44, 0.10), transparent 40%),
    linear-gradient(
      145deg,
      #b8dede,
      #8ab8b8
    );
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--heading);
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 12vw, 6.8rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.95rem, 8vw, 4.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 18px;
}

img {
  max-width: 100%;
}

body.modal-open {
  overflow: hidden;
}

@media (min-width: 760px) {
  :root {
    --container: min(1180px, calc(100% - 48px));
  }
}
