/* ==========================================================================
   Shoot.to marketing site - info.shoot.to
   Single stylesheet. No build step, no framework.

   Tokens below were measured off the live Wix render at 1280px on
   2026-08-19, not eyeballed: colours are the computed values, the type
   scale and the 980px container come from element geometry.
   ========================================================================== */

/* -------------------------------------------------------------- tokens -- */
:root {
  --orange:      #f15a24;  /* brand accent: nav, step titles, CTAs        */
  --orange-dark: #d44a17;  /* hover only - not present on the Wix site    */
  --teal:        #358c8b;  /* section eyebrow headings, hero buttons      */
  --teal-light:  #60b8ba;  /* hero sub-headline on the persona pages      */
  --ink:         #2f2e2e;  /* display headings                            */
  --body:        #605e5e;  /* body copy inside cards and lists            */
  --slate:       #324158;  /* footer + utility text                       */
  --cream:       #faeae8;  /* "How it works" band                         */
  --grey-100:    #f0f0f0;  /* dropdown panel                              */
  --grey-050:    #fafafa;
  --deep:        #0e1f1d;  /* footer scrim base, used at 90% opacity      */
  --white:       #fff;

  --container: 980px;
  --header-h:  65px;

  --sans:    "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Raleway", "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* --------------------------------------------------------------- fonts -- */
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("/assets/fonts/raleway-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; border: 0; display: block; }

a { color: var(--orange); }
a:focus-visible,
button:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 2px; }

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.2; }
p  { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* Visually hidden but available to screen readers. Several pages on the
   original site display no heading at all; they get one of these. */
.vh {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--orange); color: var(--white);
  padding: 10px 16px; border-radius: 4px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

/* -------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: var(--white);
}
.site-header__inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 24px;
}
.site-header__logo { display: block; flex: none; line-height: 0; }
.site-header__logo img { width: 186px; height: auto; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  margin-inline: auto; content: "";
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after  { transform: translateY(5px); }

.site-nav { margin-left: auto; display: flex; align-items: center; }
.site-nav__links { display: flex; align-items: center; gap: 26px; }

.site-nav__links a,
.nav-item > a,
.nav-item > button {
  font-family: var(--sans);
  font-size: 13px; font-weight: 400; line-height: 1;
  color: var(--orange); text-decoration: none;
  background: none; border: 0; padding: 0; cursor: pointer;
  white-space: nowrap;
}
.site-nav__links a:hover,
.nav-item > a:hover,
.nav-item > button:hover { color: var(--ink); }
/* Wix marks the current page - and the parent of the current page - in the
   dark ink colour rather than the brand orange. */
.site-nav__links a[aria-current="page"],
.nav-item.is-current > a,
.nav-item.is-current > button { color: var(--ink); }

.site-nav__login { margin-right: 22px; }

/* Dropdowns. CSS-only on hover/focus, JS adds click support for touch. */
.nav-item { position: relative; }
.nav-item > button::after {
  content: ""; display: none;
}
.nav-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  min-width: 209px; padding: 0;
  background: var(--grey-100);
  display: none;
}
.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu,
.nav-item.is-open .nav-menu { display: block; }
.nav-menu a {
  display: block; padding: 6px 12px;
  font-size: 13px; line-height: 16px;
  color: var(--orange); text-decoration: none;
}
.nav-menu a:hover { color: var(--ink); background: #e6e6e6; }

/* -------------------------------------------------------------- footer -- */
.site-footer { margin-top: 0; }

.footer-cta {
  position: relative; isolation: isolate;
  min-height: 216px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px;
  color: var(--white);
}
.footer-cta__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.footer-cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(14, 31, 29, .9);
}
.footer-cta h2 {
  font-size: 36px; font-weight: 700; line-height: 1.2;
  margin: 0 0 14px;
}
.footer-cta a {
  color: var(--white); font-size: 16px; font-weight: 400;
  text-decoration: underline; text-underline-offset: 3px;
}

.footer-meta {
  background: var(--white);
  padding: 46px 0;
}
.footer-meta__inner {
  display: flex; align-items: flex-start;
  gap: 24px; flex-wrap: wrap;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 12px; color: var(--slate); text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }

