/* ==========================================================================
   Rise 'N' Reach — flat, blocky, yellow. Matches the original Squarespace
   design language: full-bleed colour bands, hard-edged photos, bold Work Sans,
   no shadows, no rounded cards.
   ========================================================================== */

:root {
  --yellow: #FBCB07;
  --black:  #0E0E0E;
  --white:  #FFFFFF;
  --grey:   #F2F2F2;   /* skeleton base */
  --text:   #111111;
  --muted:  #4A4A4A;

  --wrap: 1240px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: 220ms;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: 'Work Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0 0 .6em; font-weight: 800; line-height: 1.05; letter-spacing: -.025em; color: var(--text); text-wrap: balance; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
strong, b { font-weight: 700; }

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

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

.band { padding-block: clamp(3rem, 7vw, 6rem); }
.band--yellow { background: var(--yellow); }
.band--black  { background: var(--black); color: var(--white); }
.band--black h2, .band--black h3 { color: var(--white); }
.band--tight { padding-block: clamp(2rem, 5vw, 4rem); }

/* Big centred title on a yellow band — the site's signature move */
.title-band { background: var(--yellow); padding-block: clamp(3rem, 8vw, 6.5rem); text-align: center; }
.title-band h1, .title-band h2 { font-size: clamp(2.75rem, 7.5vw, 5.5rem); margin: 0; }
.title-band p { max-width: 46rem; margin: 1rem auto 0; font-weight: 500; font-size: clamp(1.0625rem, 1.5vw, 1.25rem); }

/* Thick black rule between white sections */
.rule { height: 5px; background: var(--black); border: 0; margin: 0; }

.h-center { text-align: center; }
.h-xl { font-size: clamp(2.25rem, 5vw, 3.75rem); }
.h-lg { font-size: clamp(1.75rem, 3.4vw, 2.75rem); }
.h-md { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.lede { font-weight: 600; font-size: clamp(1.0625rem, 1.6vw, 1.3125rem); line-height: 1.5; }
.body-bold p { font-weight: 600; }
.measure { max-width: 64ch; }
.center { margin-inline: auto; text-align: center; }
.kicker { font-weight: 700; font-size: .875rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .75rem; }

/* --- Skeleton loaders ---------------------------------------------------- */
/* .ph wraps every photo: shimmer shows until the image has decoded, then the
   image fades in. Without JS the image is simply visible. */
.ph {
  position: relative; overflow: hidden; background: var(--grey);
}
.ph::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.75) 50%, transparent 80%);
  transform: translateX(-100%);
  animation: shimmer 1.4s ease-in-out infinite;
}
.ph.is-loaded::before { animation: none; opacity: 0; }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.js .ph img { opacity: 0; transition: opacity 360ms var(--ease); }
.js .ph.is-loaded img { opacity: 1; }
@keyframes shimmer { to { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) { .ph::before { animation: none; } }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 1rem 1.75rem; min-height: 48px; border-radius: 999px;
  background: var(--black); color: var(--white); border: 2px solid var(--black);
  text-decoration: none; white-space: nowrap;
  transition: transform var(--dur) var(--ease), background-color var(--dur), color var(--dur);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn--yellow:hover { background: #ffd83a; border-color: #ffd83a; }
.btn--outline { background: transparent; color: var(--black); }
.btn--outline:hover { background: var(--black); color: var(--white); }
.btn--white { background: var(--white); color: var(--black); border-color: var(--white); }

/* Squarespace-style "Join Today!" — yellow box, underlined bold text */
.btn-block {
  display: inline-block; background: var(--yellow); color: var(--black);
  font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -.02em;
  padding: .75rem 1.5rem; text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 5px;
  transition: transform var(--dur) var(--ease), background-color var(--dur);
}
.btn-block:hover { transform: translateY(-3px); background: #ffd83a; }
.btn-block:active { transform: translateY(0); }

/* Underlined text link (the "Featured On" treatment) */
.ulink {
  display: inline-block; padding-block: .25rem;
  font-weight: 800; text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 6px;
  color: var(--text); transition: text-decoration-color var(--dur), color var(--dur);
}
.ulink:hover { text-decoration-color: var(--yellow); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--black); outline-offset: 3px;
}
.band--yellow a:focus-visible, .band--yellow button:focus-visible { outline-color: var(--black); }
.band--black a:focus-visible, .band--black button:focus-visible { outline-color: var(--yellow); }

.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 100; background: var(--black); color: #fff; padding: .75rem 1.25rem; text-decoration: none; }
.skip-link:focus { top: 0; }

/* --- Header (nav left · logo centre · Instagram right) --------------------- */
.site-header { background: var(--white); padding-block: 1.25rem; }
.site-header__inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem;
}
.nav { display: grid; grid-template-columns: repeat(4, max-content); gap: .25rem 1.25rem; }
.nav a {
  display: inline-block; font-size: .875rem; font-weight: 600; text-decoration: none; color: var(--text);
  padding: .4rem 0; border-bottom: 2px solid transparent;
  transition: border-color var(--dur);
}
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--black); }
.brand { display: block; justify-self: center; }
.brand img { height: clamp(72px, 8vw, 104px); width: auto; }
.header__actions { display: flex; justify-content: flex-end; align-items: center; gap: .5rem; }
.icon-link {
  display: grid; place-items: center; width: 44px; height: 44px; color: var(--text);
  transition: transform var(--dur) var(--ease), color var(--dur);
}
.icon-link:hover { transform: translateY(-2px); }
.icon-link svg { width: 24px; height: 24px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; color: var(--text); }

