:root {
  --felt-deep: #062e22;
  --felt-primary: #0b4d3a;
  --felt-bright: #157a5c;
  --gold: #c9a227;
  --ivory: #fafaf8;
  --pearl: #f4f3ef;
  --mist: #e8e6e0;
  --charcoal: #1c1917;
  --slate: #6b7280;
  --max-width: 42rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: linear-gradient(180deg, var(--pearl) 0%, var(--ivory) 40%, #fff 100%);
}

a {
  color: var(--felt-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--felt-primary);
}

.site-header {
  background: linear-gradient(135deg, var(--felt-deep), var(--felt-primary));
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-bottom: 3px solid var(--gold);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__logo {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}

.site-header__brand {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
}

.site-header__brand:hover {
  color: var(--gold);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--felt-deep);
}

.meta {
  margin: 0 0 2rem;
  color: var(--slate);
  font-size: 0.9375rem;
}

section {
  margin-bottom: 1.75rem;
}

section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--felt-primary);
}

section p {
  margin: 0;
  white-space: pre-line;
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  color: var(--slate);
  font-size: 0.875rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 0.75rem;
}

.landing {
  text-align: center;
  padding-top: 1rem;
}

.landing p {
  margin: 0 0 2rem;
  color: var(--slate);
  font-size: 1.0625rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.card {
  display: block;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--mist);
  border-radius: 0.75rem;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  border-color: var(--felt-bright);
  box-shadow: 0 4px 20px rgba(6, 46, 34, 0.08);
  color: inherit;
}

.card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  color: var(--felt-deep);
}

.card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.9375rem;
}