.footer-right { margin-left: auto; text-align: right; }
.footer-social {
  display: flex; gap: 12px; justify-content: flex-end; margin-bottom: 14px;
}
.footer-social a { line-height: 0; }
.footer-social img { width: 24px; height: 24px; }
.footer-copy {
  font-family: var(--display);
  font-size: 12px; line-height: 1.5; color: var(--slate); margin: 0;
}

/* ------------------------------------------------------------- buttons -- */
/* Measured off the live site: 40px tall, fully rounded, 16px/700 white
   label. Paired CTAs are always teal-then-orange; a lone CTA is orange.
   The widths vary by page, hence the modifiers. */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 175px; height: 40px; padding: 0 20px;
  border-radius: 50px; border: 0;
  font-family: var(--sans); font-size: 16px; font-weight: 700;
  color: var(--white); text-decoration: none; text-align: center;
  background: var(--teal);
  transition: background-color .15s ease;
}
.btn:hover  { background: #2c7574; color: var(--white); }
.btn--orange { background: var(--orange); }
.btn--orange:hover { background: var(--orange-dark); }
.btn--auto  { min-width: 0; }
.btn--w200  { min-width: 200px; }
.btn--w250  { min-width: 250px; }
.btn--w255  { min-width: 255px; }
.btn--w300  { min-width: 300px; }

.btn-row {
  display: flex; flex-wrap: wrap; gap: 27px;
  justify-content: center; margin-top: 28px;
}
.btn-row--spread { gap: 96px; margin-top: 40px; }
.btn-row--home   { gap: 135px; }

/* Small caption sitting under a hero CTA (faith-group, politician). */
.btn-note {
  font-size: 12px; color: var(--white);
  text-align: center; margin: 10px 0 0;
}

/* ---------------------------------------------------------------- hero -- */
.hero {
  position: relative; isolation: isolate;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  padding: 56px 20px;
  min-height: 380px;
}
/* Wix composites these as a solid dark band with the photo laid over it at
   a low opacity, rather than a scrim over the photo. Same construction here,
   so the result matches: the opacity values are the measured ones. */
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover;
}
.hero--home    { background: #333; min-height: 380px; }
.hero--home    .hero__bg { opacity: .31; }
.hero--persona { background: #000; min-height: 435px; }
.hero--persona .hero__bg { opacity: .46; }
.hero--short   { min-height: 0; padding: 46px 20px; }
.hero--cards   { align-items: stretch; padding: 60px 20px; }
.hero--cards .container { position: relative; }

.hero__inner { max-width: 900px; margin-inline: auto; position: relative; }
.hero__title--light { font-family: var(--sans); font-weight: 400; font-size: 44px; }

.hero__title {
  font-family: var(--display);
  font-size: 54px; font-weight: 700; line-height: 1.4;
  color: var(--white); margin: 0;
}
.hero__title--sm {
  font-family: var(--sans);
  font-size: 44px; line-height: 1.2;
}
.hero__eyebrow {
  font-size: 22px; font-weight: 700; color: var(--teal-light);
  margin: 26px 0 0;
}
.hero__sub {
  font-size: 18px; font-weight: 400; color: var(--white);
  margin: 14px 0 0;
}

/* -------------------------------------------------------------- bands --- */
.band       { padding: 56px 0; }
.band--white{ background: var(--white); }
.band--cream{ background: var(--cream); }
.band--grey { background: var(--grey-050); }

.band__title {
  font-family: var(--display);
  font-size: 40px; font-weight: 700; color: var(--orange);
  text-align: center; margin: 0 0 34px;
}
.band__title--ink { color: var(--ink); }

.section-eyebrow {
  font-size: 22px; font-weight: 700; color: var(--teal);
  text-align: center; margin: 0;
}
.section-lede {
  font-size: 18px; color: #000; text-align: center;
  margin: 8px 0 0;
}

.center { text-align: center; margin: 34px 0 0; }

/* ------------------------------------------- home: what you can do ------ */
.split {
  display: grid; grid-template-columns: 596px 1fr;
  gap: 44px; align-items: center;
}
.split__media img { width: 100%; height: auto; }
.ticks li {
  font-size: 16px; color: var(--slate);
  position: relative; padding-left: 18px; margin-bottom: 22px;
}
.ticks li::before {
  content: "•"; position: absolute; left: 0; top: -1px;
  color: var(--orange); font-size: 18px;
}

/* --------------------------------------------- home: testimonial band --- */
.testimonial {
  position: relative; isolation: isolate;
  background: var(--orange); color: var(--cream);
  padding: 60px 0;
}
.testimonial__bg {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover; opacity: .22;
}
.testimonial h2 {
  font-family: var(--display);
  font-size: 40px; font-weight: 700; text-align: center;
  color: var(--cream); margin: 0 0 30px;
}
.testimonial__figure {
  display: grid; grid-template-columns: 248px 1fr;
  gap: 46px; align-items: center; margin: 0;
}
.testimonial__figure > img { width: 100%; height: auto; object-fit: cover; }
.testimonial blockquote { margin: 0; text-align: center; }
.testimonial__name  { font-size: 18px; font-weight: 700; margin: 0; }
.testimonial__role  { font-size: 15px; margin: 0 0 22px; }
.testimonial__quote { font-size: 21px; margin: 0; }
.testimonial__quote b { font-weight: 700; }

/* ------------------------------------------------- three icon columns --- */
.icon-cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 44px;
}
.icon-col { text-align: center; }
.icon-col img { width: 77px; height: 77px; margin: 0 auto 22px; }
.icon-col h3 {
  font-size: 20px; font-weight: 700; color: var(--orange);
  margin: 0 0 18px;
}
.icon-col ul { text-align: left; }
.icon-col li {
  font-size: 16px; color: var(--body);
  margin-bottom: 14px; padding-left: 14px; position: relative;
}
.icon-col li::before {
  content: "•"; position: absolute; left: 0; color: var(--orange);
}

/* ------------------------------------------------------ how it works ---- */
.steps { margin-top: 40px; }

.step {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 40px; align-items: center;
  margin-bottom: 56px;
}
.step:nth-child(even) { grid-template-columns: 440px 1fr; }
.step:nth-child(even) .step__body  { order: 2; }
.step:nth-child(even) .step__media { order: 1; }
.step:last-child { margin-bottom: 0; }

.step__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 22px; }
.step__num {
  font-size: 42px; font-weight: 700; line-height: 1;
  color: var(--white); flex: none;
}
.step__title { font-size: 24px; font-weight: 700; color: var(--orange); margin: 0; }
.step__body li {
  font-size: 16px; color: var(--body); margin-bottom: 18px;
}
.step__body b { color: var(--orange); font-weight: 700; }
.step__body a { font-weight: 700; }
.step__media img { width: 100%; height: auto; }

