/* ==========================================================================
   Down Range Firearm Training — main stylesheet
   Design: dark gunmetal + warm paper, signal-red accent drawn from the
   range targets in the site's own photographs. System fonts only.
   ========================================================================== */

:root {
  /* REPLACEABLE IMAGES
     Swap any file in assets/ with the same name to change the picture.
     These custom properties are used for decorative/background use only;
     all content photography sits in real <img> tags for accessibility. */
  --img-hero: url("hero-range-students-800.jpg");
  --img-coaching: url("instructor-coaching-600.jpg");
  /* END REPLACEABLE IMAGES */

  --ink: #14181d;
  --ink-2: #1d232b;
  --ink-3: #2b323b;
  --paper: #faf8f5;
  --card: #ffffff;
  --line: #e5dfd6;
  --line-dark: #333c47;
  --text: #1b2129;
  --muted: #55606d;
  --muted-dark: #a8b2bd;
  --accent: #b8391f;
  --accent-dark: #8f2a14;
  --accent-light: #e2704f;
  --accent-wash: #fdf2ee;

  --r: 10px;
  --r-sm: 6px;
  --shadow: 0 1px 2px rgba(20, 24, 29, .05), 0 12px 28px -18px rgba(20, 24, 29, .35);
  --shadow-lg: 0 2px 4px rgba(20, 24, 29, .06), 0 30px 60px -32px rgba(20, 24, 29, .45);

  --wrap: 1140px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section: clamp(3.75rem, 8vw, 6.5rem);

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
               "Liberation Mono", monospace;
}

/* --------------------------------------------------------------- reset -- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 780;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-dark); }
a:hover { color: var(--accent); }

ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ------------------------------------------------------------- helpers -- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: 780px; }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(2.75rem, 5vw, 4rem); }

.section--dark {
  background: var(--ink);
  color: #e9edf2;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lede { color: var(--muted-dark); }

.section--paper-alt { background: #f2eee8; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 650;
  text-decoration: none;
}
.skip-link:focus { top: 0; color: #fff; }

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

/* Eyebrow label with a short rule — repeated section signature */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 2px;
  background: currentColor;
  flex: none;
}
.section--dark .eyebrow { color: var(--accent-light); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }

.lede {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.65;
  text-wrap: pretty;
}

/* -------------------------------------------------------------- button -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease,
              color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn svg { flex: none; width: 1.15em; height: 1.15em; }

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px -14px rgba(184, 57, 31, .95);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn--ghost {
  border-color: var(--line-dark);
  color: var(--ink);
  background: transparent;
}
:is(.section--dark, .hero, .cta-panel) .btn--ghost { border-color: #4a5563; color: #fff; }
.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-wash);
}
:is(.section--dark, .hero, .cta-panel) .btn--ghost:hover,
:is(.section--dark, .hero, .cta-panel) .btn--ghost:focus-visible {
  background: rgba(255, 255, 255, .07);
  border-color: var(--accent-light);
  color: #fff;
}

.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.9rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 248, 245, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-stuck { box-shadow: 0 10px 30px -22px rgba(20, 24, 29, .6); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-right: auto;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark { width: 2.2rem; height: 2.2rem; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.06; }
.brand-name {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-sub {
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .8rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font: inherit;
  font-size: .9rem;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 1.1rem; height: 1.1rem; }

.site-nav ul {
  list-style: none;
  display: flex;
  gap: .35rem;
  align-items: center;
}
.site-nav a {
  display: block;
  padding: .5rem .75rem;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: .96rem;
  font-weight: 600;
  text-decoration: none;
}
.site-nav a:hover { background: rgba(20, 24, 29, .06); color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--accent-dark); }
.site-nav a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-call { white-space: nowrap; }
.header-call .btn { padding: .7rem 1.15rem; font-size: .95rem; }

/* mobile nav */
@media (max-width: 899px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: .75rem var(--gutter) 1.25rem;
  }
  .site-nav.is-open, .no-js .site-nav { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav a {
    padding: .8rem .25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
  }
  .site-nav a[aria-current="page"]::after { display: none; }
  .header-inner { position: relative; }
  .header-call-text { display: none; }
  .header-call .btn { padding: .75rem .9rem; }
  .header-call .btn svg { width: 1.3em; height: 1.3em; }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: block !important; }
}

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

