/* WindThorn Pet Transport: warm, sandstone and red rock, light only.
   Tokens, base, then components top to bottom of the page.
   No inline styles anywhere: the Content-Security-Policy forbids them.
   Contrast (WCAG): every text colour is >= 4.5:1 on the surface it sits on;
   icons, focus rings and field borders are >= 3:1. Re-check when changing a
   colour token. */

:root {
  color-scheme: light;

  --bg: #fbf7f1;          /* cream page */
  --bg-elev: #ffffff;
  --sand: #f4e9da;        /* section surface, front mesas */
  --sand-2: #ecdcc6;      /* back mesas, map land border */
  --ink: #1e2833;         /* slate */
  --ink-2: #4a5462;
  --ink-3: #5f6773;
  --line: #e7ddcf;
  --field-line: #8b8378;
  --rock: #b0461f;        /* red rock: primary buttons, Utah on the map */
  --rock-deep: #8e3715;   /* hover, kickers, icons on tints */
  --rock-tint: #f6dccd;
  --sky: #dfeaf3;
  --sky-deep: #2b587c;
  --sage: #dde8df;
  --sage-deep: #2f5e4c;
  --night: #1c2530;       /* call-to-action band and footer */
  --night-2: #243040;
  --night-text: #f5efe6;
  --night-muted: #c9c1b6;
  --rock-light: #e58a63;  /* red rock on night */
  --focus-night: #f3c9b3;
  --danger: #b3261e;
  --blush: #fbe1e1;

  --r-lg: 24px;
  --r: 16px;
  --r-sm: 10px;
  --shadow-1: 0 1px 2px rgba(30, 40, 51, .05), 0 8px 24px -12px rgba(30, 40, 51, .16);
  --shadow-2: 0 2px 6px rgba(30, 40, 51, .06), 0 28px 56px -24px rgba(30, 40, 51, .28);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --max: 1160px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* One fluid type scale. */
  --fs-0: clamp(.875rem, .85rem + .12vw, .95rem);
  --fs-1: clamp(1rem, .96rem + .2vw, 1.0625rem);
  --fs-2: clamp(1.125rem, 1.04rem + .4vw, 1.3125rem);
  --fs-3: clamp(1.375rem, 1.2rem + .8vw, 1.75rem);
  --fs-4: clamp(1.9rem, 1.45rem + 2vw, 3rem);
  --fs-5: clamp(2.35rem, 1.5rem + 3.6vw, 4.25rem);
}

/* Base ------------------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--fs-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--rock-deep); text-underline-offset: .18em; }
img { max-width: 100%; }
svg { display: block; max-width: 100%; }
h1, h2, h3 { margin: 0; font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--rock-deep); outline-offset: 3px; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 820px); }
.section { padding-block: clamp(2rem, 5vw, 4rem); }
.nowrap { white-space: nowrap; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 1rem; top: 1rem; z-index: 100;
  transform: translateY(-200%);
  background: var(--ink); color: var(--bg);
  padding: .6rem 1rem; border-radius: 999px; text-decoration: none; font-weight: 600;
}
.skip:focus { transform: none; }
.kicker {
  margin: 0 0 .75rem;
  font-size: var(--fs-0); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rock-deep);
}
.section-title {
  font-size: var(--fs-4); letter-spacing: -.03em; line-height: 1.08;
  max-width: 22ch; text-wrap: balance;
}

/* Buttons --------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.3rem; border-radius: 999px;
  font: inherit; font-size: var(--fs-1); font-weight: 650; line-height: 1.2;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background-color .2s, border-color .2s, box-shadow .3s var(--ease), transform .3s var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-back:hover svg { transform: translateX(-3px); }
.btn-primary {
  background: var(--rock); color: #fff;
  box-shadow: 0 1px 2px rgba(30, 40, 51, .1), 0 10px 22px -12px rgba(176, 70, 31, .75);
}
.btn-primary:hover { background: var(--rock-deep); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost { background: var(--bg-elev); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-3); }
.btn-light { background: var(--bg); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-sm { padding: .55rem 1rem; font-size: var(--fs-0); }
.btn-lg { padding: .95rem 1.55rem; }
.btn:disabled { opacity: .65; cursor: progress; }

/* Header ---------------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251, 247, 241, .9);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 24px -22px rgba(30, 40, 51, .45); }
.header-row { display: flex; align-items: center; gap: .75rem; min-height: 4.25rem; }
.brand {
  display: inline-flex; align-items: center; gap: .6rem; margin-right: auto;
  color: var(--ink); text-decoration: none; border-radius: var(--r-sm);
}
.brand svg { width: 2.4rem; height: 2.4rem; flex: none; color: var(--rock); }
.brand-name {
  display: flex; flex-direction: column;
  font-size: 1.2rem; font-weight: 750; letter-spacing: -.015em; line-height: 1;
}
.brand-sub {
  margin-top: .3rem;
  font-size: .64rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-3);
}
.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  padding: .5rem .8rem; border-radius: 999px;
  color: var(--ink-2); text-decoration: none; font-size: var(--fs-0); font-weight: 550;
  white-space: nowrap; transition: color .2s, background-color .2s;
}
.nav a:hover { color: var(--ink); background: rgba(30, 40, 51, .06); }
.nav a[aria-current] { color: var(--ink); background: rgba(30, 40, 51, .07); font-weight: 650; }
.header-cta { margin-left: .35rem; }
.header-cta[aria-current] { background: var(--rock-deep); }

/* The small-screen menu: a <details>, so it works without JavaScript. */
.menu { display: none; position: relative; }
.menu summary {
  list-style: none; cursor: pointer;
  width: 2.75rem; height: 2.75rem; display: grid; place-items: center;
  border-radius: 999px; border: 1px solid var(--line); background: var(--bg-elev); color: var(--ink);
}
.menu summary::-webkit-details-marker { display: none; }
.menu summary svg { width: 1.3rem; height: 1.3rem; }
.menu[open] summary { background: var(--sand); }
.menu-panel {
  position: absolute; right: 0; top: calc(100% + .5rem); z-index: 40;
  display: grid; min-width: 13rem; padding: .45rem;
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-2);
}
.menu-panel a {
  padding: .75rem .9rem; border-radius: var(--r-sm);
  color: var(--ink); text-decoration: none; font-weight: 550;
}
.menu-panel a:hover, .menu-panel a[aria-current] { background: var(--sand); }