/* On the cream band the step numbers are cream-on-cream on the live site -
   effectively invisible. Reproduced, but see the README. */
.band--cream .step__num { color: var(--white); }

/* ---------------------------------------------------- generic content --- */
.prose { max-width: 800px; margin-inline: auto; }
.prose h1, .prose h2 {
  font-family: var(--display);
  font-size: 40px; color: var(--ink); text-align: center; margin: 0 0 32px;
}
.prose h3 {
  font-size: 20px; color: var(--ink); margin: 32px 0 10px;
}
.prose p, .prose li { font-size: 16px; color: var(--body); }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.prose li { margin-bottom: .5em; }
.prose a { word-break: break-word; }

/* ------------------------------------------------------- page: 3 cards -- */
.feature-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.feature-card { text-align: center; color: var(--white); }
.feature-card img { width: 77px; height: 77px; margin: 0 auto 22px; }
.feature-card h2 { font-size: 20px; font-weight: 700; margin: 0 0 14px; }
.feature-card p  { font-size: 15px; margin: 0; }

/* --------------------------------------------------- page: who are you -- */
/* 3 across, the last two centred underneath - matching the live layout. */
.persona-title {
  font-size: 22px; font-weight: 700; color: var(--teal);
  text-align: center; margin: 0 0 10px;
}
.persona-lede {
  font-family: var(--display);
  font-size: 18px; font-weight: 400; color: var(--ink);
  text-align: center; margin: 0;
}
.persona-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 46px 106px; margin-top: 46px;
}
.persona {
  display: block; text-align: center; text-decoration: none;
  flex: 0 0 176px;
}
.persona img {
  width: 176px; height: 176px; object-fit: cover;
  border-radius: 50%; margin: 0 auto 12px;
}
.persona span {
  display: block; font-family: var(--display);
  font-size: 18px; font-weight: 400; color: #000;
}
.persona:hover span { color: var(--orange); }

