/* ============================================================
   Project ReConnect 2026 — Landing
   ============================================================ */

:root {
  --brand: #9f2c32;       /* Haute Couture — primary */
  --red-2: #a6423a;       /* Secondary red */
  --red-3: #b25f4f;       /* Secondary red 2 */
  --clay:  #d09f90;       /* Cashmere Clay — accent */
  --grey:  #74767c;
  --ink:   #111111;
  --paper: #ffffff;
  --cream: #f6f1ec;

  --hero-bg: #1e0a0b;   /* warm near-black: fallback while hero img loads */

  --container: 1240px;
  --container-narrow: 760px;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Jost', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: var(--container-narrow); }

/* ---- Typography utilities ---- */

.t-h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: balance;
}
.t-lede {
  font-size: 21px;
  line-height: 1.5;
  color: var(--grey);
  max-width: 56ch;
  margin: 0;
}
.t-center { text-align: center; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 12px;
}
.eyebrow--center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--light { background: var(--paper); color: var(--brand); }
.btn--light:hover { background: var(--cream); }
.btn--dark  { background: var(--ink); color: var(--paper); }
.btn--dark:hover  { background: var(--brand); }


/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  min-height: max(96vh, 1280px);
  background: var(--hero-bg);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05) contrast(0.98);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17,17,17,0.30) 0%, rgba(17,17,17,0.10) 38%, rgba(17,17,17,0.10) 60%, rgba(17,17,17,0.55) 100%);
}

.hero__plug {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero__panel {
  position: relative;
  z-index: 2;
  width: 50%;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(40px, 5vw, 72px) clamp(40px, 5vw, 72px) clamp(48px, 6vw, 80px);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero__logo {
  width: clamp(275px, 35vw, 450px);
  height: auto;
  margin: 0;
  filter: none;
}

.hero__lede {
  max-width: 100%;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
  color: var(--grey);
  margin: 0;
  font-weight: 400;
  text-wrap: balance;
}

/* ---- 4-up event grid sits at bottom of hero, full-bleed ---- */

.event-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
.event-grid__cell {
  aspect-ratio: 1 / 1;
  padding: 28px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.event-grid__cell:nth-child(1){ background: var(--brand); }
.event-grid__cell:nth-child(2){ background: var(--red-2); }
.event-grid__cell:nth-child(3){ background: var(--red-3); }
.event-grid__cell--map { padding: 0; }
.event-grid__map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-grid__icon {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.92);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.event-grid__cell:nth-child(1) .event-grid__icon,
.event-grid__cell:nth-child(2) .event-grid__icon,
.event-grid__cell:nth-child(3) .event-grid__icon { color: rgba(255,255,255,0.92); }
.event-grid__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.event-grid__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin: auto 0 0;
}
.event-grid__value {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0;
}
.event-grid__cell:not(.event-grid__cell--map) {
  justify-content: space-between;
}

.event-grid__map-overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.95);
  color: var(--brand);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.event-grid__map-overlay svg { width: 14px; height: 14px; }


/* ============================================================
   INVOLVE — Want to be a part of this year?
   ============================================================ */

.involve {
  background: var(--cream);
  padding: clamp(72px, 9vw, 128px) 0;
}
.involve__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.involve__head .t-h2 { margin-bottom: 16px; }
.involve__head .t-lede {
  margin: 0 auto;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.5;
}

.involve__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.involve-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--clay);
  border-radius: 0;
  padding: 32px 28px 28px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .18s ease;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.involve-card,
.involve-card:hover { opacity: 1 !important; background: var(--paper) !important; }
.involve-card:hover { border-color: var(--brand); }
.involve-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  margin-bottom: 16px;
}
.involve-card__icon svg { width: 28px; height: 28px; }
.involve-card__icon { margin-bottom: auto; }
.involve-card__title { margin-top: 24px; }
.involve-card__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.involve-card__sub {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.45;
}
.involve-card__arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 22px;
  color: var(--brand);
  transition: transform .2s ease;
}
.involve-card:hover .involve-card__arrow { transform: translateX(4px); }

/* ============================================================
   FAIR — What's at the fair (4 columns, square icons, one red per column)
   ============================================================ */

.fair {
  background: var(--paper);
  padding: clamp(72px, 9vw, 128px) 0 0;
}
.fair .eyebrow { text-align: left; }
.fair .t-h2 { max-width: 800px; margin-bottom: 56px; }

.fair__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fair-col--carepack {
  grid-column: 1 / -1;
}
.fair-col {
  background: var(--col-bg);
  color: var(--paper);
  padding: 36px 32px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  min-height: 340px;
}
.fair-col__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.28);
}
.fair-col__square { display: none; }
.fair-col__head h3 {
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.15;
}
.fair-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.fair-col li {
  font-size: 17px;
  line-height: 1.4;
  padding: 16px 0;
  color: rgba(255,255,255,0.94);
  border-top: 1px solid rgba(255,255,255,0.22);
}
.fair-col li:first-child { border-top: 0; }
.fair-col li:last-child { border-bottom: 0; }
.fair-col li {
  padding-left: 30px;
  position: relative;
}
.fair-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: none;
  border: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}


