/* The Trapper Wildlife Removal — field bulletin */

:root {
  --pine: #16261D;
  --pine-deep: #0E1A13;
  --paper: #EBE6D9;
  --paper-warm: #E1DACA;
  --blaze: #F04E23;
  --sage: #8A9A6B;
  --ink: #2C2A26;
  --rule: rgba(44, 42, 38, 0.22);
  --display: "Archivo", "Arial Narrow", sans-serif;
  --body: "Source Serif 4", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --wrap: 1120px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
}

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

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- type ---------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 75%;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.98;
  margin: 0;
}

h1 { font-size: clamp(2.5rem, 8vw, 4.75rem); }
h2 { font-size: clamp(1.75rem, 4.5vw, 2.75rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 0.75rem;
}

.lede { font-size: 1.1875rem; max-width: 62ch; }

/* ---------- header ---------- */

.masthead {
  background: var(--pine);
  color: var(--paper);
  border-bottom: 3px solid var(--blaze);
}

.masthead .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.wordmark { text-decoration: none; display: block; }

.wordmark .line1 {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 75%;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1;
}

.wordmark .line2 {
  display: block;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.25rem;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a { text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--blaze); }

.nav-call {
  display: none;
  font-family: var(--mono);
  font-size: 0.8125rem;
  text-decoration: none;
  background: var(--blaze);
  color: #fff;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav-call { display: block; }
}

/* sticky call bar, mobile only */
.callbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--blaze);
  border-top: 2px solid var(--pine-deep);
}

