/* =========================================================
   On Point Contract Shooting — styles
   ========================================================= */
:root {
  --bg:        #0c0e10;
  --bg-2:      #121517;
  --surface:   #16191c;
  --surface-2: #1c2024;
  --line:      #272c31;
  --line-soft: #20242838;

  --red:       #c4222a;
  --red-bright:#e23a3f;
  --red-deep:  #8e171c;

  --text:      #eceeef;
  --muted:     #9aa3a9;
  --muted-2:   #6f777d;

  --maxw: 1180px;
  --pad: clamp(1.1rem, 4vw, 2rem);
  --radius: 14px;
  --radius-sm: 9px;

  --ff-display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --ff-body: "Barlow", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --shadow: 0 18px 50px -20px rgba(0,0,0,.7);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

h1, h2, h3 { font-family: var(--ff-display); font-weight: 600; line-height: 1.05; letter-spacing: .2px; margin: 0; }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); text-transform: uppercase; }
h3 { font-size: 1.32rem; text-transform: uppercase; letter-spacing: .4px; }
p { margin: 0 0 1rem; }

.accent { color: var(--red-bright); }
.kicker {
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--red-bright);
  margin: 0 0 .7rem;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--red);
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.1px; font-size: .95rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px -12px var(--red); }
.btn-primary:hover { background: var(--red-bright); }
.btn-ghost { background: rgba(255,255,255,.03); color: var(--text); border-color: #3a4045; }
.btn-ghost:hover { border-color: var(--red); color: #fff; }
.btn-sm { padding: .55rem 1.05rem; font-size: .82rem; }
.btn-block { width: 100%; justify-content: center; }
.ico { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 2; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,12,13,.86);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand-logo { height: 46px; width: auto; }

.nav { display: flex; align-items: center; }
.nav-menu {
  display: flex; align-items: center; gap: .35rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu > li > a:not(.btn) {
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 1px;
  font-size: .92rem; font-weight: 500; color: var(--muted);
  text-decoration: none; padding: .5rem .85rem; border-radius: 8px;
  transition: color .15s ease;
}
.nav-menu > li > a:not(.btn):hover { color: #fff; }
.nav-cta { margin-left: .4rem; }
.nav-call { margin-left: .15rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 44px; background: transparent; border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer; padding: 0 11px;
}
.nav-toggle span { height: 2px; background: var(--text); border-radius: 2px; transition: .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; display: flex; align-items: flex-end; min-height: clamp(620px, 96vh, 960px); overflow: hidden; padding-bottom: clamp(6rem, 16vh, 10rem); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/img/hero.jpg?v=20260619b") center 72% / cover no-repeat;
  filter: contrast(1.04) brightness(.85);
  transform: scale(1.0);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,10,.94) 0%, rgba(8,9,10,.78) 38%, rgba(8,9,10,.30) 70%, rgba(8,9,10,.55) 100%),
    linear-gradient(0deg, var(--bg) 2%, rgba(12,14,16,0) 45%),
    radial-gradient(120% 90% at 70% 30%, transparent 40%, rgba(0,0,0,.5) 100%);
}
.hero-rec {
  position: absolute; top: 92px; right: var(--pad); z-index: 2;
  font-family: var(--ff-display); letter-spacing: 2px; font-size: .8rem; color: #d7dadb;
  display: flex; align-items: center; gap: .5rem; opacity: .85;
  text-shadow: 0 1px 3px rgba(0,0,0,.8);
}
.rec-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 8px var(--red-bright); animation: blink 1.6s steps(1) infinite; }
@keyframes blink { 50% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) { .rec-dot { animation: none; } }

.hero-content { position: relative; z-index: 3; }
.eyebrow {
  display: inline-block; font-family: var(--ff-display); text-transform: uppercase;
  letter-spacing: 2.5px; font-size: .8rem; font-weight: 600; color: #cfd4d7;
  padding: .4rem .8rem; border: 1px solid #ffffff22; border-radius: 999px;
  background: #ffffff0a; margin-bottom: 1.2rem;
}
.hero-title { font-size: clamp(3rem, 9vw, 6.4rem); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.hero-lead { max-width: 50ch; color: #d4d8da; font-size: clamp(1.05rem, 1.6vw, 1.22rem); margin-top: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; list-style: none; padding: 0;
  margin: 2rem 0 0; color: var(--muted); font-size: .9rem;
}
.hero-badges li { position: relative; padding-left: 1.3rem; }
.hero-badges li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: .7rem; height: .42rem;
  border-left: 2px solid var(--red-bright); border-bottom: 2px solid var(--red-bright);
  transform: rotate(-45deg);
}

/* ---------- Trust strip ---------- */
.trust { background: var(--bg-2); border-block: 1px solid var(--line); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.trust-item { background: var(--bg-2); padding: 1.4rem var(--pad); display: flex; flex-direction: column; gap: .15rem; }
.trust-item:first-child { padding-left: 0; }
.trust-item strong { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: .5px; font-size: 1rem; }
.trust-item span { color: var(--muted); font-size: .86rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section-head { max-width: 60ch; margin-bottom: 2.6rem; }
.section-sub { color: var(--muted); font-size: 1.08rem; margin-top: .6rem; }
.section-foot { color: var(--muted-2); font-style: italic; margin-top: 2rem; }

/* ---------- Services cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: #3a4045; background: var(--surface-2); }
.card-ico {
  display: inline-flex; width: 54px; height: 54px; border-radius: 12px; margin-bottom: 1.1rem;
  align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--red), var(--red-deep));
  box-shadow: 0 12px 24px -14px var(--red);
}
.card-ico svg { width: 27px; height: 27px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Capabilities split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.scope { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow); }
.scope img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
.scope figcaption {
  font-family: var(--ff-display); letter-spacing: .5px; text-transform: uppercase;
  font-size: .78rem; color: var(--muted); padding: .8rem 1rem; border-top: 1px solid var(--line);
  background: var(--bg);
}
.cap-block { padding: 1.1rem 0; border-top: 1px solid var(--line); }
.cap-block:first-of-type { margin-top: 1.4rem; }
.cap-block h3 { color: #fff; margin-bottom: .4rem; }
.cap-block p { color: var(--muted); margin: 0; }
.cap-note { margin-top: 1.4rem; color: var(--text); font-weight: 500; }

/* ---------- Compliance ---------- */
.compliance-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 1.4rem; }
.compliance-grid li { display: flex; gap: .9rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.1rem; transition: border-color .18s ease, background .18s ease; }
.compliance-grid li:hover { border-color: #3a4045; background: var(--surface-2); }
.compliance-grid strong { display: block; font-family: var(--ff-display); text-transform: uppercase; letter-spacing: .4px; font-size: 1.02rem; font-weight: 600; }
.compliance-grid span { color: var(--muted); font-size: .9rem; }
.tick { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(145deg, var(--red), var(--red-deep)); position: relative; margin-top: 2px; }
.tick::after { content: ""; position: absolute; left: 9px; top: 5px; width: 6px; height: 11px; border: solid #fff; border-width: 0 2.3px 2.3px 0; transform: rotate(45deg); }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.why-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; overflow: hidden; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.why-card:hover { transform: translateY(-4px); border-color: #3a4045; background: var(--surface-2); }
.why-num { position: absolute; top: .4rem; right: .9rem; font-family: var(--ff-display); font-weight: 700; font-size: 3.4rem; color: rgba(226,58,63,.13); letter-spacing: -2px; }
.why-card h3 { margin-bottom: .5rem; }
.why-card p { color: var(--muted); margin: 0; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--bg) 0%, #0a0c0d 100%); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: center; }
.contact-ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); }
.contact-ico svg { width: 22px; height: 22px; fill: none; stroke: var(--red-bright); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted-2); }
.contact-list a { color: var(--text); text-decoration: none; font-weight: 600; font-size: 1.12rem; }
.contact-list a:hover { color: var(--red-bright); }
.contact-static { font-weight: 500; }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 1px; font-size: .8rem; color: var(--muted); margin-bottom: .4rem; }
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 9px;
  color: var(--text); font-family: var(--ff-body); font-size: 1rem; padding: .75rem .9rem; resize: vertical;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(196,34,42,.18); }
