/*
Theme Name: Open Heavens Dundee
Theme URI: https://rccgdundee.org.uk/
Author: Open Heavens Christian Centre, Dundee
Description: Custom WordPress theme for RCCG Open Heavens Christian Centre, Dundee.
Version: 1.1.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: open-heavens-dundee
*/

@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&family=Nunito+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --navy-950: #4a1730;
  --navy-900: #762746;
  --navy-800: #943e58;
  --red-700: #a63c29;
  --red-600: #c84f34;
  --green-700: #75884e;
  --green-100: #edf0d9;
  --cream-50: #fffaf0;
  --cream-100: #ffeed8;
  --cream-200: #f2d3ae;
  --charcoal: #342521;
  --muted: #795f57;
  --white: #ffffff;
  --honey: #e3b33f;
  --peach: #ee9365;
  --border: rgba(118, 39, 70, 0.14);
  --shadow: 0 24px 65px rgba(99, 41, 50, 0.14);
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Nunito Sans", "Segoe UI", Arial, sans-serif;
}

/* Watch page */

.watch-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(238, 147, 101, 0.26), transparent 24rem),
    radial-gradient(circle at 90% 6%, rgba(227, 179, 63, 0.22), transparent 24rem),
    linear-gradient(135deg, #5b2038 0%, #762746 58%, #9c463d 100%);
  color: var(--white);
  padding: clamp(72px, 8vw, 118px) 0;
}

.watch-page-hero__glow {
  position: absolute;
  top: -160px;
  left: -130px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(255, 255, 255, 0.025),
    0 0 0 144px rgba(255, 255, 255, 0.018);
}

.watch-page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.watch-page-hero__copy h1 {
  max-width: 620px;
}

.watch-page-hero__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.watch-page-hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.watch-page-hero__actions .text-link {
  color: rgba(255, 255, 255, 0.9);
}

.watch-page-hero__image {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: 120px 12px 12px 12px;
  box-shadow: 0 30px 76px rgba(49, 13, 29, 0.34);
}

.watch-page-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(46, 17, 27, 0.68), transparent 56%);
}

.watch-page-hero__image img {
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.watch-page-hero__image:hover img {
  transform: scale(1.025);
}

.watch-page-hero__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.95);
  color: var(--red-600);
  font-size: 1.25rem;
  box-shadow: 0 16px 38px rgba(35, 10, 20, 0.24);
}

.watch-page-hero__label {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  color: var(--white);
  font-weight: 700;
}

.watch-live {
  background:
    radial-gradient(circle at 94% 12%, rgba(227, 179, 63, 0.2), transparent 22rem),
    #fff8ec;
}

.watch-live .section-heading--split > p {
  color: var(--muted);
}

.watch-schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.watch-schedule__card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 34px 7px 34px 7px;
  padding: clamp(34px, 5vw, 58px);
  box-shadow: 0 20px 56px rgba(91, 36, 51, 0.1);
}

.watch-schedule__card h3 {
  margin-top: 8px;
  font-size: clamp(2.1rem, 3vw, 3.25rem);
}

.watch-schedule__time {
  margin-top: 18px;
  font-size: 1.15rem;
  font-weight: 800;
}

.watch-schedule__card > p:not(.card-kicker):not(.watch-schedule__time) {
  max-width: 530px;
  margin-top: 16px;
}

.watch-schedule__actions {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.watch-schedule__card--sunday {
  background: var(--honey);
  color: var(--navy-950);
}

.watch-schedule__card--wednesday {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 221, 164, 0.18), transparent 15rem),
    var(--navy-900);
  color: var(--white);
}

.watch-schedule__card--wednesday > p:not(.card-kicker):not(.watch-schedule__time) {
  color: rgba(255, 255, 255, 0.74);
}

.watch-schedule__card--wednesday .text-link {
  color: rgba(255, 255, 255, 0.9);
}

.watch-again {
  background: var(--cream-50);
}

.watch-again__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
}

.watch-again__copy h2 {
  color: var(--navy-950);
}

.watch-again__copy .large-copy {
  margin-top: 25px;
}

.watch-again__copy > p:not(.eyebrow):not(.large-copy) {
  margin-top: 18px;
  color: var(--muted);
}

.watch-again__image {
  position: relative;
}

.watch-again__image img {
  min-height: 540px;
  height: 47vw;
  max-height: 650px;
  border-radius: 12px 140px 12px 12px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.watch-again__image figcaption {
  position: absolute;
  right: -20px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 20px 5px 20px 5px;
  background: rgba(255, 250, 240, 0.95);
  color: var(--navy-950);
  padding: 18px 24px;
  box-shadow: 0 16px 36px rgba(62, 24, 34, 0.18);
  backdrop-filter: blur(12px);
}

.watch-again__image figcaption span {
  color: var(--red-700);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.watch-again__image figcaption strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.watch-connect {
  background:
    radial-gradient(circle at 7% 18%, rgba(227, 179, 63, 0.18), transparent 21rem),
    linear-gradient(115deg, #4a1730 0%, #762746 72%, #91403f 100%);
  color: var(--white);
}

.watch-connect__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.watch-connect article {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(58px, 8vw, 96px) clamp(30px, 6vw, 74px);
}

.watch-connect article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.watch-connect h2 {
  margin-top: 8px;
  font-size: clamp(2.15rem, 3.4vw, 3.7rem);
}

.watch-connect article > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.watch-connect .button {
  margin-top: 30px;
}

@media (max-width: 900px) {
  .watch-page-hero__grid,
  .watch-again__grid {
    grid-template-columns: 1fr;
  }

  .watch-page-hero__image {
    min-height: 500px;
  }

  .watch-page-hero__image img {
    min-height: 500px;
  }
}

@media (max-width: 650px) {
  .watch-page-hero {
    padding: 64px 0;
  }

  .watch-page-hero__grid {
    gap: 42px;
  }

  .watch-page-hero__image {
    min-height: 430px;
    border-radius: 72px 8px 8px 8px;
  }

  .watch-page-hero__image img {
    min-height: 430px;
  }

  .watch-schedule,
  .watch-connect__grid {
    grid-template-columns: 1fr;
  }

  .watch-schedule__card {
    min-height: 360px;
    border-radius: 28px 6px 28px 6px;
  }

  .watch-again__image img {
    min-height: 470px;
    height: 126vw;
    border-radius: 8px 72px 8px 8px;
  }

  .watch-again__image figcaption {
    right: 12px;
    bottom: 15px;
    left: 12px;
  }

  .watch-connect article {
    min-height: 400px;
    padding: 58px 8px;
  }

  .watch-connect article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

p,
h1,
h2,
h3,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.7rem);
}

h2 {
  font-size: clamp(2.25rem, 3.4vw, 4rem);
}

h3 {
  font-size: 1.5rem;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--white);
  color: var(--navy-900);
  padding: 10px 16px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.welcome-bar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.welcome-bar__inner {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.welcome-bar p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.welcome-bar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #eeaf70;
  box-shadow: 0 0 0 4px rgba(238, 175, 112, 0.12);
}

.welcome-bar__details {
  color: rgba(255, 255, 255, 0.64);
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(252, 250, 245, 0.96);
}

.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 1px solid rgba(23, 50, 77, 0.14);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(23, 50, 77, 0.08);
}

.brand-mark__red,
.brand-mark__green {
  position: absolute;
  inset-inline: 7px;
  height: 3px;
  border-radius: 2px;
}

.brand-mark__red {
  top: 9px;
  background: var(--red-600);
}

.brand-mark__green {
  bottom: 9px;
  background: var(--green-700);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1rem;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
  color: #3d4851;
  font-size: 0.91rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--red-600);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-more {
  position: relative;
}

.nav-more summary {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  padding-block: 10px;
  cursor: pointer;
}

.nav-more summary::-webkit-details-marker {
  display: none;
}

.nav-more summary span {
  transform: translateY(-1px);
  font-size: 0.82rem;
  transition: transform 180ms ease;
}

.nav-more[open] summary span {
  transform: rotate(180deg) translateY(1px);
}

.nav-more--current summary {
  color: var(--red-600);
}

.nav-more__panel {
  position: absolute;
  z-index: 80;
  top: calc(100% + 8px);
  right: 0;
  width: 230px;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px 4px 18px 4px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.desktop-nav .nav-more__panel a {
  border-bottom: 1px solid var(--border);
  padding: 13px 17px;
  color: #4f4440;
  white-space: nowrap;
}

.desktop-nav .nav-more__panel a:last-child {
  border-bottom: 0;
}

.desktop-nav .nav-more__panel a:hover,
.desktop-nav .nav-more__panel a:focus-visible,
.desktop-nav .nav-more__panel a[aria-current="page"] {
  background: #fff7ea;
  color: var(--navy-900);
}

.desktop-nav .nav-more__panel a::after {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 13px 22px;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #e9ad69;
  outline-offset: 3px;
}

.button--compact {
  min-height: 46px;
  padding: 12px 18px;
  white-space: nowrap;
}

.button--red {
  background: var(--red-600);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(183, 45, 54, 0.18);
}

.button--red:hover {
  background: #9f212b;
}

.button--cream {
  background: var(--cream-100);
  color: var(--navy-900);
}

.button--cream:hover {
  background: var(--white);
  box-shadow: 0 12px 30px rgba(5, 19, 31, 0.18);
}

.button--navy {
  background: var(--navy-900);
  color: var(--white);
}

.button--outline {
  border-color: var(--border);
  background: transparent;
  color: var(--navy-900);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: flex;
  align-items: center;
  gap: 9px;
  list-style: none;
  color: var(--navy-900);
  cursor: pointer;
  font-weight: 700;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary i,
.mobile-menu summary i::before,
.mobile-menu summary i::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-menu summary i {
  position: relative;
}

.mobile-menu summary i::before,
.mobile-menu summary i::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-menu summary i::before {
  top: -6px;
}

.mobile-menu summary i::after {
  top: 6px;
}

.mobile-menu nav {
  position: absolute;
  z-index: 90;
  top: 48px;
  right: 0;
  width: min(310px, calc(100vw - 32px));
  max-height: calc(100dvh - 140px);
  display: grid;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}

.mobile-menu nav a {
  border-bottom: 1px solid var(--border);
  padding: 13px 18px;
  font-weight: 600;
}

.mobile-menu nav a:first-child {
  background: var(--red-600);
  color: var(--white);
}

.mobile-menu nav a[aria-current="page"]:not(:first-child) {
  background: #fff7ea;
  color: var(--navy-900);
}

.mobile-menu__section {
  border-bottom: 1px solid var(--border);
  background: #f5ead8;
  color: #7f685e;
  padding: 9px 18px 7px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  background: var(--navy-900);
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  right: -120px;
  top: -100px;
  box-shadow:
    0 0 0 60px rgba(255, 255, 255, 0.025),
    0 0 0 120px rgba(255, 255, 255, 0.02);
}

.hero-copy__inner {
  position: relative;
  z-index: 1;
  width: min(600px, calc(100% - 64px));
  margin-left: max(32px, calc((100vw - 1180px) / 2));
  padding-block: 80px 120px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--red-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #f3bf83;
}

.hero h1 {
  max-width: 680px;
}

.hero-lead {
  max-width: 585px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.04rem, 1.3vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 37px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(23, 50, 77, 0.28);
  text-underline-offset: 5px;
}

.text-link--light {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.34);
}

.hero-scripture {
  position: absolute;
  right: 40px;
  bottom: 30px;
  left: max(32px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
}

.hero-scripture span {
  margin-left: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 35, 55, 0.2), transparent 28%),
    linear-gradient(0deg, rgba(13, 35, 55, 0.25), transparent 35%);
  pointer-events: none;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.hero-image figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  min-width: 210px;
  border-left: 3px solid #edb172;
  border-radius: 2px;
  background: rgba(13, 35, 55, 0.88);
  color: var(--white);
  padding: 13px 17px;
  backdrop-filter: blur(10px);
}

.hero-image figcaption span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-image figcaption strong {
  margin-top: 3px;
  font-size: 0.92rem;
}

.quick-visit {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.quick-visit__grid {
  min-height: 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
}

.quick-visit__grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  border-right: 1px solid var(--border);
  padding: 0 28px;
}

.quick-visit__grid > div:first-child {
  padding-left: 0;
}

.quick-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--red-700);
  font-family: var(--serif);
  font-size: 0.7rem;
  font-weight: 700;
}

.quick-visit__grid p {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.quick-visit__grid small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-visit__grid strong {
  color: var(--navy-900);
  font-size: 0.92rem;
}

.quick-visit__link {
  margin-left: 28px;
  color: var(--red-700);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding-block: clamp(80px, 9vw, 130px);
}

.section--cream {
  background: var(--cream-100);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.welcome-intro h2 {
  max-width: 590px;
  color: var(--navy-900);
}

.welcome-body {
  max-width: 560px;
  padding-top: 43px;
  color: var(--muted);
}

.welcome-body p + p {
  margin-top: 20px;
}

.welcome-body .large-copy {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.55;
}

.welcome-body .text-link {
  margin-top: 28px;
}

.pastoral {
  background:
    radial-gradient(circle at 92% 12%, rgba(47, 107, 85, 0.08), transparent 28%),
    var(--white);
}

.pastoral-grid {
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  align-items: center;
}

.pastoral-photo {
  position: relative;
  max-width: 650px;
}

.pastoral-photo::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -24px;
  left: -24px;
  width: 45%;
  height: 55%;
  border: 1px solid rgba(47, 107, 85, 0.22);
}

.pastoral-photo img {
  position: relative;
  z-index: 1;
  aspect-ratio: 1.18;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: var(--shadow);
}

.pastoral-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: -30px;
  min-width: 310px;
  background: var(--navy-900);
  color: var(--white);
  padding: 18px 22px;
  font-family: var(--serif);
  font-size: 0.93rem;
}

.pastoral-photo figcaption span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--sans);
  font-size: 0.71rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pastoral-copy {
  position: relative;
  z-index: 2;
  margin-left: -28px;
  background: var(--cream-50);
  padding: clamp(44px, 6vw, 82px);
  box-shadow: 0 28px 70px rgba(15, 38, 57, 0.09);
}

.pastoral-copy h2 {
  color: var(--navy-900);
}

.pastoral-copy blockquote {
  margin-top: 27px;
  color: #50575b;
  font-size: 1.02rem;
  line-height: 1.8;
}

.signature {
  margin-top: 24px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.04rem;
  font-style: italic;
}

.pastoral-copy .text-link {
  margin-top: 28px;
}

.gatherings {
  background: var(--navy-900);
  color: var(--white);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading--split h2 {
  max-width: 650px;
}

.section-heading--split > p,
.section-heading--split > div:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.community .section-heading--split > div:last-child {
  color: var(--muted);
}

.community .section-heading--split > div:last-child .text-link {
  margin-top: 20px;
}

.gathering-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.gathering-card {
  min-height: 375px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: 42px;
}

.gathering-card:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.gathering-card--featured {
  background: var(--red-600);
}

.gathering-card__day {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gathering-card__number {
  font-family: var(--serif);
  font-size: 4.3rem;
  line-height: 1;
}

.gathering-card__time {
  font-family: var(--serif);
  font-size: 1.55rem;
}

.gathering-card h3 {
  margin-top: 25px;
}

.gathering-card > p:not(.gathering-card__day) {
  max-width: 290px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
}

.gathering-card a {
  display: inline-block;
  margin-top: 23px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.church-life {
  background: var(--cream-100);
}

.section-heading--center {
  max-width: 740px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading--center h2 {
  color: var(--navy-900);
}

.section-heading--center > p:last-child {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--muted);
}

.life-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 300px 300px;
  gap: 20px;
}

.life-card {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}

.life-card--large {
  grid-row: 1 / 3;
}

.life-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.life-card--large img {
  object-position: 50% center;
}

.life-card:hover img {
  transform: scale(1.035);
}

.life-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 24, 37, 0.82), transparent 58%);
}

.life-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
  color: var(--white);
}

.life-card__content small {
  display: block;
  margin-bottom: 6px;
  color: #f1bd82;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.life-card__content strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  font-weight: 400;
}

.life-card__content > span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 600;
}

.life-card--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 46px;
  color: var(--white);
}

.life-card--text h3 {
  font-size: 2rem;
}

.life-card--text > p:not(.eyebrow) {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.life-card--text .text-link {
  margin-top: 22px;
}

.watch {
  background: var(--white);
}

.watch-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.watch-image {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.watch-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 24, 36, 0.5), transparent 55%);
}

.watch-image img {
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.watch-image:hover img {
  transform: scale(1.03);
}

.watch-image__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red-600);
  font-size: 1.2rem;
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.16);
}