.hero {
  position: relative;
  background: var(--ink);
  color: #e9edf2;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
}
/* concentric target rings, drawn purely in CSS — no image request */
.hero::before {
  content: "";
  position: absolute;
  right: -14%;
  top: -30%;
  width: 46rem;
  height: 46rem;
  background: repeating-radial-gradient(
    circle at center,
    rgba(226, 112, 79, .16) 0 2px,
    transparent 2px 44px
  );
  opacity: .6;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--ink) 40%, rgba(20, 24, 29, .55) 100%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.6vw, 3.85rem);
  letter-spacing: -0.032em;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-light);
}
.hero-sub {
  margin-top: 1.35rem;
  max-width: 34rem;
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
  color: #c3ccd6;
  text-wrap: pretty;
}

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .55rem;
  margin-top: 2.1rem;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .8rem .4rem .65rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  color: #cdd6df;
  background: rgba(255, 255, 255, .03);
}
.hero-chips svg { width: .95rem; height: .95rem; color: var(--accent-light); flex: none; }

/* Photo keeps its natural aspect ratio — no cropping, no fixed-height cover */
.hero-media { position: relative; }
.hero-media--portrait { max-width: 24rem; margin-inline: auto; }
.hero-media img {
  width: 100%;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: auto -.85rem -.85rem auto;
  width: 62%;
  height: 62%;
  border: 2px solid var(--accent);
  border-radius: var(--r);
  opacity: .5;
  z-index: -1;
}
.hero-media figcaption {
  margin-top: .85rem;
  font-size: .82rem;
  color: #97a2ae;
}

/* --------------------------------------------------------- promise bar -- */