@media (max-width: 820px) {
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .nav-toggle { display: grid; place-items: center; order: 1; }
  .brand { order: 2; justify-self: center; }
  .header__actions { order: 3; }
  .nav {
    order: 4; grid-column: 1 / -1; flex-direction: column; gap: 0;
    max-width: none; margin-top: .5rem;
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height 300ms var(--ease), visibility 0s linear 300ms;
  }
  .nav.is-open { max-height: 30rem; visibility: visible; transition-delay: 0s; }
  .nav a { padding: .875rem 0; border-bottom: 1px solid #e4e4e4; font-size: 1rem; }
  .nav a[aria-current="page"] { border-bottom-color: #e4e4e4; font-weight: 800; }
}

/* --- Hero (yellow, text left, photo right) --------------------------------- */
.hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(3rem, 7vw, 5.25rem); line-height: .98; margin-bottom: .5rem; }
.hero .lede { margin-bottom: 1.75rem; }
.hero__award {
  display: inline-block; font-weight: 700; font-size: .8125rem; letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 3px solid var(--black); padding-bottom: .25rem; margin-bottom: 1.25rem; text-decoration: none;
}
.hero__award:hover { border-bottom-color: var(--white); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero .ph { aspect-ratio: 4 / 3; }

/* --- Split (photo + text) ------------------------------------------------- */
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem); align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split--flip > .ph { order: 2; }
@media (max-width: 860px) { .split--flip > .ph { order: 0; } }
.split .ph { aspect-ratio: 4 / 3; }
.split--top { align-items: start; }
.split--contact { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
.split--logo { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); }
@media (max-width: 860px) { .split--contact, .split--logo { grid-template-columns: 1fr; } }
.gfm-wrap { max-width: 640px; margin: 2rem auto 0; }
.gfm-wrap iframe { display: block; margin-inline: auto; }
.split h2 { font-size: clamp(2rem, 4vw, 3rem); }

/* --- Photo row (three across) -------------------------------------------- */
.photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 3rem); align-items: center; margin-top: clamp(2rem, 4vw, 3rem); }
@media (max-width: 700px) { .photo-row { grid-template-columns: 1fr; } }
.photo-row .ph { aspect-ratio: 4 / 3; }
.photo-row .ph--tall { aspect-ratio: 3 / 4; }

/* --- Stats (big numbers on yellow) --------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem 1.5rem; text-align: center; margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(5, 1fr); } }
.stat__num { font-weight: 800; font-size: clamp(2.5rem, 4.6vw, 3.75rem); line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; margin-bottom: .75rem; }
.stat__label { font-weight: 600; font-size: .9375rem; line-height: 1.4; margin: 0; }
.stat__label small { display: block; font-weight: 400; font-size: .8125rem; color: rgba(0,0,0,.65); margin-top: .35rem; }

/* --- Solid yellow blocks (What We Do sub-points) ------------------------- */
.blocks { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2rem; justify-content: center; }
.blocks--2 { max-width: 760px; margin-inline: auto; }
.blocks--1 { max-width: 320px; margin-inline: auto; }
.block { background: var(--yellow); padding: 1.5rem 1.25rem; text-align: center; }
.block h3 { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; }
.block p { margin: 0; font-size: .9375rem; font-weight: 500; }
/* Pillar: photo beside the stacked yellow boxes (What We Do) */
.pillar { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; margin-top: 2.25rem; }
.pillar .ph { aspect-ratio: 4 / 3; }
.pillar .blocks { margin-top: 0; grid-template-columns: 1fr; max-width: none; gap: 1rem; }
.pillar--flip > .ph { order: 2; }
@media (max-width: 860px) { .pillar { grid-template-columns: 1fr; } .pillar--flip > .ph { order: 0; } }