.watch-image__label {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  color: var(--white);
  font-weight: 700;
}

.watch-copy h2 {
  color: var(--navy-900);
}

.watch-copy > p:not(.eyebrow):not(.watch-note) {
  max-width: 510px;
  margin-top: 24px;
  color: var(--muted);
}

.watch-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.watch-note {
  margin-top: 18px;
  color: #777c80;
  font-size: 0.82rem;
}

.community {
  background: var(--cream-100);
}

.community .section-heading--split h2 {
  color: var(--navy-900);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.community-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(23, 50, 77, 0.07);
}

.community-card img {
  height: 285px;
  object-fit: cover;
}

.community-card:nth-child(2) img {
  object-position: 50% 38%;
}

.community-card > div:last-child {
  padding: 28px 30px 34px;
}

.community-card h3 {
  color: var(--navy-900);
}

.community-card p:not(.card-kicker) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.93rem;
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--red-700);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-card--plain {
  justify-content: space-between;
  background: var(--green-700);
  color: var(--white);
}

.community-card--plain h3 {
  color: var(--white);
}

.community-card--plain p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.7);
}

.community-card--plain .card-kicker {
  color: #f3c28b;
}

.community-card__number {
  align-self: flex-end;
  padding: 27px 30px 0 !important;
  color: rgba(255, 255, 255, 0.17);
  font-family: var(--serif);
  font-size: 6.7rem;
  line-height: 1;
}

.community-card--plain .text-link {
  margin-top: 25px;
}

.prayer {
  background: var(--red-600);
  color: var(--white);
}

.prayer-inner {
  min-height: 350px;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr auto;
  gap: clamp(35px, 6vw, 80px);
  align-items: center;
  padding-block: 65px;
}

.prayer h2 {
  max-width: 630px;
  font-size: clamp(2rem, 3.1vw, 3.5rem);
}

.prayer-inner > p {
  color: rgba(255, 255, 255, 0.7);
}

.prayer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  white-space: nowrap;
}

.visit {
  background: var(--cream-50);
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(55px, 9vw, 120px);
  align-items: center;
}

.visit-copy h2 {
  max-width: 570px;
  color: var(--navy-900);
}

.visit-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 23px;
  color: var(--muted);
}

.visit-details {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.visit-details div {
  border-bottom: 1px solid var(--border);
  padding: 17px 20px 17px 0;
}

.visit-details dt {
  color: var(--red-700);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-details dd {
  margin-top: 3px;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 600;
}

.visit-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.map-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(25deg, transparent 46%, rgba(255, 255, 255, 0.6) 47% 52%, transparent 53%),
    linear-gradient(115deg, transparent 50%, rgba(255, 255, 255, 0.54) 51% 56%, transparent 57%),
    #dde6df;
  box-shadow: var(--shadow);
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(47, 107, 85, 0.13);
}

.map-card::before {
  width: 240px;
  height: 240px;
  top: -60px;
  right: -30px;
}

.map-card::after {
  width: 310px;
  height: 310px;
  bottom: -120px;
  left: -100px;
}

.map-card__roads span {
  position: absolute;
  height: 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  transform-origin: left center;
}

.map-card__roads span:nth-child(1) {
  width: 80%;
  top: 24%;
  left: -4%;
  transform: rotate(13deg);
}

.map-card__roads span:nth-child(2) {
  width: 68%;
  top: 58%;
  left: 18%;
  transform: rotate(-27deg);
}

.map-card__roads span:nth-child(3) {
  width: 62%;
  top: 5%;
  left: 58%;
  transform: rotate(82deg);
}

.map-pin {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: 55%;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 6px solid rgba(255, 255, 255, 0.75);
  border-radius: 50% 50% 50% 8px;
  background: var(--red-600);
  box-shadow: 0 18px 35px rgba(64, 38, 36, 0.25);
}

.map-pin span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  transform: rotate(-45deg);
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
}

.map-label {
  position: absolute;
  color: rgba(23, 50, 77, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-label--one {
  top: 30%;
  left: 18%;
  transform: rotate(13deg);
}

.map-label--two {
  top: 52%;
  right: 5%;
  transform: rotate(-27deg);
}

.map-card__caption {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.94);
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(23, 50, 77, 0.1);
}

.map-card__caption small {
  color: var(--red-700);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-card__caption strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.map-card__caption span {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.65);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.82fr 0.68fr 0.72fr 1fr;
  gap: 46px;
  padding-block: 78px 62px;
}

.brand--footer .brand-copy strong {
  color: var(--white);
}

.brand--footer .brand-copy small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand > p {
  max-width: 280px;
  margin-top: 22px;
  font-size: 0.9rem;
}

.footer-social {
  margin-top: 22px;
  display: flex;
  gap: 18px;
}

.footer-social a {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.87rem;
}

.footer-column h3,
.footer-give h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column p + p {
  margin-top: 10px;
}

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

.footer-give {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 32px;
}

.footer-give .eyebrow {
  margin-bottom: 12px;
}

.footer-give h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.25;
  text-transform: none;
}

.footer-give > p:not(.eyebrow) {
  margin-top: 12px;
  font-size: 0.86rem;
}

.footer-give .button {
  margin-top: 22px;
}

.footer-bottom {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
  }

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

  .quick-visit__link {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1.2fr repeat(3, 0.7fr);
  }

  .footer-give {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
    padding: 30px 0 0;
  }
}

@media (max-width: 900px) {
  .welcome-bar__details {
    display: none !important;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy__inner {
    width: min(680px, calc(100% - 48px));
    margin-inline: auto;
    padding-block: 72px 90px;
  }

  .hero-scripture {
    right: 24px;
    left: 24px;
  }

  .hero-image {
    min-height: 520px;
  }

  .quick-visit__grid {
    grid-template-columns: 1fr;
    padding-block: 18px;
  }

  .quick-visit__grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 17px 0;
  }

  .quick-visit__grid > div:last-of-type {
    border-bottom: 0;
  }

  .welcome-grid,
  .pastoral-grid,
  .watch-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .welcome-body {
    padding-top: 0;
  }

  .pastoral-grid {
    gap: 70px;
  }

  .pastoral-photo {
    width: calc(100% - 30px);
  }

  .pastoral-copy {
    margin-left: 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gathering-cards {
    grid-template-columns: 1fr;
  }

  .gathering-card,
  .gathering-card:first-child {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .life-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 470px 330px auto;
  }

  .life-card--large {
    grid-row: auto;
  }

  .life-card--text {
    min-height: 320px;
  }

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

  .community-card--plain {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .prayer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .prayer-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }

  .map-card {
    min-height: 500px;
  }

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

  .footer-column:nth-of-type(4) {
    grid-column: 2;
  }
}

@media (max-width: 650px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 32px, 1180px);
  }

  .welcome-bar__inner {
    justify-content: center;
  }

  .header-inner {
    min-height: 78px;
    gap: 16px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
  }

  .brand-copy small {
    max-width: 180px;
    font-size: 0.54rem;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    margin-left: auto;
  }

  .mobile-menu summary span {
    display: none;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 9.8vw, 3.25rem);
  }

  .hero-copy__inner {
    width: calc(100% - 32px);
    padding-block: 62px 100px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-scripture {
    bottom: 22px;
    font-size: 0.7rem;
  }

  .hero-image {
    min-height: 430px;
  }

  .hero-image img {
    object-position: 59% center;
  }

  .hero-image figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .section {
    padding-block: 78px;
  }

  .welcome-grid {
    gap: 32px;
  }

  .pastoral-photo {
    width: 100%;
  }

  .pastoral-photo::before {
    display: none;
  }

  .pastoral-photo figcaption {
    right: 12px;
    bottom: -42px;
    left: 12px;
    min-width: 0;
  }

  .pastoral-copy {
    padding: 34px 25px;
  }

  .section-heading--split {
    margin-bottom: 38px;
  }

  .gathering-card {
    padding: 32px 28px;
  }

  .life-grid {
    grid-template-rows: 430px 300px auto;
  }

  .life-card--text {
    padding: 34px 28px;
  }

  .watch-image,
  .watch-image img {
    min-height: 350px;
  }

  .watch-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .community-card--plain {
    grid-column: auto;
  }

  .prayer-inner {
    grid-template-columns: 1fr;
    padding-block: 64px;
  }

  .prayer-actions {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .visit-details {
    grid-template-columns: 1fr;
  }

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

  .map-card {
    min-height: 420px;
  }

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

  .footer-brand,
  .footer-give {
    grid-column: 1 / -1;
  }

  .footer-column:nth-of-type(4) {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
  }
}

/* Church Life */

.life-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 26%, rgba(255, 213, 132, 0.34), transparent 23%),
    linear-gradient(125deg, #8f3151 0%, var(--navy-950) 68%, #401326 100%);
  color: var(--white);
}

.life-page-hero__sun {
  position: absolute;
  z-index: -1;
  top: -125px;
  right: max(7vw, 80px);
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: rgba(244, 176, 74, 0.18);
  box-shadow:
    0 0 0 65px rgba(244, 176, 74, 0.06),
    0 0 0 130px rgba(244, 176, 74, 0.025);
}

.life-page-hero__leaf {
  position: absolute;
  z-index: -1;
  right: -80px;
  bottom: -105px;
  width: 330px;
  height: 230px;
  transform: rotate(-18deg);
  border-radius: 100% 0 100% 0;
  background: rgba(136, 157, 85, 0.22);
}

.life-page-hero__grid {
  min-height: 565px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.65fr);
  gap: clamp(55px, 8vw, 125px);
  align-items: end;
  padding-block: 105px 95px;
}

.life-page-hero h1 {
  max-width: 800px;
  font-size: clamp(3.6rem, 6.4vw, 6.6rem);
}

.life-page-hero__grid > p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.08rem;
  line-height: 1.8;
}

.life-page-intro {
  background:
    radial-gradient(circle at 90% 5%, rgba(238, 147, 101, 0.1), transparent 26%),
    var(--cream-50);
}

.life-page-intro__grid,
.serve-section__grid,
.parents-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: start;
}

.life-page-intro h2,
.serve-section h2,
.parents-section h2 {
  color: var(--navy-900);
}

.life-page-intro__copy,
.serve-section__grid > div:last-child,
.parents-section__grid > div:last-child {
  color: var(--muted);
}

.life-page-intro__copy p + p,
.serve-section__grid > div:last-child p + p,
.parents-section__grid > div:last-child p + p {
  margin-top: 20px;
}

.life-page-intro .large-copy,
.serve-section .large-copy,
.parents-section .large-copy,
.worship-prayer .large-copy {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.55;
}

.life-ministries {
  background: #fff;
  padding-block: clamp(80px, 9vw, 130px);
}

.ministry-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.ministry-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 42px 8px 42px 8px;
}

.ministry-card--children {
  grid-row: span 2;
  min-height: 805px;
  color: var(--white);
}

.ministry-card--children img {
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 500ms ease;
}

.ministry-card--children:hover img {
  transform: scale(1.025);
}

.ministry-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(46, 17, 28, 0.88), transparent 63%);
}

.ministry-card__copy {
  position: absolute;
  right: 42px;
  bottom: 42px;
  left: 42px;
  display: flex;
  flex-direction: column;
}

.ministry-card__copy small {
  margin-bottom: 8px;
  color: #ffd99b;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ministry-card__copy strong {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.ministry-card__copy > span:last-child {
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.ministry-card--women,
.ministry-card--men {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
}

.ministry-card--women {
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 255, 255, 0.34), transparent 30%),
    #ffd9bd;
}

.ministry-card--men {
  background:
    radial-gradient(circle at 10% 90%, rgba(227, 179, 63, 0.2), transparent 30%),
    #657344;
  color: var(--white);
}

.ministry-card__number {
  position: absolute;
  top: 30px;
  right: 34px;
  color: rgba(118, 39, 70, 0.25);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.ministry-card--men .ministry-card__number {
  color: rgba(255, 255, 255, 0.2);
}

.ministry-card h3 {
  max-width: 490px;
  margin-bottom: 16px;
  color: var(--navy-950);
  font-size: clamp(2rem, 2.6vw, 3rem);
}

.ministry-card--men h3 {
  color: var(--white);
}

.ministry-card p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(52, 37, 33, 0.74);
}

.ministry-card--men p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.ministry-card > a {
  margin-top: 22px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.worship-prayer {
  background: var(--cream-100);
}

.worship-prayer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.worship-prayer figure {
  position: relative;
}

.worship-prayer figure::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  width: 62%;
  height: 58%;
  border-radius: 8px 48px 8px 8px;
  background: var(--honey);
}

.worship-prayer img {
  position: relative;
  aspect-ratio: 1.05;
  object-fit: cover;
  border-radius: 48px 8px 48px 8px;
  box-shadow: var(--shadow);
}

.worship-prayer figcaption {
  position: relative;
  width: max-content;
  max-width: calc(100% - 40px);
  margin: -28px 0 0 28px;
  border-radius: 5px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 13px 18px;
  font-size: 0.78rem;
}

.worship-prayer h2 {
  color: var(--navy-900);
}

.worship-prayer__grid > div > p + p {
  margin-top: 18px;
}

.life-times {
  margin-top: 30px;
  border-top: 1px solid var(--border);
}

.life-times div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid var(--border);
  padding-block: 14px;
}

.life-times dt {
  color: var(--muted);
}

.life-times dd {
  color: var(--navy-900);
  font-weight: 800;
}

.youth-church {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(238, 147, 101, 0.22), transparent 26%),
    var(--navy-950);
  color: var(--white);
  padding-block: clamp(75px, 8vw, 110px);
}

.youth-church__inner {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(55px, 8vw, 115px);
  align-items: center;
}

.youth-church__label {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-4deg);
  border-radius: 50% 50% 18% 50%;
  background: var(--honey);
  color: var(--navy-950);
  box-shadow: 34px 26px 0 rgba(238, 147, 101, 0.23);
}

.youth-church__label span {
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 0.9;
}

.youth-church__label strong {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.youth-church__copy {
  max-width: 720px;
}

.youth-church h2 {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
}

.youth-church__copy > p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.youth-church__note {
  padding-left: 18px;
  border-left: 3px solid var(--honey);
  font-size: 0.86rem !important;
}

.serve-section {
  background:
    radial-gradient(circle at 15% 90%, rgba(117, 136, 78, 0.14), transparent 27%),
    var(--white);
}

.serve-section .button {
  margin-top: 30px;
}

.life-page-cta {
  background: linear-gradient(110deg, var(--red-600), #9d3c51 62%, var(--navy-950));
}

.young-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(227, 179, 63, 0.2), transparent 26%),
    #fff2df;
}

.young-hero__grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.05fr);
  align-items: center;
}

.young-hero__copy {
  position: relative;
  z-index: 2;
  padding: 85px clamp(40px, 6vw, 90px) 85px 0;
}

.young-hero h1 {
  max-width: 660px;
  color: var(--navy-950);
  font-size: clamp(3.2rem, 5.4vw, 5.6rem);
}

.young-hero__copy > p:last-child {
  max-width: 590px;
  margin-top: 27px;
  color: var(--muted);
  font-size: 1.08rem;
}

.young-hero figure {
  align-self: stretch;
  margin-right: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
}

.young-hero img {
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.sunday-journey {
  background: var(--white);
}

.sunday-journey__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 130px);
}

.sunday-journey__intro {
  position: sticky;
  top: 30px;
  align-self: start;
}

.sunday-journey h2 {
  color: var(--navy-900);
}

.sunday-journey__intro > p:last-child {
  margin-top: 22px;
  color: var(--muted);
}

.sunday-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sunday-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}

.sunday-steps li:first-child {
  padding-top: 0;
}

.sunday-steps > li > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--red-700);
  font-family: var(--serif);
  font-weight: 700;
}

.sunday-steps h3 {
  color: var(--navy-950);
}

.sunday-steps p {
  margin-top: 8px;
  color: var(--muted);
}

.young-groups {
  background: var(--cream-100);
  padding-block: clamp(80px, 9vw, 130px);
}

.young-groups__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.young-group {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 55px 8px 55px 8px;
  padding: clamp(38px, 5vw, 68px);
}

.young-group--children {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.42), transparent 28%),
    #f6b985;
}

.young-group--teenagers {
  background:
    radial-gradient(circle at 15% 90%, rgba(227, 179, 63, 0.2), transparent 28%),
    var(--navy-900);
  color: var(--white);
}

.young-group__mark {
  position: absolute;
  right: 34px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.24);
  font-family: var(--serif);
  font-size: 13rem;
  line-height: 0.8;
}