.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem;
  color: #fff;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 75%;
  text-transform: uppercase;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .callbar { display: block; }
  body { padding-bottom: 3.75rem; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 75%;
  text-transform: uppercase;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.6rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-call { background: var(--blaze); color: #fff; }
.btn-call:hover { background: #d33f18; }

.btn-request { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn-request:hover { background: var(--paper); color: var(--pine); }

.btn-dark { background: var(--pine); color: var(--paper); }
.btn-dark:hover { background: var(--pine-deep); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- hero ---------- */

.hero {
  background: var(--pine);
  color: var(--paper);
  padding: clamp(3rem, 9vw, 6rem) 0 clamp(3rem, 8vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero h1 { max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--blaze); }

.hero .lede { margin: 1.5rem 0 2rem; color: #d8d3c4; }

.hero-meta {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(235, 230, 217, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

/* ---------- sections ---------- */

section { padding: clamp(3rem, 7vw, 5rem) 0; }

.section-head { margin-bottom: 2.5rem; max-width: 60ch; }
.section-head p { margin-top: 0.75rem; }

.rule-top { border-top: 1px solid var(--rule); }

/* ---------- field plates (animal grid) ---------- */

.plates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.plate {
  background: var(--paper);
  padding: 1.25rem 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.15s ease;
}

.plate:hover { background: var(--paper-warm); }
.plate:hover .plate-name { color: var(--blaze); }

.plate-no {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  color: var(--sage);
}

.plate-fig {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plate-fig svg { width: 100%; height: 100%; }

.plate-name {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 75%;
  text-transform: uppercase;
  font-size: 1.375rem;
  line-height: 1;
}

.plate-sign {
  font-family: var(--mono);
  font-size: 0.6875rem;
  line-height: 1.5;
  color: rgba(44, 42, 38, 0.72);
  border-top: 1px solid var(--rule);
  padding-top: 0.65rem;
}

/* ---------- steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.step-no {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--blaze);
  border-top: 2px solid var(--blaze);
  padding-top: 0.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.step h3 { margin-bottom: 0.5rem; }
.step p { font-size: 0.9375rem; margin: 0; }

/* ---------- dark band ---------- */

.band {
  background: var(--pine);
  color: var(--paper);
}

.band .eyebrow { color: var(--sage); }
.band h2 { color: var(--paper); }

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem 2.5rem;
}

.reason h3 { font-size: 1.0625rem; color: var(--blaze); margin-bottom: 0.4rem; }
.reason p { font-size: 0.9375rem; color: #cfc9ba; margin: 0; }

/* ---------- service area ---------- */

.counties {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.county { background: var(--paper); padding: 1.25rem; }

.county h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }

.county .towns {
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(44, 42, 38, 0.75);
  margin: 0;
}

.county .seat {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 0.6rem;
}

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.shot { border: 1px solid var(--rule); background: var(--paper-warm); }

.shot img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

.shot figcaption {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  padding: 0.65rem 0.8rem;
  border-top: 1px solid var(--rule);
  color: rgba(44, 42, 38, 0.75);
}

.shot-empty {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44, 42, 38, 0.4);
  text-align: center;
  padding: 1rem;
}

/* ---------- service detail ---------- */

.entry {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 2fr);
  gap: 2.5rem;
}

@media (max-width: 760px) {
  .entry { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* field-plate frame so the diagram column reads as deliberate, not empty */
.entry-fig {
  border: 1px solid var(--rule);
  background: var(--paper-warm);
  padding: 1.5rem 1.25rem 1.1rem;
  position: sticky;
  top: 1.5rem;
}

.entry-fig svg { width: 100%; height: auto; display: block; }

.entry-fig figcaption {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  border-top: 1px solid var(--rule);
  margin-top: 1rem;
  padding-top: 0.7rem;
}

@media (max-width: 760px) {
  .entry-fig { position: static; max-width: 320px; }
}

.entry h2 { margin-bottom: 1rem; }

.entry dl { margin: 0 0 1.25rem; }

.entry dt {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 1rem;
}

.entry dd { margin: 0.3rem 0 0; }

/* ---------- form ---------- */

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }

.field { display: flex; flex-direction: column; }

.field.full { grid-column: 1 / -1; }

label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

label .opt { color: rgba(44, 42, 38, 0.45); }

input, select, textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--ink);
  background: #f4f1e8;
  color: var(--ink);
  border-radius: 0;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: 3px solid var(--blaze);
  outline-offset: 1px;
}

textarea { min-height: 130px; resize: vertical; }

.urgent {
  background: var(--blaze);
  color: #fff;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.urgent strong {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 75%;
  text-transform: uppercase;
  font-size: 1.25rem;
}

.urgent a {
  font-family: var(--mono);
  font-size: 1.0625rem;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.hp { position: absolute; left: -9999px; }

/* ---------- review cta ---------- */

.review-cta {
  border: 2px solid var(--ink);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.review-cta p { margin: 0.4rem 0 0; max-width: 44ch; font-size: 0.9375rem; }

/* ---------- footer ---------- */

.foot {
  background: var(--pine-deep);
  color: #b9b3a4;
  padding: 3rem 0 2.5rem;
  font-size: 0.875rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.foot h4 {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.foot a { color: var(--paper); text-decoration: none; }
.foot a:hover { text-decoration: underline; }

.foot ul { list-style: none; margin: 0; padding: 0; line-height: 1.9; }

.foot-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(235, 230, 217, 0.15);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ---------- motion ---------- */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

:focus-visible { outline: 3px solid var(--blaze); outline-offset: 2px; }

.skip {
  position: absolute;
  left: -9999px;
  background: var(--blaze);
  color: #fff;
  padding: 0.75rem 1rem;
  font-family: var(--mono);
  font-size: 0.8125rem;
}

.skip:focus { left: 0; top: 0; z-index: 100; }

/* ---------- form status ---------- */

.status {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 2px solid var(--ink);
  background: #f4f1e8;
}

.status strong {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 75%;
  text-transform: uppercase;
  font-size: 1.375rem;
  display: block;
  margin-bottom: 0.5rem;
}

.status p { margin: 0 0 0.75rem; font-size: 0.9375rem; }
.status p:last-child { margin-bottom: 0; }

.status-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }

.status-ok { border-color: var(--sage); border-left-width: 8px; }
.status-error { border-color: var(--blaze); border-left-width: 8px; }

/* ---------- top photo band ---------- */

.photoband {
  margin: 0;
  background: var(--pine);
  border-bottom: 3px solid var(--blaze);
  line-height: 0;
}

.photoband img {
  width: 100%;
  height: auto;
  max-height: 56vh;
  object-fit: cover;
  object-position: center 42%;
}

@media (max-width: 700px) {
  .photoband img { max-height: 40vh; }
}

/* ---------- scripture band ---------- */

.verse {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-left: 6px solid var(--blaze);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.verse-text {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 0.85rem;
  text-wrap: balance;
}

.verse-ref {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0;
  position: relative;
  display: inline-block;
  padding-top: 0.85rem;
}

.verse-ref::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--blaze);
}

@media (max-width: 700px) {
  .verse { padding: 1.4rem 0; }
  .verse-text { font-size: 1rem; }
}


/* ---------- meet the team ---------- */

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.team-photo {
  margin: 0;
  border: 1px solid var(--rule);
  background: var(--paper-warm);
}

.team-photo img {
  width: 100%;
  height: auto;      /* natural proportions - no crop, no stretch */
  display: block;
}

@media (max-width: 860px) {
  .team-grid { grid-template-columns: 1fr; }
  .verse { padding: 1.6rem 1.4rem; }
}