/* --- Featured On ----------------------------------------------------------- */
.outlets { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem clamp(1.5rem, 4vw, 3rem); margin-top: 1.5rem; }
.outlets .ulink { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.award-line { max-width: 52rem; margin: clamp(2rem, 4vw, 3rem) auto 0; text-align: center; }
.award-line h3 { font-size: clamp(1.375rem, 2.6vw, 2rem); }
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); margin-top: clamp(2rem, 4vw, 3rem); }
@media (max-width: 760px) { .stories { grid-template-columns: 1fr; } }
.stories--2 { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin-inline: auto; }
@media (max-width: 760px) { .stories--2 { grid-template-columns: 1fr; } }
.stories--2 .ph { aspect-ratio: 16 / 9; }
.story { text-decoration: none; display: block; }
.story .ph { aspect-ratio: 4 / 3; margin-bottom: 1rem; }
.story__outlet { font-weight: 800; font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .25rem; }
.story__head { font-weight: 700; font-size: 1.0625rem; line-height: 1.35; margin-bottom: .35rem; text-decoration: underline; text-decoration-color: transparent; text-decoration-thickness: 2px; text-underline-offset: 4px; transition: text-decoration-color var(--dur); }
.story:hover .story__head { text-decoration-color: var(--yellow); }
.story__meta { font-size: .8125rem; color: var(--muted); margin: 0; }

/* --- Partners (plain bold list) ------------------------------------------ */
.partners { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem 2rem; margin-top: 2rem; }
.partner__name { font-weight: 700; font-size: 1.125rem; margin: 0; }
.partner__loc { font-size: .875rem; color: var(--muted); margin: 0; }

/* --- Gallery on yellow ----------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; grid-auto-flow: dense; gap: .875rem; }
@media (min-width: 640px)  { .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; } }
.gallery__item { position: relative; border: 0; padding: 0; background: none; cursor: pointer; overflow: hidden; }
.gallery__item .ph { width: 100%; height: 100%; }
.gallery__item img { transition: transform 500ms var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
@media (max-width: 560px) { .gallery__item--wide { grid-column: span 1; } }
.gallery--3 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .gallery--3 { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; } }

/* --- Lightbox ------------------------------------------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.94); display: grid; place-items: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity var(--dur), visibility 0s linear var(--dur); }
.lightbox.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; object-fit: contain; }
.lightbox__close { position: absolute; top: 1.25rem; right: 1.25rem; width: 48px; height: 48px; display: grid; place-items: center; background: var(--yellow); border: 0; color: var(--black); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__caption { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: .875rem; text-align: center; padding-inline: 1.5rem; margin: 0; }

/* --- Trust (plain columns) ------------------------------------------------- */
.columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem clamp(1.5rem, 3vw, 3rem); margin-top: 2rem; }
.col h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.col p { margin: 0; font-size: .9375rem; }
.columns--3 { grid-template-columns: repeat(3, 1fr); }
.columns--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .columns--3, .columns--2 { grid-template-columns: 1fr; } }
/* "Healthy in every way" band: big verb label above each column */
.three-ways { margin-top: 2.5rem; gap: 2.5rem clamp(1.5rem, 4vw, 4rem); }
.three-ways .col { border-top: 5px solid var(--black); padding-top: 1.25rem; }
.col p.col__label { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -.025em; line-height: 1; margin: 0 0 .75rem; }
.col p.col__link { margin-top: 1rem; font-weight: 700; }
.col__logo { width: 88px; aspect-ratio: 1; background: none; margin: .25rem 0 .75rem; }
.band--black .col p { color: rgba(255,255,255,.78); }
.band--black .col strong { color: #fff; }

/* --- Cover CTA (full-bleed photo, yellow block button) --------------------- */
.cover { position: relative; min-height: clamp(360px, 45vw, 560px); display: grid; place-items: center; overflow: hidden; }
.cover .ph { position: absolute; inset: 0; }
.cover .ph img { object-position: center 30%; }
.cover__content { position: relative; z-index: 1; text-align: center; padding: 1.5rem; }

/* --- Team ------------------------------------------------------------------ */
.team { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem 1.5rem; text-align: center; }
.member { flex: 0 1 auto; width: min(220px, calc(50% - .75rem)); }
.member .ph { aspect-ratio: 4 / 5; max-width: 220px; margin: 0 auto 1rem; }
.member__name { font-weight: 800; font-size: 1.375rem; letter-spacing: -.02em; margin: 0 0 .25rem; line-height: 1.15; }
.member__role { font-weight: 600; font-size: .8125rem; margin: 0; color: var(--muted); }

/* --- Quote box over photo (About) ---------------------------------------- */
.quote-over { position: relative; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: center; }
@media (max-width: 860px) { .quote-over { grid-template-columns: 1fr; } }
.quote-over .ph { grid-column: 2; aspect-ratio: 16 / 10; }
.quote-over__box {
  grid-column: 1; grid-row: 1; z-index: 1; background: var(--yellow);
  padding: clamp(1.5rem, 3.5vw, 3rem); margin-right: clamp(-3rem, -6vw, -6rem);
}
@media (max-width: 860px) { .quote-over .ph { grid-column: 1; grid-row: 1; } .quote-over__box { grid-row: 2; margin: -2rem 1rem 0; } }
.quote-over blockquote { margin: 0 0 1rem; font-weight: 800; font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.3; letter-spacing: -.02em; }
.quote-over cite { font-style: normal; font-weight: 600; font-size: .875rem; }

/* --- Tiers (big amounts, plain) ------------------------------------------ */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; margin-top: 2rem; }
.tier__amt { font-weight: 800; font-size: clamp(2.5rem, 4.6vw, 3.5rem); line-height: 1; letter-spacing: -.03em; margin-bottom: .75rem; }
.tier p { margin: 0; font-size: .9375rem; font-weight: 500; }