.form-note { margin: 1rem 0 0; font-size: .86rem; color: var(--muted-2); text-align: center; }
.form-note a { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: #08090a; border-top: 1px solid var(--line); padding: 2.6rem 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.6rem 3rem; justify-content: space-between; align-items: center; }
.footer-logo { height: 38px; width: auto; margin-bottom: .8rem; }
.footer-brand p { color: var(--muted); max-width: 34ch; margin: 0; font-size: .92rem; }
.footer-meta { text-align: right; color: var(--muted); font-size: .92rem; }
.footer-meta p { margin: 0 0 .25rem; }
.footer-meta a { color: var(--text); text-decoration: none; }
.footer-meta a:hover { color: var(--red-bright); }
.footer-fine { color: var(--muted-2); font-size: .82rem; margin-top: .6rem !important; }

:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  .card, .species, .why-card, .step, .stat-list li, .btn { transition: none; }
  .card:hover, .species:hover, .why-card:hover, .step:hover, .stat-list li:hover { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .contact-inner { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:first-child { padding-left: var(--pad); }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: .2rem;
    background: rgba(10,12,13,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
    padding: 1rem var(--pad) 1.6rem; transform: translateY(-120%); transition: transform .3s ease; max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu > li > a:not(.btn) { display: block; padding: .85rem .4rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
  .nav-cta, .nav-call { margin: .5rem 0 0; }
  .nav-cta .btn, .nav-call .btn { width: 100%; justify-content: center; padding: .85rem; font-size: .95rem; }
  .compliance-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}
@media (max-width: 460px) {
  .cards { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child { padding-left: var(--pad); }
}

/* =========================================================
   Multi-page additions (landing extras, About, Contact)
   ========================================================= */

/* Active nav link */
.nav-menu > li > a.is-active:not(.btn) { color: #fff; }
.nav-menu > li > a.is-active:not(.btn)::after {
  content: ""; display: block; height: 2px; background: var(--red); margin-top: 3px; border-radius: 2px;
}

/* ---------- Sub-page hero / banner ---------- */
.page-hero { position: relative; padding: clamp(7rem, 16vh, 9rem) 0 clamp(2.6rem, 6vw, 4rem); overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("assets/img/hero.jpg?v=20260619b") center 35% / cover no-repeat;
  filter: grayscale(.2) brightness(.5); transform: scale(1.05);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,9,10,.86), rgba(8,9,10,.78)), linear-gradient(0deg, var(--bg), rgba(12,14,16,0) 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 2px; font-size: .76rem; color: var(--muted); margin: 0 0 .9rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--red-bright); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); text-transform: uppercase; }
.page-hero .page-lead { max-width: 60ch; color: #d4d8da; font-size: clamp(1.05rem, 1.6vw, 1.2rem); margin-top: 1rem; }

/* ---------- Prose / intro ---------- */
.prose { max-width: 70ch; }
.prose p { color: var(--muted); font-size: 1.06rem; }
.prose p strong { color: var(--text); }
.intro-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.stat-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.stat-list li { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.15rem 1.3rem 1.15rem 2.15rem; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.stat-list li:hover { transform: translateY(-3px); border-color: #3a4045; background: var(--surface-2); }
.stat-list li::before { content: ""; position: absolute; left: 1.2rem; top: 1.55rem; width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px var(--red); }
.stat-list strong { display: block; font-family: var(--ff-display); font-size: 1.15rem; text-transform: uppercase; letter-spacing: .4px; }
.stat-list span { color: var(--muted); font-size: .92rem; }

/* ---------- Species grid ---------- */
.species-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.species {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.3rem;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.species:hover { transform: translateY(-3px); border-color: #3a4045; background: var(--surface-2); }
.species h3 { font-size: 1.12rem; display: flex; align-items: center; gap: .55rem; margin-bottom: .45rem; }
.species h3 .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); flex: 0 0 auto; box-shadow: 0 0 8px var(--red); }
.species p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Pills / chips (areas + audience) ---------- */
.pills { list-style: none; margin: 1.4rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.pills li {
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: .8px; font-size: .82rem;
  color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1rem;
}
.pills.pills-red li { border-color: #43262a; background: #1a1314; }

/* ---------- Process steps ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.step:hover { transform: translateY(-4px); border-color: #3a4045; background: var(--surface-2); }
.step::before {
  counter-increment: step; content: none;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem; color: var(--red-bright);
  display: block; margin-bottom: .6rem;
}
.step h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- FAQ (native <details>) ---------- */
.faq { display: grid; gap: .8rem; max-width: 860px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: .4px; font-size: 1.02rem; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--red-bright); font-size: 1.5rem; line-height: 1; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.3rem 1.2rem; color: var(--muted); }
.faq-item .faq-a p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--red-deep), #6f1014); border-block: 1px solid #5a1418; }
.cta-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; padding-block: clamp(2.4rem, 5vw, 3.4rem); }
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: #ffe2e2; margin: .5rem 0 0; max-width: 46ch; }
.cta-band .btn-primary { background: #fff; color: var(--red-deep); }
.cta-band .btn-primary:hover { background: #ffe7e7; }
.cta-band .btn-ghost { border-color: #ffffff66; color: #fff; }
.cta-band .btn-ghost:hover { border-color: #fff; background: #ffffff14; }

/* ---------- Contact page two-col reuse ---------- */
.contact-page .contact-inner { align-items: start; }

@media (max-width: 980px) {
  .species-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .species-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}