/* Home: hero ------------------------------------------------------------ */

.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(2.25rem, 6vw, 5rem);
  background:
    radial-gradient(55% 60% at 100% 0%, rgba(246, 220, 205, .9), transparent 70%),
    radial-gradient(45% 55% at 0% 0%, rgba(223, 234, 243, .95), transparent 70%),
    var(--bg);
}
.hero-grid {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  margin: 0 0 1.5rem; padding: .4rem .9rem .4rem .6rem;
  border-radius: 999px; background: var(--bg-elev); border: 1px solid var(--line);
  font-size: var(--fs-0); font-weight: 600; color: var(--ink-2);
  box-shadow: 0 1px 2px rgba(30, 40, 51, .04);
}
.eyebrow svg { width: 1.1rem; height: 1.1rem; color: var(--rock); }
.display {
  font-size: var(--fs-5); font-weight: 750; letter-spacing: -.035em; line-height: 1.03;
  max-width: 13ch; text-wrap: balance;
}
.hero .lead {
  margin: 1.35rem 0 0; max-width: 44ch;
  font-size: var(--fs-2); line-height: 1.55; color: var(--ink-2); text-wrap: pretty;
}
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-top: 2rem; }
.hero-call { margin: 1.25rem 0 0; color: var(--ink-2); font-size: var(--fs-0); }
.hero-call a { font-weight: 650; }

/* The route map card. */
.map-card {
  margin: 0; padding: clamp(.9rem, 2.4vw, 1.5rem);
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
}
.route-map { width: 100%; height: auto; }
.map-land { fill: var(--sand); stroke: var(--sand-2); stroke-width: 2; stroke-linejoin: round; }
.map-utah { fill: var(--rock); stroke: var(--rock-deep); stroke-width: 1.5; stroke-linejoin: round; }
.map-route {
  fill: none; stroke: var(--rock); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 7 9;
  animation: route-flow 1.6s linear infinite;
}
.map-city { fill: var(--bg-elev); stroke: var(--ink); stroke-width: 3; }
.map-origin { fill: var(--ink); stroke: var(--bg-elev); stroke-width: 3.5; }
.map-pulse {
  fill: none; stroke: var(--rock); stroke-width: 3;
  transform-box: fill-box; transform-origin: center;
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes route-flow { to { stroke-dashoffset: -32; } }
@keyframes pulse {
  from { transform: scale(1); opacity: .75; }
  to { transform: scale(3.4); opacity: 0; }
}
.map-card figcaption {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem 1.25rem;
  margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--line);
  font-size: var(--fs-0); color: var(--ink-2);
}
.map-card figcaption strong { color: var(--ink); font-weight: 650; }
.legend { display: inline-flex; flex-wrap: wrap; gap: .4rem 1rem; }
.legend-item { display: inline-flex; align-items: center; gap: .45rem; }
.swatch { display: inline-block; flex: none; }
.swatch-utah { width: .8rem; height: .8rem; border-radius: 3px; background: var(--rock); }
.swatch-route { width: 1.4rem; border-top: 3px dashed var(--rock); }