/* ============================================================
   IMPACT — 200-300 / care packs (two-block layout)
   ============================================================ */

.impact {
  padding: 0;
  background: var(--paper);
}
.impact__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  align-items: stretch;
}
.impact__num {
  background: var(--red-2);
  border-radius: 0;
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}
.impact__num-value {
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--clay);
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.impact__num-value span {
  font-weight: 300;
  color: var(--clay);
  margin: 0 4px;
}
.impact__num-label {
  font-size: 16px;
  color: rgba(208,159,144,0.75);
  margin: 0;
  max-width: 22ch;
  line-height: 1.4;
}
.impact__copy {
  background: var(--red-3);
  border-radius: 0;
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.impact__copy h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--clay);
  text-wrap: balance;
}
.impact__copy p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  margin: 0;
  color: var(--paper)fff;
  max-width: 56ch;
}

/* ============================================================
   CONTACT — Volunteer + Question (two boxes, no borders)
   ============================================================ */

.contact {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--paper);
}
.contact__eyebrow { text-align: left; }
.contact__heading { max-width: 760px; margin-bottom: 64px; }

.contact__rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(208,159,144,0.45);
}
.contact-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(208,159,144,0.45);
  align-items: start;
}
.contact-row:last-child { border-bottom: 0; }
.contact-row__label {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-row__num {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--brand);
  font-feature-settings: "tnum";
}
.contact-row__kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.contact-row__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
}
.contact-row__title {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.contact-row__copy {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.78;
  margin: 0;
  max-width: 580px;
}
.contact-row__person {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 0;
  border-top: 0;
}
.contact-row__person-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.contact-row__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--brand);
  text-decoration: none;
  transition: color .2s ease;
}
.contact-row__email:hover { color: var(--ink); }
.contact-row__email svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .2s ease; }
.contact-row__email:hover svg { transform: translateX(4px); }

@media (max-width: 800px) {
  .contact-row { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .contact-row__label { flex-direction: row; align-items: baseline; gap: 12px; }
}

/* ============================================================
   GALLERY — 4 per row, max 2 rows, all squares
   ============================================================ */

.gallery {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--cream);
}
.gallery .eyebrow { text-align: left; }
.gallery .t-h2 { margin-bottom: 48px; max-width: 700px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery__item {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--clay), var(--red-3));
  color: rgba(255,255,255,0.92);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center; padding: 16px;
}
.gallery__item:nth-child(2n) .gallery__placeholder {
  background: linear-gradient(135deg, var(--red-2), var(--brand));
}
.gallery__item:nth-child(3n) .gallery__placeholder {
  background: linear-gradient(135deg, var(--brand), var(--ink));
}
.gallery__item:nth-child(5n) .gallery__placeholder {
  background: linear-gradient(135deg, var(--clay), var(--brand));
}


/* ============================================================
   PARTNERS — 3x3 logo grid
   ============================================================ */

.partners {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--paper);
}
.partners .t-h2 { margin-bottom: 56px; }

.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(17,17,17,0.08);
  border-left: 1px solid rgba(17,17,17,0.08);
  max-width: 980px;
  margin: 0 auto;
}
.partners__cell {
  aspect-ratio: 16 / 9;
  border-right: 1px solid rgba(17,17,17,0.08);
  border-bottom: 1px solid rgba(17,17,17,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.01em;
  min-width: 0;       /* prevent grid blowout from wide logo content */
  overflow: hidden;
}
.partners__cell img {
  max-height: 64px;
  max-width: 100%;    /* always constrained to cell, never causes overflow */
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Per-logo size tweaks */
.partners__cell:nth-child(1) img { max-height: 84px; }  /* Alliance to End Homelessness */
.partners__cell:nth-child(4) img { max-height: 94px; }  /* Salvation Army */
.partners__cell:nth-child(7) img { max-height: 54px; }  /* WorkBC Centre */
.partners__cell:nth-child(9) img { max-height: 94px; }  /* Solid Outreach Victoria */

/* ============================================================
   LAND ACKNOWLEDGEMENT + COLOPHON
   ============================================================ */

.land-ack {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--brand);
  color: rgba(255,255,255,0.92);
  text-align: center;
}
.land-ack p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}
.land-ack__colophon {
  margin-top: 32px !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.78) !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.land-ack__colophon .heart { color: var(--paper); }
