:root {
  --cream: #F4EFE3;
  --paper: #FFF9ED;
  --ink: #2E2A27;
  --muted-ink: #655E55;
  --antique-gold: #B07A2A;
  --sage: #8A9A6B;
  --soft-sage: #C8CFB6;
  --deep-teal: #2F5F67;
  --border: #D9C9A3;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(46, 42, 39, 0.11);
  --radius: 8px;
  --max-width: 1120px;
  --display-devanagari: "Noto Serif Devanagari", "Nirmala UI", "Kohinoor Devanagari", serif;
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(47, 95, 103, 0.32);
  outline-offset: 3px;
}

.wrap {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: 72px;
}

.section-tint {
  background:
    linear-gradient(0deg, rgba(255, 249, 237, 0.74), rgba(255, 249, 237, 0.74)),
    var(--cream);
  border-block: 1px solid rgba(217, 201, 163, 0.58);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(176, 122, 42, 0.24);
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--deep-teal);
  border-color: var(--deep-teal);
  box-shadow: inset 0 0 0 1px rgba(255, 249, 237, 0.24);
}

.button-ghost {
  background: transparent;
  color: var(--deep-teal);
  border-color: var(--border);
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--paper);
  border-color: var(--deep-teal);
}

.button-link {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
  text-decoration: underline;
  text-decoration-color: var(--antique-gold);
  text-underline-offset: 5px;
}

.button-link:hover {
  color: var(--deep-teal);
  background: transparent;
  border-color: transparent;
}

.button-small {
  min-height: 38px;
  padding: 7px 13px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
