/* =========================================================
   Garden City Vineyard
   Shared design system and homepage styles
   ========================================================= */

/* 1. Design tokens */
:root {
  --gold: #c49807;
  --yellow: #f8cd46;
  --blue: #c5f8ff;
  --soft: #f8faff;
  --white: #fff;
  --charcoal: #2e2e2e;
  --black: #1b1b1b;
  --grey: #999;
  --line: rgba(27, 27, 27, 0.12);
  --radius: 18px;
  --radius-large: 28px;
  --shadow: 0 16px 40px rgba(27, 27, 27, 0.08);
  --shell: min(1180px, calc(100% - 40px));
}

/* 2. Reset and global layout */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 38px 0 54px;
}

.section-tight-top {
  padding-top: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 99;
  padding: 0.75rem;
  background: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--yellow);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* 3. Header and navigation */
.utility-bar {
  color: #fff;
  background: var(--black);
  font-size: 0.78rem;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}

.utility-inner p {
  margin: 0;
}

.utility-inner nav {
  display: flex;
  gap: 24px;
}

.utility-inner a:hover {
  color: var(--yellow);
}

.utility-sundays {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.utility-sundays strong,
.utility-inner p span {
  color: var(--yellow);
}

.utility-inner p span {
  margin-right: 0.45rem;
}

.utility-divider {
  margin: 0 5px;
  opacity: 0.5;
}

.pin-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 20px;
  margin-right: 2px;
  color: var(--yellow);
  font-size: 0;
}

.pin-icon::before {
  display: block;
  width: 11px;
  height: 14px;
  content: "";
  background: currentColor;
  border-radius: 8px 8px 8px 0;
  transform: rotate(-45deg);
}

.pin-icon::after {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--black);
  border-radius: 50%;
}

.utility-links {
  align-items: center;
}

.utility-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 4px;
}

.utility-socials a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin: 0;
  color: #fff;
}

.utility-socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.utility-socials svg rect,
.utility-socials svg circle {
  fill: none;
}

.utility-socials .icon-fill {
  fill: currentColor;
  stroke: none;
}

.utility-socials .icon-fill-dark {
  fill: var(--black);
  stroke: none;
}

.main-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 84px;
  padding-block: 12px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 0;
}

.brand img,
.main-nav-wrap .brand img {
  display: block;
  width: 64px;
  max-height: 64px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  filter: none;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-menu > a:not(.button):hover,
.site-menu .is-current {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  padding: 8px;
  background: none;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: #111;
}

/* 4. Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: 0.2s ease;
}

.button-primary {
  color: #111;
  background: var(--yellow);
  border: 1px solid var(--yellow);
}

.button-primary:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.button-outline {
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
}

.button-outline:hover {
  color: #fff;
  background: var(--gold);
}

.button-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.button-outline-light:hover {
  color: #111;
  background: #fff;
}

.button-ghost {
  color: #fff;
  background: rgba(0, 0, 0, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}

.button-ghost:hover {
  color: var(--black);
  background: #fff;
}

.button-blue-outline {
  padding: 12px 20px;
  color: #3174b9;
  background: transparent;
  border: 1.5px solid #3174b9;
  border-radius: 4px;
}

.button-blue-outline:hover {
  color: #fff;
  background: #3174b9;
}

.nav-cta {
  margin-left: 10px;
}

/* Shared icon system
   Content icons are defined once in assets/icons.svg. */
.icon-dot svg,
.next-icon svg,
.next-page-icon svg,
.follow-step-icon svg,
.community-option-icon svg,
.community-proposal-icon svg,
.give-method-icon svg,
.serve-action-icon svg,
.contact-detail-icon svg,
.feature-icon svg {
  display: block;
  flex: 0 0 auto;
}

/* 5. Homepage hero */
.hero.hero-photo-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.46) 43%, rgba(0, 0, 0, 0.06) 78%),
    url("assets/hero-sunday.jpeg") center 48% / cover no-repeat;
}

.hero-photo-overlay {
  display: none;
}

.hero-banner-inner {
  position: relative;
  z-index: 2;
  width: var(--shell);
  max-width: none;
  margin-inline: auto;
}

.hero-banner-copy {
  width: 100%;
  max-width: 590px;
  padding: 76px 0 76px 30px;
}

.hero.hero-photo-banner h1 {
  margin: 0 0 20px;
  color: #fff;
  font: 800 clamp(3.8rem, 6.8vw, 6.4rem) / 0.94 Manrope, sans-serif;
  letter-spacing: -0.055em;
}

.hero-banner-copy > p {
  max-width: 585px;
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

/* 6. Homepage Sunday panel */
.sunday-section {
  padding: 34px 0 22px;
}

.sunday-panel {
  display: grid;
  grid-template-columns: 1.6fr 0.95fr;
  min-height: 410px;
  overflow: hidden;
  background: linear-gradient(112deg, #f7fbff 0%, #edf9ff 72%, #e8f7ff 100%);
  border-radius: 22px;
  box-shadow: 0 5px 18px rgba(27, 27, 27, 0.06);
}

.sunday-details {
  padding: 46px 46px 40px;
}

.sunday-label {
  margin-bottom: 22px;
  color: #3174b9;
}

.sunday-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.sunday-columns:has(.sunday-location:only-child) {
  grid-template-columns: 1fr;
}

.sunday-location {
  padding: 0 34px 0 0;
}

.sunday-location + .sunday-location {
  padding: 0 0 0 34px;
  border-left: 1px solid rgba(46, 46, 46, 0.15);
}

.sunday-time {
  margin: 0 0 6px;
  color: var(--black);
  font: 800 2.05rem / 1 Manrope, sans-serif;
}

.sunday-location h2 {
  max-width: 290px;
  margin: 0 0 3px;
  font: 800 1.48rem / 1.1 Manrope, sans-serif;
}

.sunday-address {
  margin: 0 0 26px;
  color: #242424;
  font-weight: 700;
}

.sunday-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 30px;
}

.sunday-features > div {
  min-width: 0;
  text-align: center;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 7px;
  color: var(--black);
  background: #fff;
  border: 1px solid rgba(46, 46, 46, 0.2);
  border-radius: 50%;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sunday-features small {
  display: block;
  margin-top: 4px;
  color: #222;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
}

.sunday-image {
  position: relative;
  min-height: 340px;
  margin: 30px 28px 30px 0;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.42) 100%),
    url("assets/welcome.jpg");
  background-position: center 38%;
  background-size: cover;
  border-radius: 18px;
}

.welcome-badge {
  position: absolute;
  bottom: 20px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: rgba(27, 27, 27, 0.82);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* 7. Shared cards and homepage sections */
.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.image-card,
.event-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 10px 28px rgba(27, 27, 27, 0.05);
}

.image-card > img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.card-body {
  position: relative;
  padding: 28px;
}

.icon-dot {
  position: absolute;
  top: -23px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  font-weight: 800;
  background: var(--yellow);
  border: 3px solid #fff;
  border-radius: 50%;
}

.icon-dot svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-body h2 {
  margin: 4px 0 7px;
  font: 800 1.35rem Manrope;
}

.card-body p {
  margin: 0 0 18px;
  color: #555;
}

.card-body a,
.section-heading a {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 28px;
}

.vision-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 470px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--soft), var(--blue));
  border-radius: 28px;
}

.vision-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px;
}

.vision-copy h2 {
  margin: 0 0 26px;
  font: 800 clamp(1.55rem, 2.5vw, 2.35rem) / 1.12 Manrope;
}

.vision-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.series-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=85") center / cover;
  border-radius: 28px;
}

.series-panel h2 {
  margin: 10px 0 20px;
  font: 800 clamp(3rem, 5vw, 5.2rem) / 0.82 Manrope, sans-serif;
  letter-spacing: -0.07em;
}

.series-panel > p:not(.eyebrow) {
  margin: 0 0 28px;
  color: var(--yellow);
  font-weight: 700;
}

.making-room-panel {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 26px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(145deg, #151515, #050505);
}

.making-room-panel::before {
  display: none;
}

.series-copy {
  position: relative;
  z-index: 2;
}

.making-room-panel h2 {
  margin: 0.55rem 0 1.5rem;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.72;
  letter-spacing: -0.07em;
  text-transform: none;
}

.making-room-panel h2 span {
  color: #7d7a44;
}

.making-room-panel .series-copy > p:not(.eyebrow) {
  max-width: 260px;
}

.series-artwork {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 13px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin: 0;
  font: 800 1rem Manrope;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.event-image {
  height: 120px;
  background-position: center;
  background-size: cover;
}

.event-one {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1000&q=80");
}

.event-two {
  background-image: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1000&q=80");
}

.event-three {
  background-image: url("https://images.unsplash.com/photo-1519491050282-cf00c82424b4?auto=format&fit=crop&w=1000&q=80");
}

.event-body {
  display: flex;
  gap: 18px;
  padding: 20px;
}

.event-body time {
  display: flex;
  flex: 0 0 52px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 62px;
  border: 2px solid var(--yellow);
  border-radius: 5px;
}

.event-body time strong {
  font-size: 1.15rem;
  line-height: 1;
}

.event-body time span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
}

.event-body h3 {
  margin: 0 0 5px;
  font: 800 1rem Manrope;
}

.event-body p {
  margin: 0 0 7px;
  color: #555;
  font-size: 0.82rem;
}

.event-body small {
  font-size: 0.7rem;
}

.next-steps {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  align-items: stretch;
  padding: 34px;
  overflow: hidden;
  background: linear-gradient(110deg, var(--soft), var(--blue));
  border-radius: 28px;
}

.next-steps h2 {
  margin: 0;
  padding: 12px 28px;
  font: 800 1.7rem / 1.15 Manrope;
}

.next-steps a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-left: 1px solid var(--line);
}

.next-steps a:hover {
  color: var(--gold);
}

.next-steps .next-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  font-size: 0;
}

.next-steps .next-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 8. Footer */
.footer {
  margin-top: 0;
  padding: 56px 0 24px;
  color: #fff;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.6fr;
  gap: 50px;
}

.footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 22px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer p {
  color: #d4d4d4;
  font-size: 0.83rem;
}