.young-group--children .young-group__mark {
  color: rgba(118, 39, 70, 0.12);
}

.young-group h2 {
  position: relative;
  max-width: 520px;
  color: var(--navy-950);
  font-size: clamp(2.5rem, 3.8vw, 4.3rem);
}

.young-group--teenagers h2 {
  color: var(--white);
}

.young-group > p:last-child {
  position: relative;
  max-width: 520px;
  margin-top: 24px;
  color: rgba(52, 37, 33, 0.75);
}

.young-group--teenagers > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.parents-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(238, 147, 101, 0.1), transparent 27%),
    var(--cream-50);
}

.parents-section__actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.young-cta {
  background: linear-gradient(115deg, #667743, #7b874b 52%, var(--navy-950));
}

@media (max-width: 980px) {
  .life-page-hero__grid {
    min-height: 535px;
    grid-template-columns: 1fr;
    gap: 32px;
    align-content: end;
  }

  .life-page-hero__grid > p {
    max-width: 650px;
  }

  .ministry-grid,
  .worship-prayer__grid,
  .young-hero__grid {
    grid-template-columns: 1fr;
  }

  .ministry-card--children {
    grid-row: auto;
    min-height: 650px;
  }

  .young-hero figure {
    min-height: 580px;
    margin: 0 -24px;
  }

  .young-hero__copy {
    padding-right: 0;
  }
}

@media (max-width: 850px) {
  .life-page-intro__grid,
  .serve-section__grid,
  .parents-section__grid,
  .sunday-journey__grid {
    grid-template-columns: 1fr;
  }

  .sunday-journey__intro {
    position: static;
  }

  .youth-church__inner {
    grid-template-columns: 200px 1fr;
  }

  .young-groups__grid {
    grid-template-columns: 1fr;
  }

  .young-group {
    min-height: 430px;
  }
}

@media (max-width: 650px) {
  .life-page-hero__grid {
    min-height: 480px;
    padding-block: 75px 68px;
  }

  .life-page-hero h1,
  .young-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .ministry-card,
  .ministry-card--children {
    min-height: 430px;
    border-radius: 30px 8px 30px 8px;
  }

  .ministry-card--women,
  .ministry-card--men {
    padding: 33px 28px;
  }

  .ministry-card__copy {
    right: 28px;
    bottom: 30px;
    left: 28px;
  }

  .worship-prayer figure::before {
    top: -14px;
    right: -10px;
  }

  .youth-church__inner {
    grid-template-columns: 1fr;
  }

  .youth-church__label {
    width: 170px;
  }

  .young-hero__grid {
    min-height: auto;
  }

  .young-hero__copy {
    padding-block: 70px;
  }

  .young-hero figure {
    min-height: 430px;
  }

  .sunday-steps li {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .young-group {
    min-height: 420px;
    border-radius: 35px 8px 35px 8px;
    padding: 38px 29px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Warm Open Heavens design direction */

body {
  background:
    radial-gradient(circle at 8% 11%, rgba(232, 164, 119, 0.12), transparent 24rem),
    var(--cream-50);
}

.welcome-bar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.88);
}

.welcome-bar__inner {
  min-height: 44px;
}

.welcome-bar strong {
  color: #f3cf8e;
  font-size: 0.82rem;
}

.welcome-bar__dot {
  background: var(--honey);
  box-shadow: 0 0 0 4px rgba(213, 163, 72, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  border-bottom-color: rgba(91, 36, 51, 0.09);
  background: rgba(255, 250, 242, 0.96);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 104px;
}

.brand {
  gap: 15px;
}

.brand-logo {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 7px 14px rgba(91, 36, 51, 0.12));
}

.brand-copy {
  max-width: 315px;
}

.brand-copy strong {
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: #8b6f65;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.desktop-nav {
  color: #5d4b47;
  font-size: 0.89rem;
}

.desktop-nav a::after {
  height: 2px;
  border-radius: 2px;
  background: var(--honey);
}

.button {
  border-radius: 999px;
  padding-inline: 25px;
}

.button--red {
  background: var(--navy-900);
  box-shadow: 0 12px 26px rgba(91, 36, 51, 0.2);
}

.button--red:hover {
  background: var(--navy-950);
}

.button--navy {
  background: var(--navy-900);
}

.button--cream {
  background: #fff8ea;
  color: var(--navy-950);
}

.button--outline {
  border-color: rgba(91, 36, 51, 0.22);
  color: var(--navy-900);
}

.text-link {
  color: var(--navy-900);
  text-decoration-color: rgba(91, 36, 51, 0.28);
}

.eyebrow {
  color: var(--red-700);
}

.eyebrow--light {
  color: #f4ce8d;
}

.hero {
  position: relative;
  min-height: auto;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fffaf2 0%, #fff4e6 68%, #f7e6cf 100%);
  padding: clamp(68px, 8vw, 112px) 0 0;
}

.hero-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  top: -220px;
  right: -90px;
  border: 1px solid rgba(185, 79, 54, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 74px rgba(213, 163, 72, 0.055),
    0 0 0 148px rgba(185, 79, 54, 0.035);
}

.hero-intro {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
}

.hero-intro .eyebrow {
  margin-bottom: 21px;
}

.hero h1 {
  max-width: 880px;
  margin-inline: auto;
  color: var(--navy-950);
  font-size: clamp(3.3rem, 6.3vw, 6.25rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 690px;
  margin: 29px auto 0;
  color: #6f5d57;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.hero-image {
  position: relative;
  z-index: 2;
  min-height: 620px;
  height: min(49vw, 660px);
  margin-top: 62px;
  overflow: hidden;
  border-radius: 190px 190px 30px 30px;
  box-shadow: 0 32px 85px rgba(72, 35, 31, 0.19);
}

.hero-image::after {
  background: linear-gradient(0deg, rgba(58, 23, 32, 0.32), transparent 38%);
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
}

.hero-image figcaption {
  right: 34px;
  bottom: 30px;
  left: auto;
  min-width: 440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.94);
  color: var(--navy-950);
  padding: 18px 10px;
  box-shadow: 0 18px 45px rgba(58, 23, 32, 0.18);
  backdrop-filter: blur(14px);
}

.hero-image figcaption div {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.hero-image figcaption div + div {
  border-left: 1px solid rgba(91, 36, 51, 0.15);
}

.hero-image figcaption span {
  color: #8d665a;
  font-size: 0.65rem;
  font-weight: 800;
}

.hero-image figcaption strong {
  margin-top: 2px;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.quick-visit {
  background: #fffaf2;
}

.quick-visit__grid {
  min-height: 120px;
}

.quick-icon {
  background: #f7e2c5;
  color: var(--navy-900);
}

.quick-visit__grid strong {
  color: var(--navy-950);
}

.section--cream,
.church-life,
.community {
  background: var(--cream-100);
}

.welcome-intro h2,
.pastoral-copy h2,
.section-heading--center h2,
.watch-copy h2,
.community .section-heading--split h2,
.visit-copy h2 {
  color: var(--navy-950);
}

.pastoral {
  background:
    radial-gradient(circle at 9% 18%, rgba(213, 163, 72, 0.13), transparent 20rem),
    var(--cream-50);
}

.pastoral-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 105px);
}

.pastoral-photo {
  max-width: 470px;
}

.pastoral-photo::before {
  top: -20px;
  right: -22px;
  left: auto;
  width: 64%;
  height: 62%;
  border: 2px solid rgba(213, 163, 72, 0.44);
  border-radius: 170px 170px 25px 25px;
}

.pastoral-photo img {
  aspect-ratio: 0.78;
  border-radius: 170px 170px 25px 25px;
  object-position: center top;
  box-shadow: 0 28px 70px rgba(76, 34, 38, 0.18);
}

.pastoral-photo figcaption {
  right: -28px;
  bottom: 28px;
  min-width: 300px;
  border-radius: 20px;
  background: var(--navy-900);
  box-shadow: 0 16px 32px rgba(58, 23, 32, 0.2);
}

.pastoral-copy {
  margin-left: 0;
  border: 1px solid rgba(91, 36, 51, 0.1);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.64);
  padding: clamp(46px, 6vw, 78px);
  box-shadow: none;
}

.signature {
  color: var(--navy-900);
}

.gatherings {
  background:
    radial-gradient(circle at 90% 16%, rgba(232, 164, 119, 0.18), transparent 23rem),
    #fff8ee;
  color: var(--charcoal);
}

.gatherings .section-heading--split > p {
  color: var(--muted);
}

.gatherings .section-heading--split h2 {
  color: var(--navy-950);
}

.gathering-cards {
  gap: 20px;
  border: 0;
}

.gathering-card,
.gathering-card:first-child {
  min-height: 395px;
  border: 1px solid rgba(91, 36, 51, 0.1);
  border-radius: 30px;
  background: #ffffff;
  color: var(--navy-950);
  box-shadow: 0 15px 45px rgba(91, 36, 51, 0.07);
}

.gathering-card--featured {
  border-color: transparent;
  background: var(--navy-900);
  color: var(--white);
}

.gathering-card--main {
  border-color: transparent;
  background: var(--honey);
  color: var(--navy-950);
}

.gathering-card__day {
  color: #9d7468;
}

.gathering-card--featured .gathering-card__day {
  color: #f4ce8d;
}

.gathering-card--main .gathering-card__day {
  color: rgba(58, 23, 32, 0.64);
}

.gathering-card > p:not(.gathering-card__day) {
  color: var(--muted);
}

.gathering-card--featured > p:not(.gathering-card__day) {
  color: rgba(255, 255, 255, 0.72);
}

.life-card,
.watch-image,
.community-card {
  border-radius: 30px;
}

.life-card {
  background: var(--navy-900);
}

.life-card__scrim {
  background: linear-gradient(0deg, rgba(58, 23, 32, 0.86), transparent 62%);
}

.life-card--text {
  background:
    radial-gradient(circle at 100% 0%, rgba(213, 163, 72, 0.28), transparent 12rem),
    var(--navy-900);
}

.watch {
  background: #fffaf2;
}

.watch-image {
  box-shadow: 0 24px 60px rgba(76, 34, 38, 0.16);
}

.watch-image__play {
  color: var(--navy-900);
}

.community-card {
  box-shadow: 0 15px 42px rgba(91, 36, 51, 0.08);
}

.community-card h3 {
  color: var(--navy-950);
}

.community-card--plain {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12), transparent 12rem),
    var(--green-700);
}

.prayer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 16%, rgba(255, 220, 158, 0.2), transparent 22rem),
    var(--red-600);
}

.prayer::before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  top: -190px;
  left: 7%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.035);
}

.visit {
  background: #fffaf2;
}

.visit-details dt,
.map-card__caption small {
  color: var(--red-700);
}

.visit-details dd {
  color: var(--navy-950);
}

.map-card {
  border-radius: 32px;
  background:
    linear-gradient(25deg, transparent 46%, rgba(255, 255, 255, 0.58) 47% 52%, transparent 53%),
    linear-gradient(115deg, transparent 50%, rgba(255, 255, 255, 0.52) 51% 56%, transparent 57%),
    #e9dcc5;
  box-shadow: 0 24px 60px rgba(76, 34, 38, 0.14);
}

.map-pin {
  background: var(--navy-900);
}

.map-card__caption {
  border-radius: 20px;
}

.map-card__caption strong {
  color: var(--navy-950);
}

.site-footer {
  background: var(--navy-950);
}

.brand--footer .brand-logo {
  background: var(--white);
}

.brand--footer .brand-copy strong {
  color: var(--white);
}

.brand--footer .brand-copy small {
  color: rgba(255, 255, 255, 0.54);
}

@media (max-width: 1180px) {
  .brand-copy {
    max-width: 360px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: none;
  }

  .hero-intro {
    width: min(100% - 48px, 760px);
  }

  .hero-image {
    min-height: 520px;
    height: 66vw;
    border-radius: 110px 110px 26px 26px;
  }

  .pastoral-grid {
    gap: 72px;
  }

  .pastoral-photo {
    width: min(100% - 30px, 470px);
    margin-inline: auto;
  }

  .gathering-card,
  .gathering-card:first-child {
    border: 1px solid rgba(91, 36, 51, 0.1);
  }

  .gathering-card--featured,
  .gathering-card--main {
    border-color: transparent;
  }
}

@media (max-width: 650px) {
  .welcome-bar__inner {
    justify-content: flex-start;
  }

  .header-inner {
    min-height: 82px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-copy {
    max-width: 220px;
  }

  .brand-copy strong {
    font-size: 0.82rem;
    line-height: 1.08;
  }

  .brand-copy small {
    max-width: 210px;
    font-size: 0.49rem;
    line-height: 1.25;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-intro {
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: clamp(3rem, 14.5vw, 4.35rem);
  }

  .hero-lead {
    margin-top: 23px;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-image {
    width: calc(100% - 24px);
    min-height: 455px;
    height: 122vw;
    margin-top: 45px;
    border-radius: 72px 72px 22px 22px;
  }

  .hero-image img {
    object-position: 54% center;
  }

  .hero-image figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
    border-radius: 18px;
    padding: 15px 4px;
  }

  .hero-image figcaption div {
    padding: 0 12px;
  }

  .hero-image figcaption strong {
    font-size: 1rem;
  }

  .pastoral-photo figcaption {
    right: 12px;
    bottom: -35px;
    left: 12px;
  }

  .pastoral-copy {
    border-radius: 25px;
  }

  .gathering-card,
  .life-card,
  .watch-image,
  .community-card,
  .map-card {
    border-radius: 23px;
  }
}

/* Brighter, more colourful refinement */

.welcome-bar {
  background:
    linear-gradient(90deg, #4a1730 0%, #762746 58%, #8c3c45 100%);
}

.site-header {
  background: rgba(255, 250, 240, 0.97);
}

.button--red {
  background: var(--red-600);
  box-shadow: 0 12px 28px rgba(200, 79, 52, 0.24);
}

.button--red:hover {
  background: var(--red-700);
}

.hero {
  background:
    radial-gradient(circle at 8% 10%, rgba(238, 147, 101, 0.28), transparent 24rem),
    radial-gradient(circle at 91% 16%, rgba(227, 179, 63, 0.26), transparent 27rem),
    linear-gradient(145deg, #fffaf0 0%, #fff0d9 54%, #f9d9c4 100%);
}

.hero-glow {
  border-color: rgba(200, 79, 52, 0.18);
  box-shadow:
    0 0 0 74px rgba(227, 179, 63, 0.09),
    0 0 0 148px rgba(238, 147, 101, 0.065);
}

.hero-intro .eyebrow {
  color: var(--red-700);
}

.hero-image {
  box-shadow: 0 34px 88px rgba(111, 44, 49, 0.22);
}

.quick-visit {
  background: #fffdf8;
}

.quick-visit__grid > div:nth-child(1) .quick-icon {
  background: #f9d8c6;
  color: var(--red-700);
}

.quick-visit__grid > div:nth-child(2) .quick-icon {
  background: #f7e4a9;
  color: #765611;
}

.quick-visit__grid > div:nth-child(3) .quick-icon {
  background: #e5ebc9;
  color: #52632f;
}

.section--cream {
  background:
    radial-gradient(circle at 4% 15%, rgba(238, 147, 101, 0.16), transparent 19rem),
    radial-gradient(circle at 92% 86%, rgba(227, 179, 63, 0.14), transparent 22rem),
    #fff0dc;
}

.pastoral {
  background:
    radial-gradient(circle at 8% 18%, rgba(227, 179, 63, 0.18), transparent 20rem),
    radial-gradient(circle at 93% 80%, rgba(238, 147, 101, 0.12), transparent 23rem),
    #fffaf0;
}

.pastoral-copy {
  border-color: rgba(200, 79, 52, 0.14);
  background: rgba(255, 255, 255, 0.76);
}

.pastoral-photo figcaption {
  background: var(--navy-900);
}

.gatherings {
  background:
    radial-gradient(circle at 91% 12%, rgba(238, 147, 101, 0.23), transparent 23rem),
    radial-gradient(circle at 7% 92%, rgba(227, 179, 63, 0.18), transparent 22rem),
    #fff6e8;
}

.gathering-card--featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 219, 170, 0.2), transparent 13rem),
    var(--red-600);
}

.gathering-card--main {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.25), transparent 12rem),
    var(--honey);
}

.gathering-card:nth-child(3) {
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.16), transparent 12rem),
    var(--green-700);
  color: var(--white);
}

.gathering-card:nth-child(3) .gathering-card__day {
  color: #f7e5ae;
}

.gathering-card:nth-child(3) > p:not(.gathering-card__day) {
  color: rgba(255, 255, 255, 0.76);
}

