@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #171a25;
  --teal: #244f54;
  --teal-action: #2d646a;
  --gold: #a27d2d;
  --paper: #faf9f5;
  --white: #ffffff;
  --line: #a7b0ae;
  --focus: #7e5b08;
}

* { box-sizing: border-box; }

html { color-scheme: light; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

a { color: var(--teal); text-underline-offset: .18em; }
a:hover { text-decoration-thickness: .14em; }
a:focus-visible,
.download-button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: .75rem;
  left: .75rem;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--ink);
  padding: .7rem 1rem;
  border: 2px solid var(--ink);
}

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

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
}

.tool-link { font-size: .95rem; }

.page-shell {
  width: min(58rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5.5rem) 0 4rem;
}

.intro { max-width: 51rem; }

.eyebrow {
  margin: 0 0 .65rem;
  color: var(--teal);
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.12;
}

h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.35rem, 7vw, 4.8rem);
}

h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
}

p { margin: 0 0 1.15rem; }

.dek {
  max-width: 46rem;
  margin: 1.2rem 0 1.4rem;
  color: var(--teal);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.42;
}

.download-button {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  margin-top: .7rem;
  padding: .8rem 1.25rem;
  border: 2px solid var(--teal-action);
  border-radius: .25rem;
  background: var(--teal-action);
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.download-button:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.download-note {
  margin-top: .65rem;
  color: var(--teal);
  font-size: .92rem;
}

.panel {
  margin-top: 3.5rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: .55rem;
  background: var(--white);
}

.file-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.file-list li {
  min-width: 0;
  padding-top: .9rem;
  border-top: 2px solid var(--gold);
}

.file-list a {
  display: block;
  margin-bottom: .3rem;
  font-weight: 600;
}

.file-list span {
  display: block;
  font-size: .93rem;
  line-height: 1.5;
}

.steps {
  display: grid;
  gap: .85rem;
  margin: 0 0 1.25rem;
  padding-left: 1.45rem;
}

.limits p:last-child,
.site-footer p:last-child { margin-bottom: 0; }

.site-footer {
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--teal);
  font-size: .88rem;
}

@media (max-width: 43rem) {
  .site-header { align-items: flex-start; }
  .tool-link { text-align: right; }
  .file-list { grid-template-columns: 1fr; }
  .page-shell { padding-top: 2.5rem; }
}

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

@media print {
  .skip-link,
  .download-button { display: none; }

  body { background: white; }
  .site-header,
  .page-shell,
  .site-footer { width: 100%; }
  .panel { break-inside: avoid; box-shadow: none; }
}