/* ------------------------------------------------------- page: contact -- */
.contact-hero {
  position: relative; isolation: isolate;
  min-height: 500px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 60px 20px;
}
.contact-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover;
}
.contact-hero h1 {
  font-size: 36px; font-weight: 700; color: var(--slate); margin: 0 0 34px;
}
.contact-hero__mail {
  display: block; margin-top: 14px;
  font-size: 12px; color: #000; text-decoration: none;
}
.contact-hero__mail:hover { text-decoration: underline; }

/* ---------------------------------------------------------- page: data -- */
.data-row {
  display: grid; grid-template-columns: 600px 1fr;
  gap: 44px; align-items: center; margin-bottom: 56px;
}
.data-row:nth-child(even) { grid-template-columns: 1fr 600px; }
.data-row dl { margin: 0; }
.data-row dt {
  font-size: 20px; font-weight: 700; color: var(--orange); margin-top: 22px;
}
.data-row dt:first-child { margin-top: 0; }
.data-row dd { font-size: 20px; color: var(--slate); margin: 0; }

.numbers {
  position: relative; isolation: isolate;
  color: var(--white); padding: 60px 0;
}
.numbers__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.numbers::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(0, 0, 0, .82);
}
.numbers h2 {
  font-size: 46px; font-weight: 700; margin: 0 0 26px;
}
.numbers li { font-size: 16px; margin-bottom: 12px; }
.numbers b { font-weight: 700; }

.citations { font-size: 12px; color: var(--body); margin-top: 34px; }
.citations p { margin: 0 0 .6em; }

/* ---------------------------------------------------------- page: give -- */
.give-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0;
}
.give-hero__text { padding: 60px 40px; }
.give-hero__text img { width: 100%; max-width: 476px; margin-bottom: 40px; }
.give-hero__text p {
  font-size: 26px; color: var(--ink); margin: 0;
}
.give-hero__art img { width: 100%; height: auto; }

.give-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.give-split h2 {
  font-size: 56px; font-weight: 700; color: var(--ink); margin: 0 0 24px;
}
.give-split h3 {
  font-size: 30px; font-weight: 400; color: var(--orange); margin: 0 0 24px;
}
.give-split li, .give-split p { font-size: 18px; color: var(--ink); margin-bottom: 20px; }
.give-collage {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.give-collage img { width: 100%; height: auto; object-fit: cover; }

.give-steps { counter-reset: give; }
.give-step {
  display: grid; grid-template-columns: 90px 1fr; gap: 20px;
  align-items: start; margin-bottom: 34px;
}
.give-step__num {
  font-size: 80px; font-weight: 700; color: #dbdbdb; line-height: .9;
  text-align: center;
}
.give-step h3 {
  font-size: 20px; font-weight: 400; color: #525252;
  margin: 8px 0 8px; text-transform: uppercase;
}
.give-step p { font-size: 16px; color: var(--body); margin: 0; }

.give-tool-head {
  background: var(--teal-light); color: var(--white);
  padding: 44px 40px;
}
.give-tool-head h2 { font-size: 56px; font-weight: 700; margin: 0; }
.give-tool-body { background: var(--white); padding: 40px; }
.give-tool {
  display: grid; grid-template-columns: 1fr auto;
  gap: 30px; align-items: center; margin-bottom: 34px;
}
.give-tool h3 { font-size: 24px; font-weight: 700; color: var(--ink); margin: 0; }
.give-tool img { max-width: 480px; }

.give-formats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; text-align: center;
}
.give-formats span {
  font-size: 20px; color: #525252;
}
.give-formats:last-of-type { margin-top: 10px; }
.give-prices {
  margin-top: 22px; list-style: disc; padding-left: 22px;
}
.give-prices li { font-size: 16px; color: var(--body); margin-bottom: 8px; }

.give-collage--stack { grid-template-columns: 1fr; }

.give-activations { position: relative; isolation: isolate; }
.give-activations > img { width: 100%; height: auto; }
.give-activations__text {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px; color: var(--white);
}
.give-activations__text h2 {
  font-size: 40px; font-weight: 400; color: var(--white); margin: 0 0 20px;
}
.give-activations__text li { font-size: 18px; color: var(--white); margin-bottom: 8px; }

.give-hero__text h1 { font-size: 26px; font-weight: 400; color: var(--ink); line-height: 1.5; margin: 0; }