.church-life {
  background:
    radial-gradient(circle at 8% 15%, rgba(227, 179, 63, 0.17), transparent 22rem),
    radial-gradient(circle at 94% 80%, rgba(117, 136, 78, 0.14), transparent 23rem),
    #fff0d8;
}

.life-card--text {
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 179, 63, 0.34), transparent 13rem),
    linear-gradient(145deg, var(--navy-900), #4a1730);
}

.watch {
  background:
    radial-gradient(circle at 93% 12%, rgba(238, 147, 101, 0.13), transparent 21rem),
    #fffdf8;
}

.watch-image__play {
  color: var(--red-600);
}

.community {
  background:
    radial-gradient(circle at 8% 13%, rgba(227, 179, 63, 0.16), transparent 22rem),
    radial-gradient(circle at 93% 90%, rgba(117, 136, 78, 0.17), transparent 24rem),
    #f1f2df;
}

.community-card--plain {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 241, 190, 0.2), transparent 13rem),
    var(--green-700);
}

.prayer {
  background:
    radial-gradient(circle at 92% 16%, rgba(255, 229, 166, 0.26), transparent 22rem),
    linear-gradient(120deg, #b94131 0%, var(--red-600) 54%, #dd7146 100%);
}

.visit {
  background:
    radial-gradient(circle at 7% 88%, rgba(227, 179, 63, 0.16), transparent 22rem),
    #fff8eb;
}

.map-card {
  background:
    linear-gradient(25deg, transparent 46%, rgba(255, 255, 255, 0.62) 47% 52%, transparent 53%),
    linear-gradient(115deg, transparent 50%, rgba(255, 255, 255, 0.57) 51% 56%, transparent 57%),
    #f0dcac;
}

.map-pin {
  background: var(--red-600);
}

.site-footer {
  background:
    radial-gradient(circle at 90% 8%, rgba(200, 79, 52, 0.2), transparent 22rem),
    linear-gradient(145deg, #421327 0%, #5e1e39 60%, #3d1425 100%);
}

/* New Here page */

.desktop-nav .nav-current::after {
  transform: scaleX(1);
}

.newhere-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(238, 147, 101, 0.23), transparent 25rem),
    radial-gradient(circle at 88% 18%, rgba(227, 179, 63, 0.25), transparent 25rem),
    linear-gradient(145deg, #fffaf0 0%, #fff0d9 57%, #f9d9c4 100%);
  padding-block: clamp(72px, 9vw, 126px);
}

.newhere-hero__glow {
  position: absolute;
  width: 410px;
  height: 410px;
  right: -145px;
  bottom: -205px;
  border: 1px solid rgba(200, 79, 52, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 64px rgba(227, 179, 63, 0.08),
    0 0 0 128px rgba(238, 147, 101, 0.055);
}

.newhere-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.72fr);
  gap: clamp(58px, 9vw, 120px);
  align-items: center;
}

.newhere-hero__copy h1 {
  max-width: 760px;
  color: var(--navy-950);
  font-size: clamp(3.3rem, 6.2vw, 6.35rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.newhere-hero__copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 28px;
  color: #6f5d57;
  font-size: clamp(1.03rem, 1.35vw, 1.2rem);
}

.newhere-hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 27px;
}

.sunday-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(91, 36, 51, 0.1);
  border-radius: 42px 42px 24px 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 179, 63, 0.3), transparent 15rem),
    rgba(255, 255, 255, 0.82);
  padding: clamp(38px, 5vw, 58px);
  box-shadow: 0 28px 70px rgba(91, 36, 51, 0.14);
}

.sunday-card__label {
  color: var(--red-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sunday-card__time {
  display: flex;
  align-items: baseline;
  margin-top: 18px;
  color: var(--navy-950);
  font-family: var(--serif);
  line-height: 0.9;
}

.sunday-card__time strong {
  font-size: clamp(5.5rem, 8vw, 7.5rem);
  font-weight: 500;
}

.sunday-card__time span {
  font-size: 1.55rem;
}

.sunday-card h2 {
  margin-top: 19px;
  color: var(--navy-950);
  font-size: 1.75rem;
  font-weight: 500;
}

.sunday-card > p:not(.sunday-card__label) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.sunday-card__rule {
  height: 1px;
  margin-block: 28px 24px;
  background: var(--border);
}

.sunday-card address {
  color: var(--navy-900);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
}

.arrival-strip {
  border-bottom: 1px solid var(--border);
  background: #fffdf8;
}

.arrival-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 118px;
  align-items: center;
}

.arrival-strip__grid > div {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--border);
  padding-inline: 24px;
}

.arrival-strip__grid > div:first-child {
  padding-left: 0;
}

.arrival-strip__grid > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.arrival-strip__grid > div > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #f7e4a9;
  color: #765611;
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 700;
}

.arrival-strip__grid > div:nth-child(1) > span {
  background: #f9d8c6;
  color: var(--red-700);
}

.arrival-strip__grid > div:nth-child(3) > span {
  background: #e5ebc9;
  color: #52632f;
}

.arrival-strip__grid > div:nth-child(4) > span {
  background: #ead8df;
  color: var(--navy-900);
}

.arrival-strip__grid p {
  display: flex;
  flex-direction: column;
  line-height: 1.28;
}

.arrival-strip__grid small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.arrival-strip__grid strong {
  margin-top: 4px;
  color: var(--navy-950);
  font-size: 0.87rem;
}

.arrival-gallery {
  background:
    radial-gradient(circle at 92% 8%, rgba(238, 147, 101, 0.16), transparent 29%),
    var(--cream-50);
}

.arrival-gallery__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 42px;
}

.arrival-gallery__heading h2 {
  max-width: 720px;
}

.arrival-gallery__heading > p {
  color: var(--muted);
}

.arrival-gallery figure,
.welcome-photo figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: var(--cream-100);
  box-shadow: var(--shadow);
}

.arrival-gallery img,
.welcome-photo img {
  height: 100%;
  object-fit: cover;
}

.arrival-gallery figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  background: rgba(74, 23, 48, 0.9);
  color: var(--white);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.arrival-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 20px;
}

.arrival-gallery__grid figure {
  min-height: 430px;
}

.arrival-gallery__sign img {
  object-position: 58% center;
}

.arrival-gallery__parking {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.arrival-gallery__parking figure {
  min-height: 300px;
}

.first-visit {
  background:
    radial-gradient(circle at 4% 15%, rgba(238, 147, 101, 0.14), transparent 20rem),
    #fffaf0;
}

.first-visit__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.first-visit__cards article {
  min-height: 340px;
  border: 1px solid rgba(91, 36, 51, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  padding: 38px;
  box-shadow: 0 15px 42px rgba(91, 36, 51, 0.07);
}

.first-visit__cards article:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.23), transparent 13rem),
    var(--honey);
}

.first-visit__cards article:nth-child(3) {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 241, 190, 0.18), transparent 13rem),
    var(--green-700);
  color: var(--white);
}

.first-visit__number {
  color: var(--red-700);
  font-family: var(--serif);
  font-size: 2.7rem;
  line-height: 1;
}

.first-visit__cards article:nth-child(2) .first-visit__number {
  color: rgba(58, 23, 32, 0.58);
}

.first-visit__cards article:nth-child(3) .first-visit__number {
  color: #f7e5ae;
}

.first-visit__cards h3 {
  margin-top: 42px;
  color: var(--navy-950);
  font-size: 1.8rem;
}

.first-visit__cards article:nth-child(3) h3 {
  color: var(--white);
}

.first-visit__cards article > p:last-child {
  margin-top: 17px;
  color: var(--muted);
  font-size: 0.94rem;
}

.first-visit__cards article:nth-child(3) > p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.sunday-flow {
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 229, 166, 0.18), transparent 24rem),
    linear-gradient(145deg, #4a1730, #762746);
  color: var(--white);
}

.sunday-flow__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(58px, 9vw, 125px);
  align-items: start;
}

.sunday-flow__intro {
  position: sticky;
  top: 150px;
}

.sunday-flow__intro h2 {
  max-width: 530px;
}

.sunday-flow__intro > p:last-child {
  max-width: 500px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.sunday-flow__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sunday-flow__steps li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-block: 31px;
}

.sunday-flow__steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.sunday-flow__steps li > span {
  color: #f4ce8d;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.sunday-flow__steps h3 {
  color: var(--white);
  font-size: 1.55rem;
}

.sunday-flow__steps p {
  max-width: 510px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
}

.newhere-children {
  background:
    radial-gradient(circle at 95% 85%, rgba(117, 136, 78, 0.14), transparent 23rem),
    #fff0d8;
}

.newhere-children__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(55px, 8vw, 105px);
  align-items: center;
}

.newhere-children figure {
  position: relative;
}

.newhere-children figure::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  width: 45%;
  height: 55%;
  border: 2px solid rgba(117, 136, 78, 0.36);
  border-radius: 150px 150px 24px 24px;
}

.newhere-children img {
  position: relative;
  z-index: 1;
  min-height: 520px;
  border-radius: 150px 150px 26px 26px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 28px 70px rgba(76, 34, 38, 0.17);
}

.newhere-children h2 {
  color: var(--navy-950);
}

.newhere-children__grid > div > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
}

.questions {
  background:
    radial-gradient(circle at 8% 15%, rgba(227, 179, 63, 0.15), transparent 21rem),
    #fffdf8;
}

.questions__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(55px, 9vw, 125px);
  align-items: start;
}

.questions__intro {
  position: sticky;
  top: 150px;
}

.questions__intro h2 {
  color: var(--navy-950);
}

.questions__intro > p:last-child {
  margin-top: 22px;
  color: var(--muted);
}

.questions__intro a {
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.questions__list {
  border-top: 1px solid var(--border);
}

.questions__list details {
  border-bottom: 1px solid var(--border);
}

.questions__list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  color: var(--navy-950);
  padding: 25px 52px 25px 0;
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 500;
}

.questions__list summary::-webkit-details-marker {
  display: none;
}

.questions__list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #f9d8c6;
  color: var(--red-700);
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 600;
}

.questions__list details[open] summary::after {
  content: "−";
  background: var(--navy-900);
  color: var(--white);
}

.questions__list details p {
  max-width: 680px;
  padding: 0 52px 26px 0;
  color: var(--muted);
}

.questions__list details p a {
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.newhere-invitation {
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 229, 166, 0.27), transparent 22rem),
    linear-gradient(120deg, #b94131 0%, var(--red-600) 54%, #dd7146 100%);
  color: var(--white);
}

.newhere-invitation__inner {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1.08fr 0.68fr auto;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding-block: 70px;
}

.newhere-invitation h2 {
  max-width: 650px;
  font-size: clamp(2.1rem, 3.4vw, 3.8rem);
}

.newhere-invitation__inner > p {
  color: rgba(255, 255, 255, 0.76);
}

.newhere-invitation__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  white-space: nowrap;
}

.welcome-photo {
  background: var(--cream-100);
}

.welcome-photo__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.welcome-photo figure {
  min-height: 460px;
}

.welcome-photo h2 {
  margin-top: 10px;
}

.welcome-photo__grid > div > p:last-child {
  margin-top: 22px;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .arrival-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 14px;
  }

  .arrival-strip__grid > div {
    border-bottom: 1px solid var(--border);
    padding: 18px 20px;
  }

  .arrival-strip__grid > div:nth-child(2) {
    border-right: 0;
  }

  .arrival-strip__grid > div:nth-child(3),
  .arrival-strip__grid > div:nth-child(4) {
    border-bottom: 0;
  }

  .arrival-strip__grid > div:first-child,
  .arrival-strip__grid > div:last-child {
    padding-inline: 20px;
  }
}

@media (max-width: 900px) {
  .arrival-gallery__heading,
  .welcome-photo__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .arrival-gallery__grid {
    grid-template-columns: 1fr;
  }

  .arrival-gallery__grid figure,
  .welcome-photo figure {
    min-height: 390px;
  }

  .newhere-hero__grid,
  .sunday-flow__grid,
  .newhere-children__grid,
  .questions__grid {
    grid-template-columns: 1fr;
  }

  .sunday-card {
    width: min(100%, 560px);
  }

  .first-visit__cards {
    grid-template-columns: 1fr;
  }

  .first-visit__cards article {
    min-height: auto;
  }

  .first-visit__cards h3 {
    margin-top: 28px;
  }

  .sunday-flow__intro,
  .questions__intro {
    position: static;
  }

  .newhere-children__grid {
    gap: 66px;
  }

  .newhere-invitation__inner {
    grid-template-columns: 1fr 1fr;
  }

  .newhere-invitation__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 650px) {
  .arrival-gallery__heading {
    margin-bottom: 28px;
  }

  .arrival-gallery__grid figure,
  .arrival-gallery__parking figure,
  .welcome-photo figure {
    min-height: 270px;
    border-radius: 12px;
  }

  .arrival-gallery__parking {
    grid-template-columns: 1fr;
  }

  .arrival-gallery figcaption {
    right: 12px;
    bottom: 12px;
  }

  .newhere-hero {
    padding-block: 62px 78px;
  }

  .newhere-hero__grid {
    gap: 48px;
  }

  .newhere-hero__copy h1 {
    font-size: clamp(3rem, 14.5vw, 4.3rem);
  }

  .newhere-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .sunday-card {
    border-radius: 30px 30px 20px 20px;
    padding: 34px 28px;
  }

  .arrival-strip__grid {
    grid-template-columns: 1fr;
  }

  .arrival-strip__grid > div,
  .arrival-strip__grid > div:first-child,
  .arrival-strip__grid > div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 17px 0;
  }

  .arrival-strip__grid > div:nth-child(3) {
    border-bottom: 1px solid var(--border);
  }

  .arrival-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .first-visit__cards article {
    border-radius: 23px;
    padding: 32px 28px;
  }

  .sunday-flow__steps li {
    grid-template-columns: 68px 1fr;
    gap: 18px;
  }

  .sunday-flow__steps li > span {
    font-size: 1.05rem;
  }

  .newhere-children figure::before {
    display: none;
  }

  .newhere-children img {
    min-height: 420px;
    border-radius: 70px 70px 22px 22px;
  }

  .questions__list summary {
    padding-right: 44px;
    font-size: 1.2rem;
  }

  .questions__list details p {
    padding-right: 4px;
  }

  .newhere-invitation__inner {
    grid-template-columns: 1fr;
    padding-block: 64px;
  }

  .newhere-invitation__actions {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }
}

/* About section */

.nav-current {
  color: var(--red-600);
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
}

.about-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 211, 153, 0.22), transparent 24%),
    linear-gradient(128deg, #5c1937 0%, #8e3652 58%, #ac554e 100%);
  color: var(--white);
}

.about-hero--story {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 227, 176, 0.24), transparent 24%),
    linear-gradient(128deg, #64301c 0%, #a74c2f 58%, #d67c4c 100%);
}

.about-hero--beliefs {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 226, 148, 0.24), transparent 24%),
    linear-gradient(128deg, #52612c 0%, #778d45 58%, #aeb35d 100%);
}

.about-hero--leadership {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 226, 174, 0.22), transparent 24%),
    linear-gradient(128deg, #4c1831 0%, #7b2947 58%, #b24f4a 100%);
}

.about-hero__glow {
  position: absolute;
  top: -190px;
  right: -70px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(255, 255, 255, 0.035),
    0 0 0 144px rgba(255, 255, 255, 0.02);
}

.about-hero__grid {
  position: relative;
  z-index: 1;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(60px, 9vw, 130px);
  padding-block: 92px 86px;
}

.about-hero h1 {
  max-width: 830px;
  font-size: clamp(3.5rem, 6.4vw, 6.9rem);
}

