:root {
  --ink: #1a1208;
  --ink-soft: #2a2117;
  --cream: #f8f2e6;
  --paper: #fffdf8;
  --gold: #c4a35a;
  --gold-dark: #8f6b26;
  --sage: #3f6658;
  --sage-light: #dceae3;
  --terracotta: #a54d35;
  --red-soft: #f8e4df;
  --blue: #2f5f78;
  --blue-soft: #e3eef3;
  --muted: #70685e;
  --line: #e4dbcc;
  --shadow-sm: 0 8px 24px rgba(39, 28, 14, 0.08);
  --shadow-lg: 0 28px 70px rgba(39, 28, 14, 0.17);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(196, 163, 90, 0.56);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(26, 18, 8, 0.2);
}

.btn-primary:hover {
  background: #332516;
}

.btn-gold {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(143, 107, 38, 0.22);
}

.btn-outline {
  border-color: rgba(26, 18, 8, 0.22);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.76);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: var(--cream);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.pill::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.pill-safe {
  color: #275a45;
  background: var(--sage-light);
}

.pill-warning {
  color: #805c17;
  background: #f6ebcc;
}

.pill-off {
  color: #675f56;
  background: #ece8e1;
}

.pill-danger {
  color: #8e3925;
  background: var(--red-soft);
}

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

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