/* Decorative mesas along the bottom of the hero; the front layer is the
   colour of the next section, so the two meet seamlessly. */
.mesas { display: block; width: 100%; height: clamp(56px, 9vw, 130px); }
.mesa-back { fill: var(--sand-2); }
.mesa-front { fill: var(--sand); }

/* Home: pillars ---------------------------------------------------------- */

.pillars { background: var(--sand); padding-block: clamp(1rem, 3vw, 2rem) clamp(3rem, 7vw, 5rem); }
.pillar-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: clamp(1rem, 2vw, 1.5rem);
}
@media (min-width: 820px) {
  .pillar-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.pillar {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--bg-elev); border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
}
.pillar-icon {
  width: 3.1rem; height: 3.1rem; margin-bottom: 1.25rem;
  display: grid; place-items: center; border-radius: 14px;
  background: var(--rock-tint); color: var(--rock-deep);
}
.pillar:nth-child(2) .pillar-icon { background: var(--sky); color: var(--sky-deep); }
.pillar:nth-child(3) .pillar-icon { background: var(--sage); color: var(--sage-deep); }
.pillar-icon svg { width: 1.6rem; height: 1.6rem; }
.pillar-title { font-size: var(--fs-2); margin-bottom: .5rem; }
.pillar p { margin: 0; color: var(--ink-2); text-wrap: pretty; }

/* Home: how it works ------------------------------------------------------ */

.how { padding-block: clamp(3.5rem, 9vw, 6.5rem); }
.steps {
  list-style: none; margin: clamp(2rem, 5vw, 3.25rem) 0 0; padding: 0;
  position: relative; isolation: isolate;
  display: grid; gap: 1.75rem;
}
/* The dashed "road" that links the steps. */
.steps::before {
  content: ""; position: absolute; z-index: -1;
  left: 1.5rem; top: 1.5rem; bottom: 1.5rem;
  border-left: 2px dashed var(--sand-2);
  transform: translateX(-1px);
}
.step {
  display: grid; grid-template-columns: 3rem minmax(0, 1fr); column-gap: 1.1rem;
  align-items: start;
}
.step-num {
  grid-row: span 2;
  width: 3rem; height: 3rem; display: grid; place-items: center;
  border-radius: 999px; background: var(--ink); color: #fff;
  font-weight: 700; font-size: var(--fs-1);
  box-shadow: 0 0 0 6px var(--bg);
}
.step:last-child .step-num { background: var(--rock); }
.step-title { font-size: var(--fs-2); margin: .55rem 0 .4rem; }
.step p { margin: 0; color: var(--ink-2); text-wrap: pretty; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.75rem; }
  .steps::before {
    left: 1.5rem; right: calc(25% - 1.5rem); top: 1.5rem; bottom: auto;
    border-left: 0; border-top: 2px dashed var(--sand-2);
    transform: translateY(-1px);
  }
  .step { display: block; }
  .step-num { margin-bottom: 1.25rem; }
  .step-title { margin-top: 0; }
}

/* Home: about ------------------------------------------------------------- */

.about {
  position: relative; overflow: hidden;
  background: var(--sky);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.about-grid { display: grid; gap: clamp(1.25rem, 4vw, 3rem); }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: start; }
}
.about .kicker { color: var(--sky-deep); }
.prose p { max-width: 60ch; font-size: var(--fs-2); line-height: 1.6; color: var(--ink-2); text-wrap: pretty; }
.prose p:last-child { margin-bottom: 0; }
.about .prose p { color: var(--ink-2); }
/* A trail of paw prints walking off the bottom-right corner. */
.paw-trail { position: absolute; right: clamp(.5rem, 4vw, 3rem); bottom: .75rem; width: 11rem; height: 7rem; pointer-events: none; }
.paw { position: absolute; width: 1.7rem; height: 1.7rem; color: var(--sky-deep); opacity: .16; }
.paw-1 { left: 0; bottom: 0; transform: rotate(62deg); }
.paw-2 { left: 2.9rem; bottom: 1.9rem; transform: rotate(52deg); }
.paw-3 { left: 5.6rem; bottom: 1.4rem; transform: rotate(62deg); }
.paw-4 { left: 8.6rem; bottom: 3.3rem; transform: rotate(52deg); }
@media (max-width: 899px) {
  /* One column: leave the trail its own strip below the text. */
  .about { padding-bottom: 7rem; }
}