.about-hero__grid > p {
  max-width: 470px;
  padding-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-subnav {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.about-subnav__inner {
  min-height: 74px;
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.about-subnav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.about-subnav a:first-child {
  padding-left: 0;
}

.about-subnav a::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -1px;
  left: 22px;
  height: 3px;
  transform: scaleX(0);
  background: var(--red-600);
  transition: transform 180ms ease;
}

.about-subnav a:first-child::after {
  left: 0;
}

.about-subnav a:hover,
.about-subnav a:focus-visible,
.about-subnav a.is-current {
  color: var(--navy-900);
}

.about-subnav a:hover::after,
.about-subnav a:focus-visible::after,
.about-subnav a.is-current::after {
  transform: scaleX(1);
}

.about-intro,
.story-opening,
.beliefs-intro,
.leadership-intro {
  background:
    radial-gradient(circle at 91% 12%, rgba(227, 179, 63, 0.11), transparent 23%),
    var(--cream-50);
}

.about-intro__grid,
.story-opening__grid,
.beliefs-intro__grid,
.leadership-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.about-intro h2,
.story-opening h2,
.beliefs-intro h2,
.leadership-intro h2 {
  max-width: 650px;
  color: var(--navy-900);
}

.about-intro__copy,
.story-opening__copy,
.beliefs-intro__grid > div:last-child {
  color: var(--muted);
}

.about-intro__copy p + p,
.story-opening__copy p + p,
.beliefs-intro__grid > div:last-child p + p {
  margin-top: 22px;
}

.about-intro .large-copy,
.story-opening .large-copy,
.beliefs-intro .large-copy,
.leadership-intro .large-copy {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.9vw, 1.62rem);
  line-height: 1.55;
}

.about-paths {
  background: var(--cream-100);
  padding-block: clamp(75px, 8vw, 112px);
}

.about-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-path {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 34px 34px 8px 34px;
  padding: 44px 38px 38px;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.about-path:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.about-path--story {
  background: var(--white);
}

.about-path--beliefs {
  background: var(--green-700);
  color: var(--white);
}

.about-path--leadership {
  background: #ffdcae;
}

.about-path__number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(118, 39, 70, 0.36);
  font-family: var(--serif);
  font-size: 0.92rem;
}

.about-path--beliefs .about-path__number {
  color: rgba(255, 255, 255, 0.48);
}

.about-path h2 {
  max-width: 340px;
  margin-top: auto;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
}

.about-path__link {
  margin-top: 30px;
  font-size: 0.9rem;
  font-weight: 800;
}

.calling {
  background: var(--white);
}

.calling__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.calling__intro {
  position: sticky;
  top: 30px;
}

.calling__intro h2 {
  max-width: 560px;
  color: var(--navy-900);
}

.calling__intro > p:last-child {
  max-width: 520px;
  margin-top: 25px;
  color: var(--muted);
}

.calling__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.calling__list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  border-top: 1px solid var(--border);
  padding-block: 28px;
}

.calling__list li:last-child {
  border-bottom: 1px solid var(--border);
}

.calling__list span {
  color: var(--red-600);
  font-family: var(--serif);
  font-size: 1rem;
}

.calling__list p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.4;
}

.about-experience {
  background:
    radial-gradient(circle at 12% 14%, rgba(238, 147, 101, 0.13), transparent 22%),
    var(--cream-100);
}

.about-experience__grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-experience__grid article {
  min-height: 295px;
  border: 1px solid rgba(118, 39, 70, 0.12);
  border-radius: 8px 38px 8px 38px;
  background: rgba(255, 255, 255, 0.76);
  padding: 36px;
}

.about-experience__grid article > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  font-family: var(--serif);
}

.about-experience__grid article:nth-child(2) > span {
  background: var(--green-700);
}

.about-experience__grid article:nth-child(3) > span {
  background: var(--honey);
  color: var(--charcoal);
}

.about-experience__grid h3 {
  margin-top: 50px;
  color: var(--navy-900);
  font-size: 1.8rem;
}

.about-experience__grid p {
  margin-top: 13px;
  color: var(--muted);
}

.about-cta {
  background: var(--navy-900);
  color: var(--white);
}

.about-cta__inner {
  min-height: 350px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr) auto;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  padding-block: 70px;
}

.about-cta h2 {
  max-width: 660px;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.about-cta__inner > p {
  color: rgba(255, 255, 255, 0.72);
}

.about-cta .button {
  white-space: nowrap;
}

/* Our story */

.story-timeline {
  position: relative;
  overflow: hidden;
  background: #ffd9b7;
  padding-block: clamp(85px, 9vw, 125px);
}

.story-timeline__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 1px;
  background: rgba(166, 60, 41, 0.16);
}

.story-timeline__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.story-timeline article {
  position: relative;
  min-height: 390px;
  border-radius: 30px 30px 8px 30px;
  background: var(--cream-50);
  padding: 38px 34px;
}

.story-timeline article:nth-child(2) {
  margin-top: 60px;
  background: var(--navy-900);
  color: var(--white);
}

.story-timeline article:nth-child(3) {
  margin-top: 120px;
  background: var(--green-700);
  color: var(--white);
}

.story-timeline__date {
  color: var(--red-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-timeline article:nth-child(2) .story-timeline__date,
.story-timeline article:nth-child(3) .story-timeline__date {
  color: #ffd293;
}

.story-timeline h2 {
  margin-top: 76px;
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.story-timeline article > p:last-child {
  margin-top: 22px;
  color: var(--muted);
}

.story-timeline article:nth-child(2) > p:last-child,
.story-timeline article:nth-child(3) > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.story-purpose {
  background: var(--white);
}

.story-purpose__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.75fr);
  align-items: center;
}

.story-purpose__panel {
  min-height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 70px 8px 70px 8px;
  background: var(--navy-900);
  color: var(--white);
  padding: clamp(45px, 7vw, 88px);
}

.story-purpose__panel h2 {
  max-width: 590px;
}

.story-purpose__panel > p:last-child {
  max-width: 560px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.73);
}

.story-purpose__copy {
  position: relative;
  z-index: 1;
  margin-left: -30px;
  border-radius: 8px 40px 8px 40px;
  background: var(--cream-100);
  padding: clamp(42px, 6vw, 72px);
  box-shadow: var(--shadow);
}

.story-purpose__copy h3 {
  color: var(--navy-900);
  font-size: 2rem;
}

.story-purpose__copy p {
  margin-top: 20px;
  color: var(--muted);
}

.rccg-family {
  background:
    radial-gradient(circle at 88% 18%, rgba(117, 136, 78, 0.13), transparent 24%),
    var(--cream-50);
}

.rccg-family__grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.rccg-family__grid img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.rccg-family__grid h2 {
  color: var(--navy-900);
}

.rccg-family__grid p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 22px;
  color: var(--muted);
}

.rccg-family__grid .text-link {
  margin-top: 27px;
}

/* Beliefs */

.beliefs-list {
  background: var(--cream-100);
  padding-block: clamp(80px, 9vw, 125px);
}

.beliefs-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.belief-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(118, 39, 70, 0.11);
  border-radius: 8px 38px 8px 38px;
  background: rgba(255, 255, 255, 0.82);
  padding: 40px;
}

.belief-card:nth-child(4n + 2),
.belief-card:nth-child(4n + 3) {
  background: #fff0d7;
}

.belief-card__number {
  color: var(--red-600);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.belief-card h2 {
  margin-top: 48px;
  color: var(--navy-900);
  font-size: clamp(2rem, 2.5vw, 2.8rem);
}

.belief-card p {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
}

.belief-card small {
  display: block;
  margin-top: 24px;
  color: var(--green-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.beliefs-practice {
  background: var(--green-700);
  color: var(--white);
}

.beliefs-practice__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.beliefs-practice__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.beliefs-practice__items p {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--green-700);
  color: rgba(255, 255, 255, 0.72);
  padding: 30px;
}

.beliefs-practice__items strong {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.belief-links {
  background: var(--white);
}

.belief-links__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.belief-links__grid h2 {
  color: var(--navy-900);
}

.belief-links__grid p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
}

.belief-links__actions {
  display: flex;
  gap: 14px;
}

/* Leadership */

.leaders {
  background: var(--cream-100);
  padding-block: clamp(80px, 9vw, 130px);
}

.leader {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.leader + .leader {
  margin-top: clamp(85px, 11vw, 155px);
}

.leader figure {
  position: relative;
  z-index: 1;
}

.leader figure::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  width: 42%;
  height: 48%;
  border: 1px solid rgba(166, 60, 41, 0.35);
}

.leader img {
  position: relative;
  z-index: 1;
  height: 690px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 80px 8px 8px 8px;
  box-shadow: var(--shadow);
}

.leader__copy {
  position: relative;
  z-index: 2;
  margin-left: -35px;
  border-radius: 8px 55px 8px 55px;
  background: var(--white);
  padding: clamp(48px, 7vw, 90px);
  box-shadow: var(--shadow);
}

.leader__copy h2 {
  color: var(--navy-900);
}

.leader__copy p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
}

.leader__copy .leader__lead {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.55;
}

.leader--resident {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.75fr);
}

.leader--resident figure {
  grid-column: 2;
  grid-row: 1;
}

.leader--resident figure::before {
  right: -22px;
  left: auto;
  border-color: rgba(117, 136, 78, 0.45);
}

.leader--resident .leader__copy {
  grid-column: 1;
  grid-row: 1;
  margin-right: -35px;
  margin-left: 0;
  background: #fff1da;
}

.leader--resident img {
  height: 610px;
  border-radius: 8px 80px 8px 8px;
  object-position: center 18%;
}

.leadership-values {
  background: var(--white);
}

.leadership-values__grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.leadership-values__grid article {
  min-height: 280px;
  border-radius: 32px 8px 32px 8px;
  padding: 36px;
}

.leadership-values__grid article:nth-child(1) {
  background: #ffdcae;
}

.leadership-values__grid article:nth-child(2) {
  background: var(--green-100);
}

.leadership-values__grid article:nth-child(3) {
  background: var(--cream-100);
}

.leadership-values__grid article > span {
  color: var(--red-600);
  font-family: var(--serif);
}

.leadership-values__grid h3 {
  margin-top: 72px;
  color: var(--navy-900);
  font-size: 1.8rem;
}

.leadership-values__grid p {
  margin-top: 12px;
  color: var(--muted);
}

.leader-contact {
  display: flex;
  align-items: center;
  gap: 22px;
}

@media (max-width: 1050px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-hero__grid > p {
    max-width: 650px;
  }

  .about-paths__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-path:last-child {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .about-path:last-child h2 {
    max-width: 620px;
  }

  .about-cta__inner {
    grid-template-columns: 1fr 0.65fr;
  }

  .about-cta__inner .button,
  .about-cta__inner .leader-contact {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .leader {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  }

  .leader img {
    height: 590px;
  }

  .leader--resident {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  }
}

@media (max-width: 850px) {
  .about-subnav {
    overflow-x: auto;
  }

  .about-subnav__inner {
    width: max-content;
    min-width: 100%;
  }

  .about-intro__grid,
  .story-opening__grid,
  .beliefs-intro__grid,
  .leadership-intro__grid,
  .calling__grid,
  .beliefs-practice__grid,
  .belief-links__grid {
    grid-template-columns: 1fr;
  }

  .calling__intro {
    position: static;
  }

  .about-experience__grid,
  .leadership-values__grid {
    grid-template-columns: 1fr;
  }

  .about-experience__grid article,
  .leadership-values__grid article {
    min-height: 230px;
  }

  .story-timeline__grid {
    grid-template-columns: 1fr;
  }

  .story-timeline article,
  .story-timeline article:nth-child(2),
  .story-timeline article:nth-child(3) {
    min-height: auto;
    margin-top: 0;
  }

  .story-timeline h2 {
    margin-top: 45px;
  }

  .story-purpose__grid {
    grid-template-columns: 1fr;
  }

  .story-purpose__copy {
    margin: -24px 24px 0;
  }

  .rccg-family__grid {
    grid-template-columns: 180px 1fr;
  }

  .beliefs-practice__items {
    grid-template-columns: 1fr 1fr;
  }

  .belief-links__actions {
    justify-content: flex-start;
  }

  .leader,
  .leader--resident {
    grid-template-columns: 1fr;
  }

  .leader figure,
  .leader--resident figure {
    grid-column: 1;
    grid-row: 1;
  }

  .leader__copy,
  .leader--resident .leader__copy {
    grid-column: 1;
    grid-row: 2;
    margin: -35px 24px 0;
  }

  .leader img,
  .leader--resident img {
    height: min(760px, 105vw);
    border-radius: 55px 8px 8px 8px;
  }

  .leader--resident img {
    object-position: center 18%;
  }
}

@media (max-width: 650px) {
  .brand-logo {
    width: 47px;
    height: 47px;
  }

  .about-hero__grid {
    min-height: 440px;
    padding-block: 72px 68px;
  }

  .about-hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.75rem);
  }

  .about-subnav a {
    padding-inline: 16px;
  }

  .about-subnav a:first-child {
    padding-left: 0;
  }

  .about-subnav a::after {
    right: 16px;
    left: 16px;
  }

  .about-paths__grid,
  .beliefs-list__grid,
  .beliefs-practice__items {
    grid-template-columns: 1fr;
  }

  .about-path,
  .about-path:last-child {
    grid-column: auto;
    min-height: 350px;
    border-radius: 28px 28px 8px 28px;
    padding: 34px 28px;
  }

  .calling__list li {
    grid-template-columns: 45px 1fr;
  }

  .about-experience__grid article {
    border-radius: 8px 28px 8px 28px;
    padding: 30px 27px;
  }

  .about-cta__inner {
    grid-template-columns: 1fr;
    padding-block: 64px;
  }

  .about-cta__inner .button,
  .about-cta__inner .leader-contact {
    grid-column: auto;
  }

  .story-timeline article {
    border-radius: 26px 26px 8px 26px;
    padding: 32px 28px;
  }

  .story-purpose__panel {
    min-height: auto;
    border-radius: 45px 8px 45px 8px;
    padding: 48px 30px 70px;
  }

  .story-purpose__copy {
    margin: -30px 12px 0;
    padding: 36px 28px;
  }

  .rccg-family__grid {
    grid-template-columns: 1fr;
  }

  .rccg-family__grid img {
    width: 160px;
  }

  .belief-card {
    min-height: auto;
    border-radius: 8px 30px 8px 30px;
    padding: 32px 28px;
  }

  .belief-card h2 {
    margin-top: 35px;
  }

  .belief-links__actions,
  .leader-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .leader figure::before {
    display: none;
  }

  .leader img,
  .leader--resident img {
    height: 122vw;
    max-height: 690px;
  }

  .leader__copy,
  .leader--resident .leader__copy {
    margin: -24px 10px 0;
    border-radius: 8px 38px 8px 38px;
    padding: 40px 28px;
  }

  .leadership-values__grid article {
    border-radius: 26px 8px 26px 8px;
    padding: 30px 28px;
  }
}

/* Community page */

.community-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(238, 147, 101, 0.3), transparent 28%),
    linear-gradient(125deg, #6d203e 0%, var(--navy-900) 52%, #542238 100%);
  color: var(--white);
}

.community-page-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -230px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.02);
}

.community-page-hero__glow {
  position: absolute;
  top: -85px;
  left: 43%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--honey);
  opacity: 0.85;
  filter: blur(1px);
}

.community-page-hero__grid {
  position: relative;
  z-index: 1;
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  gap: clamp(45px, 7vw, 90px);
  align-items: center;
  padding-block: 78px 88px;
}

.community-page-hero__copy {
  max-width: 520px;
}

.community-page-hero__copy h1 {
  max-width: 640px;
  font-size: clamp(3.4rem, 5.4vw, 6.25rem);
}

.community-page-hero__copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.community-page-hero__actions {
  margin-top: 37px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.community-page-hero__image {
  position: relative;
  margin-right: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
}

.community-page-hero__image::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -28px;
  right: 42px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--green-700);
}

.community-page-hero__image img {
  height: 490px;
  border-radius: 90px 0 0 12px;
  object-fit: cover;
  object-position: 48% center;
  box-shadow: 0 30px 80px rgba(38, 12, 25, 0.3);
}

.community-page-hero__image figcaption {
  position: absolute;
  right: 38px;
  bottom: -27px;
  display: flex;
  flex-direction: column;
  max-width: 330px;
  border-radius: 4px 4px 4px 34px;
  background: var(--cream-100);
  color: var(--navy-900);
  padding: 17px 22px;
  box-shadow: var(--shadow);
}

.community-page-hero__image figcaption span {
  color: var(--red-700);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-page-hero__image figcaption strong {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
}

.community-purpose {
  background:
    radial-gradient(circle at 94% 10%, rgba(227, 179, 63, 0.15), transparent 25%),
    var(--cream-50);
}

.community-purpose__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.community-purpose__grid h2 {
  max-width: 570px;
  color: var(--navy-900);
}

.community-purpose__copy {
  max-width: 570px;
  padding-top: 44px;
  color: var(--muted);
}

.community-purpose__copy .large-copy {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.34rem;
  line-height: 1.55;
}

.community-purpose__copy p + p {
  margin-top: 21px;
}

.community-values {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.community-values article {
  min-height: 225px;
  border-right: 1px solid var(--border);
  padding: 36px 38px 34px;
}

.community-values article:first-child {
  padding-left: 0;
}

.community-values article:last-child {
  border-right: 0;
}

.community-values span {
  color: var(--peach);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.community-values h3 {
  margin-top: 29px;
  color: var(--navy-900);
  font-size: 1.72rem;
}

.community-values p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.94rem;
}

.community-outreach-feature {
  background: var(--green-100);
}

.community-outreach-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 57%) minmax(0, 43%);
  align-items: center;
}