.footer h2 {
  margin: 0 0 16px;
  font: 800 0.75rem Manrope;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer a {
  margin-bottom: 7px;
  color: #eee;
  font-size: 0.82rem;
}

.footer a:hover {
  color: var(--yellow);
}

.footer-accreditation {
  display: block;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-accreditation p {
  max-width: 100%;
  margin: 0;
  color: #cfcfcf;
  font-size: 0.72rem;
  line-height: 1.65;
}

.legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-left: auto;
}

.footer-partner-logos a {
  display: flex;
  align-items: center;
}

.footer-partner-logos a img {
  display: block;
  width: auto;
  height: 25px;
  max-width: 180px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.footer-partner-logos a:hover img {
  opacity: 1;
  filter: brightness(0) invert(0.65);
}

/* 9. Shared responsive rules */
@media (max-width: 980px) {
  .site-menu {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-menu.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    margin-left: 0;
  }

  .main-nav {
    min-height: 78px;
    padding-block: 10px;
  }

  .brand img,
  .main-nav-wrap .brand img {
    width: 58px;
    max-height: 58px;
  }

  .hero.hero-photo-banner {
    min-height: 520px;
    background-position: 58% center;
  }

  .hero-banner-copy {
    padding: 68px 0 68px 30px;
  }

  .sunday-panel,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .sunday-details {
    padding: 38px;
  }

  .sunday-image {
    min-height: 300px;
    margin: 0 38px 38px;
  }

  .card-grid.three {
    grid-template-columns: 1fr 1fr;
  }

  .vision-panel {
    min-height: 360px;
  }

  .next-steps {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .next-steps h2 {
    grid-column: 1 / -1;
  }

  .next-steps a:nth-last-child(-n + 2) {
    margin-top: 10px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-partner-logos {
    justify-content: flex-start;
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .section {
    padding: 52px 0;
  }

  .utility-inner {
    height: auto;
    min-height: 38px;
    padding-block: 8px;
  }

  .utility-inner nav,
  .utility-socials {
    display: none;
  }

  .utility-sundays {
    line-height: 1.4;
    white-space: normal;
  }

  .utility-divider {
    display: none;
  }

  .main-nav {
    min-height: 70px;
    padding-block: 9px;
  }

  .brand img,
  .main-nav-wrap .brand img {
    width: 50px;
    max-height: 50px;
  }

  .site-menu {
    top: 70px;
  }

  .hero.hero-photo-banner {
    min-height: 530px;
    background-position: 58% center;
  }

  .hero.hero-photo-banner::before {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(0, 0, 0, 0.3);
  }

  .hero-banner-copy {
    padding: 62px 0 62px 22px;
  }

  .hero.hero-photo-banner h1 {
    font-size: 3.7rem;
  }

  .sunday-details {
    padding: 32px 26px;
  }

  .sunday-columns {
    grid-template-columns: 1fr;
  }

  .sunday-location {
    padding: 0 0 28px;
  }

  .sunday-location + .sunday-location {
    padding: 28px 0 0;
    border-top: 1px solid rgba(46, 46, 46, 0.15);
    border-left: 0;
  }

  .sunday-features {
    gap: 10px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
  }

  .sunday-image {
    min-height: 230px;
    margin: 0 24px 24px;
    background-position: center 30%;
  }

  .welcome-badge {
    bottom: 14px;
    left: 14px;
    padding: 9px 12px;
    font-size: 0.76rem;
  }

  .card-grid.three,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .vision-panel {
    grid-template-columns: 1fr;
  }

  .vision-panel img {
    height: 260px;
  }

  .series-panel {
    min-height: 420px;
  }

  .making-room-panel {
    grid-template-columns: 1fr 130px;
    gap: 16px;
    padding: 22px;
  }

  .next-steps {
    grid-template-columns: 1fr 1fr;
    padding: 18px;
  }

  .next-steps h2 {
    grid-column: 1 / -1;
  }

  .next-steps a {
    min-height: 105px;
  }

  .next-steps a:nth-child(even) {
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-partner-logos {
    gap: 18px 22px;
  }

  .footer-partner-logos a img {
    height: 20px;
  }
}
/* About page */
.site-menu .is-current{color:var(--gold)}
.about-hero{background:linear-gradient(115deg,var(--soft),var(--blue));padding:100px 0 88px;overflow:hidden}
.about-hero-inner{max-width:920px}
.about-hero h1{font:800 clamp(3rem,6vw,5.8rem)/.98 Manrope,sans-serif;letter-spacing:-.06em;margin:0 0 26px;max-width:900px}
.about-hero p:last-child{font-size:clamp(1.08rem,1.8vw,1.35rem);max-width:700px;margin:0;color:#3e3e3e}
.about-intro-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:56px;align-items:stretch}
.about-intro-copy h2,.pastors-copy h2,.practices-copy h2,.partners-card h2,.about-cta h2,.about-section-heading h2{font:800 clamp(2rem,3.5vw,3.4rem)/1.05 Manrope,sans-serif;letter-spacing:-.045em;margin:0 0 26px}
.about-intro-copy p,.pastors-copy p,.practices-copy p,.partners-copy p,.team-note p{color:#4d4d4d;font-size:1rem}
.about-city-image{min-height:560px;border-radius:28px;background:linear-gradient(180deg,rgba(0,0,0,.03),rgba(0,0,0,.22)),url('assets/MK_Boulevard.jpg') center/cover;box-shadow:var(--shadow)}
.about-pastors-section{padding-top:0}
.pastors-card{display:grid;grid-template-columns:.9fr 1.1fr;background:var(--black);color:#fff;border-radius:28px;overflow:hidden}
.pastors-image{min-height:520px;background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.22)),url('assets/Steve_Tammy.png') center/cover}
.pastors-copy{padding:58px;align-self:center}
.pastors-copy p{color:#d7d7d7}
.values-section{background:var(--soft)}
.about-section-heading{display:grid;grid-template-columns:1fr .9fr;gap:60px;align-items:end;margin-bottom:38px}
.about-section-heading blockquote{margin:0;padding:30px;border-left:4px solid var(--yellow);font:700 clamp(1.25rem,2vw,1.8rem)/1.35 Manrope,sans-serif;background:#fff;border-radius:0 18px 18px 0}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.values-grid article{background:#fff;border-radius:22px;padding:30px;border:1px solid var(--line)}
.values-grid article span{display:block;color:var(--gold);font:800 .75rem Manrope;margin-bottom:18px}
.values-grid h3{font:800 1.35rem Manrope;margin:0 0 12px}
.values-grid p{margin:0;color:#555;font-size:.92rem}
.practices-section{padding-top:72px}
.practices-card{display:grid;grid-template-columns:.8fr 1.2fr;border-radius:28px;overflow:hidden;background:linear-gradient(115deg,#111,#2a2a2a);color:#fff}
.practices-art{min-height:470px;display:grid;place-items:center;background:radial-gradient(circle at 50% 25%,rgba(248,205,70,.32),transparent 35%),linear-gradient(145deg,#c49807,#7d6305)}
.practices-art span{font:800 clamp(3rem,5vw,5rem)/.85 Manrope;text-align:center;letter-spacing:-.06em}
.practices-copy{padding:58px;align-self:center}
.practices-copy p{color:#d7d7d7}
.about-section-heading.compact{align-items:start}
.about-section-heading.compact>p{max-width:520px;color:#555;margin:8px 0 0}
.team-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:40px 28px;
    margin-top:48px;
}

.team-grid article{
    text-align:center;
}

.team-avatar{
    display:block;
    width:150px;
    height:auto;
    margin:0 auto 16px;
}

.team-grid h3{
    font:800 1rem Manrope,sans-serif;
    margin:0 0 4px;
}

.team-grid p{
    margin:0;
    color:#666;
    font-size:.82rem;
}

.team-note{
    margin-top:48px;
    padding:30px;
    background:var(--soft);
    border-radius:20px;
}

.team-note a{
    color:var(--gold);
    font-weight:700;
}

@media (max-width:1100px){
    .team-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media (max-width:800px){
    .team-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:500px){
    .team-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px 20px;
    }

    .team-avatar{
        width:120px;
    }
}
.partners-section{background:var(--blue)}
.partners-card{display:grid;grid-template-columns:.65fr 1.35fr;gap:70px}
.partners-copy p:first-child{margin-top:0}
.about-cta-section{padding:54px 0}
.about-cta{display:flex;align-items:center;justify-content:space-between;gap:30px;background:linear-gradient(110deg,var(--soft),var(--blue));padding:42px;border-radius:28px}
.about-cta h2{margin-bottom:0}
@media(max-width:980px){.about-intro-grid,.pastors-card,.practices-card,.partners-card{grid-template-columns:1fr}.about-city-image{min-height:400px}.pastors-image{min-height:420px}.values-grid{grid-template-columns:1fr 1fr}.team-grid{grid-template-columns:repeat(3,1fr)}.about-section-heading{grid-template-columns:1fr}.practices-art{min-height:330px}}
@media(max-width:700px){.about-hero{padding:70px 0 60px}.about-intro-grid{gap:30px}.about-city-image{min-height:300px}.pastors-copy,.practices-copy{padding:32px}.pastors-image{min-height:320px}.values-grid{grid-template-columns:1fr}.team-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:30px 16px}.team-avatar{width:min(120px,100%)}.about-section-heading{gap:20px}.partners-card{gap:24px}.about-cta{align-items:flex-start;flex-direction:column;padding:30px}.about-section-heading blockquote{padding:22px}}


/* Follow Jesus page */
.follow-hero{position:relative;min-height:560px;display:flex;align-items:center;color:#fff;background:url('assets/hero-follow.jpg') center 34%/cover no-repeat;overflow:hidden}
.follow-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.48) 52%,rgba(0,0,0,.16))}
.follow-hero-inner{position:relative;z-index:1;padding:90px 30px;max-width:1180px}
.follow-hero h1{font:800 clamp(3.5rem,7vw,6.5rem)/.92 Manrope,sans-serif;letter-spacing:-.065em;max-width:760px;margin:0 0 24px}
.follow-hero-inner>p:not(.eyebrow){max-width:600px;font-size:clamp(1.1rem,2vw,1.45rem);margin:0 0 30px}
.follow-start-section{background:var(--white)}
.follow-start-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:start}
.follow-start-copy h2,.follow-section-heading h2,.follow-alpha-copy h2,.follow-final-card h2{font:800 clamp(2.1rem,4vw,3.7rem)/1.02 Manrope,sans-serif;letter-spacing:-.05em;margin:0 0 24px}
.follow-start-copy>p{color:#4d4d4d}
.follow-lead{font-size:1.18rem;font-weight:600;color:var(--black)!important}
.follow-video-card{display:flex;align-items:center;justify-content:space-between;gap:22px;padding:20px 22px;background:var(--soft);border-radius:18px;margin:28px 0}
.follow-video-card>div{display:flex;align-items:center;gap:14px}
.follow-video-card strong,.follow-video-card small{display:block}
.follow-video-card small{color:#666;margin-top:3px}
.follow-play{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;background:var(--yellow);font-size:.9rem;padding-left:3px}
.prayer-card{background:linear-gradient(135deg,var(--soft),var(--blue));border-radius:28px;padding:42px;box-shadow:var(--shadow)}
.prayer-card blockquote{margin:0}
.prayer-card blockquote p{margin:0 0 13px;color:#303030}
.prayer-card .prayer-note{font-size:.82rem;color:#666;font-style:italic}
.follow-response{margin-top:42px;padding:30px 34px;border-radius:22px;background:var(--black);color:#fff;display:flex;align-items:center;justify-content:space-between;gap:30px}
.follow-response p{margin:0;max-width:820px;color:#eee}
.follow-steps-section{background:var(--soft)}
.follow-section-heading{display:grid;grid-template-columns:1fr .75fr;gap:60px;align-items:end;margin-bottom:38px}
.follow-section-heading>p{color:#555;margin:0 0 8px}
.follow-steps-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.follow-step-card{background:#fff;border:1px solid var(--line);border-radius:24px;padding:32px;position:relative}
.follow-step-number{position:absolute;top:28px;right:30px;color:var(--gold);font:800 .75rem Manrope}
.follow-step-icon{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;background:var(--blue);margin-bottom:22px}
.follow-step-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.follow-step-card h3{font:800 1.35rem Manrope;margin:0 0 14px}
.follow-step-card p{color:#555;margin:0 0 20px}
.follow-step-card>a{color:var(--gold);font-size:.75rem;text-transform:uppercase;letter-spacing:.04em;font-weight:800}
.follow-step-card p a{color:var(--gold);font-weight:700}
.follow-alpha-section{padding-top:72px}
.follow-alpha-card{display:grid;grid-template-columns:.95fr 1.05fr;border-radius:28px;overflow:hidden;background:linear-gradient(115deg,#111,#292929);color:#fff}
.follow-alpha-image{min-height:520px;background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.2)),url('assets/alpha.jpg') center/cover no-repeat}
.follow-alpha-copy{padding:58px;align-self:center}
.follow-alpha-copy h3{font:700 1.2rem Manrope;margin:0 0 16px;color:var(--yellow)}
.follow-alpha-copy p{color:#d7d7d7;margin-bottom:28px}
.follow-final-section{padding-top:0}
.follow-final-card{display:flex;align-items:center;justify-content:space-between;gap:40px;border-radius:28px;padding:44px;background:linear-gradient(110deg,var(--soft),var(--blue))}
.follow-final-card h2{margin-bottom:14px}
.follow-final-card p:last-child{margin:0;max-width:720px;color:#555}
@media(max-width:980px){.follow-start-grid,.follow-alpha-card{grid-template-columns:1fr}.follow-section-heading{grid-template-columns:1fr;gap:16px}.follow-alpha-image{min-height:360px}}
@media(max-width:700px){.follow-hero{min-height:520px;background-position:58% center}.follow-hero-inner{padding:70px 22px}.follow-start-grid{gap:30px}.prayer-card{padding:28px}.follow-video-card,.follow-response,.follow-final-card{align-items:flex-start;flex-direction:column}.follow-steps-grid{grid-template-columns:1fr}.follow-step-card{padding:28px}.follow-alpha-copy{padding:32px}.follow-alpha-image{min-height:280px}.follow-final-card{padding:30px}}


/* Next Steps page */
.next-page-hero{
  padding:104px 0 94px;
  background:
    radial-gradient(circle at 86% 12%,rgba(248,205,70,.55),transparent 25%),
    linear-gradient(115deg,var(--soft),var(--blue));
  overflow:hidden;
}
.next-page-hero-inner{max-width:900px}
.next-page-hero h1{
  font:800 clamp(4rem,8vw,7.2rem)/.9 Manrope,sans-serif;
  letter-spacing:-.07em;
  margin:0 0 26px;
}
.next-page-hero p:last-child{
  max-width:760px;
  margin:0;
  color:#3f3f3f;
  font-size:clamp(1.08rem,1.8vw,1.35rem);
}
.next-page-heading{
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:70px;
  align-items:end;
  margin-bottom:40px;
}
.next-page-heading h2,
.next-page-final-card h2{
  font:800 clamp(2.1rem,4vw,3.7rem)/1.02 Manrope,sans-serif;
  letter-spacing:-.05em;
  margin:0;
}
.next-page-heading>p{
  margin:0;
  color:#555;
  font-size:1.04rem;
  max-width:520px;
}
.next-page-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.next-page-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:30px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:0 10px 28px rgba(27,27,27,.045);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.next-page-card:hover{
  transform:translateY(-4px);
  border-color:rgba(196,152,7,.45);
  box-shadow:0 18px 36px rgba(27,27,27,.08);
}
.next-page-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:28px;
}
.next-page-number{
  color:var(--gold);
  font:800 .72rem Manrope,sans-serif;
  letter-spacing:.08em;
}
.next-page-icon{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--blue);
}
.next-page-icon svg{
  width:25px;
  height:25px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.55;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.next-page-card h2{
  font:800 1.42rem/1.12 Manrope,sans-serif;
  margin:0 0 14px;
}
.next-page-card p{
  margin:0 0 24px;
  color:#555;
  font-size:.91rem;
  flex:1;
}
.next-page-card>a{
  color:var(--gold);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.035em;
  text-transform:uppercase;
}
.next-page-card>a:hover{color:var(--black)}
.next-page-final-section{padding-top:0}
.next-page-final-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:44px;
  border-radius:28px;
  background:linear-gradient(110deg,var(--soft),var(--blue));
}
.next-page-final-card p:last-child{
  max-width:690px;
  margin:16px 0 0;
  color:#555;
}
@media(max-width:980px){
  .next-page-grid{grid-template-columns:repeat(2,1fr)}
  .next-page-heading{grid-template-columns:1fr;gap:18px}
}
@media(max-width:700px){
  .next-page-hero{padding:72px 0 64px}
  .next-page-hero h1{font-size:4rem}
  .next-page-grid{grid-template-columns:1fr}
  .next-page-card{padding:26px}
  .next-page-final-card{align-items:flex-start;flex-direction:column;padding:30px}
}

/* Sundays page */
.sundays-page-hero{position:relative;min-height:570px;display:flex;align-items:center;color:#fff;background:url('assets/hero-sunday-2.png') center 20%/cover no-repeat}
.sundays-page-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.5) 52%,rgba(0,0,0,.12))}
.sundays-page-hero-inner{position:relative;z-index:1;padding:90px 30px}
.sundays-page-hero h1{font:800 clamp(3.7rem,7vw,6.7rem)/.92 Manrope,sans-serif;letter-spacing:-.065em;margin:0 0 24px;max-width:780px}
.sundays-page-hero-inner>p:not(.eyebrow){max-width:670px;font-size:clamp(1.08rem,1.8vw,1.4rem);margin:0 0 30px}
.sundays-page-heading{display:grid;grid-template-columns:1fr .85fr;gap:70px;align-items:end;margin-bottom:38px}
.sundays-page-heading h2,.table-sunday-copy h2,.sundays-family-copy h2,.sundays-listen-card h2,.sundays-final-card h2{font:800 clamp(2.1rem,4vw,3.7rem)/1.02 Manrope,sans-serif;letter-spacing:-.05em;margin:0}
.sundays-page-heading>p{margin:0;color:#555;max-width:560px}
.sundays-location-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.sundays-location-card{padding:42px;border-radius:26px;background:linear-gradient(120deg,var(--soft),var(--blue));border:1px solid rgba(49,116,185,.14)}
.sundays-location-time{display:block;font:800 clamp(2.7rem,5vw,4.6rem)/1 Manrope,sans-serif;letter-spacing:-.055em;color:var(--black);margin-bottom:18px}
.sundays-location-card h3{font:800 1.55rem/1.1 Manrope,sans-serif;margin:0 0 10px}
.sundays-location-address{color:#474747;margin:0 0 28px}
.sundays-expect-section{background:var(--soft)}
.sundays-expect-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.sundays-expect-grid article{background:#fff;border:1px solid var(--line);border-radius:24px;padding:32px}
.sundays-expect-icon{width:50px;height:50px;border-radius:50%;display:grid;place-items:center;background:var(--yellow);font:800 1.25rem Manrope;margin-bottom:22px}
.sundays-expect-grid h3{font:800 1.35rem Manrope;margin:0 0 13px}
.sundays-expect-grid p{margin:0;color:#555}
.table-sunday-section{padding-top:72px}
.table-sunday-card{display:grid;grid-template-columns:.95fr 1.05fr;border-radius:28px;overflow:hidden;background:var(--black);color:#fff}
.table-sunday-image{min-height:590px;background:linear-gradient(180deg,rgba(0,0,0,.03),rgba(0,0,0,.18)),url('assets/table-sunday.jpg') center/cover no-repeat}
.table-sunday-copy{padding:58px;align-self:center}
.table-sunday-copy h2{margin-bottom:24px}
.table-sunday-copy p{color:#d5d5d5}
.sundays-family-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.sundays-family-card{border:1px solid var(--line);border-radius:26px;overflow:hidden;background:#fff}
.sundays-family-image{height:300px;background-size:cover;background-position:center}
.kids-card .sundays-family-image{background-image:url('assets/kids.jpg')}
.youth-card .sundays-family-image{background-image:url('assets/youth.jpg')}
.sundays-family-copy{padding:34px}
.sundays-family-copy h2{font-size:clamp(1.8rem,3vw,2.8rem);margin-bottom:16px}
.sundays-family-copy p{color:#555;margin:0 0 22px}
.sundays-family-copy a{color:var(--gold);font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.sundays-listen-section{padding-top:0}
.sundays-listen-card,.sundays-final-card{display:flex;align-items:center;justify-content:space-between;gap:40px;padding:44px;border-radius:28px;background:linear-gradient(110deg,var(--soft),var(--blue))}
.sundays-listen-card h2,.sundays-final-card h2{margin-bottom:14px}
.sundays-listen-card p:last-child,.sundays-final-card p:last-child{max-width:690px;margin:0;color:#555}
.sundays-final-section{padding-top:0}
@media(max-width:980px){.sundays-page-heading{grid-template-columns:1fr;gap:18px}.table-sunday-card{grid-template-columns:1fr}.table-sunday-image{min-height:390px}}
@media(max-width:700px){.sundays-page-hero{min-height:520px;background-position:58% center}.sundays-page-hero-inner{padding:70px 22px}.sundays-location-grid,.sundays-expect-grid,.sundays-family-grid{grid-template-columns:1fr}.sundays-location-card,.sundays-expect-grid article{padding:28px}.table-sunday-image{min-height:290px}.table-sunday-copy,.sundays-family-copy{padding:30px}.sundays-listen-card,.sundays-final-card{align-items:flex-start;flex-direction:column;padding:30px}.sundays-family-image{height:240px}}


/* Community page */
.community-hero{position:relative;min-height:570px;display:flex;align-items:center;color:#fff;background:url('assets/hero_citygroups.png') center 42%/cover no-repeat}
.community-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.48) 54%,rgba(0,0,0,.14))}
.community-hero-inner{position:relative;z-index:1;padding:90px 30px}
.community-hero h1{font:800 clamp(3.8rem,7vw,6.8rem)/.92 Manrope,sans-serif;letter-spacing:-.065em;margin:0 0 24px;max-width:780px}
.community-hero-inner>p:not(.eyebrow){max-width:660px;font-size:clamp(1.08rem,1.8vw,1.4rem);margin:0 0 30px}
.community-intro-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:stretch}
.community-intro-copy{align-self:center}
.community-intro-copy h2,.community-find-copy h2,.community-page-heading h2,.community-electives-copy h2,.community-final-card h2{font:800 clamp(2.1rem,4vw,3.7rem)/1.02 Manrope,sans-serif;letter-spacing:-.05em;margin:0 0 24px}
.community-intro-copy p,.community-find-copy p,.community-option-card p,.community-electives-copy p,.community-final-card p{color:#555}
.community-intro-image{min-height:520px;border-radius:28px;background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.16)),url('assets/city-group.png') center/cover no-repeat;box-shadow:var(--shadow)}
.community-find-section{padding-top:0}
.community-find-card{display:grid;grid-template-columns:1.2fr .8fr;gap:30px;padding:42px;border-radius:28px;background:linear-gradient(115deg,var(--soft),var(--blue))}
.community-find-copy{align-self:center}
.community-proposal-card{padding:30px;border-radius:22px;background:#fff;border:1px solid rgba(49,116,185,.15)}
.community-proposal-icon,.community-option-icon{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;background:var(--yellow);margin-bottom:22px}
.community-proposal-icon svg,.community-option-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.community-proposal-card h3,.community-option-card h3{font:800 1.35rem Manrope,sans-serif;margin:0 0 13px}
.community-proposal-card p{color:#555;margin:0 0 20px}
.community-proposal-card>a,.community-option-card>a{color:var(--gold);font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.community-other-section{background:var(--soft)}
.community-page-heading{display:grid;grid-template-columns:1fr .8fr;gap:70px;align-items:end;margin-bottom:38px}
.community-page-heading h2{margin-bottom:0}
.community-page-heading>p{margin:0;color:#555;max-width:520px}
.community-options-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.community-option-card{display:flex;flex-direction:column;padding:32px;border-radius:24px;background:#fff;border:1px solid var(--line)}
.community-option-card p{font-size:.92rem}
.community-option-card>a{margin-top:auto;padding-top:10px}
.community-detail{font-weight:700;color:var(--black)!important}
.community-coming-soon{display:inline-flex;align-self:flex-start;margin-top:auto;padding:7px 12px;border-radius:999px;background:var(--blue);font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em}
.community-electives-section{padding-top:72px}
.community-electives-card{display:grid;grid-template-columns:.8fr 1.2fr;border-radius:28px;overflow:hidden;background:var(--black);color:#fff}
.community-electives-art{min-height:470px;display:grid;place-items:center;background:radial-gradient(circle at 40% 25%,rgba(197,248,255,.38),transparent 34%),linear-gradient(145deg,#3174b9,#173d65)}
.community-electives-art span{font:800 clamp(3.2rem,5.5vw,5.7rem)/.83 Manrope,sans-serif;letter-spacing:-.065em;text-align:center}
.community-electives-copy{padding:58px;align-self:center}
.community-electives-copy p{color:#d7d7d7}
.community-final-section{padding-top:0}
.community-final-card{display:flex;align-items:center;justify-content:space-between;gap:40px;padding:44px;border-radius:28px;background:linear-gradient(110deg,var(--soft),var(--blue))}
.community-final-card h2{margin-bottom:14px}
.community-final-card p{max-width:690px;margin:0}
@media(max-width:980px){.community-intro-grid,.community-find-card,.community-electives-card{grid-template-columns:1fr}.community-page-heading{grid-template-columns:1fr;gap:18px}.community-options-grid{grid-template-columns:1fr 1fr}.community-intro-image{min-height:390px}.community-electives-art{min-height:330px}}
@media(max-width:700px){.community-hero{min-height:520px;background-position:58% center}.community-hero-inner{padding:70px 22px}.community-intro-grid{gap:30px}.community-intro-image{min-height:290px}.community-find-card{padding:30px}.community-options-grid{grid-template-columns:1fr}.community-option-card{padding:28px}.community-electives-copy{padding:32px}.community-electives-art{min-height:280px}.community-final-card{align-items:flex-start;flex-direction:column;padding:30px}}


/* Give page */
.give-hero{position:relative;min-height:530px;display:flex;align-items:center;color:#fff;background:url('assets/hero_give.png') center 20%/cover no-repeat}
.give-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.84),rgba(0,0,0,.52) 52%,rgba(0,0,0,.15))}
.give-hero-inner{position:relative;z-index:1;padding:90px 30px}
.give-hero h1{font:800 clamp(4rem,8vw,7.2rem)/.9 Manrope,sans-serif;letter-spacing:-.07em;margin:0 0 22px}
.give-hero-inner>p:not(.eyebrow){font-size:clamp(1.15rem,2vw,1.45rem);margin:0 0 30px}
.give-intro-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:start}
.give-intro-copy h2,.give-page-heading h2,.gift-aid-copy h2,.accounts-copy h2,.give-final-card h2{font:800 clamp(2.15rem,4vw,3.8rem)/1.02 Manrope,sans-serif;letter-spacing:-.052em;margin:0 0 26px}
.give-intro-copy blockquote{margin:32px 0 0;padding:30px;border-left:5px solid var(--yellow);background:var(--soft);border-radius:0 22px 22px 0}
.give-intro-copy blockquote p{font:700 clamp(1.15rem,2vw,1.55rem)/1.45 Manrope,sans-serif;margin:0 0 16px}
.give-intro-copy cite{font-style:normal;color:var(--gold);font-weight:800}
.give-intro-text p,.give-method-card p,.gift-aid-copy p,.accounts-copy p,.give-final-card p{color:#555}
.give-intro-text{font-size:1.08rem;padding-top:34px}
.give-methods-section{background:var(--soft)}
.give-page-heading{display:grid;grid-template-columns:1fr .8fr;gap:70px;align-items:end;margin-bottom:38px}
.give-page-heading h2{margin-bottom:0}
.give-page-heading>p{margin:0;color:#555;max-width:530px}
.give-methods-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:22px;align-items:stretch}
.give-method-card{display:flex;flex-direction:column;padding:32px;border:1px solid var(--line);border-radius:24px;background:#fff}
.give-method-card h3{font:800 1.4rem/1.15 Manrope,sans-serif;margin:0 0 16px}
.give-method-card .button{align-self:flex-start;margin-top:auto}
.give-method-icon{width:54px;height:54px;border-radius:50%;display:grid;place-items:center;background:var(--yellow);margin-bottom:22px}
.give-method-icon svg{width:28px;height:28px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.give-bank-card{background:linear-gradient(125deg,var(--blue),#eefcff)}
.bank-details{margin:18px 0 0}
.bank-details div{display:grid;grid-template-columns:130px 1fr;gap:16px;padding:12px 0;border-top:1px solid rgba(27,27,27,.13)}
.bank-details dt{font-size:.72rem;text-transform:uppercase;letter-spacing:.05em;font-weight:800;color:#555}
.bank-details dd{margin:0;font-weight:700;word-break:break-word}
.gift-aid-section{padding-top:72px}
.gift-aid-card{display:grid;grid-template-columns:130px 1fr auto;gap:38px;align-items:center;padding:42px;border-radius:28px;background:linear-gradient(110deg,var(--soft),var(--blue))}
.gift-aid-mark{width:112px;height:112px;border-radius:50%;display:grid;place-items:center;background:var(--yellow);font:800 2.15rem Manrope,sans-serif}
.gift-aid-copy h2{margin-bottom:15px}
.gift-aid-copy p{margin:0;max-width:700px}
.accounts-section{padding-top:0}
.accounts-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:start}
.accounts-links{display:grid;gap:12px}
.accounts-links a{display:grid;grid-template-columns:90px 1fr auto;gap:18px;align-items:center;padding:22px 24px;border:1px solid var(--line);border-radius:18px;background:#fff;transition:.2s ease}
.accounts-links a:hover{transform:translateY(-2px);border-color:rgba(196,152,7,.5);box-shadow:0 12px 28px rgba(27,27,27,.07)}
.accounts-links span{color:var(--gold);font-weight:800}
.accounts-links strong{font:800 1rem Manrope,sans-serif}
.accounts-links b{font-size:1.2rem;color:var(--gold)}
.give-final-section{padding-top:0}
.give-final-card{display:flex;align-items:center;justify-content:space-between;gap:40px;padding:44px;border-radius:28px;background:var(--black);color:#fff}
.give-final-card h2{margin-bottom:14px}
.give-final-card p{color:#d5d5d5;max-width:680px;margin:0}
@media(max-width:980px){.give-intro-grid,.give-page-heading,.accounts-grid{grid-template-columns:1fr;gap:28px}.give-methods-grid{grid-template-columns:1fr 1fr}.give-bank-card{grid-column:1/-1}.gift-aid-card{grid-template-columns:110px 1fr}.gift-aid-card .button{grid-column:2}.give-intro-text{padding-top:0}}
@media(max-width:700px){.give-hero{min-height:500px;background-position:58% center}.give-hero-inner{padding:70px 22px}.give-methods-grid{grid-template-columns:1fr}.give-bank-card{grid-column:auto}.give-method-card{padding:28px}.bank-details div{grid-template-columns:1fr;gap:4px}.gift-aid-card{grid-template-columns:1fr;padding:30px}.gift-aid-mark{width:90px;height:90px}.gift-aid-card .button{grid-column:auto;justify-self:start}.accounts-links a{grid-template-columns:1fr auto}.accounts-links span{grid-column:1/-1}.give-final-card{align-items:flex-start;flex-direction:column;padding:30px}}


/* Serve page */
.serve-hero{position:relative;min-height:550px;display:flex;align-items:center;color:#fff;background:url('assets/hero-serve.jpg') center 38%/cover no-repeat}
.serve-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.84),rgba(0,0,0,.52) 54%,rgba(0,0,0,.14))}
.serve-hero-inner{position:relative;z-index:1;padding:90px 30px}
.serve-hero h1{font:800 clamp(4rem,8vw,7.2rem)/.9 Manrope,sans-serif;letter-spacing:-.07em;margin:0 0 22px}
.serve-hero-inner>p:not(.eyebrow){max-width:650px;font-size:clamp(1.12rem,2vw,1.45rem);margin:0 0 30px}
.serve-intro-grid{display:grid;grid-template-columns:1fr .95fr;gap:58px;align-items:stretch}
.serve-intro-copy{align-self:center}
.serve-intro-copy h2,.serve-page-heading h2,.serve-multiplication-copy h2,.serve-worldvision-card h2{font:800 clamp(2.15rem,4vw,3.8rem)/1.02 Manrope,sans-serif;letter-spacing:-.052em;margin:0 0 24px}
.serve-intro-copy p,.serve-action-card p,.serve-city-intro p,.serve-city-grid p,.serve-multiplication-copy p,.serve-worldvision-card p{color:#555}
.serve-intro-image{min-height:500px;border-radius:28px;background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.16)),url('assets/serve-team.png') center 48%/cover no-repeat;box-shadow:var(--shadow)}
.serve-actions-section{background:var(--soft)}
.serve-page-heading{display:grid;grid-template-columns:1fr .8fr;gap:70px;align-items:end;margin-bottom:38px}
.serve-page-heading h2{margin-bottom:0}
.serve-page-heading>p{margin:0;color:#555;max-width:540px}
.serve-action-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.serve-action-card{display:flex;flex-direction:column;padding:32px;border-radius:24px;background:#fff;border:1px solid var(--line)}
.serve-action-icon{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;background:var(--yellow);margin-bottom:22px}
.serve-action-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.serve-action-card h3,.serve-city-grid h3{font:800 1.35rem Manrope,sans-serif;margin:0 0 13px}
.serve-action-card p{font-size:.91rem;flex:1}
.serve-action-card>a{margin-top:auto;padding-top:10px;color:var(--gold);font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.serve-city-section{padding-top:72px}
.serve-city-intro{display:grid;grid-template-columns:1fr 1fr;gap:30px;margin-bottom:30px}
.serve-city-intro p{margin:0}
.serve-city-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.serve-city-grid article{padding:30px;border-radius:22px;background:linear-gradient(120deg,var(--soft),var(--blue));border:1px solid rgba(49,116,185,.12)}
.serve-city-grid article>span{display:block;color:var(--gold);font:800 .75rem Manrope;margin-bottom:18px}
.serve-city-grid p{font-size:.9rem;margin:0}
.serve-city-button{margin-top:28px}
.serve-multiplication-section{padding-top:0}
.serve-multiplication-card{display:grid;grid-template-columns:.8fr 1.2fr;border-radius:28px;overflow:hidden;background:var(--black);color:#fff}
.serve-multiplication-art{min-height:500px;display:grid;place-items:center;background:radial-gradient(circle at 45% 28%,rgba(248,205,70,.42),transparent 34%),linear-gradient(145deg,#c49807,#6f5704)}
.serve-multiplication-art span{font:800 clamp(3.3rem,6vw,6.2rem)/.84 Manrope,sans-serif;letter-spacing:-.07em;transform:rotate(-6deg)}
.serve-multiplication-copy{padding:58px;align-self:center}
.serve-multiplication-copy p{color:#d5d5d5}
.serve-multiplication-copy p a{color:var(--yellow);text-decoration:underline;text-underline-offset:3px}
.serve-worldvision-section{padding-top:0}
.serve-worldvision-card{display:flex;align-items:center;justify-content:space-between;gap:45px;padding:44px;border-radius:28px;background:linear-gradient(110deg,var(--soft),var(--blue))}
.serve-worldvision-card h2{margin-bottom:16px}
.serve-worldvision-card p{max-width:760px;margin:0}
@media(max-width:980px){.serve-intro-grid,.serve-multiplication-card{grid-template-columns:1fr}.serve-page-heading{grid-template-columns:1fr;gap:18px}.serve-action-grid,.serve-city-grid{grid-template-columns:1fr 1fr}.serve-intro-image{min-height:380px}.serve-multiplication-art{min-height:330px}}
@media(max-width:700px){.serve-hero{min-height:520px;background-position:58% center}.serve-hero-inner{padding:70px 22px}.serve-intro-grid{gap:30px}.serve-intro-image{min-height:290px}.serve-action-grid,.serve-city-grid,.serve-city-intro{grid-template-columns:1fr}.serve-action-card,.serve-city-grid article{padding:28px}.serve-multiplication-copy{padding:32px}.serve-multiplication-art{min-height:280px}.serve-worldvision-card{align-items:flex-start;flex-direction:column;padding:30px}}

/* For the City page */
.city-hero{position:relative;min-height:620px;display:flex;align-items:center;color:#fff;background:url('assets/MK_Boulevard.jpg') center 42%/cover no-repeat}
.city-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.85),rgba(0,0,0,.56) 58%,rgba(0,0,0,.18))}
.city-hero-inner{position:relative;z-index:1;padding:100px 30px;max-width:980px}
.city-hero h1{font:800 clamp(4rem,8vw,7.4rem)/.9 Manrope,sans-serif;letter-spacing:-.072em;margin:0 0 30px;max-width:900px}
.city-hero blockquote{max-width:740px;margin:0 0 12px;font:600 clamp(1.15rem,2vw,1.55rem)/1.45 Manrope,sans-serif;color:#f4f4f4}
.city-verse{margin:0;color:var(--yellow);font-weight:800}
.city-intro-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:72px;align-items:start}
.city-intro-copy h2,.city-page-heading h2,.city-vision-copy h2,.storehouse-copy h2,.city-final-card h2{font:800 clamp(2.15rem,4vw,3.9rem)/1.02 Manrope,sans-serif;letter-spacing:-.052em;margin:0 0 26px}
.city-intro-text p,.storehouse-copy p,.city-partners-copy p,.city-partner-grid p,.city-giving-intro p,.city-give-card p,.city-final-card p{color:#555}
.city-intro-text{font-size:1.03rem}
.city-intro-text p:first-child{margin-top:0}
.city-vision-section{padding-top:0}
.city-vision-card{display:grid;grid-template-columns:1.1fr .9fr;min-height:470px;border-radius:28px;overflow:hidden;background:var(--black);color:#fff}
.city-vision-art{background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.24)),url('assets/forthecity_teaching.png') center/cover no-repeat}
.city-vision-copy{padding:58px;align-self:center}
.city-vision-copy p:not(.eyebrow){color:#d5d5d5;max-width:520px}
.storehouse-section{padding-top:0}
.storehouse-card{display:grid;grid-template-columns:1.25fr .75fr;border-radius:28px;overflow:hidden;background:linear-gradient(115deg,var(--soft),var(--blue))}
.storehouse-copy{padding:56px}
.storehouse-mark{min-height:440px;display:grid;place-items:center;background:radial-gradient(circle at 50% 30%,rgba(248,205,70,.52),transparent 38%),linear-gradient(145deg,#c49807,#6f5704);color:#fff}
.storehouse-mark span{font:800 clamp(3.2rem,6vw,5.8rem)/.82 Manrope,sans-serif;letter-spacing:-.07em;text-align:center;transform:rotate(-5deg)}
.city-partners-section{background:var(--soft)}
.city-page-heading{display:grid;grid-template-columns:1fr .8fr;gap:70px;align-items:end;margin-bottom:30px}
.city-page-heading h2{margin-bottom:0}
.city-page-heading>p{margin:0;color:#555;max-width:530px}
.city-partners-copy{display:grid;grid-template-columns:1fr 1fr;gap:30px;margin-bottom:28px}
.city-partners-copy p{margin:0}
.city-partner-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.city-partner-grid article{padding:30px;border-radius:22px;background:#fff;border:1px solid var(--line)}
.city-partner-grid article>span,.city-give-number{display:block;color:var(--gold);font:800 .75rem Manrope;margin-bottom:18px}
.city-partner-grid h3,.city-give-card h3{font:800 1.35rem Manrope,sans-serif;margin:0 0 13px}
.city-partner-grid p{font-size:.9rem;margin:0}
.city-signup-button{margin-top:28px}
.city-giving-section{padding-top:72px}
.city-giving-intro{display:grid;grid-template-columns:1fr 1fr;gap:30px;margin-bottom:30px}
.city-giving-intro p{margin:0}
.city-giving-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:22px}
.city-give-card{display:flex;flex-direction:column;padding:32px;border-radius:24px;background:#fff;border:1px solid var(--line)}
.city-bank-card{background:linear-gradient(125deg,var(--blue),#eefcff)}
.city-give-card .button{align-self:flex-start;margin-top:auto}
.city-final-section{padding-top:0}
.city-final-card{display:flex;align-items:center;justify-content:space-between;gap:45px;padding:46px;border-radius:28px;background:var(--black);color:#fff}
.city-final-card h2{margin-bottom:14px}
.city-final-card p{color:#d5d5d5;max-width:730px;margin:0}
@media(max-width:980px){.city-intro-grid,.city-vision-card,.storehouse-card{grid-template-columns:1fr}.city-page-heading{grid-template-columns:1fr;gap:18px}.city-partner-grid,.city-giving-grid{grid-template-columns:1fr 1fr}.city-bank-card{grid-column:1/-1}.city-vision-art,.storehouse-mark{min-height:340px}}
@media(max-width:700px){.city-hero{min-height:560px;background-position:58% center}.city-hero-inner{padding:76px 22px}.city-intro-grid{gap:30px}.city-vision-copy,.storehouse-copy{padding:32px}.city-vision-art,.storehouse-mark{min-height:280px}.city-partners-copy,.city-giving-intro,.city-partner-grid,.city-giving-grid{grid-template-columns:1fr}.city-bank-card{grid-column:auto}.city-partner-grid article,.city-give-card{padding:28px}.city-final-card{align-items:flex-start;flex-direction:column;padding:30px}}


/* ===== CITY PARTNERS ===== */
.partners-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:22px;margin-top:40px}
.partner-card{position:relative;display:block;overflow:hidden;border-radius:18px;aspect-ratio:1;box-shadow:0 12px 32px rgba(0,0,0,.08)}
.partner-card img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.partner-overlay{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:linear-gradient(rgba(0,0,0,.18),rgba(0,0,0,.45));transition:background .3s ease}
.partner-overlay h3{color:#fff;font:800 clamp(1.3rem,2vw,2rem)/1.05 Manrope,sans-serif;text-align:center;margin:0;padding:20px}
.partner-card:hover img{transform:scale(1.06)}
.partner-card:hover .partner-overlay{background:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.25))}
@media(max-width:1100px){.partners-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:700px){.partners-grid{grid-template-columns:repeat(2,1fr)}}


/* Say Hello page */
.utility-links .is-current{color:var(--yellow)}
.contact-hero{position:relative;min-height:470px;display:flex;align-items:center;color:#fff;background:linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.46) 62%,rgba(0,0,0,.16)),url('assets/welcome.jpg') center 36%/cover no-repeat}
.contact-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.18),transparent)}
.contact-hero-inner{position:relative;z-index:1;padding:90px 30px}
.contact-hero h1{font:800 clamp(4rem,8vw,7rem)/.9 Manrope,sans-serif;letter-spacing:-.07em;margin:0 0 20px}
.contact-hero-inner>p:not(.eyebrow){font-size:clamp(1.1rem,2vw,1.4rem);margin:0}
.contact-layout{display:grid;grid-template-columns:.82fr 1.18fr;gap:28px;align-items:start}
.contact-details-card,.contact-form-card{border-radius:28px;padding:44px}
.contact-details-card{background:linear-gradient(130deg,var(--soft),var(--blue));position:sticky;top:112px}
.contact-form-card{background:#fff;border:1px solid var(--line);box-shadow:var(--shadow)}
.contact-details-card h2,.contact-form-card h2,.contact-visit-card h2{font:800 clamp(2rem,3.5vw,3.3rem)/1.04 Manrope,sans-serif;letter-spacing:-.045em;margin:0 0 22px}
.contact-details-card>p:not(.eyebrow){color:#555;margin-bottom:32px}
.contact-details-list{display:grid;gap:22px}
.contact-detail{display:grid;grid-template-columns:48px 1fr;gap:15px;align-items:start;padding-top:22px;border-top:1px solid rgba(27,27,27,.12)}
.contact-detail-icon{width:44px;height:44px;border-radius:50%;display:grid;place-items:center;background:#fff}
.contact-detail-icon svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.contact-detail small{display:block;color:#666;font-size:.7rem;text-transform:uppercase;letter-spacing:.06em;font-weight:800;margin-bottom:4px}
.contact-detail a{font-weight:700}
.contact-detail address{font-style:normal;color:#333;font-size:.9rem}
.contact-form{display:grid;gap:20px}
.form-grid-two{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.form-field{display:grid;gap:8px}
.form-field label,.form-consent label{font-size:.82rem;font-weight:700}
.form-field input,.form-field select,.form-field textarea{width:100%;border:1px solid rgba(27,27,27,.22);border-radius:12px;background:#fff;color:var(--black);font:inherit;padding:13px 14px;outline:none;transition:border-color .2s ease,box-shadow .2s ease}
.form-field textarea{resize:vertical;min-height:150px}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(196,152,7,.16)}
.form-consent{display:grid;grid-template-columns:20px 1fr;gap:10px;align-items:start}
.form-consent input{width:18px;height:18px;margin:2px 0 0;accent-color:var(--gold)}
.contact-form .button{justify-self:start;border:0;cursor:pointer}
.form-note{margin:0;color:#777;font-size:.74rem}
.form-status{margin:0;font-size:.82rem;font-weight:700;color:var(--gold)}
.contact-visit-section{padding-top:0}
.contact-visit-card{display:flex;align-items:center;justify-content:space-between;gap:40px;padding:44px;border-radius:28px;background:var(--black);color:#fff}
.contact-visit-card h2{margin-bottom:12px}
.contact-visit-card p:not(.eyebrow){color:#d5d5d5;margin:0}
@media(max-width:980px){.contact-layout{grid-template-columns:1fr}.contact-details-card{position:static}.contact-hero{min-height:430px}}
@media(max-width:700px){.contact-hero{min-height:430px;background-position:58% center}.contact-hero-inner{padding:70px 22px}.contact-details-card,.contact-form-card{padding:30px}.form-grid-two{grid-template-columns:1fr}.contact-visit-card{align-items:flex-start;flex-direction:column;padding:30px}}


/* Kids page */
.site-menu .is-current{color:var(--gold)}
.kids-hero{position:relative;min-height:570px;display:flex;align-items:center;color:#fff;background:url('assets/hero-kids.png') center 38%/cover no-repeat}
.kids-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.54) 48%,rgba(0,0,0,.14) 82%)}
.kids-hero-inner{position:relative;z-index:1;padding:92px 30px}
.kids-hero h1{font:800 clamp(3.8rem,7vw,6.5rem)/.9 Manrope,sans-serif;letter-spacing:-.065em;margin:0 0 24px;max-width:750px}
.kids-hero-inner>p:not(.eyebrow){font-size:clamp(1.1rem,2vw,1.42rem);line-height:1.55;max-width:650px;margin:0 0 30px}
.kids-intro-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:54px;align-items:center}
.kids-intro-copy h2,.kids-section-heading h2,.kids-team-copy h2,.kids-register-card h2{font:800 clamp(2rem,3.8vw,3.5rem)/1.04 Manrope,sans-serif;letter-spacing:-.045em;margin:0 0 24px}
.kids-intro-copy>p:not(.eyebrow),.kids-team-copy p,.kids-register-card p{color:#515151;font-size:1rem}
.kids-intro-art{min-height:380px;border-radius:28px;padding:42px;display:flex;flex-direction:column;justify-content:center;gap:16px;background:linear-gradient(135deg,var(--yellow),var(--gold));box-shadow:var(--shadow)}
.kids-intro-art span{display:block;color:#fff;font:800 clamp(2rem,4vw,3.8rem)/.95 Manrope,sans-serif;letter-spacing:-.055em}
.kids-intro-art span:nth-child(2){margin-left:9%}
.kids-intro-art span:nth-child(3){margin-left:18%}
.kids-goal-section{background:var(--soft)}
.kids-goal-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.kids-goal-grid article{padding:34px;border:1px solid var(--line);border-radius:24px;background:#fff}
.kids-goal-grid article>span{display:block;color:var(--gold);font:800 .76rem Manrope,sans-serif;margin-bottom:20px}
.kids-goal-grid h3{font:800 1.4rem Manrope,sans-serif;margin:0 0 14px}
.kids-goal-grid p{margin:0;color:#555;font-size:.92rem}
.kids-section-heading{display:grid;grid-template-columns:1fr .8fr;gap:58px;align-items:end;margin-bottom:34px}
.kids-section-heading h2{margin-bottom:0}
.kids-section-heading>p{margin:0;color:#555;max-width:520px}
.kids-info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.kids-info-card{padding:34px;border-radius:24px;background:linear-gradient(135deg,#fff,var(--soft));border:1px solid var(--line)}
.kids-info-icon{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;background:var(--blue);margin-bottom:22px}
.kids-info-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.kids-info-card h3{font:800 1.35rem Manrope,sans-serif;margin:0 0 13px}
.kids-info-card p{margin:0;color:#555;font-size:.9rem}
.kids-team-section{padding-top:0}
.kids-team-card{display:grid;grid-template-columns:.9fr 1.1fr;overflow:hidden;border-radius:28px;background:var(--black);color:#fff}
.kids-team-image{min-height:470px;background:url('assets/kids.jpg') center 42%/cover no-repeat}
.kids-team-copy{padding:56px;align-self:center}
.kids-team-copy p{color:#d5d5d5;margin-bottom:28px}
.kids-register-section{padding-top:0}
.kids-register-card{display:flex;align-items:center;justify-content:space-between;gap:44px;padding:46px;border-radius:28px;background:linear-gradient(110deg,var(--soft),var(--blue))}
.kids-register-card h2{margin-bottom:12px}
.kids-register-card p{margin:0}
@media(max-width:980px){.kids-intro-grid,.kids-team-card{grid-template-columns:1fr}.kids-goal-grid,.kids-info-grid{grid-template-columns:1fr 1fr}.kids-section-heading{grid-template-columns:1fr;gap:18px}.kids-team-image{min-height:380px}}
@media(max-width:700px){.kids-hero{min-height:520px;background-position:58% center}.kids-hero-inner{padding:76px 22px}.kids-intro-grid{gap:30px}.kids-intro-art{min-height:300px;padding:30px}.kids-goal-grid,.kids-info-grid{grid-template-columns:1fr}.kids-goal-grid article,.kids-info-card{padding:28px}.kids-team-copy{padding:32px}.kids-team-image{min-height:300px}.kids-register-card{align-items:flex-start;flex-direction:column;padding:30px}}


/* Youth page */
.youth-hero{position:relative;min-height:570px;display:flex;align-items:center;color:#fff;background:url('assets/hero-youth.png') center 42%/cover no-repeat}
.youth-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.84) 0%,rgba(0,0,0,.55) 48%,rgba(0,0,0,.16) 82%)}
.youth-hero-inner{position:relative;z-index:1;padding:92px 30px}
.youth-hero h1{font:800 clamp(3.8rem,7vw,6.5rem)/.9 Manrope,sans-serif;letter-spacing:-.065em;margin:0 0 24px;max-width:760px}
.youth-hero-inner>p:not(.eyebrow){font-size:clamp(1.1rem,2vw,1.42rem);line-height:1.55;max-width:680px;margin:0 0 30px}
.youth-section-heading{display:grid;grid-template-columns:1fr .8fr;gap:58px;align-items:end;margin-bottom:34px}
.youth-section-heading h2,.youth-group-copy h2,.youth-social-card h2,.youth-dti-card h2,.youth-team-card h2,.youth-register-card h2{font:800 clamp(2rem,3.8vw,3.5rem)/1.04 Manrope,sans-serif;letter-spacing:-.045em;margin:0 0 24px}
.youth-section-heading h2{margin-bottom:0}
.youth-section-heading>p{margin:0;color:#555;max-width:520px}
.youth-rhythm-section{background:var(--soft)}
.youth-rhythm-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.youth-rhythm-grid article{padding:34px;border:1px solid var(--line);border-radius:24px;background:#fff}
.youth-rhythm-grid article>span{display:block;color:var(--gold);font:800 .76rem Manrope,sans-serif;margin-bottom:20px}
.youth-rhythm-grid h3{font:800 1.4rem Manrope,sans-serif;margin:0 0 14px}
.youth-rhythm-grid p{margin:0;color:#555;font-size:.92rem}
.youth-rhythm-grid a{color:var(--gold);font-weight:700}
.youth-group-section{padding-top:72px}
.youth-group-card{display:grid;grid-template-columns:.95fr 1.05fr;overflow:hidden;border-radius:28px;background:var(--black);color:#fff}
.youth-group-image{min-height:500px;background:url('assets/youth.jpg') center 36%/cover no-repeat}
.youth-group-copy{padding:58px;align-self:center}
.youth-group-copy p{color:#d5d5d5}
.youth-group-copy address{font-style:normal;color:#fff;line-height:1.65;margin:18px 0 28px}
.youth-social-section{padding-top:0}
.youth-social-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.youth-social-card,.youth-dti-card{padding:44px;border-radius:28px}
.youth-social-card{background:linear-gradient(120deg,var(--soft),var(--blue))}
.youth-social-card p{color:#515151}
.youth-dti-card{background:linear-gradient(145deg,#151515,#050505);color:#fff}
.youth-dti-card p{color:#d5d5d5}
.youth-expect-section{background:var(--soft)}
.youth-info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.youth-info-card{padding:34px;border-radius:24px;background:#fff;border:1px solid var(--line)}
.youth-info-icon{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;background:var(--yellow);margin-bottom:22px}
.youth-info-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.youth-info-card h3{font:800 1.35rem Manrope,sans-serif;margin:0 0 13px}
.youth-info-card p{margin:0;color:#555;font-size:.9rem}
.youth-team-section{padding-top:72px}
.youth-team-card{display:flex;align-items:center;justify-content:space-between;gap:48px;padding:46px;border-radius:28px;background:var(--black);color:#fff}
.youth-team-card p{color:#d5d5d5;max-width:760px}
.youth-team-card h2{margin-bottom:16px}
.youth-register-section{padding-top:0}
.youth-register-card{display:flex;align-items:center;justify-content:space-between;gap:44px;padding:46px;border-radius:28px;background:linear-gradient(110deg,var(--soft),var(--blue))}
.youth-register-card h2{margin-bottom:12px}
.youth-register-card p{margin:0;color:#515151}
@media(max-width:980px){.youth-section-heading{grid-template-columns:1fr;gap:18px}.youth-rhythm-grid,.youth-info-grid{grid-template-columns:1fr 1fr}.youth-group-card,.youth-social-grid{grid-template-columns:1fr}.youth-group-image{min-height:380px}.youth-team-card{align-items:flex-start;flex-direction:column}}
@media(max-width:700px){.youth-hero{min-height:520px;background-position:58% center}.youth-hero-inner{padding:76px 22px}.youth-rhythm-grid,.youth-info-grid{grid-template-columns:1fr}.youth-rhythm-grid article,.youth-info-card{padding:28px}.youth-group-copy,.youth-social-card,.youth-dti-card{padding:32px}.youth-group-image{min-height:300px}.youth-team-card,.youth-register-card{align-items:flex-start;flex-direction:column;padding:30px}}

/* ===== RHYTHM OF RENEWAL ===== */
.renewal-hub-hero,.renewal-practice-hero{background:linear-gradient(120deg,#151515,#2e2e2e);color:#fff;overflow:hidden}
.renewal-hub-hero{padding:112px 0 100px}.renewal-hub-hero h1{font:800 clamp(4rem,9vw,8.8rem)/.78 Manrope,sans-serif;letter-spacing:-.075em;margin:18px 0 32px}.renewal-hub-hero>div>p:last-child{font-size:1.25rem;max-width:650px;color:#ddd}.renewal-hub-intro-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:80px}.renewal-hub-intro h2,.renewal-build-grid h2,.renewal-download h2{font:800 clamp(2.2rem,4vw,4rem)/1 Manrope,sans-serif;letter-spacing:-.05em;margin:0}.renewal-hub-intro-grid>div:last-child{font-size:1.05rem;color:#4c4c4c}.renewal-hub-intro-grid .button{margin-top:18px}
.renewal-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.renewal-card{position:relative;display:flex;align-items:center;min-height:200px;padding:34px;border-radius:24px;overflow:hidden;background:var(--soft);transition:transform .25s ease,box-shadow .25s ease}.renewal-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}.renewal-card-letter{font:800 clamp(5rem,9vw,8rem)/1 Manrope;color:rgba(27,27,27,.09);position:absolute;right:20px}.renewal-card div{position:relative;z-index:1}.renewal-card p{margin:0 0 3px;text-transform:uppercase;letter-spacing:.08em;font-size:.7rem;font-weight:800;color:var(--gold)}.renewal-card h2{font:800 2.1rem Manrope;margin:0 0 20px}.renewal-card div>span{font-size:.75rem;font-weight:800;text-transform:uppercase}.renewal-read,.renewal-worship{background:#fff6d4}.renewal-eat,.renewal-abide{background:#e8faff}.renewal-neighbour,.renewal-listen{background:#f3f1ff}.renewal-empower{background:#f8faff}
.renewal-build-section{background:var(--soft)}.renewal-build-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:70px}.renewal-build-grid blockquote{margin:32px 0 0;padding:28px;border-left:4px solid var(--yellow);background:#fff;font:700 1.2rem/1.5 Manrope}.renewal-build-grid cite{display:block;margin-top:12px;font:700 .72rem Inter;text-transform:uppercase;color:var(--gold)}.renewal-build-grid ol{list-style:none;margin:0;padding:0;display:grid;gap:14px}.renewal-build-grid li{display:grid;grid-template-columns:80px 1fr;gap:18px;padding:22px;background:#fff;border-radius:16px}.renewal-build-grid li strong{color:var(--gold);font-size:.75rem;text-transform:uppercase}.renewal-download{display:flex;align-items:center;justify-content:space-between;gap:50px;padding:46px;border-radius:26px;background:linear-gradient(110deg,var(--soft),var(--blue))}.renewal-download>div{max-width:700px}
.renewal-practice-hero{padding:78px 0}.renewal-practice-hero-inner{position:relative}.renewal-practice-hero h1{font:800 clamp(4rem,8vw,7.5rem)/.85 Manrope;margin:12px 0 16px;letter-spacing:-.07em}.renewal-practice-hero-inner>p:last-child{font-size:1.35rem;color:#ddd}.renewal-letter{position:absolute;right:0;top:-55px;font:800 13rem/1 Manrope;color:rgba(255,255,255,.07)}.renewal-nav{display:grid;grid-template-columns:repeat(7,1fr);margin-top:24px;border:1px solid var(--line);border-radius:18px;overflow:hidden;background:#fff}.renewal-nav a{padding:16px 8px;text-align:center;font-size:.7rem;font-weight:800;text-transform:uppercase;border-right:1px solid var(--line)}.renewal-nav a:last-child{border-right:0}.renewal-nav a span{display:block;font:800 1.25rem Manrope;color:var(--gold)}.renewal-nav a:hover,.renewal-nav a.is-active{background:var(--yellow);color:#111}.renewal-nav a.is-active span{color:#111}
.renewal-intro-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:70px;align-items:start}.renewal-copy h2{font:800 clamp(2.2rem,4vw,4rem)/1 Manrope;letter-spacing:-.05em;margin:0 0 28px}.renewal-copy>p:not(.eyebrow){font-size:1.04rem;color:#4c4c4c}.renewal-audio{position:sticky;top:120px;padding:28px;border-radius:22px;background:var(--soft)}.renewal-baseline-section{padding-top:0}.renewal-baseline{padding:42px;border-radius:24px;background:linear-gradient(110deg,#fff6d4,var(--blue))}.renewal-baseline h2{font:800 2rem Manrope;margin:0 0 12px}.renewal-baseline>p:last-child{max-width:850px;font-size:1.1rem;margin-bottom:0}.renewal-steps-section{background:var(--soft)}.renewal-steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.renewal-steps-grid article{padding:30px;border-radius:20px;background:#fff}.renewal-steps-grid h3{font:800 1.2rem Manrope;margin:0 0 18px}.renewal-steps-grid ul,.renewal-question ul{margin:0;padding-left:20px}.renewal-steps-grid li{margin-bottom:10px;color:#555}.renewal-question{padding:40px;border-left:5px solid var(--yellow);background:#fff;border-radius:0 22px 22px 0}.renewal-question li{font:700 1.2rem/1.45 Manrope;margin-bottom:10px}.renewal-page-nav{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:24px}.renewal-page-nav>a:first-child{text-align:left}.renewal-page-nav>a:last-child{text-align:right}.renewal-page-nav>a:not(.button){font-weight:800;color:var(--gold)}
@media(max-width:980px){.renewal-hub-intro-grid,.renewal-build-grid,.renewal-intro-grid{grid-template-columns:1fr;gap:38px}.renewal-cards{grid-template-columns:1fr 1fr}.renewal-audio{position:static}.renewal-steps-grid{grid-template-columns:1fr}.renewal-nav{grid-template-columns:repeat(4,1fr)}.renewal-nav a{border-bottom:1px solid var(--line)}.renewal-download{align-items:flex-start;flex-direction:column}.renewal-letter{font-size:10rem}}
@media(max-width:700px){.renewal-hub-hero{padding:75px 0}.renewal-cards{grid-template-columns:1fr}.renewal-card{min-height:165px}.renewal-nav{grid-template-columns:repeat(2,1fr)}.renewal-practice-hero{padding:62px 0}.renewal-letter{font-size:7rem;top:-25px}.renewal-build-grid li{grid-template-columns:1fr;gap:5px}.renewal-download,.renewal-baseline{padding:28px}.renewal-page-nav{grid-template-columns:1fr;text-align:center}.renewal-page-nav>a:first-child,.renewal-page-nav>a:last-child{text-align:center}.renewal-page-nav .button{grid-row:1}}


/* Embedded ChurchSuite pages */
.embed-page-hero{padding:96px 0 76px;background:linear-gradient(115deg,var(--soft),var(--blue))}
.embed-page-hero h1{font:800 clamp(3rem,6vw,5.6rem)/.98 Manrope,sans-serif;letter-spacing:-.055em;margin:0 0 22px;max-width:900px}
.embed-page-hero p:last-child{font-size:1.15rem;max-width:680px;color:#444;margin:0}
.embed-heading{max-width:720px;margin-bottom:30px}
.embed-heading h2{font:800 clamp(2rem,4vw,3.5rem)/1.04 Manrope,sans-serif;letter-spacing:-.04em;margin:0 0 14px}
.embed-heading p:last-child{color:#555;margin-bottom:0}
.churchsuite-embed-stack{display:grid;gap:34px}
.embed-frame{border:1px solid var(--line);border-radius:24px;background:#fff;overflow:hidden;box-shadow:var(--shadow)}
.embed-frame iframe{display:block;width:100%;min-height:700px;border:0;background:#fff}
.embed-frame-events iframe{min-height:900px}
.embed-frame-calendar iframe{min-height:760px}
.calendar-heading{margin:34px 0 0}

/* Policies and governance pages */
.policy-hero{padding:96px 0 76px;background:linear-gradient(115deg,var(--soft),var(--blue))}
.policy-hero-inner{max-width:920px}
.policy-hero h1{font:800 clamp(3rem,6vw,5.5rem)/.98 Manrope,sans-serif;letter-spacing:-.055em;margin:0 0 22px}
.policy-hero p:last-child{font-size:1.15rem;color:#444;max-width:760px;margin:0}
.policy-layout{max-width:940px}
.policy-content{display:grid;gap:22px}
.policy-section,.policy-alert{padding:34px;border:1px solid var(--line);border-radius:22px;background:#fff}
.policy-section h2,.policy-alert h2{font:800 clamp(1.4rem,2.5vw,2rem)/1.1 Manrope,sans-serif;margin:0 0 16px}
.policy-section p:first-of-type,.policy-alert p:first-of-type{margin-top:0}
.policy-section p:last-child,.policy-alert p:last-child{margin-bottom:0}
.policy-section p,.policy-section li,.policy-alert p{color:#4e4e4e}
.policy-section ul{margin:18px 0 0;padding-left:1.25rem;display:grid;gap:10px}
.policy-section a:not(.button),.policy-alert a:not(.button){color:var(--gold);font-weight:700;text-decoration:underline;text-underline-offset:3px}
.policy-alert{background:var(--black);color:#fff;border:0}
.policy-alert p{color:#ddd}
.policy-alert .button{margin-top:12px}
.contact-resource-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.contact-resource-grid a{display:flex;flex-direction:column;gap:3px;padding:18px;border-radius:14px;background:var(--soft);text-decoration:none!important}
.contact-resource-grid a:hover{background:var(--blue)}
.contact-resource-grid span{font-size:.85rem;color:#555}
.policy-contact-card{padding:24px;border-radius:16px;background:var(--soft)}
.policy-contact-card p{margin:0 0 18px}
.policy-contact-card p:last-child{margin-bottom:0}

/* About-page partner links */
.partners-copy a{color:var(--gold);font-weight:700;text-decoration:underline;text-underline-offset:3px}
.partners-copy a:hover{color:var(--black)}

@media(max-width:700px){
  .embed-page-hero,.policy-hero{padding:70px 0 58px}
  .embed-frame iframe{min-height:780px}
  .embed-frame-events iframe{min-height:1050px}
  .embed-frame-calendar iframe{min-height:820px}
  .policy-section,.policy-alert{padding:25px}
  .contact-resource-grid{grid-template-columns:1fr}
}


/* Summer page and podcast platform links */
.podcast-platforms{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.sundays-listen-card .podcast-platforms{justify-content:flex-end}
.embed-frame-summer iframe{min-height:900px}
.summer-listen-section{padding-top:0}
.summer-page-hero p:last-child{max-width:850px}
@media(max-width:980px){.sundays-listen-card .podcast-platforms{justify-content:flex-start}}
@media(max-width:700px){.podcast-platforms{align-items:stretch}.podcast-platforms .button{width:100%}.embed-frame-summer iframe{min-height:1050px}}


/* Link update utilities */
.button-wide{min-width:280px;padding-inline:30px;text-align:center;}
.anchor-target{display:block;position:relative;top:-120px;visibility:hidden;}
@media(max-width:700px){.button-wide{width:100%;min-width:0;}}


/* ===== PODCAST PAGE ===== */
.podcast-hero{padding:105px 0 92px;background:linear-gradient(115deg,var(--soft),var(--blue))}
.podcast-hero-inner{max-width:940px}
.podcast-hero h1{font:800 clamp(3.4rem,7vw,6.6rem)/.92 Manrope,sans-serif;letter-spacing:-.065em;margin:0 0 25px;max-width:900px}
.podcast-hero p:last-child{font-size:clamp(1.08rem,1.8vw,1.35rem);max-width:700px;color:#444;margin:0}
.podcast-player-grid{display:grid;grid-template-columns:.7fr 1.3fr;gap:64px;align-items:start}
.podcast-player-copy h2,.podcast-section-heading h2,.podcast-cta h2{font:800 clamp(2.1rem,4vw,3.7rem)/1.02 Manrope,sans-serif;letter-spacing:-.05em;margin:0 0 20px}
.podcast-player-copy>p:last-child{color:#555;font-size:1.03rem}
.podcast-player-wrap{display:flex;justify-content:center;padding:22px;border:1px solid var(--line);border-radius:26px;background:#fff;box-shadow:var(--shadow)}
.podcast-player-wrap iframe{display:block;width:100%;height:450px;max-width:660px;border:0;border-radius:12px}
.podcast-platform-section{background:var(--soft)}
.podcast-section-heading{display:grid;grid-template-columns:1fr .85fr;gap:56px;align-items:end;margin-bottom:38px}
.podcast-section-heading h2{margin-bottom:0}
.podcast-section-heading>p{margin:0;color:#555;max-width:520px}
.podcast-platform-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.podcast-platform-card{display:flex;flex-direction:column;min-height:300px;padding:28px;border:1px solid var(--line);border-radius:22px;background:#fff;transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease}
.podcast-platform-card:hover{transform:translateY(-4px);border-color:var(--gold);box-shadow:var(--shadow)}
.podcast-platform-icon{width:54px;height:54px;display:grid;place-items:center;border-radius:50%;background:var(--yellow);margin-bottom:24px}
.podcast-platform-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.podcast-platform-card:nth-child(3) .podcast-platform-icon svg path:first-child{fill:none}
.podcast-platform-card h3{font:800 1.2rem Manrope,sans-serif;margin:0 0 10px}
.podcast-platform-card p{margin:0 0 24px;color:#5a5a5a;font-size:.9rem}
.podcast-platform-link{margin-top:auto;color:var(--gold);font-size:.74rem;font-weight:800;text-transform:uppercase;letter-spacing:.035em}
.podcast-cta-section{padding-top:0}
.podcast-cta{display:flex;align-items:center;justify-content:space-between;gap:48px;padding:46px;border-radius:28px;background:linear-gradient(110deg,var(--soft),var(--blue))}
.podcast-cta h2{margin-bottom:12px}
.podcast-cta p:last-child{margin-bottom:0;color:#555}
@media(max-width:1100px){.podcast-platform-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:900px){.podcast-player-grid,.podcast-section-heading{grid-template-columns:1fr;gap:30px}.podcast-platform-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:700px){.podcast-hero{padding:72px 0 62px}.podcast-player-wrap{padding:10px;border-radius:18px}.podcast-platform-grid{grid-template-columns:1fr}.podcast-platform-card{min-height:0}.podcast-cta{align-items:flex-start;flex-direction:column;padding:30px}}


/* Homepage embedded calendar */
.homepage-events-header{max-width:760px;margin-bottom:34px}
.homepage-events-header h2{font:800 clamp(2.2rem,4vw,3rem)/1.05 Manrope,sans-serif;letter-spacing:-.04em;margin:8px 0 18px}
.homepage-events-header .section-intro{font-size:1.08rem;line-height:1.7;color:#555;margin:0 0 26px}
.homepage-calendar{overflow:hidden;border-radius:24px;border:1px solid var(--line);background:#fff;box-shadow:var(--shadow)}
.homepage-calendar iframe{display:block;width:100%;height:800px;border:0}
@media(max-width:700px){.homepage-calendar iframe{height:650px}}

/* ==========================================================
   Image hero overrides: About, Next Steps and Rule of Life
   These rules intentionally preserve the existing HTML and copy.
========================================================== */

.about-hero,
.next-page-hero,
.renewal-hub-hero{
  position:relative;
  min-height:570px;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
  padding:0;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}

.about-hero{
  background-image:
    linear-gradient(90deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.54) 48%,rgba(0,0,0,.14) 82%),
    url('assets/hero-about.png');
}

.next-page-hero{
  background-image:
    linear-gradient(90deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.54) 48%,rgba(0,0,0,.14) 82%),
    url('assets/hero-next-steps.png');
}

.renewal-hub-hero{
  background-image:
    linear-gradient(90deg,rgba(0,0,0,.84) 0%,rgba(0,0,0,.58) 50%,rgba(0,0,0,.18) 82%),
    url('assets/hero-rule.png');
}

.about-hero-inner,
.next-page-hero-inner,
.renewal-hub-hero>.shell{
  position:relative;
  z-index:1;
  width:var(--shell);
  max-width:none;
  margin-inline:auto;
  padding:92px 30px;
}

.about-hero h1,
.next-page-hero h1,
.renewal-hub-hero h1{
  color:#fff;
}

.about-hero p:last-child,
.next-page-hero p:last-child,
.renewal-hub-hero>div>p:last-child{
  color:rgba(255,255,255,.94);
}

@media(max-width:700px){
  .about-hero,
  .next-page-hero,
  .renewal-hub-hero{
    min-height:520px;
    background-position:58% center;
    padding:0;
  }

  .about-hero-inner,
  .next-page-hero-inner,
  .renewal-hub-hero>.shell{
    padding:76px 22px;
  }
}

/* ==========================================================
   Image hero override: Summer
   Preserves the existing Summer page HTML and copy.
========================================================== */

.summer-page-hero{
  position:relative;
  min-height:570px;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
  padding:0;
  background-image:
    linear-gradient(90deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.54) 48%,rgba(0,0,0,.14) 82%),
    url('assets/hero-summer.png');
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}

.summer-page-hero>.shell{
  position:relative;
  z-index:1;
  width:var(--shell);
  max-width:none;
  margin-inline:auto;
  padding:92px 30px;
}

.summer-page-hero h1{
  color:#fff;
}

.summer-page-hero p:last-child{
  max-width:850px;
  color:rgba(255,255,255,.94);
}

@media(max-width:700px){
  .summer-page-hero{
    min-height:520px;
    background-position:58% center;
    padding:0;
  }

  .summer-page-hero>.shell{
    padding:76px 22px;
  }
}


/* Mobile navigation refinements */
.mobile-menu-secondary {
  display: none;
}

.menu-toggle span:not(.sr-only) {
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 980px) {
  .utility-links {
    display: none !important;
  }

  .utility-inner {
    justify-content: flex-start;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-secondary {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .mobile-menu-secondary > a {
    padding: 9px 0;
    font-size: 0.84rem;
    font-weight: 500;
  }

  .mobile-menu-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .mobile-menu-socials a {
    font-size: 0.78rem;
    font-weight: 600;
  }
}