.land-ack__colophon-link { color: var(--paper) !important; text-decoration: underline; text-underline-offset: 3px; }
.land-ack__colophon-link:hover { color: var(--clay) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  /* Hero: hide bg image, let mobile-media carry the photo; size to content */
  .hero { min-height: 0; }
  .hero__bg, .hero__scrim { display: none; }

  .involve__grid,
  .fair__cols,
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .impact__inner,
  .contact__grid { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .container { padding: 0 20px; }
  .hero__content { padding-top: 96px; padding-bottom: 40px; }
  .hero__wordmark { width: 86vw; }


  .involve__grid,
  .fair__cols { grid-template-columns: 1fr; }
  /* Remove square aspect-ratio on involve cards — too tall on mobile */
  .involve-card { aspect-ratio: auto; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  /* Partners: keep 2 per row (already set at 980px, no override needed) */
  .event-grid { grid-template-columns: 1fr 1fr; }
  .partners__cell {
    aspect-ratio: auto;
    min-height: 120px;
    padding: 20px 16px;
  }
  /* Cap all logos on mobile so they fit comfortably within cells */
  .partners__cell img,
  .partners__cell:nth-child(1) img,
  .partners__cell:nth-child(4) img,
  .partners__cell:nth-child(7) img,
  .partners__cell:nth-child(9) img { max-height: 60px; }
}

/* Hero image shown below the panel on tablet + mobile */
.hero__mobile-media { display: none; }

@media (max-width: 980px) {
  .hero__mobile-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }
  .hero__mobile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}


/* white CTA used in contact cards */
.btn--white { background: var(--paper); color: var(--brand); }
.btn--white:hover { background: var(--cream); color: var(--brand); }


/* ============================================================
   PLUG BANNER — full-width plug graphic
   ============================================================ */
.plug-banner {
  background: var(--brand);
  padding: clamp(48px, 6vw, 96px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.plug-banner__img {
  width: min(94%, 1400px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}


/* contact-card white CTA — force brand-red text over inherited card color */
.contact-card .btn--white { color: var(--brand) !important; background: var(--paper) !important; }
.contact-card .btn--white:hover { background: var(--cream) !important; color: var(--brand) !important; }


/* ============================================================
   GALLERY BUTTON RESET (items are <button> for lightbox)
   ============================================================ */
button.gallery__item {
  border: 0; padding: 0; margin: 0;
  background: var(--cream);
  font: inherit; color: inherit;
  cursor: zoom-in;
}
button.gallery__item:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  animation: lb-fade .18s ease-out;
}
.lightbox[hidden] { display: none; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img {
  max-width: min(96vw, 1400px);
  max-height: 86vh;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.lightbox__caption {
  position: absolute;
  bottom: clamp(16px, 3vw, 32px);
  left: 50%; transform: translateX(-50%);
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--paper);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s ease, transform .15s ease;
  font-family: inherit;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.18); }
.lightbox__close {
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 28px; line-height: 1;
  font-weight: 300;
}
.lightbox__nav {
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  font-size: 22px;
}
.lightbox__nav--prev { left: clamp(16px, 3vw, 40px); }
.lightbox__nav--next { right: clamp(16px, 3vw, 40px); }
@media (max-width: 640px) {
  .lightbox__nav { width: 44px; height: 44px; font-size: 18px; }
}


/* Hero panel responsive — full width when the event grid wraps */
@media (max-width: 980px) {
  .hero__panel { width: 100%; }
}


/* ============================================================
   CAREPACK row card — full-width, image left
   ============================================================ */
.fair-col--carepack {
  position: relative;
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.4fr;
  gap: 44px;
  align-items: stretch;
  min-height: 380px;
  overflow: hidden;
}
.fair-col__media {
  align-self: end;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--clay);
  margin-bottom: 0;
}
.fair-col__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fair-col__carepack-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 8px 0;
}
.fair-col--carepack .fair-col__head h3 {
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  text-wrap: balance;
}
.fair-col__carepack-copy {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0;
  max-width: 56ch;
}
.fair-col__carepack-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 14px 0 0;
  flex-wrap: wrap;
}
.fair-col__carepack-num {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--clay);
  font-variant-numeric: tabular-nums;
}
.fair-col__carepack-num em {
  font-style: normal;
  font-weight: 300;
  margin: 0 4px;
}
.fair-col__carepack-num-label {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  max-width: 22ch;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  text-wrap: balance;
}

@media (max-width: 800px) {
  .fair-col--carepack {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .fair-col__media { aspect-ratio: 16 / 10; }
}


/* ============================================================
   LINK FADE — subtle hover for inline links and email lozenges
   ============================================================ */
a {
  transition: opacity .25s ease, color .25s ease, border-color .25s ease;
}
a:hover {
  opacity: 0.7;
}
/* Buttons and text links manage their own hover; keep them crisp */
.btn, .btn:hover,
.text-link, .text-link:hover,
.contact-row__email,
.event-grid__cell--map { opacity: 1 !important; }
.contact-row__email { transition: color .2s ease, opacity .2s ease; }

/* ---- Text link (brand-red with animated arrow) ---- */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: color .2s ease;
}
.text-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.text-link:hover { color: var(--ink); }
.text-link:hover svg { transform: translateX(4px); }


/* ============================================================
   ACCESSIBILITY UTILITIES
   ============================================================ */

.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-link {
  position: absolute;
  top: -120%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--brand);
  color: var(--paper);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
  transition: top .12s ease;
}
.skip-link:focus { top: 0; }

@media (max-width: 350px) {
  .event-grid__cell { padding: 16px; }
}