.promise-bar {
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
  color: #d5dce4;
}
.promise-list {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  padding-block: 2rem;
}
@media (min-width: 720px) {
  .promise-list { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.promise-list li { display: flex; gap: .85rem; align-items: flex-start; }
.promise-list svg {
  width: 1.4rem; height: 1.4rem; flex: none;
  color: var(--accent-light);
  margin-top: .15rem;
}
.promise-list strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.promise-list span { font-size: .93rem; line-height: 1.55; color: #a8b2bd; }

/* ------------------------------------------------------------ services -- */

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding: 1.6rem 1.5rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: #d8cfc2;
  box-shadow: var(--shadow-lg);
}
.service-card h3 {
  font-size: 1.16rem;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .975rem;
  line-height: 1.62;
  flex: 1;
}
.service-card .price {
  align-self: flex-start;
  padding: .3rem .7rem;
  background: var(--accent-wash);
  border: 1px solid #f3d6cb;
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: .9rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.note {
  margin-top: 1.75rem;
  font-size: .95rem;
  color: var(--muted);
}

[data-ss-empty] {
  padding: 1.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--r);
  color: var(--muted);
}

/* ------------------------------------------------------- split section -- */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-first > :first-child { order: 2; }
}

/* Portrait photo: natural aspect, capped width, never cropped */
.portrait {
  margin: 0;
  max-width: 26rem;
  margin-inline: auto;
}
.portrait img {
  width: 100%;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}
.portrait figcaption {
  margin-top: .8rem;
  font-size: .82rem;
  color: var(--muted);
}
.section--dark .portrait figcaption { color: var(--muted-dark); }

/* ---------------------------------------------------------- philosophy -- */

.pullquote {
  margin: 0 0 2rem;
  padding-left: 1.4rem;
  border-left: 3px solid var(--accent);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.022em;
  color: #fff;
  text-wrap: balance;
}
.pullquote cite {
  display: block;
  margin-top: .9rem;
  font-size: .84rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.prose-cols { color: #c3ccd6; }
.prose-cols p { text-wrap: pretty; }
@media (min-width: 900px) {
  .prose-cols { columns: 2; column-gap: 3rem; }
  .prose-cols p { break-inside: avoid; }
}

/* --------------------------------------------------------------- value -- */

.value-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  padding: 1.75rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--r);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.value-card p { color: var(--muted); font-size: .975rem; line-height: 1.62; }

/* ----------------------------------------------------------------- faq -- */

.faq-list { display: grid; gap: .75rem; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item[open] { border-color: #d8cfc2; box-shadow: var(--shadow); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: .7rem; height: .7rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-25%);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg) translateY(-25%); }
.faq-item summary:hover { background: var(--accent-wash); }

.faq-answer {
  margin: 0;
  padding: 0 1.35rem 1.35rem;
  color: var(--muted);
  line-height: 1.65;
}

/* -------------------------------------------------------------- cta box -- */

.cta-panel {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  padding: clamp(2rem, 4.5vw, 3.25rem);
  background: var(--ink);
  color: #e9edf2;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}
@media (min-width: 860px) {
  .cta-panel { grid-template-columns: 1.4fr auto; gap: 2.5rem; }
}
.cta-panel::before {
  content: "";
  position: absolute;
  left: -6rem; bottom: -12rem;
  width: 26rem; height: 26rem;
  background: repeating-radial-gradient(
    circle at center,
    rgba(226, 112, 79, .18) 0 2px,
    transparent 2px 34px
  );
  pointer-events: none;
}
.cta-panel > * { position: relative; }
.cta-panel h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.15rem); }
.cta-panel p { margin-top: .75rem; color: var(--muted-dark); }
.cta-panel .btn-row { margin-top: 0; }

/* -------------------------------------------------------------- contact -- */

.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.15fr; }
}

.contact-list { list-style: none; display: grid; gap: 1.4rem; margin-top: 2rem; }
.contact-list li { display: flex; gap: .95rem; align-items: flex-start; }
.contact-list svg {
  width: 1.35rem; height: 1.35rem; flex: none;
  color: var(--accent);
  margin-top: .25rem;
}
.contact-list dt, .contact-list .label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-list .value {
  display: block;
  font-size: 1.18rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
a.value:hover { color: var(--accent); }
.contact-list .hint { display: block; font-size: .93rem; color: var(--muted); }

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

.form-card {
  padding: clamp(1.6rem, 3.5vw, 2.35rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}

.field { display: grid; gap: .4rem; margin-bottom: 1.15rem; }
.field label {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.field .optional { font-weight: 500; color: var(--muted); }

.field input,
.field textarea {
  width: 100%;
  padding: .8rem .9rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fdfcfa;
  border: 1px solid #d9d2c8;
  border-radius: var(--r-sm);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 57, 31, .16);
}

/* honeypot — visually hidden, not display:none, so bots still fill it */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
}

.cf-turnstile { margin-bottom: 1.15rem; }

.form-status {
  margin-top: 1.15rem;
  padding: .95rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: .97rem;
  line-height: 1.55;
}
.form-status[hidden] { display: none; }
.form-status--ok {
  background: #eef7f0;
  border: 1px solid #bcdcc5;
  color: #1d4d2c;
}
.form-status--error {
  background: var(--accent-wash);
  border: 1px solid #f0cabd;
  color: var(--accent-dark);
}
.form-status a { color: inherit; font-weight: 700; }

.form-fineprint { margin-top: 1rem; font-size: .87rem; color: var(--muted); }

/* --------------------------------------------------------------- legal -- */

.legal-body h2 {
  margin-top: 2.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.legal-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-body h3 { margin-top: 1.85rem; margin-bottom: .5rem; font-size: 1.08rem; }
.legal-body p { color: var(--muted); }

/* ----------------------------------------------------------------- 404 -- */

.error-page {
  min-height: 52vh;
  display: grid;
  align-content: center;
  text-align: center;
}
.error-code {
  font-family: var(--font-mono);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.error-page h1 { font-size: clamp(2rem, 5vw, 3rem); }
.error-page .btn-row { justify-content: center; }

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

.site-footer {
  background: var(--ink);
  color: #a8b2bd;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem; }
}
.site-footer h2 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8e99a5;
  margin-bottom: 1.1rem;
}
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand-sub { color: #8e99a5; }
.site-footer p { color: #a8b2bd; line-height: 1.65; }
.site-footer ul { list-style: none; display: grid; gap: .6rem; }
.site-footer a { color: #d5dce4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-phone {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 780;
  letter-spacing: -0.025em;
  color: #fff !important;
  margin-bottom: .35rem;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1.75rem;
  font-size: .85rem;
  color: #8b95a1;
}
.footer-bottom p { margin: 0; font-size: .85rem; color: #8b95a1; }
.footer-bottom a { color: #9aa5b1; text-decoration: underline; }
.footer-bottom a:hover { color: #fff; }
[data-ss-credit] { font-size: .82rem; }

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

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

@media print {
  .site-header, .cta-panel, .btn { display: none; }
  body { background: #fff; }
}