/* Long-form legal copy sits left-aligned in a wider measure. */
.prose--legal { max-width: 820px; }
.prose--legal h1 { text-align: left; font-size: 34px; }
.prose--legal h2 { text-align: left; font-size: 22px; margin: 34px 0 12px; font-family: var(--sans); }
.prose--legal h3 { font-size: 18px; }
.prose--legal p, .prose--legal li { line-height: 1.65; }

/* -------------------------------------------------------- page: pilots -- */
/* Standalone landing pages: the Wix originals hide the site header and
   footer entirely, so these carry no chrome. */
.pilot { padding: 40px 0 80px; }
.pilot__logo { margin: 0 auto 30px; display: block; }
.pilot h1 {
  font-family: var(--display);
  font-size: 32px; font-weight: 400; letter-spacing: .06em;
  color: #061551; text-align: center; margin: 0 0 26px;
}
.pilot__lede { text-align: center; }
.pilot__lede p { font-size: 18px; color: var(--ink); margin: 0 0 10px; }
.pilot__notes { max-width: 860px; margin: 60px auto 0; }
.pilot__notes p { font-size: 18px; color: var(--ink); text-align: center; margin: 0 0 14px; }
.pilot__cta {
  display: block; width: max-content; margin: 46px auto 0;
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #bb8f2e; text-decoration: none;
  border: 1px solid #bb8f2e; padding: 12px 22px; border-radius: 2px;
}
.pilot__cta:hover { background: #bb8f2e; color: var(--white); }

/* The empty region where the Wix product gallery used to sit. See README. */
.pilot__slot {
  min-height: 240px;
  display: flex; align-items: center; justify-content: center;
}

.pilot-band {
  position: relative; isolation: isolate;
  color: var(--white); padding: 70px 0; overflow: hidden;
}
.pilot-band__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.pilot-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(47, 46, 46, .86);
}
.pilot-band--navy::before { background: rgba(6, 21, 81, .82); }
.pilot-band--red::before  { background: rgba(255, 0, 0, .8); }
.pilot-band h2 { font-size: 50px; font-weight: 400; margin: 0 0 16px; }
.pilot-band p  { font-size: 22px; margin: 0; }
.pilot-shot img { width: 100%; height: auto; }

.pilot--hia { padding-bottom: 20px; position: relative; }
.pilot--hia h1 {
  font-family: var(--sans);
  font-size: 41px; font-weight: 400; letter-spacing: .02em;
  color: #bb8f2e; text-align: right; margin: 30px 0;
}
.pilot__mark { position: absolute; right: 20px; top: 0; height: 115px; width: auto; }

