/* The three travel-clinic pages (/bring-hooplife-to-you, /first-nations-camp,
   /town-clinic). Loaded alongside landing.css, which supplies the shared
   .lp-* system; everything here is prefixed .tp- so it cannot reach anything
   else on the site.

   Black, white and red only, same as the rest of the marketing site. */

/* ---------------------------------------------------------------------------
   THE TWO AUDIENCE CARDS (Andrew, 2026-08-01: "I think you could do better on
   those. Make those just really look good.")

   They were two flat dark-red rectangles with a faint collage behind them and
   the title jammed at the bottom, and they gave a coordinator nothing to
   decide on. Now: a real photograph, a clear heading, a sentence about who it
   is for, three concrete bullets, and a call to action that moves on hover.
--------------------------------------------------------------------------- */
.tp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.5rem;
  max-width: 68rem;
  margin: 0 auto;
}
/* The two cards are the ONLY decision on the hub page, so they read as two
   big obvious buttons (Andrew, 2026-08-03: "make those two just stand out a
   bit better... it's not obvious what they should click on"): a red crown
   bar, a visible border at rest, a real shadow, and a button-sized CTA. */
.tp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid #1a1a1a;
  border-radius: 1.1rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1.25rem 2.5rem -0.05rem rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.tp-card::before {
  content: "";
  display: block;
  height: 0.4rem;
  background: #bf202f;
}
.tp-card:hover {
  transform: translateY(-6px);
  border-color: #bf202f;
  box-shadow: 0 1.75rem 3.5rem -0.05rem rgba(0, 0, 0, 0.2);
}
.tp-card-photo {
  position: relative;
  overflow: hidden;
}
/* The tile helper ships its own aspect ratio for a portrait collage slot; a
   card header wants a landscape band instead. */
.tp-card-photo .lp-tile {
  aspect-ratio: 16 / 9;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}
.tp-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 1.6rem;
}
.tp-card-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #bf202f;
  margin-bottom: 0.5rem;
}
.tp-card-body h3 {
  font-family: Cooperhewitt, "Rubik Variablefont Wght", Rubik, sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}
.tp-card-body > p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
.tp-card-list {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.tp-card-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}
.tp-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #bf202f;
}
.tp-card-cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  background: #bf202f;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}
.tp-card-cta::after {
  content: "\2192";
}
.tp-card:hover .tp-card-cta {
  gap: 0.85rem;
}

/* ---------------------------------------------------------------------------
   WE BRING / YOU PROVIDE
   The single most reassuring thing on the page for a coordinator: they are
   worried this is going to be a project. It is a gym and a contact person.
--------------------------------------------------------------------------- */
.tp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 62rem;
  margin: 0 auto;
}
.tp-half {
  background: #fff;
  border: 0.0875rem solid #e6e6e6;
  border-radius: 1.1rem;
  padding: 1.6rem 1.6rem 1.4rem;
}
.tp-half h3 {
  font-family: Cooperhewitt, Rubik, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #bf202f;
}
.tp-check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.tp-check li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}
.tp-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: #bf202f;
  /* A tick, drawn rather than an icon file, so it never 404s. */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/0.85rem no-repeat,
    linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/0.85rem no-repeat,
    linear-gradient(#000, #000);
  mask-composite: exclude;
}
.tp-note {
  margin: 1.1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #666;
}

/* ---------------------------------------------------------------------------
   TESTIMONIALS
   Real quotes from real coordinators, credited properly. The export credited
   all ten to the same person; that bug is fixed, and these are the quotes
   worth leading with.
--------------------------------------------------------------------------- */
.tp-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.25rem;
  max-width: 68rem;
  margin: 0 auto;
}
/* The wall: all ten success stories together, staggered like the old site so
   they read as a pile of real notes rather than a tidy widget (Andrew,
   2026-08-03: "they were all kind of together... they looked real"). Cards
   flow in two masonry columns and the right-hand flow starts lower. */
.tp-quotes.is-wall {
  display: block;
  columns: 2;
  column-gap: 1.4rem;
}
.tp-quotes.is-wall .tp-quote {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.4rem;
  break-inside: avoid;
}
.tp-quotes.is-wall .tp-quote:nth-child(even) {
  transform: rotate(0.35deg);
}
.tp-quotes.is-wall .tp-quote:nth-child(3n) {
  transform: rotate(-0.35deg);
}
@media (max-width: 47rem) {
  .tp-quotes.is-wall {
    columns: 1;
  }
}
.tp-quote {
  margin: 0;
  background: #fff;
  border: 0.0875rem solid #e6e6e6;
  border-left: 3px solid #bf202f;
  border-radius: 1.1rem;
  padding: 1.5rem 1.5rem 1.3rem;
  box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.07);
}
.tp-quote-stars {
  color: #bf202f;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.tp-quote blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #333;
}
.tp-quote figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.tp-quote-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.tp-quote-avatar.is-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bf202f;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}
.tp-quote-who strong {
  display: block;
  font-weight: 700;
}
.tp-quote-who span {
  display: block;
  font-size: 0.9rem;
  color: #bf202f;
  font-weight: 500;
}

/* The Canadian mark in the hero facts row. */
.lp-fact.is-canada {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.tp-maple {
  width: 1rem;
  height: 1rem;
  flex: none;
}

@media (max-width: 56rem) {
  .tp-split {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 30rem) {
  .tp-card-body {
    padding: 1.2rem 1.2rem 1.3rem;
  }
  .tp-card-body h3 {
    font-size: 1.4rem;
  }
  .tp-half {
    padding: 1.25rem;
  }
}

/* ---------------------------------------------------------------------------
   THE CLINIC REQUEST FORM
   The only conversion on these pages. 16px is the floor on every field: below
   that iOS zooms the whole page the moment a coordinator taps in, which wrecks
   a half-filled form.
--------------------------------------------------------------------------- */
.tp-form-card {
  max-width: 46rem;
  margin: 0 auto;
  background: #fff;
  border: 0.0875rem solid #e6e6e6;
  border-radius: 1.1rem;
  padding: 1.75rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.07);
}
.tp-form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.tp-form .form_field-wrapper {
  margin-bottom: 0.85rem;
}
.tp-form .form_field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #111;
}
.tp-form .form_input {
  width: 100%;
  font-size: 16px;
  padding: 0.7rem 0.85rem;
  border: 1px solid #ddd8d1;
  border-radius: 0.5rem;
  background: #fff;
  color: #111;
}
.tp-form select.form_input {
  height: auto;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%23bf202f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 1.1rem;
  padding-right: 2.4rem;
}
.tp-form .form_input.is-text-area {
  min-height: 7rem;
  resize: vertical;
}
.tp-form-submit {
  width: 100%;
  min-height: 3rem;
  margin-top: 0.35rem;
}
.tp-form-fine {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}
@media (max-width: 40rem) {
  .tp-form-card {
    padding: 1.15rem;
  }
  .tp-form-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