/* FAQ (home preview and the FAQ page) ------------------------------------- */

.faq-preview { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section-head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}
.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 650; text-decoration: none; border-radius: 6px;
}
.link-arrow svg { width: 1.1rem; height: 1.1rem; transition: transform .3s var(--ease); }
.link-arrow:hover { text-decoration: underline; }
.link-arrow:hover svg { transform: translateX(3px); }
.faq-list { display: grid; gap: .75rem; }
.faq-item {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--r);
  transition: box-shadow .3s var(--ease), border-color .2s;
}
.faq-item[open] { box-shadow: var(--shadow-1); border-color: var(--sand-2); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.25rem; border-radius: var(--r);
  font-weight: 650; font-size: var(--fs-1);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  width: 1.9rem; height: 1.9rem; padding: .35rem; flex: none;
  border-radius: 999px; background: var(--rock-tint); color: var(--rock-deep);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item summary:hover span { text-decoration: underline; text-underline-offset: .2em; }
.faq-answer { padding: 0 1.25rem 1.25rem; }
.faq-answer p { margin: 0; max-width: 64ch; color: var(--ink-2); text-wrap: pretty; }
.faq-more {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem;
  margin-top: clamp(2rem, 5vw, 3rem); padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--sand); border-radius: var(--r-lg);
}
.faq-more h2 { font-size: var(--fs-2); margin-bottom: .3rem; }
.faq-more p { margin: 0; color: var(--ink-2); }

/* Call-to-action band ----------------------------------------------------- */

.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(45% 65% at 100% 50%, rgba(176, 70, 31, .32), transparent 72%),
    var(--night);
  color: var(--night-text);
  padding-block: clamp(3rem, 8vw, 5rem);
}
.cta-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.cta-band h2 { font-size: var(--fs-4); color: #fff; letter-spacing: -.03em; }
.cta-band p { margin: .6rem 0 0; color: var(--night-muted); font-size: var(--fs-2); }
.cta-band :focus-visible { outline-color: var(--focus-night); }

/* Inner pages ------------------------------------------------------------- */

.page-hero {
  padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(.5rem, 2vw, 1rem);
  background: radial-gradient(50% 90% at 100% 0%, rgba(246, 220, 205, .7), transparent 70%), var(--bg);
}
.page-hero h1 {
  font-size: var(--fs-4); letter-spacing: -.03em; line-height: 1.06;
  margin-bottom: .75rem; max-width: 20ch; text-wrap: balance;
}
.page-hero .lead { margin: 0; max-width: 54ch; font-size: var(--fs-2); color: var(--ink-2); text-wrap: pretty; }
.page-hero-center { text-align: center; padding-block: clamp(3.5rem, 10vw, 6.5rem); }
.page-hero-center h1, .page-hero-center .lead { margin-inline: auto; }
.page-hero-center .actions { justify-content: center; }
.done-icon {
  width: 4rem; height: 4rem; margin: 0 auto 1.5rem;
  display: grid; place-items: center; border-radius: 999px;
  background: var(--rock-tint); color: var(--rock-deep);
}
.done-icon svg { width: 2rem; height: 2rem; }
.section-prose .prose h2 { font-size: var(--fs-3); margin: 2.25rem 0 .75rem; }
.section-prose .prose h2:first-child { margin-top: 0; }
.section-prose .prose p { font-size: var(--fs-1); }

/* Forms ------------------------------------------------------------------- */

.section-form { padding-top: clamp(1.5rem, 4vw, 2.5rem); }
.split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (min-width: 940px) {
  .split { grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); }
  .aside { position: sticky; top: 6rem; }
}
.card {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.25rem, 4vw, 2.25rem); box-shadow: var(--shadow-1);
}
.form { display: grid; gap: 1.25rem; }
.form-group { display: grid; gap: 1.1rem; }
.form-group + .form-group { padding-top: 1.5rem; border-top: 1px solid var(--line); }
.form-group-title { font-size: var(--fs-2); }
.grid-2 { display: grid; gap: 1.1rem; }
@media (min-width: 620px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.route-note {
  display: inline-flex; align-items: center; gap: .5rem; justify-self: start;
  margin: -.25rem 0 0; padding: .4rem .85rem .4rem .6rem;
  border-radius: 999px; background: var(--rock-tint); color: var(--rock-deep);
  font-size: var(--fs-0); font-weight: 600;
}
.route-note svg { width: 1.05rem; height: 1.05rem; }
.field label { display: block; margin-bottom: .4rem; font-size: var(--fs-0); font-weight: 650; }
.optional { font-weight: 400; color: var(--ink-3); }
.hint { margin: -.15rem 0 .5rem; font-size: var(--fs-0); color: var(--ink-3); }
.field input, .field textarea {
  display: block; width: 100%; min-height: 3rem;
  padding: .75rem .95rem; border: 1px solid var(--field-line); border-radius: var(--r-sm);
  background: var(--bg-elev); color: var(--ink);
  font: inherit; font-size: var(--fs-1);
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); opacity: 1; }
.field textarea { resize: vertical; min-height: 6.5rem; }
@media (min-width: 620px) {
  .field-narrow input { max-width: calc(50% - .55rem); }
}
.field input:hover, .field textarea:hover { border-color: var(--ink-3); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px var(--rock-tint);
}
.field.invalid input, .field.invalid textarea { border-color: var(--danger); }
.field.invalid input:focus, .field.invalid textarea:focus { box-shadow: 0 0 0 4px var(--blush); }
.error { margin: .45rem 0 0; color: var(--danger); font-size: var(--fs-0); font-weight: 550; }
.notice { margin: 0; padding: .9rem 1.1rem; border-radius: var(--r-sm); }
.notice.error { border: 1px solid var(--danger); background: var(--blush); font-size: var(--fs-1); }
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-actions { padding-top: .25rem; }
.aside { background: var(--sand); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem); }
.aside h2 { font-size: var(--fs-2); margin-bottom: 1rem; }
.aside > p { color: var(--ink-2); }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; counter-reset: item; }
.checks li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink-2); }
.checks li::before {
  counter-increment: item; content: counter(item);
  flex: none; width: 1.6rem; height: 1.6rem; margin-top: .05em;
  display: grid; place-items: center; border-radius: 999px;
  background: var(--bg-elev); color: var(--rock-deep); font-size: .8rem; font-weight: 700;
}
.direct { display: grid; gap: .6rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--sand-2); }
.direct-title { margin: 0; font-weight: 650; }
.direct a { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; text-decoration: none; }
.direct a:hover span { text-decoration: underline; }
.direct svg { width: 1.2rem; height: 1.2rem; }