.community-outreach-feature figure {
  position: relative;
}

.community-outreach-feature figure::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 42%;
  height: 42%;
  border: 2px solid rgba(117, 136, 78, 0.45);
  border-radius: 8px 8px 58px 8px;
}

.community-outreach-feature figure img {
  position: relative;
  z-index: 1;
  height: 570px;
  border-radius: 70px 8px 8px 8px;
  object-fit: cover;
  object-position: center 42%;
  box-shadow: var(--shadow);
}

.community-outreach-feature__grid > div {
  position: relative;
  z-index: 2;
  margin-left: -28px;
  border-radius: 8px 56px 8px 8px;
  background: var(--white);
  padding: clamp(45px, 6vw, 78px);
  box-shadow: 0 25px 65px rgba(78, 91, 48, 0.14);
}

.community-outreach-feature__grid h2 {
  color: var(--navy-900);
}

.community-outreach-feature__grid .large-copy {
  margin-top: 26px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.55;
}

.community-outreach-feature__grid div > p:not(.eyebrow):not(.large-copy) {
  margin-top: 20px;
  color: var(--muted);
}

.community-outreach-feature__grid .text-link {
  margin-top: 27px;
}

.community-programmes {
  background:
    radial-gradient(circle at 0 10%, rgba(238, 147, 101, 0.16), transparent 25%),
    var(--white);
}

.community-programme-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 22px;
}

.community-programme-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px 48px 8px 48px;
  padding: 38px 34px;
}

.community-programme-card--image {
  grid-row: span 2;
  min-height: 682px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  color: var(--white);
}

.community-programme-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(48, 22, 29, 0.9), transparent 64%);
}

.community-programme-card--image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.community-programme-card--image > div {
  position: relative;
  z-index: 1;
  padding: 38px;
}

.community-programme-card h3 {
  margin-top: 9px;
  font-size: 2rem;
}

.community-programme-card p:not(.card-kicker) {
  margin-top: 15px;
  line-height: 1.65;
}

.community-programme-card--image p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.75);
}

.community-programme-card--honey {
  background: #f7d785;
  color: #563322;
}

.community-programme-card--green {
  background: var(--green-700);
  color: var(--white);
}

.community-programme-card--green p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.community-programme-card--berry {
  grid-column: span 2;
  background:
    radial-gradient(circle at 86% 20%, rgba(227, 179, 63, 0.25), transparent 24%),
    var(--navy-900);
  color: var(--white);
}

.community-programme-card--berry p:not(.card-kicker) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.74);
}

.community-programme-card__number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.84rem;
  opacity: 0.68;
}

.community-programme-card .card-kicker {
  margin-top: 48px;
}

.community-programme-card--image .card-kicker {
  margin-top: 0;
  color: #f4c583;
}

.community-partnership {
  background: var(--navy-950);
  color: var(--white);
}

.community-partnership__grid {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: clamp(45px, 8vw, 105px);
  align-items: center;
}

.community-partnership__copy h2 {
  max-width: 530px;
}

.community-partnership__copy .large-copy {
  margin-top: 28px;
  color: #f4dca7;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.55;
}

.community-partnership__copy p:not(.eyebrow):not(.large-copy) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
}

.community-partnership figure {
  position: relative;
}

.community-partnership figure::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -20px;
  right: -20px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--peach);
}

.community-partnership figure img {
  position: relative;
  z-index: 1;
  min-height: 360px;
  border-radius: 52px 8px 8px 8px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(20, 7, 13, 0.3);
}

.community-partnership figcaption {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 40px);
  margin: -18px 0 0 24px;
  border-radius: 3px 3px 24px 3px;
  background: var(--cream-100);
  color: var(--navy-900);
  padding: 12px 18px;
  font-size: 0.78rem;
  font-weight: 700;
}

.community-invitation {
  background:
    radial-gradient(circle at 88% 12%, rgba(227, 179, 63, 0.28), transparent 22%),
    var(--cream-100);
}

.community-invitation__inner {
  min-height: 350px;
  display: grid;
  grid-template-columns: 1fr 0.75fr auto;
  gap: 55px;
  align-items: center;
  padding-block: 70px;
}

.community-invitation__inner h2 {
  max-width: 610px;
  color: var(--navy-900);
}

.community-invitation__inner > p {
  color: var(--muted);
}

.community-next {
  border-top: 1px solid var(--border);
  background: var(--white);
}

.community-next__inner {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.community-next__inner p {
  color: var(--muted);
}

@media (max-width: 1000px) {
  .community-page-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 75px 100px;
  }

  .community-page-hero__copy {
    max-width: 720px;
  }

  .community-page-hero__image {
    margin-right: 0;
  }

  .community-page-hero__image img {
    height: min(650px, 64vw);
    border-radius: 70px 8px 8px 8px;
  }

  .community-purpose__grid,
  .community-outreach-feature__grid,
  .community-partnership__grid {
    grid-template-columns: 1fr;
  }

  .community-purpose__copy {
    padding-top: 0;
  }

  .community-outreach-feature__grid > div {
    margin: -45px 36px 0;
  }

  .community-programme-grid {
    grid-template-columns: 1fr 1fr;
  }

  .community-programme-card--image {
    grid-row: auto;
    grid-column: span 2;
    min-height: 580px;
  }

  .community-programme-card--berry {
    grid-column: span 2;
  }

  .community-partnership figure {
    grid-row: 1;
  }

  .community-invitation__inner {
    grid-template-columns: 1fr 1fr;
  }

  .community-invitation__inner .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 650px) {
  .community-page-hero__grid {
    width: min(100% - 32px, 1180px);
    padding-block: 65px 85px;
  }

  .community-page-hero__copy h1 {
    font-size: clamp(3.3rem, 17vw, 4.7rem);
  }

  .community-page-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .community-page-hero__image img {
    height: 98vw;
    max-height: 570px;
    border-radius: 48px 6px 6px 6px;
    object-position: 47% center;
  }

  .community-page-hero__image figcaption {
    right: 12px;
    bottom: -30px;
    left: 18px;
  }

  .community-purpose__grid {
    gap: 36px;
  }

  .community-values {
    grid-template-columns: 1fr;
  }

  .community-values article,
  .community-values article:first-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
  }

  .community-values article:last-child {
    border-bottom: 0;
  }

  .community-values h3 {
    margin-top: 17px;
  }

  .community-outreach-feature figure img {
    height: 112vw;
    max-height: 620px;
    border-radius: 45px 6px 6px 6px;
    object-position: 54% center;
  }

  .community-outreach-feature figure::after {
    display: none;
  }

  .community-outreach-feature__grid > div {
    margin: -30px 10px 0;
    border-radius: 6px 38px 6px 6px;
    padding: 40px 28px;
  }

  .community-programme-grid {
    grid-template-columns: 1fr;
  }

  .community-programme-card,
  .community-programme-card--image,
  .community-programme-card--berry {
    grid-column: auto;
    min-height: 360px;
  }

  .community-programme-card--image {
    min-height: 540px;
  }

  .community-programme-card {
    border-radius: 6px 36px 6px 36px;
    padding: 32px 28px;
  }

  .community-programme-card--image {
    padding: 0;
  }

  .community-programme-card--image > div {
    padding: 32px 28px;
  }

  .community-partnership figure img {
    min-height: 260px;
    border-radius: 36px 6px 6px 6px;
  }

  .community-partnership figcaption {
    width: auto;
    max-width: none;
    margin: -14px 12px 0;
  }

  .community-invitation__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .community-invitation__inner .button {
    grid-column: auto;
  }

  .community-next__inner {
    min-height: 125px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}

/* Events page */

.events-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 10%, rgba(238, 147, 101, 0.3), transparent 23rem),
    radial-gradient(circle at 87% 10%, rgba(227, 179, 63, 0.2), transparent 22rem),
    linear-gradient(135deg, #5b2038 0%, #762746 57%, #a14e3e 100%);
  color: var(--white);
}

.events-page-hero__shape {
  position: absolute;
  right: -100px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(255, 255, 255, 0.024),
    0 0 0 150px rgba(255, 255, 255, 0.018);
}

.events-page-hero__grid {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  padding-block: 84px 105px;
}

.events-page-hero__copy h1 {
  max-width: 680px;
}

.events-page-hero__copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.events-page-hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 26px;
}

.events-page-hero__actions .text-link,
.events-follow .text-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration-color: rgba(255, 255, 255, 0.38);
}

.events-page-hero__image {
  position: relative;
  margin-right: -5vw;
}

.events-page-hero__image img {
  width: 100%;
  height: 520px;
  border-radius: 110px 8px 8px 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 32px 78px rgba(40, 10, 24, 0.36);
}

.events-page-hero__image figcaption {
  position: absolute;
  right: 24px;
  bottom: -24px;
  left: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 4px 4px 28px 4px;
  background: var(--honey);
  color: var(--navy-950);
  padding: 16px 22px;
}

.events-page-hero__image figcaption span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.events-current {
  background: var(--cream-100);
}

.events-current__inner {
  min-height: 235px;
  display: grid;
  grid-template-columns: 1fr 0.8fr auto;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  padding-block: 52px;
}

.events-current__inner h2 {
  max-width: 560px;
  color: var(--navy-900);
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.events-current__inner > p {
  color: var(--muted);
}

.events-weekly {
  background: var(--cream-50);
}

.events-weekly__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.events-weekly__card {
  min-height: 465px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 38px 7px 38px 7px;
  padding: clamp(32px, 4vw, 48px);
  box-shadow: 0 20px 55px rgba(91, 36, 51, 0.09);
}

.events-weekly__card h3 {
  margin-top: 24px;
  font-size: clamp(2rem, 2.5vw, 2.7rem);
}

.events-weekly__card > p:not(.events-weekly__day):not(.events-weekly__time) {
  margin-top: 16px;
}

.events-weekly__day {
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.events-weekly__time {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: 0.9;
}

.events-weekly__links,
.events-weekly__card > .text-link {
  margin-top: auto;
  padding-top: 30px;
}

.events-weekly__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.events-weekly__card--sunday {
  background: var(--honey);
  color: var(--navy-950);
}

.events-weekly__card--wednesday {
  background:
    radial-gradient(circle at 96% 5%, rgba(255, 225, 170, 0.18), transparent 12rem),
    var(--navy-900);
  color: var(--white);
}

.events-weekly__card--wednesday > p:not(.events-weekly__day):not(.events-weekly__time) {
  color: rgba(255, 255, 255, 0.75);
}

.events-weekly__card--thursday {
  background: var(--green-100);
  color: var(--charcoal);
}

.events-calendar {
  background: var(--white);
}

.events-calendar__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 22px;
}

.events-calendar__card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 7px 38px 7px 38px;
  padding: 38px;
}

.events-calendar__card > span {
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
  opacity: 0.6;
}

.events-calendar__card h3 {
  margin-top: 12px;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
}

.events-calendar__card > p:not(.card-kicker) {
  margin-top: 14px;
}

.events-calendar__card .text-link {
  margin-top: auto;
  padding-top: 22px;
}

.events-calendar__card--image {
  position: relative;
  grid-row: span 2;
  min-height: 665px;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0;
}

.events-calendar__card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(45, 16, 27, 0.88), transparent 60%);
}

.events-calendar__card--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-calendar__card--image > div {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 42px;
}

.events-calendar__card--image > div > p:not(.card-kicker) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.events-calendar__card--honey {
  background: var(--cream-100);
  color: var(--navy-950);
}

.events-calendar__card--green {
  background: var(--green-700);
  color: var(--white);
}

.events-calendar__card--green > p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.events-calendar__card--berry {
  grid-column: span 2;
  background: var(--navy-900);
  color: var(--white);
}

.events-calendar__card--berry > p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.events-follow {
  background:
    radial-gradient(circle at 6% 15%, rgba(238, 147, 101, 0.22), transparent 22rem),
    radial-gradient(circle at 96% 90%, rgba(227, 179, 63, 0.18), transparent 20rem),
    var(--navy-950);
  color: var(--white);
}

.events-follow__grid {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
  padding-block: 76px;
}

.events-follow__grid h2 {
  max-width: 620px;
}

.events-follow__grid > div:first-child > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.events-follow__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}

.events-follow .button--outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
}

.events-follow .button--outline-light:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
}

.events-venue {
  background: var(--cream-50);
}

.events-venue__grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.events-venue__grid > div > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
}

.events-venue__grid .button {
  margin-top: 30px;
}

.events-venue__grid aside {
  border-radius: 7px 42px 7px 42px;
  background: var(--cream-100);
  padding: 42px;
}

.events-venue__grid aside strong {
  display: block;
  margin-top: 12px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.events-venue__grid aside p:last-child {
  margin-top: 16px;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .events-page-hero__grid {
    grid-template-columns: 1fr;
  }

  .events-page-hero__image {
    margin-right: 0;
  }

  .events-page-hero__image img {
    height: min(650px, 65vw);
  }

  .events-current__inner {
    grid-template-columns: 1fr 1fr;
  }

  .events-current__inner .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .events-weekly__grid {
    grid-template-columns: 1fr 1fr;
  }

  .events-weekly__card--sunday {
    grid-column: span 2;
  }

  .events-calendar__grid {
    grid-template-columns: 1fr 1fr;
  }

  .events-calendar__card--image {
    grid-column: span 2;
    grid-row: auto;
    min-height: 580px;
  }

  .events-follow__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .events-page-hero__grid {
    width: min(100% - 32px, 1180px);
    min-height: auto;
    padding-block: 66px 88px;
  }

  .events-page-hero__copy h1 {
    font-size: clamp(3.15rem, 16vw, 4.65rem);
  }

  .events-page-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .events-page-hero__image img {
    height: 105vw;
    max-height: 590px;
    border-radius: 52px 6px 6px 6px;
  }

  .events-page-hero__image figcaption {
    right: 12px;
    bottom: -30px;
    left: 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .events-current__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .events-current__inner .button {
    grid-column: auto;
  }

  .events-weekly__grid,
  .events-calendar__grid,
  .events-follow__grid,
  .events-venue__grid {
    grid-template-columns: 1fr;
  }

  .events-weekly__card,
  .events-weekly__card--sunday {
    grid-column: auto;
    min-height: 410px;
    padding: 34px 28px;
  }

  .events-calendar__card,
  .events-calendar__card--image,
  .events-calendar__card--berry {
    grid-column: auto;
    min-height: 360px;
  }

  .events-calendar__card--image {
    min-height: 520px;
  }

  .events-calendar__card,
  .events-calendar__card--image > div {
    padding: 32px 28px;
  }

  .events-calendar__card--image {
    padding: 0;
  }

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

  .events-venue__grid {
    gap: 42px;
  }

  .events-venue__grid aside {
    padding: 34px 28px;
  }
}

/* Current themes and shared upcoming-events calendar */

.home-themes {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 100%, rgba(227, 179, 63, 0.22), transparent 23rem),
    linear-gradient(135deg, #fff8eb 0%, #ffe9d5 100%);
  padding: clamp(70px, 8vw, 112px) 0;
}

.home-themes::after {
  position: absolute;
  top: -140px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(118, 39, 70, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 56px rgba(118, 39, 70, 0.025),
    0 0 0 112px rgba(118, 39, 70, 0.018);
  content: "";
}

.home-themes__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 0.72fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.home-themes__intro {
  align-self: center;
  padding-right: clamp(12px, 3vw, 46px);
}

.home-themes__intro h2 {
  max-width: 520px;
  color: var(--navy-950);
  font-size: clamp(2.45rem, 4vw, 4.15rem);
}

.home-themes__intro > p:last-child {
  max-width: 510px;
  margin-top: 20px;
  color: var(--muted);
}

.theme-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 54px 8px 54px 8px;
  padding: clamp(30px, 4vw, 46px);
  box-shadow: 0 24px 55px rgba(91, 36, 51, 0.12);
}

.theme-card > p {
  position: relative;
  z-index: 1;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 0.98;
}

.theme-card--annual {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 248, 235, 0.34), transparent 13rem),
    var(--honey);
  color: var(--navy-950);
}

.theme-card--annual > span {
  position: absolute;
  top: 10px;
  right: 20px;
  color: rgba(91, 32, 56, 0.08);
  font-family: var(--serif);
  font-size: 7rem;
  font-weight: 600;
  letter-spacing: -0.08em;
  writing-mode: vertical-rl;
}

.theme-card--monthly {
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 179, 63, 0.22), transparent 15rem),
    linear-gradient(145deg, #641f3d 0%, #7d2948 60%, #9d3f45 100%);
  color: var(--white);
}