/* --- Forms ----------------------------------------------------------------- */
.form { display: grid; gap: 1.25rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 700; font-size: .9375rem; }
.field input, .field textarea, .field select {
  font: inherit; color: var(--text); padding: .8rem .9rem; min-height: 48px;
  background: var(--white); border: 2px solid var(--black); border-radius: 0;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid var(--yellow); outline-offset: 0; }
.field__help { font-size: .8125rem; color: var(--muted); }
.field__error { display: none; font-size: .8125rem; font-weight: 600; color: #B00020; }
.field.has-error .field__error { display: block; }
.field.has-error input, .field.has-error textarea { border-color: #B00020; }
.form__status { display: none; padding: 1rem; background: var(--yellow); font-weight: 600; }
.form__status.is-shown { display: block; }
.req { color: #B00020; }

/* Contact aside */
.contact-aside { display: grid; gap: 1.5rem; align-content: start; }
.contact-aside__h { font-weight: 800; margin: 0 0 .35rem; font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .35rem; }
.contact-aside a { display: inline-block; padding-block: .15rem; overflow-wrap: anywhere; font-weight: 700; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.contact-aside p { margin: 0; }

/* --- Footer (yellow) ------------------------------------------------------- */
.site-footer { background: var(--yellow); padding-block: 2rem; }
.site-footer__inner { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: center; }
@media (max-width: 640px) { .site-footer__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.site-footer__contact { font-weight: 800; font-size: clamp(1.0625rem, 1.8vw, 1.375rem); margin: 0; text-align: center; }
.site-footer__contact a { display: inline-block; padding-block: .15rem; text-decoration: none; }
.site-footer__contact a:hover { text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 5px; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: center; margin-top: 1.25rem; font-size: .8125rem; font-weight: 600; }
.site-footer__links a { display: inline-block; padding: .3rem 0; text-decoration: none; }
.site-footer__links a:hover { text-decoration: underline; }
.site-footer__fine { text-align: center; font-size: .75rem; margin: 1rem 0 0; color: rgba(0,0,0,.65); }

/* --- Reveal (kept subtle: fade only) ------------------------------------- */
.reveal { opacity: 0; }
.reveal.is-visible { opacity: 1; transition: opacity 500ms var(--ease); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; } }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }

/* Netlify Forms honeypot: off-screen, never display:none (bots skip hidden fields) */
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
