/* Shared design tokens and basics for every page. Colors come from the CCLS seal. */
:root {
  --green-950: #061C1F;
  --green-900: #0B2E33;
  --green-800: #0F3A40;
  --green-700: #15505A;
  --green-600: #1D6670;
  --green-100: #E3EEEC;
  --gold-600: #B8893E;
  --gold-500: #C9A45C;
  --gold-400: #D9BD7F;
  --gold-200: #EFE1BD;
  --gold-grad: linear-gradient(135deg, #F1E3B9 0%, #D9BD7F 30%, #C39A4F 58%, #E9D59F 100%);
  --cream: #F7F3EA;
  --cream-2: #EFE8D8;
  --paper: #FFFFFF;
  --ink: #0E1C1E;
  --body: #2E3F42;
  --muted: #5F6F71;
  --line: #E3DCCB;
  --line-soft: #EFEADF;
  --danger: #B42318;
  --danger-bg: #FEF3F2;
  --success: #1F7A4D;
  --success-bg: #ECF7F0;
  --warn: #9A6700;
  --warn-bg: #FFF8E6;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Oswald", "Arial Narrow", Impact, sans-serif;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(11, 46, 51, .06), 0 1px 3px rgba(11, 46, 51, .05);
  --shadow: 0 10px 30px -12px rgba(11, 46, 51, .22), 0 2px 6px rgba(11, 46, 51, .05);
  --shadow-lg: 0 30px 60px -20px rgba(6, 28, 31, .45);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 600; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 2px; border-radius: 4px; }
[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-600);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; transform: none; }
.btn-gold {
  background: var(--gold-grad);
  color: var(--green-950);
  box-shadow: 0 6px 18px -8px rgba(185, 137, 62, .8), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.btn-gold:hover { box-shadow: 0 10px 24px -8px rgba(185, 137, 62, .9), inset 0 1px 0 rgba(255, 255, 255, .6); }
.btn-green { background: var(--green-900); color: #fff; }
.btn-green:hover { background: var(--green-800); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--green-700); }
.btn-ghost-light { background: transparent; border-color: rgba(255, 255, 255, .35); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, .06); }
.btn-danger { background: var(--paper); border-color: #F3C5C0; color: var(--danger); }
.btn-danger:hover { background: var(--danger-bg); border-color: var(--danger); }
.btn-sm { min-height: 34px; padding: 7px 14px; font-size: 13.5px; }
.btn-lg { min-height: 54px; padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.spinner {
  width: 18px; height: 18px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.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;
}
