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

html { scroll-behavior: smooth; font-size: 18px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
strong, b { font-weight: 500; color: var(--fg); }

/* Utilities */
.container  { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section    { padding: var(--gap) 0; }
.section-alt { background: var(--bg-alt); }

.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--fg);
}
.heading em { font-style: italic; color: var(--teal); }

.body-text {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.8;
}

.divider { width: 48px; height: 2px; background: var(--teal); margin: 24px 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s;
  border: none;
}
.btn-primary  { background: var(--teal); color: #fff; }
.btn-primary:hover  { background: var(--teal-dk); }
.btn-outline  { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); width: 100%; text-align: center; }
.btn-outline:hover  { background: var(--teal-lt); }
.btn-ghost    { background: transparent; color: var(--fg-muted); border: 1.5px solid var(--border); }

.policy-link {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(61,122,112,.3);
  font-weight: 500;
  transition: border-color .2s;
  padding-bottom: 1px;
}
.policy-link:hover { border-bottom-color: var(--teal); }

@media (max-width: 900px) {
  :root { --gap: 80px; }
  .container { padding: 0 24px; }
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