.theme-card--monthly blockquote {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.theme-card--monthly > span {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.upcoming-home {
  background:
    radial-gradient(circle at 92% 10%, rgba(227, 179, 63, 0.18), transparent 24rem),
    linear-gradient(145deg, #48152b 0%, #68203d 58%, #7d2c42 100%);
  color: var(--white);
}

.upcoming-home .section-heading--split > div:last-child {
  max-width: 510px;
  justify-self: end;
}

.upcoming-home .section-heading--split > div:last-child > p {
  color: rgba(255, 255, 255, 0.72);
}

.upcoming-home .section-heading--split .text-link {
  margin-top: 18px;
}

.featured-event {
  position: relative;
  overflow: hidden;
  border-radius: 36px 7px 36px 7px;
}

.featured-event::after {
  position: absolute;
  right: -75px;
  bottom: -135px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 46px rgba(255, 255, 255, 0.04),
    0 0 0 92px rgba(255, 255, 255, 0.025);
  content: "";
  pointer-events: none;
}

.featured-event__content,
.featured-event__meta,
.featured-event .button {
  position: relative;
  z-index: 1;
}

.featured-event__label {
  color: var(--honey);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured-event__content > p:not(.featured-event__label) {
  margin-top: 12px;
}

.featured-event__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.88rem;
  font-weight: 800;
}

.featured-event__meta span + span::before {
  margin-right: 20px;
  color: var(--honey);
  content: "•";
}

.featured-event--home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-bottom: 20px;
  background:
    radial-gradient(circle at 8% 20%, rgba(227, 179, 63, 0.18), transparent 17rem),
    rgba(255, 250, 240, 0.11);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.featured-event--home h3 {
  margin-top: 7px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.featured-event--home .featured-event__content > p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.featured-event--home .button {
  white-space: nowrap;
}

.upcoming-home__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.upcoming-card {
  min-height: 310px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 34px 7px 34px 7px;
  background: rgba(255, 250, 240, 0.075);
  padding: clamp(28px, 4vw, 44px);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.upcoming-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 250, 240, 0.11);
}

.upcoming-card--next {
  border-color: transparent;
  background: var(--honey);
  color: var(--navy-950);
}

.upcoming-card--next:hover {
  background: #edc65d;
}

.upcoming-card__date {
  width: 92px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 26px 5px 26px 5px;
  background: rgba(255, 255, 255, 0.1);
}

.upcoming-card--next .upcoming-card__date {
  background: rgba(91, 32, 56, 0.1);
}

.upcoming-card__date strong {
  font-family: var(--serif);
  font-size: 3.15rem;
  line-height: 0.9;
}

.upcoming-card__date span {
  margin-top: 10px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.upcoming-card__type,
.event-row__type {
  color: var(--honey);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.upcoming-card--next .upcoming-card__type {
  color: var(--red-700);
}

.upcoming-card h3 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 2.5vw, 2.65rem);
}

.upcoming-card__meta {
  margin-top: 14px;
  font-weight: 800;
}

.upcoming-card__content > p:not(.upcoming-card__type):not(.upcoming-card__meta) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.upcoming-card--next
  .upcoming-card__content
  > p:not(.upcoming-card__type):not(.upcoming-card__meta) {
  color: rgba(74, 23, 48, 0.76);
}

.upcoming-card__content > a {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  color: var(--white);
  font-weight: 800;
}

.upcoming-card--next .upcoming-card__content > a {
  color: var(--navy-950);
}

/* Full events directory */

.events-directory {
  background:
    radial-gradient(circle at 95% 5%, rgba(238, 147, 101, 0.16), transparent 25rem),
    #fffaf0;
}

.featured-event--full {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  min-height: 390px;
  margin-bottom: clamp(54px, 7vw, 88px);
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 179, 63, 0.24), transparent 24rem),
    linear-gradient(145deg, #5c1c37 0%, #762743 65%, #963e45 100%);
  color: var(--white);
  box-shadow: 0 24px 55px rgba(91, 36, 51, 0.16);
}

.featured-event--full:not(:has(.featured-event__image)) {
  grid-template-columns: 1fr;
}

.featured-event__image {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.featured-event--full .featured-event__content {
  align-self: center;
  padding: clamp(34px, 5vw, 70px);
}

.featured-event--full h2 {
  margin-top: 9px;
  color: var(--white);
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
}

.featured-event--full .featured-event__content > p:not(.featured-event__label) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.featured-event--full .featured-event__meta {
  margin-top: 24px;
}

.featured-event--full .button {
  margin-top: 28px;
}

.events-directory__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.event-row {
  display: grid;
  grid-template-columns: 92px minmax(260px, 1.2fr) minmax(260px, 0.85fr) auto;
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  border: 1px solid rgba(118, 39, 70, 0.11);
  border-radius: 28px 5px 28px 5px;
  background: var(--white);
  padding: 28px clamp(24px, 3vw, 40px);
  box-shadow: 0 13px 35px rgba(91, 36, 51, 0.06);
}

.event-row--next {
  border-color: rgba(227, 179, 63, 0.65);
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 179, 63, 0.18), transparent 18rem),
    #fffdf8;
}

.event-row__date {
  width: 82px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 23px 5px 23px 5px;
  background: var(--cream-100);
  color: var(--navy-950);
}

.event-row--next .event-row__date {
  background: var(--honey);
}

.event-row__date strong {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 0.9;
}

.event-row__date span {
  margin-top: 8px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.event-row__type {
  color: var(--red-700);
}

.event-row__main h3 {
  margin-top: 5px;
  color: var(--navy-950);
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
}

.event-row__main > p:last-child {
  margin-top: 9px;
  color: var(--muted);
}

.event-row__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}

.event-row__details div:last-child {
  grid-column: 1 / -1;
}

.event-row__details dt {
  color: var(--red-700);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-row__details dd {
  margin-top: 3px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 700;
}

.event-row__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 17px;
  font-size: 0.82rem;
  font-weight: 800;
}

.event-row__link:hover {
  background: var(--navy-950);
}

@media (max-width: 1100px) {
  .home-themes__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-themes__intro {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .event-row {
    grid-template-columns: 82px 1fr auto;
  }

  .event-row__details {
    grid-column: 2 / 3;
  }

  .event-row__link {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 900px) {
  .upcoming-home__grid {
    grid-template-columns: 1fr;
  }

  .featured-event--home {
    grid-template-columns: 1fr auto;
  }

  .featured-event--home .featured-event__content {
    grid-column: 1 / -1;
  }

  .featured-event--full {
    grid-template-columns: 1fr;
  }

  .featured-event__image {
    min-height: 280px;
    max-height: 390px;
  }
}

@media (max-width: 650px) {
  .home-themes__grid {
    grid-template-columns: 1fr;
  }

  .theme-card {
    min-height: 330px;
    border-radius: 42px 7px 42px 7px;
  }

  .upcoming-home .section-heading--split > div:last-child,
  .events-directory .section-heading--split > div:last-child {
    justify-self: start;
  }

  .upcoming-card {
    min-height: auto;
    grid-template-columns: 68px 1fr;
    gap: 20px;
    padding: 26px 22px;
  }

  .upcoming-card__date {
    width: 68px;
    height: 82px;
    border-radius: 18px 4px 18px 4px;
  }

  .upcoming-card__date strong {
    font-size: 2.25rem;
  }

  .featured-event--home {
    grid-template-columns: 1fr;
    border-radius: 28px 6px 28px 6px;
  }

  .featured-event--home .button {
    justify-self: start;
  }

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

  .featured-event__meta span + span::before {
    display: none;
  }

  .featured-event--full {
    border-radius: 30px 6px 30px 6px;
  }

  .featured-event--full .featured-event__content {
    padding: 34px 24px 40px;
  }

  .event-row,
  .event-row--next {
    grid-template-columns: 68px 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .event-row__date {
    width: 68px;
    height: 78px;
    border-radius: 18px 4px 18px 4px;
  }

  .event-row__date strong {
    font-size: 2.1rem;
  }

  .event-row__details,
  .event-row__link {
    grid-column: 2;
    grid-row: auto;
  }

  .event-row__details {
    grid-template-columns: 1fr;
  }

  .event-row__details div:last-child {
    grid-column: auto;
  }

  .event-row__link {
    justify-self: start;
  }
}

/* Giving, contact and prayer pages */

.give-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(238, 147, 101, 0.24), transparent 25rem),
    radial-gradient(circle at 91% 85%, rgba(227, 179, 63, 0.2), transparent 24rem),
    linear-gradient(135deg, #4a1730 0%, #762746 60%, #963f45 100%);
  color: var(--white);
  padding: clamp(72px, 8vw, 116px) 0;
}

.give-hero__glow {
  position: absolute;
  top: -190px;
  right: -150px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 78px rgba(255, 255, 255, 0.025),
    0 0 0 156px rgba(255, 255, 255, 0.018);
}

.give-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
}

.give-hero__copy h1,
.contact-hero__copy h1,
.prayer-page-hero__copy h1 {
  margin-top: 12px;
  font-size: clamp(3.3rem, 5.8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.give-hero__copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.give-hero__copy .button {
  margin-top: 34px;
}

.give-hero__card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 90px 10px 90px 10px;
  background: rgba(255, 250, 240, 0.1);
  padding: clamp(42px, 5vw, 66px);
  box-shadow: 0 28px 70px rgba(43, 11, 26, 0.24);
  backdrop-filter: blur(10px);
}

.give-hero__card-label {
  color: #f4ce8d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.give-hero__card h2 {
  max-width: 440px;
  margin-top: 12px;
  font-size: clamp(2.2rem, 3.5vw, 3.75rem);
}

.give-hero__card > p:not(.give-hero__card-label) {
  max-width: 430px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.give-hero__seal {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: rgba(255, 255, 255, 0.25);
}

.give-hero__seal span {
  font-family: var(--serif);
  font-size: 3.6rem;
}

.give-hero__seal small {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.giving-ways {
  background:
    radial-gradient(circle at 92% 10%, rgba(227, 179, 63, 0.16), transparent 22rem),
    var(--cream-50);
}

.giving-ways .section-heading--split > p {
  color: var(--muted);
}

.giving-ways__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.giving-option {
  position: relative;
  min-height: 415px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid rgba(118, 39, 70, 0.1);
  border-radius: 36px 7px 36px 7px;
  padding: clamp(34px, 4vw, 48px);
  box-shadow: 0 18px 48px rgba(91, 36, 51, 0.08);
}

.giving-option--online {
  background: var(--honey);
  color: var(--navy-950);
}

.giving-option--transfer {
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 179, 63, 0.23), transparent 14rem),
    var(--navy-900);
  color: var(--white);
}

.giving-option--church {
  background: var(--white);
  color: var(--navy-950);
}

.giving-option__number {
  align-self: flex-end;
  color: rgba(74, 23, 48, 0.18);
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 0.8;
}

.giving-option--transfer .giving-option__number {
  color: rgba(255, 255, 255, 0.16);
}

.giving-option .card-kicker {
  margin-top: 34px;
}

.giving-option h3 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.giving-option > p:not(.card-kicker) {
  max-width: 340px;
  margin-top: 18px;
  color: var(--muted);
}

.giving-option--transfer > p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.giving-option .text-link {
  margin-top: auto;
  padding-top: 30px;
}

.giving-impact {
  background:
    radial-gradient(circle at 7% 18%, rgba(227, 179, 63, 0.18), transparent 21rem),
    linear-gradient(115deg, #4a1730 0%, #762746 72%, #91403f 100%);
  color: var(--white);
  padding: clamp(82px, 10vw, 138px) 0;
}

.giving-impact__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(58px, 9vw, 126px);
}

.giving-impact__intro h2 {
  max-width: 590px;
  margin-top: 12px;
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
}

.giving-impact__intro > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.giving-impact__list {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.giving-impact__list article {
  min-height: 128px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.giving-impact__list article > span {
  color: #f4ce8d;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.giving-impact__list h3 {
  font-size: 1.55rem;
}

.giving-impact__list p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
}

.giving-note {
  background:
    radial-gradient(circle at 12% 20%, rgba(238, 147, 101, 0.13), transparent 20rem),
    #fff7e9;
}

.giving-note__inner {
  max-width: 920px;
  text-align: center;
}

.giving-note blockquote {
  margin-top: 12px;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.giving-note blockquote + p {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.giving-note__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.contact-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(238, 147, 101, 0.17), transparent 24rem),
    linear-gradient(180deg, #fffaf2 0%, #fff1dd 100%);
  padding: clamp(72px, 8vw, 112px) 0;
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(52px, 8vw, 112px);
  align-items: center;
}

.contact-hero__copy h1 {
  color: var(--navy-950);
}

.contact-hero__copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.contact-hero__image {
  position: relative;
}

.contact-hero__image img {
  min-height: 560px;
  height: 46vw;
  max-height: 680px;
  border-radius: 130px 12px 12px 12px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.contact-hero__image figcaption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 22px 6px 22px 6px;
  background: rgba(255, 250, 240, 0.94);
  padding: 20px 24px;
  box-shadow: 0 18px 42px rgba(63, 24, 34, 0.18);
  backdrop-filter: blur(12px);
}

.contact-hero__image figcaption span {
  color: var(--red-700);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-hero__image figcaption strong {
  margin-top: 4px;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.contact-methods {
  background: var(--cream-50);
}

.contact-methods__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-methods__grid article {
  min-height: 375px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(118, 39, 70, 0.1);
  border-radius: 34px 7px 34px 7px;
  background: var(--white);
  padding: clamp(32px, 4vw, 46px);
  box-shadow: 0 16px 44px rgba(91, 36, 51, 0.07);
}

.contact-methods__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px 5px 18px 5px;
  background: var(--cream-100);
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-methods__grid .card-kicker {
  margin-top: 28px;
}

.contact-methods__grid h3 {
  max-width: 100%;
  margin-top: 8px;
  color: var(--navy-950);
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  overflow-wrap: anywhere;
}

.contact-methods__grid article > p:not(.card-kicker) {
  margin-top: 16px;
  color: var(--muted);
}

.contact-methods__grid .text-link {
  margin-top: auto;
  padding-top: 28px;
}

.contact-help {
  background:
    radial-gradient(circle at 90% 12%, rgba(227, 179, 63, 0.2), transparent 23rem),
    var(--navy-900);
  color: var(--white);
  padding: clamp(82px, 10vw, 132px) 0;
}

.contact-help__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(52px, 8vw, 110px);
}

.contact-help__intro h2 {
  max-width: 470px;
  margin-top: 12px;
  font-size: clamp(2.7rem, 4vw, 4.5rem);
}

.contact-help__links {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-help__links > a {
  min-height: 128px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  transition: background 180ms ease, padding 180ms ease;
}

.contact-help__links > a:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-inline: 14px;
}

.contact-help__links > a > span:first-child {
  color: #f4ce8d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-help__links h3 {
  font-size: 1.55rem;
}

.contact-help__links p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.63);
}

.contact-visit {
  background: #fff7ea;
}

.contact-visit__grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(52px, 8vw, 108px);
  align-items: center;
}

.contact-visit__details h2 {
  max-width: 650px;
  margin-top: 10px;
  color: var(--navy-950);
}

.contact-visit__details dl {
  margin-top: 36px;
  border-top: 1px solid rgba(118, 39, 70, 0.14);
}

.contact-visit__details dl > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  border-bottom: 1px solid rgba(118, 39, 70, 0.14);
  padding: 20px 0;
}

.contact-visit__details dt {
  color: var(--red-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-visit__details dd {
  color: var(--navy-950);
  font-weight: 700;
}

.contact-visit__details dd span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.contact-visit__details .button {
  margin-top: 34px;
}

.contact-visit__image img {
  min-height: 560px;
  border-radius: 12px 130px 12px 12px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.prayer-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(227, 179, 63, 0.22), transparent 23rem),
    linear-gradient(135deg, #4a1730 0%, #762746 60%, #984044 100%);
  color: var(--white);
  padding: clamp(72px, 8vw, 112px) 0;
}

.prayer-page-hero__shape {
  position: absolute;
  right: -160px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.025),
    0 0 0 180px rgba(255, 255, 255, 0.016);
}

.prayer-page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.prayer-page-hero__copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.prayer-page-hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.prayer-page-hero__image {
  position: relative;
}

.prayer-page-hero__image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 58%;
  height: 58%;
  border: 2px solid rgba(227, 179, 63, 0.48);
  border-radius: 140px 140px 20px 20px;
}

.prayer-page-hero__image img {
  position: relative;
  min-height: 560px;
  height: 44vw;
  max-height: 650px;
  border-radius: 140px 140px 20px 20px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 28px 72px rgba(43, 11, 26, 0.3);
}

.prayer-options {
  background:
    radial-gradient(circle at 92% 12%, rgba(238, 147, 101, 0.14), transparent 22rem),
    var(--cream-50);
}

.prayer-options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.prayer-options__grid article {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(118, 39, 70, 0.1);
  border-radius: 36px 7px 36px 7px;
  background: var(--white);
  padding: clamp(34px, 4vw, 48px);
  box-shadow: 0 16px 44px rgba(91, 36, 51, 0.07);
}

.prayer-options__grid article:nth-child(2) {
  border-color: transparent;
  background: var(--honey);
}

.prayer-options__grid article > span {
  color: var(--red-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.prayer-options__grid h3 {
  margin-top: 44px;
  color: var(--navy-950);
  font-size: clamp(2rem, 3vw, 3rem);
}

.prayer-options__grid p {
  margin-top: 18px;
  color: var(--muted);
}

.prayer-options__grid .text-link {
  margin-top: auto;
  padding-top: 30px;
}

.prayer-encouragement {
  background:
    radial-gradient(circle at 10% 18%, rgba(227, 179, 63, 0.2), transparent 23rem),
    var(--green-700);
  color: var(--white);
  padding: clamp(88px, 10vw, 140px) 0;
}

.prayer-encouragement__inner {
  max-width: 980px;
  text-align: center;
}

.prayer-encouragement blockquote {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.prayer-encouragement blockquote + p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.prayer-encouragement .button {
  margin-top: 34px;
}

.prayer-next {
  background: #fff7ea;
}

.prayer-next__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.prayer-next__grid h2 {
  max-width: 730px;
  margin-top: 10px;
  color: var(--navy-950);
}

.prayer-next__grid > div:first-child > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 20px;
  color: var(--muted);
}

.prayer-next__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

@media (max-width: 1340px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 1000px) {
  .give-hero__grid,
  .giving-impact__grid,
  .contact-hero__grid,
  .contact-help__grid,
  .contact-visit__grid,
  .prayer-page-hero__grid {
    grid-template-columns: 1fr;
  }

  .give-hero__card {
    min-height: 360px;
  }

  .giving-ways__grid,
  .contact-methods__grid,
  .prayer-options__grid {
    grid-template-columns: 1fr 1fr;
  }

  .giving-option:last-child,
  .contact-methods__grid article:last-child,
  .prayer-options__grid article:last-child {
    grid-column: 1 / -1;
  }

  .contact-hero__image,
  .contact-visit__image,
  .prayer-page-hero__image {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .contact-help__intro h2 {
    max-width: 680px;
  }

  .prayer-next__grid {
    grid-template-columns: 1fr;
  }

  .prayer-next__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  .give-hero,
  .contact-hero,
  .prayer-page-hero {
    padding-block: 64px;
  }

  .give-hero__copy h1,
  .contact-hero__copy h1,
  .prayer-page-hero__copy h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .give-hero__card {
    min-height: 390px;
    border-radius: 54px 7px 54px 7px;
    padding: 38px 28px;
  }

  .giving-ways__grid,
  .contact-methods__grid,
  .prayer-options__grid {
    grid-template-columns: 1fr;
  }

  .giving-option:last-child,
  .contact-methods__grid article:last-child,
  .prayer-options__grid article:last-child {
    grid-column: auto;
  }

  .giving-option,
  .contact-methods__grid article,
  .prayer-options__grid article {
    min-height: 350px;
  }

  .giving-impact__list article,
  .contact-help__links > a {
    grid-template-columns: 38px 1fr;
    padding-block: 22px;
  }

  .contact-help__links > a > span:last-child {
    display: none;
  }

  .contact-hero__image img,
  .contact-visit__image img,
  .prayer-page-hero__image img {
    min-height: 430px;
    height: 116vw;
    max-height: 560px;
    border-radius: 70px 8px 8px 8px;
  }

  .contact-hero__image figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 16px 18px;
  }

  .contact-visit__details dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .prayer-page-hero__image::before {
    top: -12px;
    right: -10px;
    border-radius: 72px 72px 12px 12px;
  }

  .prayer-page-hero__image img {
    border-radius: 72px 72px 12px 12px;
  }

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

/* Magazines */

.magazines-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(227, 179, 63, 0.28), transparent 25rem),
    radial-gradient(circle at 88% 0%, rgba(238, 147, 101, 0.25), transparent 28rem),
    linear-gradient(135deg, #5a1f38 0%, #7c2948 58%, #a34841 100%);
  color: var(--white);
  padding: clamp(76px, 9vw, 128px) 0;
}

.magazines-hero__glow {
  position: absolute;
  right: -150px;
  bottom: -245px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.018);
}

.magazines-hero__inner {
  position: relative;
  max-width: 850px;
}

.magazines-hero h1 {
  margin-top: 12px;
  font-size: clamp(3.6rem, 7vw, 7rem);
}

.magazines-hero__inner > p:last-child {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

.magazine-feature {
  background:
    radial-gradient(circle at 95% 20%, rgba(227, 179, 63, 0.2), transparent 24rem),
    var(--cream-50);
}

.magazine-feature__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) 1.24fr;
  gap: clamp(54px, 8vw, 118px);
  align-items: center;
}

.magazine-cover {
  position: relative;
  width: min(100%, 520px);
  margin-inline: auto;
}

.magazine-cover::before {
  position: absolute;
  z-index: 0;
  top: -22px;
  right: -24px;
  width: 74%;
  height: 72%;
  border-radius: 5px 70px 5px 5px;
  background: var(--honey);
  content: "";
}

.magazine-cover img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 28px 65px rgba(75, 38, 29, 0.24);
}

.magazine-cover figcaption {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: -18px 18px 0 auto;
  border-radius: 18px 4px 18px 4px;
  background: var(--navy-950);
  color: var(--white);
  padding: 13px 18px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.magazine-feature__copy h2 {
  margin-top: 8px;
  color: var(--navy-950);
  font-size: clamp(4.4rem, 8vw, 8rem);
  line-height: 0.9;
}

.magazine-subtitle {
  margin-top: 12px;
  color: var(--red-700);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.magazine-feature__copy .large-copy {
  max-width: 720px;
  margin-top: 30px;
}

.magazine-feature__copy > p:not(.eyebrow):not(.magazine-subtitle):not(.large-copy) {
  max-width: 690px;
  margin-top: 18px;
  color: var(--muted);
}

.magazine-feature__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  margin-top: 34px;
}

.magazine-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 44px;
  border: 1px solid var(--border);
  border-radius: 24px 5px 24px 5px;
  background: var(--border);
}

.magazine-meta div {
  background: rgba(255, 255, 255, 0.58);
  padding: 20px;
}

.magazine-meta dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.magazine-meta dd {
  margin-top: 4px;
  color: var(--navy-950);
  font-weight: 800;
}

.magazine-archive {
  background:
    radial-gradient(circle at 4% 80%, rgba(227, 179, 63, 0.14), transparent 23rem),
    var(--navy-950);
  color: var(--white);
  padding: clamp(78px, 9vw, 126px) 0;
}

.magazine-archive__header {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(46px, 8vw, 112px);
  align-items: end;
}

.magazine-archive__header h2 {
  margin-top: 10px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.magazine-archive__header > p {
  max-width: 560px;
  justify-self: end;
  color: rgba(255, 255, 255, 0.7);
}

.magazine-archive__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 470px), 1fr));
  gap: 24px;
  margin-top: clamp(42px, 6vw, 72px);
}

