* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}


.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--olive-dark);
  border-radius: var(--radius-small);
  color: var(--on-strong);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}



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


body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

main {
  min-height: 65vh;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

p {
  color: var(--muted);
}

.page-shell {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
}

.section {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
  padding: 88px 0;
}

.section-tight {
  padding-top: 24px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

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

.btn-primary {
  background: var(--olive-dark);
  color: var(--on-strong);
}

.btn-secondary {
  background: transparent;
  border-color: var(--olive-dark);
  color: var(--olive-dark);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.card p:last-child {
  margin-bottom: 0;
}

.status-note {
  padding: 18px 20px;
  background: var(--warning-bg);
  border: 1px solid rgba(146, 114, 54, 0.3);
  border-radius: var(--radius-small);
  color: var(--warning-text);
}

.text-link {
  color: var(--olive-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.page-hero {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
  padding: 86px 0 46px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 20px;
}

.page-hero .lead {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .page-shell,
  .section,
  .page-hero {
    width: min(calc(100% - 28px), var(--content-width));
  }

  .page-hero {
    padding-top: 58px;
  }

  .card {
    padding: 22px;
  }

  .btn-row,
  .btn {
    width: 100%;
  }
}



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