/* Footer ------------------------------------------------------------------ */

.site-footer {
  background: var(--night); color: var(--night-muted);
  padding-block: clamp(2.5rem, 6vw, 3.5rem) 1.75rem;
  font-size: var(--fs-0);
}
main:has(> .cta-band:last-child) + .site-footer { border-top: 1px solid var(--night-2); }
.site-footer :focus-visible { outline-color: var(--focus-night); }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 820px) {
  .footer-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); }
}
.brand-footer { color: var(--night-text); margin-bottom: 1rem; }
.brand-footer svg { color: var(--rock-light); }
.brand-footer .brand-sub { color: var(--night-muted); }
.footer-about p { margin: 0; max-width: 36ch; }
.footer-nav { display: grid; gap: .55rem; align-content: start; }
.footer-nav a, .footer-contact a { color: var(--night-text); text-decoration: none; }
.footer-nav a:hover, .footer-contact a:hover span { text-decoration: underline; }
.footer-nav a:hover { color: #fff; }
.footer-contact { display: grid; gap: .6rem; align-content: start; }
.footer-contact a, .footer-contact p { display: inline-flex; align-items: center; gap: .55rem; margin: 0; }
.footer-contact svg { width: 1.1rem; height: 1.1rem; flex: none; color: var(--rock-light); }
.footer-base { margin-top: 2.25rem; padding-top: 1.25rem; border-top: 1px solid var(--night-2); }
.footer-base p { margin: 0; }

/* Responsive and motion --------------------------------------------------- */

@media (max-width: 760px) {
  .nav { display: none; }
  .menu { display: block; }
}
@media (max-width: 400px) {
  .brand svg { width: 2.1rem; height: 2.1rem; }
  .brand-name { font-size: 1.05rem; }
  .brand-sub { font-size: .58rem; letter-spacing: .16em; }
  .header-cta { padding-inline: .8rem; }
}
@media (max-width: 340px) {
  .brand-name { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation: none !important; }
  .map-pulse { display: none; }
  .btn:hover svg, .link-arrow:hover svg { transform: none !important; }
}