/* ------------------------------------- page: basic-01 (superseded page) -- */
.stacked-title { text-align: center; line-height: 1.15; }
.stacked-title b    { font-size: 60px; font-weight: 700; color: var(--orange); }
.stacked-title span { font-size: 54px; font-weight: 400; color: #5c5c5c; }

.halves {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ink);
}
.halves__panel {
  background: var(--white);
  padding: 60px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.halves__panel h2 { font-size: 38px; font-weight: 700; color: var(--ink); margin: 0 0 26px; }
.halves__panel li,
.halves__panel p  { font-size: 16px; color: var(--body); margin-bottom: 14px; }
.halves__panel ul { list-style: disc; padding-left: 20px; }
.halves__media { background: var(--grey-100); }
.halves__media img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------- page: athlete (Wix demo template page) -- */
.demo-hero {
  position: relative; isolation: isolate; min-height: 454px;
  display: flex; align-items: center;
}
.demo-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.demo-hero__panel {
  position: absolute; inset: 0 50% 0 0; z-index: -1;
  background: rgba(255, 255, 254, .74);
}
.demo-hero__text {
  width: 50%; margin-left: auto; padding: 60px 44px; color: #fffffe;
}
.demo-hero__text h1 {
  font-size: 50px; font-weight: 700; margin: 0 0 26px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.demo-hero__text p { font-size: 16px; color: #fffffe; }

.demo-split { display: grid; grid-template-columns: 1fr 1fr; }
.demo-split__media img { width: 100%; height: 100%; object-fit: cover; }
.demo-split__panel {
  background: #ff6161; color: #fffffe;
  padding: 70px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.demo-split__panel h2 { font-size: 36px; font-weight: 700; margin: 0 0 22px; }
.demo-split__panel p  { font-size: 15px; color: #fffffe; }

.demo-link {
  display: inline-block; margin-top: 10px;
  font-size: 15px; color: inherit; text-decoration: none;
  border: 1px solid currentColor; padding: 10px 26px;
}
.demo-link:hover { background: rgba(255, 255, 255, .18); color: inherit; }

/* -------------------------------------------------------- placeholders -- */
/* Pages that are unfinished on the live site. Reproduced as-is; the note
   is for editors, and is not shown to visitors. */
.placeholder { padding: 90px 0 120px; min-height: 40vh; }
.placeholder .container > *:first-child { margin-top: 0; }

/* -------------------------------------------------------------- 404 ----- */
.error-page { padding: 100px 0 120px; text-align: center; }
.error-page h1 { font-family: var(--display); font-size: 54px; color: var(--ink); margin: 0 0 16px; }
.error-page p  { font-size: 18px; margin: 0 0 30px; }

/* --------------------------------------------------------- responsive -- */
@media (max-width: 1100px) {
  .give-hero { grid-template-columns: 1fr; }
  .give-hero__art { order: -1; }
  .data-row, .data-row:nth-child(even) { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .step, .step:nth-child(even) { grid-template-columns: 1fr; gap: 26px; }
  .step:nth-child(even) .step__body  { order: 0; }
  .step:nth-child(even) .step__media { order: 0; }
  .give-split { grid-template-columns: 1fr; }
  .give-tool { grid-template-columns: 1fr; }
  .persona-grid { gap: 40px 60px; }
  .hero__title { font-size: 40px; }
  .hero__title--sm, .hero__title--light { font-size: 32px; }
  .give-split h2, .give-tool-head h2 { font-size: 38px; }
  .testimonial__figure { grid-template-columns: 1fr; justify-items: center; }
  .testimonial__figure > img { max-width: 248px; }
  .give-activations__text { position: static; padding: 24px 0 0; }
  .give-activations__text h2, .give-activations__text li { color: var(--ink); }
  .pilot--hia h1 { text-align: center; font-size: 30px; }
  .pilot__mark { position: static; margin: 0 auto; }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .site-nav { margin-left: 0; }
  .site-nav__links {
    display: none;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-top: 1px solid #eee;
    padding: 8px 20px 18px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
  }
  .site-nav__links.is-open { display: flex; }
  .site-nav__links > a,
  .nav-item > a,
  .nav-item > button { display: block; padding: 12px 0; font-size: 15px; text-align: left; }
  .site-nav__login { margin-right: 0; order: -1; }
  .nav-menu {
    position: static; transform: none; display: block;
    background: transparent; min-width: 0; padding: 0 0 6px 14px;
  }
  .nav-menu a { padding: 8px 0; font-size: 14px; }
  .nav-menu a:hover { background: none; }

  .icon-cols, .feature-cards { grid-template-columns: 1fr; gap: 44px; }
  /* the wide desktop CTA gaps collapse before the buttons start wrapping */
  .btn-row--home, .btn-row--spread { gap: 24px; }
  .band { padding: 44px 0; }
  .band__title { font-size: 30px; }
  .footer-meta__inner { flex-direction: column; }
  .footer-right { margin-left: 0; text-align: left; }
  .footer-social { justify-content: flex-start; }
  .give-formats { grid-template-columns: repeat(2, 1fr); }
  .give-collage { grid-template-columns: 1fr 1fr; }
  .halves, .demo-split { grid-template-columns: 1fr; }
  .halves--flip .halves__media { order: 2; }
  .demo-hero__panel { inset: 0; }
  .demo-hero__text  { width: 100%; margin-left: 0; }
  .stacked-title b    { font-size: 36px; }
  .stacked-title span { font-size: 30px; }
}

@media (max-width: 560px) {
  .persona-grid { gap: 34px 40px; }
  .hero__title { font-size: 32px; }
  .hero__title--sm { font-size: 26px; }
  .footer-cta h2 { font-size: 26px; }
  .prose h1, .prose h2 { font-size: 28px; }
  .btn,
  .btn--w200, .btn--w250, .btn--w255, .btn--w300 { min-width: 0; width: 100%; }
  /* the wide desktop gaps must not become huge vertical gaps when stacked */
  .btn-row, .btn-row--home, .btn-row--spread { gap: 16px; }
  .give-step { grid-template-columns: 60px 1fr; }
  .give-step__num { font-size: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
