@font-face {
  font-family: Inter;
  src: url("/font-files/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #101b17;
  --forest: #164a3a;
  --forest-deep: #092f25;
  --paper: #f6f0e4;
  --paper-light: #fffaf0;
  --mint: #b9e5d1;
  --rust: #df513e;
  --line: rgba(16, 27, 23, .25);
  --shell: 1180px;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; background: var(--paper); }
a { color: inherit; }
img { max-width: 100%; }
.shell { width: min(calc(100% - 3rem), var(--shell)); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 20;
  top: .75rem;
  left: .75rem;
  translate: 0 -180%;
  padding: .75rem 1rem;
  border: 2px solid var(--ink);
  background: var(--mint);
  font-weight: 800;
}
.skip-link:focus { translate: 0; }

:focus-visible { outline: 3px solid var(--rust); outline-offset: 4px; }

.site-header {
  border-bottom: 1px solid rgba(255, 250, 240, .4);
  background: var(--forest-deep);
  color: var(--paper-light);
}
.header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 850; text-decoration: none; }
.brand img { width: 2.2rem; height: 2.2rem; }
.nav { display: flex; align-items: center; gap: 1.5rem; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.nav a { text-underline-offset: .35rem; }

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border: 2px solid var(--ink);
  background: var(--mint);
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}
.button:hover { background: var(--paper-light); }

.hero { background: var(--forest); color: var(--paper-light); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(17rem, .75fr); gap: clamp(3rem, 8vw, 7rem); padding-block: clamp(5rem, 10vw, 9rem); }
.eyebrow { margin: 0 0 1rem; color: var(--mint); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { text-wrap: balance; }
h1 { max-width: 13ch; margin: 0; font-size: clamp(3.4rem, 7vw, 7rem); letter-spacing: -.07em; line-height: .9; }
.lede { max-width: 42rem; margin: 1.75rem 0 0; color: #dce9e2; font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.6; }
.hero-card { align-self: end; border-top: 5px solid var(--rust); border-bottom: 1px solid rgba(255, 250, 240, .5); padding: 1.5rem 0; }
.hero-card strong { display: block; margin-bottom: 1rem; color: var(--mint); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-card p { margin: 0; font: 760 clamp(1.35rem, 2.4vw, 2.2rem)/1.08 ui-monospace, monospace; }

.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section + .section { border-top: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: minmax(10rem, .35fr) 1fr; gap: 2rem; margin-bottom: 3rem; }
.section-head p { margin: .25rem 0 0; color: var(--forest); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
h2 { max-width: 20ch; margin: 0; font-size: clamp(2.2rem, 5vw, 4.6rem); letter-spacing: -.06em; line-height: .95; }
h3 { margin: 0 0 .75rem; font-size: clamp(1.25rem, 2.4vw, 1.8rem); letter-spacing: -.035em; }
p, li { line-height: 1.65; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.card { padding: clamp(1.5rem, 3vw, 2.5rem); background: var(--paper); }
.card p { margin: 0; color: #43504b; }
.card ul { margin: 0; padding-left: 1.15rem; }
.card li + li { margin-top: .6rem; }
.numbered { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; counter-reset: item; }
.numbered li { display: grid; grid-template-columns: 4rem minmax(0, 1fr); gap: 1rem; counter-increment: item; border-bottom: 1px solid var(--ink); padding: 1.25rem 0; }
.numbered li::before { content: counter(item, decimal-leading-zero); color: var(--rust); font: 800 .75rem/1.65 ui-monospace, monospace; }
.callout { background: var(--forest-deep); color: var(--paper-light); }
.callout .card { background: transparent; }
.callout .card p, .callout .card li { color: #dce9e2; }
.callout .grid-2 { border-color: rgba(255, 250, 240, .35); background: rgba(255, 250, 240, .35); }

.inquiry { background: var(--mint); }
.inquiry-grid { display: grid; grid-template-columns: 1fr minmax(18rem, .75fr); gap: clamp(2rem, 8vw, 7rem); align-items: end; }
.form-row { display: flex; gap: .75rem; }
.field-label { display: block; margin-bottom: .6rem; font-weight: 800; }
input { min-width: 0; width: 100%; min-height: 3.2rem; border: 2px solid var(--ink); background: var(--paper-light); padding: .75rem; font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: wait; opacity: .65; }
.form-note, .form-status { margin: .7rem 0 0; font-size: .86rem; line-height: 1.45; }
.form-status[data-kind="error"] { color: #7b2016; font-weight: 700; }

.prose { max-width: 48rem; }
.prose h2 { margin-top: 3rem; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2rem; }
.prose .note { border-left: 5px solid var(--rust); padding: .25rem 0 .25rem 1rem; }

.site-footer { border-top: 1px solid rgba(255, 250, 240, .4); background: var(--forest-deep); color: var(--paper-light); }
.footer-inner { display: flex; min-height: 6rem; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-links { display: flex; gap: 1.25rem; }

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 2rem), var(--shell)); }
  .nav { display: none; }
  .hero-grid, .section-head, .grid-2, .inquiry-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-block: 4rem; }
  h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .form-row { flex-direction: column; }
  .footer-inner { align-items: flex-start; flex-direction: column; padding-block: 1.5rem; }
}

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

@media (forced-colors: active) {
  .button, input, .card, .hero-card { border: 2px solid ButtonText; }
}
