/* Site-wide tokens, base typography, containers, spacing and accessibility. */
:root { --ink: #12383c;
  --teal: #0f696b;
  --teal-dark: #0a4d4f;
  --mint: #d9efea;
  --sand: #efe2cf;
  --ivory: #faf8f3;
  --white: #fff;
  --coral: #d96852;
  --muted: #597174;
  --line: rgba(18, 56, 60, .14);
  --shadow: 0 24px 70px rgba(17, 71, 72, .13);
  --radius: 18px;
  --wrap: min(1200px, calc(100% - 40px));
  --display: Georgia, Cambria, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--ivory); font-family: var(--body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }
.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; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; transform: translateY(-140%); padding: .75rem 1rem; background: var(--white); border-radius: 8px; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #f0a78f; outline-offset: 3px; }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 500; letter-spacing: -.035em; line-height: 1.06; }
h1 { max-width: 760px; font-size: clamp(3rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2.25rem, 4.2vw, 3.8rem); }
h3 { line-height: 1.2; }
.section { padding: clamp(75px, 9vw, 125px) 0; }
.center { margin: 38px 0 0; text-align: center; }

@media (max-width: 980px) {
  h1 { font-size: clamp(2.7rem, 6.2vw, 4.2rem); }
}

@media (max-width: 720px) {
  :root { --wrap: min(100% - 28px, 620px); }
  body { padding-bottom: 65px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .section { padding: 75px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
