/* VetCamps FamCamp directory — same design system as the marketing homepage */

:root {
  --bg: #d9e0ec;
  --bg-elev: #ffffff;
  --text: #0f172a;
  --muted: rgba(15, 23, 42, 0.64);
  --faint: rgba(15, 23, 42, 0.45);
  --line: rgba(15, 23, 42, 0.12);
  --accent: #a8841a;
  --accent-dim: rgba(168, 132, 26, 0.14);
  --header-bg: rgba(217, 224, 236, 0.92);
  --shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.12);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Outfit", var(--font);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.15rem, 4vw, 1.75rem);
  --max: 46rem;
  --max-wide: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(ellipse 70% 45% at 50% -8%, rgba(255, 255, 255, 0.55), transparent 55%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  width: min(100% - 2 * var(--pad), var(--max-wide));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

/* Header — same chrome as the homepage */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text) !important;
  background: var(--bg-elev);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }
}

/* Directory / listing intro */
.hero-block {
  padding: 0 0 0.35rem;
}

.camp-page .wrap-narrow > .crumbs {
  margin: clamp(1.35rem, 4vw, 2.25rem) 0 0.85rem;
  font-size: 0.84rem;
}

/* Hub sales pitch — camps index only (landing page unchanged) */
.hub-pitch {
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(1.25rem, 3vw, 2rem);
}

.hub-pitch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.88fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hub-free-pill {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: #0f172a;
  color: #f5d020;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hub-pitch-copy h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.35rem, 5.8vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hub-pitch-lead {
  margin: 0 0 1.35rem;
  max-width: 38ch;
  font-size: 1.08rem;
  color: var(--muted);
}

.hub-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 0 1.15rem;
}

.hub-stat {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hub-stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent);
}

.hub-stat span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--muted);
}

.hub-stat--free strong {
  color: var(--text);
}

.hub-coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
}

.hub-coverage span {
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: var(--accent-dim);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.hub-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
}

.hub-play-badge {
  display: inline-flex;
  line-height: 0;
  transition: opacity 0.2s, transform 0.2s var(--ease);
}

.hub-play-badge:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.hub-play-badge img {
  display: block;
  height: 52px;
  width: auto;
}

.hub-app-store-badge {
  display: inline-flex;
  line-height: 0;
  transition: opacity 0.2s, transform 0.2s var(--ease);
}

.hub-app-store-badge:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.hub-app-store-badge img {
  display: block;
  height: 40px;
  width: auto;
}

html[data-store="ios"] .hub-play-badge,
html[data-store="android"] .hub-app-store-badge {
  display: none !important;
}

.hub-preview-note {
  margin: 1.1rem 0 0;
  max-width: 36ch;
  font-size: 0.88rem;
  color: var(--faint);
}

.hub-pitch-visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.hub-device {
  width: min(300px, 78vw);
  border-radius: 34px;
  overflow: hidden;
  background: #0f172a;
  border: 2px solid rgba(15, 23, 42, 0.55);
  box-shadow:
    var(--shadow-lg),
    0 0 0 6px rgba(255, 255, 255, 0.35);
}

.hub-device img {
  display: block;
  width: 100%;
  height: auto;
}

.hub-browse {
  padding: 0 0 2.5rem;
}

.hub-browse-head {
  margin: 0 0 1.25rem;
}

.hub-browse-head h2 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
}

.hub-browse-lede {
  margin: 0;
  max-width: 40ch;
  font-size: 0.98rem;
  color: var(--muted);
}

/* Preview vs app — state index pages (from landing listing-depth block) */
.state-page-crumbs {
  padding-top: clamp(1.25rem, 3.5vw, 2rem);
}

.state-page-crumbs .crumbs {
  margin: 0 0 0.35rem;
}

.listing-depth {
  padding: 0.85rem 0 1.75rem;
}

.listing-depth-inner {
  text-align: center;
}

.listing-depth h2 {
  margin: 0 auto 0.85rem;
  max-width: 22ch;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
}

.listing-depth-lead {
  margin: 0 auto 1.5rem;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.listing-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  text-align: left;
  margin: 0 auto 1.35rem;
  max-width: 720px;
}

.listing-col {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.05rem;
  box-shadow: var(--shadow);
}

.listing-col--app {
  border-color: rgba(168, 132, 26, 0.42);
  background:
    linear-gradient(180deg, rgba(168, 132, 26, 0.1), transparent 42%),
    var(--bg-elev);
}

.listing-col-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.listing-col ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.95rem;
}

.listing-col li + li {
  margin-top: 0.4rem;
}

.listing-depth-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.listing-depth-cta:hover {
  background: #1e293b;
  color: #fff;
}

.state-directory {
  padding: 0.5rem 0 2.75rem;
  text-align: left;
}

.state-directory-head {
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

.state-directory-head h1 {
  margin: 0 0 0.55rem;
}

.state-directory-head .lede {
  margin: 0;
}

@media (max-width: 900px) {
  .hub-pitch-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hub-pitch-visual {
    order: -1;
  }

  .hub-pitch-lead,
  .hub-preview-note {
    margin-inline: auto;
  }

  .hub-stat-row {
    grid-template-columns: 1fr;
    max-width: 16rem;
    margin-inline: auto;
  }

  .hub-coverage {
    justify-content: center;
  }

  .hub-cta-row {
    justify-content: center;
  }

  .listing-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hub-stat-row {
    max-width: none;
  }
}

.listing-intro {
  margin-top: 0;
}

.listing-intro-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.listing-intro h1 {
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 28ch;
}

.listing-meta {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.listing-meta > div {
  display: grid;
  grid-template-columns: minmax(4.8rem, 5.5rem) 1fr;
  gap: 0.5rem 1rem;
  align-items: baseline;
}

.listing-meta dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0;
}

.listing-meta dd {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.45;
}

.listing-meta dd a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(15, 23, 42, 0.22);
}