.archive-card {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px 7px 36px 7px;
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(30px, 5vw, 54px);
}

.archive-card__date {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px 5px 24px 5px;
  background: var(--honey);
  color: var(--navy-950);
}

.archive-card__date span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.archive-card__date strong {
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
}

.archive-card h3 {
  margin-top: 8px;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.archive-card p:not(.card-kicker) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.archive-card .text-link {
  margin-top: 24px;
  color: var(--white);
}

.magazine-contribute {
  background: #fff7ea;
}

.magazine-contribute__inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr auto;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.magazine-contribute h2 {
  max-width: 680px;
  margin-top: 8px;
  color: var(--navy-950);
}

.magazine-contribute__inner > p {
  color: var(--muted);
}

/* Safeguarding */

.safeguarding-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 22%, rgba(227, 179, 63, 0.26), transparent 26rem),
    linear-gradient(135deg, #562038 0%, #762746 58%, #8e384e 100%);
  color: var(--white);
  padding: clamp(76px, 9vw, 128px) 0;
}

.safeguarding-hero__shape {
  position: absolute;
  top: -230px;
  right: -100px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 88px rgba(255, 255, 255, 0.025),
    0 0 0 176px rgba(255, 255, 255, 0.016);
}

.safeguarding-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
}

.safeguarding-hero h1 {
  max-width: 900px;
  margin-top: 10px;
  font-size: clamp(3.5rem, 6.6vw, 6.8rem);
}

.safeguarding-hero__grid > p {
  max-width: 520px;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.safeguarding-commitment {
  background: var(--cream-50);
}

.safeguarding-commitment__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(48px, 8vw, 118px);
}

.safeguarding-commitment h2 {
  max-width: 650px;
  margin-top: 10px;
  color: var(--navy-950);
}

.safeguarding-commitment .large-copy {
  max-width: 570px;
  margin-top: 24px;
}

.safeguarding-principles article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  border-top: 1px solid var(--border);
  padding: 26px 0;
}

.safeguarding-principles article:last-child {
  border-bottom: 1px solid var(--border);
}

.safeguarding-principles article > span {
  color: var(--red-700);
  font-weight: 900;
}

.safeguarding-principles h3 {
  color: var(--navy-950);
  font-size: 1.45rem;
}

.safeguarding-principles p {
  margin-top: 8px;
  color: var(--muted);
}

.safeguarding-report {
  background:
    radial-gradient(circle at 94% 12%, rgba(227, 179, 63, 0.18), transparent 25rem),
    var(--navy-950);
  color: var(--white);
  padding: clamp(84px, 10vw, 142px) 0;
}

.safeguarding-report .section-heading--split > p {
  color: rgba(255, 255, 255, 0.7);
}

.safeguarding-report__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.report-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 32px 7px 32px 7px;
  background: var(--cream-50);
  color: var(--charcoal);
  padding: clamp(30px, 4vw, 46px);
}

.report-card--urgent {
  background: var(--red-600);
  color: var(--white);
}

.report-card h3 {
  margin-top: 10px;
  color: var(--navy-950);
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
}

.report-card--urgent h3 {
  color: var(--white);
}

.report-card > p:not(.card-kicker) {
  margin-top: 18px;
  color: var(--muted);
}

.report-card--urgent > p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.82);
}

.report-card > .text-link,
.report-card__actions {
  margin-top: auto;
  padding-top: 30px;
}

.report-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
}

.safeguarding-report__note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
}

.church-safeguarding {
  background:
    radial-gradient(circle at 10% 80%, rgba(117, 136, 78, 0.14), transparent 24rem),
    #fff8ed;
}

.church-safeguarding__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.church-safeguarding h2 {
  margin-top: 10px;
  color: var(--navy-950);
}

.church-safeguarding__grid > div:first-child > p:last-child {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
}

.church-safeguarding__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.safeguarding-next {
  background: var(--green-700);
  color: var(--white);
  padding: clamp(72px, 8vw, 112px) 0;
}

.safeguarding-next__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.safeguarding-next h2 {
  max-width: 780px;
  margin-top: 8px;
}

/* Privacy */

.privacy-hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(238, 147, 101, 0.22), transparent 25rem),
    var(--navy-950);
  color: var(--white);
  padding: clamp(72px, 8vw, 112px) 0;
}

.privacy-hero__inner {
  max-width: 940px;
}

.privacy-hero h1 {
  margin-top: 10px;
  font-size: clamp(3.4rem, 6vw, 6rem);
}

.privacy-hero__inner > p:last-child {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.66);
}

.privacy-content {
  background: var(--cream-50);
}

.privacy-content__grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 820px);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
  justify-content: center;
}

.privacy-nav {
  position: sticky;
  top: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 24px 5px 24px 5px;
  background: rgba(255, 255, 255, 0.62);
  padding: 24px;
}

.privacy-nav p {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-weight: 900;
}

.privacy-nav a {
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.privacy-nav a:hover {
  color: var(--red-700);
}

.privacy-article section {
  scroll-margin-top: 28px;
  border-top: 1px solid var(--border);
  padding: 34px 0;
}

.privacy-article section:first-child {
  border-top: 0;
  padding-top: 0;
}

.privacy-article h2 {
  color: var(--navy-950);
  font-size: clamp(2.2rem, 3.3vw, 3.5rem);
}

.privacy-article p,
.privacy-article li {
  color: var(--muted);
}

.privacy-article h2 + p,
.privacy-article p + p,
.privacy-article p + ul {
  margin-top: 18px;
}

.privacy-article ul {
  margin-left: 22px;
}

.privacy-article li + li {
  margin-top: 8px;
}

.privacy-article a {
  color: var(--red-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1000px) {
  .magazine-feature__grid,
  .magazine-archive__header,
  .safeguarding-hero__grid,
  .safeguarding-commitment__grid {
    grid-template-columns: 1fr;
  }

  .magazine-archive__header > p {
    justify-self: start;
  }

  .magazine-cover {
    width: min(82%, 520px);
  }

  .magazine-feature__copy {
    max-width: 760px;
  }

  .magazine-contribute__inner {
    grid-template-columns: 1fr;
  }

  .safeguarding-hero__grid {
    gap: 30px;
  }

  .safeguarding-hero__grid > p {
    max-width: 720px;
  }

  .safeguarding-report__grid {
    grid-template-columns: 1fr 1fr;
  }

  .report-card--urgent {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .church-safeguarding__grid {
    grid-template-columns: 1fr;
  }

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

  .privacy-content__grid {
    grid-template-columns: 1fr;
  }

  .privacy-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 18px;
  }

  .privacy-nav p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .magazines-hero,
  .safeguarding-hero,
  .privacy-hero {
    padding-block: 64px;
  }

  .magazine-cover {
    width: calc(100% - 18px);
  }

  .magazine-cover::before {
    top: -14px;
    right: -14px;
  }

  .magazine-meta {
    grid-template-columns: 1fr;
  }

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

  .archive-card__date {
    width: 135px;
    min-height: 125px;
  }

  .safeguarding-report__grid {
    grid-template-columns: 1fr;
  }

  .report-card--urgent {
    grid-column: auto;
  }

  .report-card {
    min-height: 320px;
  }

  .privacy-nav {
    grid-template-columns: 1fr;
  }

  .privacy-nav p {
    grid-column: auto;
  }
}

/* WordPress integration */

body.admin-bar .site-header {
  top: 32px;
}

.oh-form-section {
  background: #fff8ec;
}

.oh-form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.oh-form-intro h2 {
  color: var(--navy-950);
}

.oh-form-intro > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
}

.oh-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--border);
  border-radius: 38px 8px 38px 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.oh-form__field {
  display: grid;
  gap: 8px;
}

.oh-form__field--full,
.oh-form__actions,
.oh-form__notice,
.oh-form__privacy {
  grid-column: 1 / -1;
}

.oh-form label {
  color: var(--navy-950);
  font-weight: 800;
}

.oh-form input,
.oh-form textarea {
  width: 100%;
  border: 1px solid rgba(118, 39, 70, 0.22);
  border-radius: 12px 4px 12px 4px;
  background: var(--cream-50);
  color: var(--charcoal);
  padding: 13px 15px;
  font: inherit;
}

.oh-form textarea {
  min-height: 180px;
  resize: vertical;
}

.oh-form input:focus,
.oh-form textarea:focus {
  outline: 3px solid rgba(227, 179, 63, 0.38);
  border-color: var(--navy-900);
}

.oh-form__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.oh-form__privacy {
  color: var(--muted);
  font-size: 0.9rem;
}

.oh-form__notice {
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 700;
}

.oh-form__notice--success {
  background: var(--green-100);
  color: #43502b;
}

.oh-form__notice--error {
  background: #ffe3dc;
  color: #7f291c;
}

.oh-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.events-directory__empty,
.magazine-archive__empty {
  border: 1px solid var(--border);
  border-radius: 20px 5px 20px 5px;
  background: var(--cream-50);
  padding: 30px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  .oh-form-wrap,
  .oh-form {
    grid-template-columns: 1fr;
  }

  .oh-form__field,
  .oh-form__field--full,
  .oh-form__actions,
  .oh-form__notice,
  .oh-form__privacy {
    grid-column: auto;
  }
}
