*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.005em;
}

h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--text); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 64ch;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: .3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(198,161,91,.55);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}

.arr {
  font-family: serif;
  font-size: 1.1em;
  transition: transform .3s;
}

.btn:hover .arr { transform: translateX(4px); }

section { padding: 110px 0; }

.sec-head { max-width: 66ch; margin-bottom: 24px; }
.sec-head h2 em { font-style: italic; color: var(--gold); }
.sec-head .lede { margin-top: 22px; }

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 99999;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.aah-standard-page { min-height: 60vh; }
.aah-page-header {
  max-width: 780px;
  margin: 0 auto 32px;
  border-bottom: 1px solid rgba(198,161,91,.5);
  padding-bottom: 28px;
}
.aah-page-header h1 { margin: 0; color: #0a1726; }
.aah-page-content {
  max-width: 780px;
  margin: 0 auto;
  color: #2a3540;
  font-size: 1.05rem;
  line-height: 1.8;
}
.aah-page-content > *:first-child { margin-top: 0; }