.listing-meta dd a:hover {
  color: var(--accent);
}

.listing-intro .hero-pills {
  margin: 1.15rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.listing-intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.listing-intro-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.listing-hero {
  background: none;
  color: inherit;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.eyebrow,
.listing-hero .eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 1.1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--text);
}

.camp-page h1 {
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
}

.lede {
  margin: 0;
  max-width: 46ch;
  font-size: 1.15rem;
  color: var(--muted);
}

.crumbs,
.listing-hero .crumbs {
  margin: 0 0 1.15rem;
  font-size: 0.88rem;
  color: var(--faint);
}

.crumbs a,
.listing-hero .crumbs a {
  color: var(--muted);
}

.crumbs a:hover,
.listing-hero .crumbs a:hover {
  color: var(--text);
}

.meta-line,
.listing-hero .meta-line {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.listing-hero .meta-line a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(15, 23, 42, 0.25);
}

.listing-hero .meta-line a:hover {
  color: var(--text);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-pills li {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.preview-banner {
  display: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary {
  background: #0f172a;
  color: #fff;
}

.btn-primary:hover {
  background: #1e293b;
  color: #fff;
}

.btn-accent {
  background: #f5d020;
  color: #0f172a;
}

.btn-accent:hover {
  background: #e6c04a;
  color: #0f172a;
}

.btn-ghost,
.listing-hero .btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  font-weight: 500;
}

.btn-ghost:hover,
.listing-hero .btn-ghost:hover {
  border-color: rgba(15, 23, 42, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
}

.store-badge {
  display: inline-flex;
  line-height: 0;
  transition: opacity 0.2s, transform 0.2s var(--ease);
}

.store-badge:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.store-badge img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(200px, 70vw);
}

/* Cards */
.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.35rem 1.35rem 1.25rem;
  margin: 1.15rem 0;
}

.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.preview-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.tile {
  background: rgba(217, 224, 236, 0.35);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.9rem 0.9rem;
  min-height: 4.4rem;
}

.tile dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 0.3rem;
}

.tile dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.3;
}

.clip-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chips li {
  background: var(--bg-elev);
  color: var(--text);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
}

.chips li.chip-locked {
  background: rgba(217, 224, 236, 0.4);
  color: var(--faint);
  border-style: dashed;
}

.amen-fade {
  position: relative;
  margin-top: 0.95rem;
  padding-top: 0.85rem;
}

.amen-fade::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2.2rem;
  height: 2.2rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 88%);
}

.more-in-app {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.more-in-app a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.listing-depth-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
}

.listing-depth-row li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  background: rgba(217, 224, 236, 0.45);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
}

.phone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.phone-list li {
  background: rgba(217, 224, 236, 0.35);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
}

.phone-list span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.28rem;
}

.phone-list a {
  font-weight: 600;
  color: var(--text);
}

.phone-list a:hover {
  color: var(--accent);
}

.tease-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.15rem 0;
  align-items: stretch;
}

.tease {
  display: flex;
  flex-direction: column;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(168, 132, 26, 0.1), transparent 42%),
    var(--bg-elev);
  border: 1px solid rgba(168, 132, 26, 0.42);
  box-shadow: var(--shadow);
}

.tease p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.tease-badge {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inventory {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.95rem;
}

.inventory li + li {
  margin-top: 0.4rem;
}

.tease .btn-accent {
  margin-top: auto;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

/* Bottom preview banner — full width before footer */
.listing-finale {
  margin-top: 2rem;
  padding: 1.35rem 0;
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.listing-finale-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
}

.listing-finale p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.45;
  max-width: 36ch;
}

/* Mobile sticky duplicate of the finale banner */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.75rem var(--pad) calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(15, 23, 42, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-cta .inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.sticky-cta .btn-accent {
  background: #f5d020;
  color: #0f172a;
}

.sticky-cta .btn-accent:hover {
  background: #e6c04a;
  color: #0f172a;
}

/* Hub + state lists */
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.4rem, 1fr));
  gap: 0.75rem;
  margin: 0.5rem 0 3rem;
  padding: 0;
  list-style: none;
}

.state-grid a {
  display: block;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow);
  color: var(--text);
  font-weight: 600;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.state-grid a:hover {
  border-color: rgba(168, 132, 26, 0.42);
  transform: translateY(-1px);
}

.state-grid span {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--faint);
}

.camp-list {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.camp-list a {
  display: block;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.05rem 1.15rem;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.camp-list a:hover {
  border-color: rgba(168, 132, 26, 0.42);
  transform: translateY(-1px);
}

.camp-list strong {
  display: block;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.camp-list .hook {
  display: block;
  margin-top: 0.3rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
}

.camp-list .sub {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Footer — homepage pattern */
.site-footer {
  margin-top: 2.5rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-inner {
  width: min(100%, var(--max-wide));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.footer-brand {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.footer-links,
.site-footer-policies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--faint);
}

.footer-links a,
.site-footer-policies a {
  color: var(--faint);
}

.footer-links a:hover,
.site-footer-policies a:hover {
  color: var(--muted);
}

.footer-copy,
.site-footer p:last-child {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(15, 23, 42, 0.35);
}

.main {
  padding-bottom: 2.5rem;
}

.main-hub {
  padding-bottom: 2rem;
}

@media (max-width: 760px) {
  .tile-grid,
  .phone-list,
  .tease-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-cta {
    display: block;
  }

  .camp-page .main {
    padding-bottom: 5.5rem;
  }
}

@media (max-width: 560px) {
  .tease-grid {
    grid-template-columns: 1fr;
  }
}
