@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("assets/fonts/hanken-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --v2-ink: #102a33;
  --v2-charcoal: #173945;
  --v2-cream: #eef3ed;
  --v2-paper: #f8faf7;
  --v2-white: #ffffff;
  --v2-sun: #f3c647;
  --v2-sun-dark: #d7a91f;
  --v2-sea: #13839a;
  --v2-coral: #ef6e5b;
  --v2-lime: var(--v2-sun);
  --v2-lime-dark: var(--v2-sun-dark);
  --v2-blue: var(--v2-sea);
  --v2-line: rgba(16, 42, 51, .17);
  --v2-display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --v2-body: "Hanken Grotesk", Arial, sans-serif;
  --ink: var(--v2-ink);
  --paper: var(--v2-cream);
  --blue: #14788e;
  --blue-dark: #0d6578;
  --blue-bright: var(--v2-blue);
  --orange: var(--v2-coral);
}

html { scroll-padding-top: 96px; }
:where(section, article)[id] { scroll-margin-top: 0; }
body { overflow-x: hidden; color: var(--v2-ink); background: var(--v2-paper); font-family: var(--v2-body); }
.container { width: min(1320px, calc(100% - 72px)); }
.v2-section { padding: clamp(96px, 10vw, 160px) 0; }

.v2-utility {
  position: absolute;
  z-index: 31;
  inset: 0 0 auto;
  height: 36px;
  padding: 0 max(24px, 3.25vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .82);
  background: var(--v2-ink);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.v2-utility p { margin: 0; display: flex; align-items: center; gap: 9px; }
.v2-utility p span { width: 7px; height: 7px; background: var(--v2-sun); border-radius: 50%; box-shadow: 0 0 0 4px rgba(243, 198, 71, .16); }
.v2-utility nav { display: flex; align-items: center; gap: 25px; }
.v2-utility a { transition: color .2s; }
.v2-utility a:hover { color: #fff; }

.site-header {
  top: 36px;
  height: 88px;
  padding: 0 max(24px, 3.25vw);
  color: var(--v2-ink);
  background: rgba(248, 250, 247, .96);
  border-bottom: 1px solid rgba(16, 42, 51, .16);
  backdrop-filter: blur(16px);
}
.site-header.is-sticky {
  top: 0;
  height: 76px;
  color: var(--v2-ink);
  background: rgba(248, 250, 247, .97);
  border-bottom: 1px solid var(--v2-line);
  box-shadow: 0 14px 42px rgba(16, 42, 51, .09);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: var(--v2-scroll-progress, 0%);
  height: 2px;
  background: var(--v2-sea);
  transition: width .08s linear;
}
.brand { gap: 11px; color: var(--v2-ink); font-family: var(--v2-body); font-size: .875rem; letter-spacing: .16em; }
.brand img { width: 52px; height: 52px; }
.site-header nav { gap: clamp(16px, 1.7vw, 31px); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.site-header nav a:not(.nav-cta)::after { height: 2px; bottom: -11px; background: var(--v2-sea); }
.nav-cta { padding: 13px 17px; color: #fff; background: var(--v2-ink); border: 1px solid var(--v2-ink); transition: color .2s, background .2s; }
.nav-cta:hover { color: var(--v2-ink); background: var(--v2-lime); }
.nav-cta span { margin-left: 5px; }

.v2-kicker {
  margin: 0 0 22px;
  color: #51605b;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.v2-kicker-light { color: rgba(255, 255, 255, .68); }
.v2-kicker::before { content: ""; width: 26px; height: 2px; margin-right: 11px; display: inline-block; vertical-align: middle; background: var(--v2-coral); }
.v2-lead { color: var(--v2-ink); font-size: clamp(21px, 2vw, 29px); line-height: 1.42; letter-spacing: -.025em; }

.v2-button {
  min-height: 55px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s, color .2s, background .2s, border-color .2s;
}
.v2-button:hover { transform: translateY(-3px); }
.v2-button-lime { color: var(--v2-ink); background: var(--v2-lime); }
.v2-button-lime:hover { background: #d4ec5b; }
.v2-button-dark { color: #fff; background: var(--v2-ink); }
.v2-button-dark:hover { color: var(--v2-ink); background: var(--v2-lime); }
.v2-button-light { color: var(--v2-ink); background: #fff; }
.v2-button-light:hover { background: var(--v2-lime); }
.v2-arrow-link { display: inline-flex; align-items: center; gap: 13px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.v2-arrow-link span { transition: transform .2s; }
.v2-arrow-link:hover span { transform: translateX(5px); }
.v2-arrow-link-light { color: #fff; }
.v2-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }

.v2-hero {
  position: relative;
  min-height: max(900px, 100svh);
  padding-top: 124px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background: var(--v2-ink);
}
.v2-hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/optimized/whorship.webp") 52% 42% / cover no-repeat;
  animation: v2-hero-breathe 18s ease-in-out infinite alternate;
}
.v2-hero-media::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 31, 39, .94) 0%, rgba(10, 42, 51, .65) 52%, rgba(10, 42, 51, .18) 100%); }
.v2-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 42, 51, .02), transparent 42%, rgba(6, 27, 34, .78)); }
@keyframes v2-hero-breathe { to { transform: scale(1.045); } }
.v2-hero-grid { position: relative; z-index: 2; padding: 100px 0 88px; display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: clamp(50px, 7vw, 110px); align-items: end; }
.v2-hero-copy { align-self: center; max-width: 930px; padding-top: 30px; }
.v2-hero h1 { margin: 0 0 31px; font-family: var(--v2-display); font-size: clamp(78px, 10.2vw, 166px); font-weight: 780; font-stretch: 82%; line-height: .79; letter-spacing: -.065em; text-transform: none; }
.v2-hero h1 span { display: block; }
.v2-hero h1 span:nth-child(2) { margin-left: .34em; }
.v2-hero h1 .v2-hero-accent { margin-left: 0; color: var(--v2-sun); }
.v2-hero-lead { max-width: 590px; margin: 0 0 38px; color: rgba(255, 255, 255, .8); font-size: clamp(17px, 1.55vw, 22px); line-height: 1.55; }
.v2-sunday-card { align-self: end; padding: 30px; color: #fff; background: rgba(8, 36, 44, .9); border: 1px solid rgba(255, 255, 255, .25); backdrop-filter: blur(18px); box-shadow: 0 28px 80px rgba(1, 18, 24, .34); }
.v2-card-heading { display: flex; align-items: center; justify-content: space-between; color: rgba(255, 255, 255, .74); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.v2-card-heading p { margin: 0; color: var(--v2-sun); }
.v2-sunday-card h2 { margin: 24px 0 22px; font-family: var(--v2-display); font-size: 36px; font-weight: 720; font-stretch: 88%; line-height: .96; letter-spacing: -.045em; }
.v2-route-list { position: relative; margin-left: 6px; border-top: 1px solid rgba(255, 255, 255, .17); }
.v2-route-list::before { content: ""; position: absolute; top: 22px; bottom: 22px; left: 5px; width: 2px; background: linear-gradient(var(--v2-coral), var(--v2-sun), var(--v2-sea)); opacity: .9; }
.v2-route-stop { position: relative; min-height: 52px; padding: 7px 0 7px 24px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, .14); transition: color .2s, transform .2s; }
.v2-route-stop > i { position: absolute; z-index: 1; left: 0; width: 12px; height: 12px; background: var(--v2-sun); border: 3px solid #08242c; border-radius: 50%; box-shadow: 0 0 0 1px rgba(255, 255, 255, .55); }
.v2-route-stop:first-child > i, .v2-route-stop:last-child > i { background: var(--v2-coral); }
.v2-route-stop span { min-width: 0; display: flex; flex-direction: column; }
.v2-route-stop b, .v2-route-stop strong { font-size: .875rem; }
.v2-route-stop small { color: rgba(255, 255, 255, .7); font-size: .75rem; }
.v2-route-stop strong { text-align: right; font-variant-numeric: tabular-nums; }
.v2-route-stop:hover { color: var(--v2-sun); transform: translateX(5px); }
.v2-card-cta { margin-top: 25px; display: flex; justify-content: space-between; color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.v2-scroll-cue { position: absolute; z-index: 3; left: max(36px, calc((100% - 1320px) / 2)); bottom: 26px; display: flex; align-items: center; gap: 14px; color: rgba(255, 255, 255, .76); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.v2-scroll-cue i { width: 48px; height: 1px; display: block; background: rgba(255, 255, 255, .58); animation: v2-cue 1.8s ease-in-out infinite; transform-origin: left; }
@keyframes v2-cue { 50% { transform: scaleX(.35); opacity: .45; } }

.v2-marquee { overflow: hidden; color: var(--v2-ink); background: var(--v2-sun); border-bottom: 1px solid rgba(16, 42, 51, .22); }
.v2-marquee > div { width: max-content; min-height: 66px; display: flex; align-items: center; gap: 35px; animation: v2-marquee 28s linear infinite; }
.v2-marquee span { font-family: var(--v2-display); font-size: 18px; letter-spacing: -.02em; text-transform: uppercase; }
.v2-marquee i { width: 10px; height: 10px; background: var(--v2-coral); border-radius: 50%; }
@keyframes v2-marquee { to { transform: translateX(-50%); } }

.v2-welcome { background: var(--v2-cream); }
.v2-welcome-grid { display: grid; grid-template-columns: 110px minmax(0, .92fr) minmax(340px, .68fr); gap: clamp(35px, 6vw, 95px); align-items: start; }
.v2-coast-mark { width: 110px; display: grid; gap: 9px; color: #4e625e; font-size: .75rem; font-weight: 700; letter-spacing: .1em; line-height: 1.35; text-transform: uppercase; }
.v2-coast-mark svg { width: 110px; overflow: visible; }
.v2-coast-mark path { fill: none; stroke: var(--v2-sea); stroke-width: 3; stroke-linecap: round; }
.v2-coast-mark circle { fill: var(--v2-sun); stroke: var(--v2-ink); stroke-width: 1.5; }
.v2-coast-mark circle:first-of-type, .v2-coast-mark circle:last-of-type { fill: var(--v2-coral); }
.v2-welcome-title h2, .v2-section-head h2, .v2-jesus-copy h2, .v2-life-head h2, .v2-story-copy h2, .v2-final-copy h2 {
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(49px, 6.2vw, 92px);
  line-height: .94;
  letter-spacing: -.055em;
  text-transform: none;
  font-weight: 720;
  font-stretch: 88%;
}
.v2-welcome-copy > p:not(.v2-lead):not(.v2-trust) { color: #606762; font-size: 16px; }
.v2-inline-links { margin: 34px 0 38px; display: flex; flex-wrap: wrap; gap: 25px; }
.v2-trust { margin: 0; padding: 19px 0 0; color: #59625d; border-top: 1px solid var(--v2-line); font-size: .875rem; line-height: 1.6; letter-spacing: .04em; text-transform: uppercase; }

.v2-locations { color: #fff; background: var(--v2-ink); }
.v2-locations { position: relative; }
.v2-anchor-alias { position: absolute; top: 0; left: 0; }
.v2-section-head { margin-bottom: 67px; display: grid; grid-template-columns: 1fr minmax(290px, 430px); gap: 50px; align-items: end; }
.v2-section-head h2 { color: #fff; }
.v2-section-head > p { margin: 0; color: rgba(255, 255, 255, .76); font-size: 16px; line-height: 1.65; }
.v2-location-grid { display: grid; grid-template-columns: 1.18fr 1fr 1fr; grid-auto-rows: 330px; gap: 14px; }
.v2-location-card { position: relative; min-width: 0; overflow: hidden; color: #fff; background: var(--v2-charcoal); }
.v2-location-featured { grid-row: span 2; }
.v2-location-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.03); transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .4s; }
.v2-location-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9, 35, 43, .06) 30%, rgba(8, 31, 38, .9) 100%); transition: background .3s; }
.v2-location-card:hover img { transform: scale(1.045); filter: saturate(1); }
.v2-location-card:hover::after { background: linear-gradient(180deg, rgba(9, 35, 43, .01) 22%, rgba(8, 31, 38, .94) 100%); }
.v2-location-region { position: absolute; z-index: 2; top: 22px; left: 22px; padding: 8px 11px; color: var(--v2-ink); background: var(--v2-sun); border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.v2-location-content { position: absolute; z-index: 2; left: 27px; right: 65px; bottom: 25px; }
.v2-location-content p { margin: 0 0 3px; color: rgba(255, 255, 255, .82); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.v2-location-content h3 { margin: 0 0 5px; font-family: var(--v2-display); font-size: clamp(28px, 3vw, 46px); font-weight: 720; font-stretch: 88%; line-height: .95; letter-spacing: -.05em; }
.v2-location-content > span { font-size: .875rem; }
.v2-location-card > i { position: absolute; z-index: 3; right: 22px; bottom: 24px; width: 38px; height: 38px; display: grid; place-items: center; color: var(--v2-ink); background: #fff; border-radius: 50%; font-style: normal; transition: transform .25s, background .25s; }
.v2-location-card:hover > i { transform: rotate(45deg); background: var(--v2-lime); }
.v2-location-featured .v2-location-content { bottom: 35px; }
.v2-location-featured .v2-location-content h3 { font-size: clamp(55px, 6vw, 88px); }

.v2-jesus { min-height: 780px; display: grid; grid-template-columns: 1.15fr .85fr; background: var(--v2-cream); }
.v2-jesus-media { position: relative; min-height: 720px; overflow: hidden; }
.v2-jesus-media > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.08); }
.v2-jesus-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 11, 14, .08), rgba(6, 11, 14, .6)); }
.v2-jesus-mark { position: absolute; z-index: 2; left: 8%; right: 8%; top: 50%; transform: translateY(-50%); text-align: center; }
.v2-jesus-mark span { display: block; margin-bottom: -5px; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.v2-jesus-mark img { width: min(82%, 520px); margin: 0 auto; filter: brightness(0) invert(1); }
.v2-jesus-copy { padding: clamp(70px, 9vw, 145px) clamp(45px, 8vw, 130px); align-self: center; }
.v2-jesus-copy h2 { font-size: clamp(50px, 5.6vw, 84px); }
.v2-jesus-copy > p:not(.v2-kicker):not(.v2-lead) { max-width: 520px; color: #626a65; }
.v2-jesus-copy .v2-button { margin-top: 25px; }

.v2-steps { color: #fff; background: var(--v2-charcoal); }
.v2-section-head-dark h2 { font-size: clamp(54px, 7vw, 102px); }
.v2-steps-grid { border-top: 1px solid rgba(255, 255, 255, .18); }
.v2-step { min-height: 155px; display: grid; grid-template-columns: 70px 1fr 55px; gap: 25px; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, .18); transition: padding .28s, color .28s, background .28s; }
.v2-step > span { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .48); border-radius: 50%; font-size: .875rem; }
.v2-step p { margin: 0 0 6px; color: rgba(255, 255, 255, .72); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.v2-step h3 { margin: 0; font-family: var(--v2-display); font-size: clamp(31px, 4vw, 57px); font-weight: 700; font-stretch: 88%; line-height: 1; letter-spacing: -.04em; }
.v2-step i { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%; font-style: normal; }
.v2-step:hover { padding: 0 24px; color: var(--v2-ink); background: var(--v2-lime); }
.v2-step:hover p { color: rgba(13, 17, 16, .62); }
.v2-step:hover > span, .v2-step:hover i { border-color: rgba(13, 17, 16, .4); }

.v2-life { background: var(--v2-cream); }
.v2-life-head { margin-bottom: 65px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 35px; }
.v2-life-head .v2-kicker { grid-column: 1 / -1; margin-bottom: -10px; }
.v2-life-head h2 { font-size: clamp(53px, 7vw, 103px); }
.v2-life-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-auto-rows: 360px; gap: 14px; }
.v2-life-card { position: relative; overflow: hidden; color: #fff; background: var(--v2-ink); }
.v2-life-card-wide { grid-row: span 2; }
.v2-life-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.78); transition: transform .6s, filter .3s; }
.v2-life-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 7, 7, .02), rgba(5, 7, 7, .86)); }
.v2-life-card:hover img { transform: scale(1.045); filter: saturate(1); }
.v2-life-card > div:last-child { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 27px; }
.v2-life-card span { color: var(--v2-lime); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.v2-life-card h3 { margin: 7px 0; font-family: var(--v2-display); font-size: clamp(31px, 3.5vw, 52px); font-weight: 700; font-stretch: 88%; line-height: .95; letter-spacing: -.04em; }
.v2-life-card p { max-width: 430px; margin: 0; color: rgba(255, 255, 255, .82); font-size: .875rem; }
.v2-life-card-color { color: var(--v2-ink); background: var(--v2-coral); }
.v2-life-card-color::after { display: none; }
.v2-life-card-color span, .v2-life-card-color p { color: rgba(13, 17, 16, .7); }
.v2-life-type { position: absolute; inset: 12px auto auto 14px !important; color: transparent; font-family: var(--v2-display); font-size: clamp(82px, 10vw, 150px); line-height: .8; -webkit-text-stroke: 1px rgba(13, 17, 16, .32); transform: rotate(90deg) translateY(-100%); transform-origin: left top; }

.v2-story { background: #fff; }
.v2-story-grid { display: grid; grid-template-columns: 1.05fr .8fr; gap: clamp(65px, 10vw, 150px); align-items: center; }
.v2-story-images { position: relative; padding: 0 58px 65px 0; }
.v2-story-main { width: 100%; aspect-ratio: 4 / 4.55; object-fit: cover; object-position: 65% center; }
.v2-story-small { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 4 / 3; object-fit: cover; border: 10px solid #fff; }
.v2-story-images > span { position: absolute; left: -24px; top: 50px; padding: 20px 22px; color: var(--v2-ink); background: var(--v2-lime); font-size: .75rem; font-weight: 700; line-height: 1.1; letter-spacing: .12em; text-transform: uppercase; }
.v2-story-images > span strong { font-family: var(--v2-display); font-size: 31px; letter-spacing: -.04em; }
.v2-story-copy h2 { font-size: clamp(49px, 5.7vw, 84px); }
.v2-story-copy > p:not(.v2-kicker):not(.v2-lead) { color: #656d68; }
.v2-story-copy .v2-button { margin-top: 25px; }

.v2-missions { min-height: 820px; display: grid; grid-template-columns: .95fr 1.05fr; overflow: hidden; color: #fff; background: var(--v2-ink); }
.v2-missions-copy { padding: clamp(85px, 9vw, 145px) clamp(36px, 7vw, 120px); display: flex; flex-direction: column; justify-content: space-between; }
.v2-missions h2 { margin: 0 0 30px; font-family: var(--v2-display); font-size: clamp(64px, 8vw, 124px); font-weight: 760; font-stretch: 82%; line-height: .84; letter-spacing: -.06em; }
.v2-missions-copy > div > p:not(.v2-kicker) { max-width: 630px; margin-bottom: 35px; color: rgba(255, 255, 255, .7); font-size: 18px; }
.v2-missions-copy > span { margin-top: 70px; color: rgba(255, 255, 255, .72); font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.v2-missions-gallery { min-height: 820px; display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: 1fr 1fr; gap: 2px; background: var(--v2-ink); }
.v2-mission-photo { position: relative; min-width: 0; min-height: 0; margin: 0; overflow: hidden; background: #2a302e; }
.v2-mission-photo-tall { grid-row: 1 / 3; }
.v2-mission-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84) contrast(1.03); transition: transform .65s, filter .35s; }
.v2-mission-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(5, 8, 7, .74)); }
.v2-mission-photo:hover img { transform: scale(1.035); filter: saturate(1); }
.v2-mission-photo figcaption { position: absolute; z-index: 2; left: 24px; bottom: 21px; font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.v2-final { background: var(--v2-lime); }
.v2-final-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 10vw, 150px); align-items: start; }
.v2-final-copy h2 { font-size: clamp(52px, 6.5vw, 96px); }
.v2-final-copy > p:not(.v2-kicker) { max-width: 550px; margin-top: 30px; font-size: 18px; }
.v2-final-actions { border-top: 1px solid rgba(13, 17, 16, .35); }
.v2-final-actions a { min-height: 115px; display: grid; grid-template-columns: 1fr auto; align-content: center; align-items: center; gap: 7px 25px; border-bottom: 1px solid rgba(13, 17, 16, .35); transition: padding .25s, background .25s; }
.v2-final-actions a:hover { padding: 0 20px; background: rgba(255, 255, 255, .2); }
.v2-final-actions span { font-family: var(--v2-display); font-size: clamp(25px, 3vw, 41px); font-weight: 700; font-stretch: 90%; line-height: 1; letter-spacing: -.035em; }
.v2-final-actions i { grid-row: span 2; width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid rgba(13, 17, 16, .5); border-radius: 50%; font-style: normal; }
.v2-final-actions small { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.site-footer.v2-footer { padding: 0 0 28px; background: var(--v2-ink); }
.v2-footer-intro { min-height: 190px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 45px; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, .15); }
.v2-footer .brand { color: #fff; }
.v2-footer-intro p { color: rgba(255, 255, 255, .74); }
.v2-footer-map { padding: 65px 0 70px; display: grid; grid-template-columns: .65fr 1.45fr .65fr; gap: 80px; }
.v2-footer-map p { margin: 0 0 24px; color: rgba(255, 255, 255, .72); font-size: .75rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.v2-footer-nav, .v2-footer-social { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.v2-footer-nav a, .v2-footer-social a { color: rgba(255, 255, 255, .84); font-size: .875rem; }
.v2-footer-nav a:hover, .v2-footer-social a:hover { color: var(--v2-lime); }
.v2-footer-churches { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
.v2-footer-churches > p { grid-column: 1 / -1; }
.v2-footer-churches a { padding: 13px 0; display: flex; justify-content: space-between; gap: 15px; color: #fff; border-top: 1px solid rgba(255, 255, 255, .14); }
.v2-footer-churches strong { font-size: .875rem; }
.v2-footer-churches span { color: rgba(255, 255, 255, .72); font-size: .875rem; }
.v2-footer .footer-bottom { border-color: rgba(255, 255, 255, .15); }

/* Lenguaje V2 compartido por las páginas interiores */
.internal-page .site-header { top: 36px; }
.internal-page .site-header.is-sticky { top: 0; }
.internal-page .subpage-hero { min-height: 720px; height: min(86vh, 900px); }
.internal-page .subpage-hero::after { background: linear-gradient(180deg, rgba(3, 7, 6, .2), rgba(3, 7, 6, .88)); }
.internal-page .subpage-hero-content { width: min(1320px, calc(100% - 72px)); padding-bottom: 82px; }
.internal-page .breadcrumb { color: rgba(255, 255, 255, .82); font-family: var(--v2-body); font-size: .75rem; font-weight: 700; }
.internal-page .breadcrumb ol { margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; list-style: none; }
.internal-page .breadcrumb li { display: flex; align-items: center; gap: 10px; }
.internal-page .breadcrumb li:not(:last-child)::after { content: "/"; color: rgba(255, 255, 255, .62); }
.internal-page .breadcrumb [aria-current="page"] { color: #fff; }
.internal-page .subpage-hero h1 { font-family: var(--v2-display); font-size: clamp(68px, 9.2vw, 140px); font-weight: 760; font-stretch: 84%; line-height: .84; letter-spacing: -.06em; text-transform: none; }
.internal-page .subpage-hero h1 { max-width: 100%; overflow-wrap: anywhere; }
.internal-page .subpage-hero-meta span { border-color: var(--v2-lime); }
.internal-page h2, .internal-page .page-lead h2, .internal-page .content-split h2, .internal-page .first-visit h2, .internal-page .schedule-section h2, .internal-page .location-section h2, .internal-page .church-team-copy h2, .internal-page .church-contact h2, .internal-page .other-churches-head h2, .internal-page .article-body h2 { font-family: var(--v2-display); font-weight: 700; font-stretch: 90%; text-transform: none; }
.internal-page .section { padding: clamp(90px, 9vw, 140px) 0; }
.internal-page .eyebrow { color: #53615a; font-family: var(--v2-body); font-size: .75rem; font-weight: 700; letter-spacing: .18em; }
.internal-page .eyebrow.light { color: #fff; opacity: .88; }
.internal-page .eyebrow::before { background: var(--v2-lime-dark); }
.internal-page .button { min-height: 54px; border-radius: 0; font-family: var(--v2-body); font-size: .75rem; font-weight: 700; letter-spacing: .1em; }
.internal-page .button-primary, .internal-page .button-dark { background: var(--v2-ink); }
.internal-page .button-primary:hover, .internal-page .button-dark:hover { color: var(--v2-ink); background: var(--v2-lime); }
.internal-page .church-page-aside { background: var(--v2-cream); border-color: var(--v2-lime-dark); }
.internal-page .first-visit, .internal-page .values-section, .internal-page .church-contact { background: var(--v2-charcoal); }
.internal-page .visit-point, .internal-page .value-card { background: var(--v2-charcoal); }
.internal-page .visit-point span, .internal-page .value-card span { color: var(--v2-lime); }
.internal-page .schedule-section, .internal-page .location-section, .internal-page .mission-projects, .internal-page .article-index { background: var(--v2-cream); }
.internal-page .weekly-card, .internal-page .mission-card, .internal-page .team-card { box-shadow: none; }
.internal-page .team-card > img { aspect-ratio: 4 / 5; object-position: center 22%; }
.internal-page .weekly-card, .internal-page .giving-card, .internal-page .mission-card { border-radius: 0; }
.internal-page .cta-band { color: var(--v2-ink); background: var(--v2-lime); }
.internal-page .cta-band .button { color: #fff; background: var(--v2-ink); border-color: var(--v2-ink); }
.internal-page .other-church-card { min-height: 260px; }
.internal-page .other-church-card span { font-family: var(--v2-display); font-size: 22px; font-weight: 700; }
.internal-page .church-page-note, .internal-page .data-warning { border-left: 4px solid var(--v2-coral); }
.internal-page .contact-option { color: var(--v2-ink); }
.internal-page .form-delivery-note { margin: 8px 0 0; color: rgba(255, 255, 255, .78); font-size: .875rem; line-height: 1.55; }
.internal-page .button:disabled { color: #52636a; background: #dce3df; border-color: #dce3df; cursor: not-allowed; transform: none; }
.contact-directory { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-content: start; }
.contact-directory a { position: relative; min-height: 150px; padding: 23px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; border: 1px solid rgba(255, 255, 255, .2); transition: color .2s, background .2s, transform .2s; }
.contact-directory a:last-child { grid-column: 1 / -1; }
.contact-directory a:hover { color: var(--v2-ink); background: var(--v2-sun); transform: translateY(-3px); }
.contact-directory a > span { position: absolute; top: 22px; left: 23px; font-size: .75rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-directory strong { font-family: var(--v2-display); font-size: 28px; line-height: 1; }
.contact-directory small { margin-top: 6px; color: inherit; font-size: .875rem; opacity: .78; }
.contact-directory i { position: absolute; top: 18px; right: 21px; font-size: 22px; font-style: normal; }
.church-direct-contact { min-height: 330px; padding: clamp(28px, 5vw, 54px); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; color: var(--v2-ink); background: var(--v2-sun); }
.church-direct-contact > span { margin-bottom: auto; font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.church-direct-contact h3 { max-width: 560px; margin: 45px 0 12px; font-family: var(--v2-display); font-size: clamp(34px, 4vw, 56px); font-stretch: 82%; line-height: .96; letter-spacing: -.045em; }
.church-direct-contact p { max-width: 610px; margin: 0 0 24px; color: #29434a; font-size: 1rem; }
.church-direct-contact small { margin-top: 16px; color: #29434a; font-size: .875rem; }
.internal-page .data-warning { color: #3f360e; background: #fff4c9; }
.internal-page .site-footer { background: var(--v2-ink); }
.internal-page .quick-facts dt, .internal-page .weekly-card .day { font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.internal-page .visit-point p, .internal-page .weekly-card p, .internal-page .church-page-note,
.internal-page .timeline-item p, .internal-page .article-index a, .internal-page .contact-option p { font-size: .875rem; }

@media (max-width: 1120px) {
  .container { width: min(100% - 48px, 1320px); }
  .site-header nav { gap: 14px; font-size: .75rem; }
  .v2-hero-grid { grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; }
  .v2-welcome-grid { grid-template-columns: 110px 1fr; }
  .v2-welcome-copy { grid-column: 2; }
  .v2-location-grid, .v2-life-grid { grid-template-columns: 1.15fr 1fr; }
  .v2-location-featured, .v2-life-card-wide { grid-row: span 2; }
  .v2-location-card:nth-child(4), .v2-location-card:nth-child(5) { grid-column: span 1; }
  .v2-life-card-color { grid-column: 2; }
  .v2-footer-map { gap: 45px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 80px; }
  .container { width: min(100% - 36px, 1320px); }
  .v2-section { padding: 92px 0; }
  .v2-utility { height: 30px; padding: 0 18px; }
  .v2-utility nav { display: none; }
  .site-header, .internal-page .site-header { top: 30px; height: 76px; padding: 0 18px; }
  .site-header.is-sticky, .internal-page .site-header.is-sticky { top: 0; height: 72px; }
  .site-header, .site-header.is-sticky, .internal-page .site-header, .internal-page .site-header.is-sticky { backdrop-filter: none; }
  .brand img { width: 46px; height: 46px; }
  .brand { position: relative; z-index: 3; font-size: .875rem; }
  .menu-toggle { display: block; z-index: 3; color: var(--v2-ink); }
  .site-header nav { width: 100vw; min-height: 100dvh; padding: 112px 27px 38px; gap: 24px; align-items: flex-start; overflow-y: auto; color: var(--v2-ink); background: var(--v2-cream); font-size: 20px; letter-spacing: -.02em; text-transform: none; }
  .site-header nav a { width: 100%; padding-bottom: 12px; border-bottom: 1px solid var(--v2-line); }
  .site-header nav a::after { display: none; }
  .site-header nav .nav-cta { width: auto; padding: 15px 18px; color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-bottom: 0; }
  .menu-open .menu-toggle { color: var(--v2-ink); }
  .v2-hero { min-height: 1080px; padding-top: 106px; }
  .v2-hero-media { background-position: 57% 42%; }
  .v2-hero-media::before { background: rgba(7, 31, 39, .68); }
  .v2-hero-grid { padding: 72px 0 80px; grid-template-columns: 1fr; gap: 55px; align-content: end; }
  .v2-hero-copy { align-self: end; padding-top: 0; }
  .v2-hero h1 { font-size: clamp(67px, 19.2vw, 126px); line-height: .8; }
  .v2-hero h1 span:nth-child(2) { margin-left: .16em; }
  .v2-hero-lead { max-width: 510px; }
  .v2-sunday-card { width: min(100%, 470px); justify-self: end; }
  .v2-scroll-cue { display: none; }
  .v2-marquee > div { min-height: 57px; }
  .v2-marquee span { font-size: 15px; }
  .v2-welcome-grid { grid-template-columns: 1fr; gap: 34px; }
  .v2-coast-mark { width: min(100%, 180px); }
  .v2-welcome-copy { grid-column: auto; }
  .v2-section-head { grid-template-columns: 1fr; gap: 27px; margin-bottom: 45px; }
  .v2-location-grid, .v2-life-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 330px; }
  .v2-location-featured, .v2-life-card-wide { grid-column: 1 / -1; grid-row: auto; min-height: 540px; }
  .v2-life-card-color { grid-column: auto; }
  .v2-jesus { grid-template-columns: 1fr; }
  .v2-jesus-media { min-height: 630px; }
  .v2-jesus-copy { padding: 90px 36px; }
  .v2-step { grid-template-columns: 55px 1fr 48px; min-height: 132px; gap: 13px; }
  .v2-step h3 { font-size: clamp(26px, 6vw, 42px); }
  .v2-life-head { grid-template-columns: 1fr; }
  .v2-life-head .v2-kicker { grid-column: auto; }
  .v2-story-grid { grid-template-columns: 1fr; }
  .v2-story-images { width: min(100%, 650px); }
  .v2-missions { min-height: 0; grid-template-columns: 1fr; }
  .v2-missions-gallery { min-height: 720px; }
  .v2-final-grid { grid-template-columns: 1fr; gap: 60px; }
  .v2-footer-intro { padding: 50px 0; grid-template-columns: 1fr; gap: 20px; }
  .v2-footer-map { grid-template-columns: 1fr 1fr; }
  .v2-footer-churches { grid-column: 1 / -1; grid-row: 1; }
  .internal-page .subpage-hero-content { width: calc(100% - 36px); }
  .internal-page .subpage-hero h1 { font-size: clamp(56px, 15vw, 104px); }
}

@media (max-width: 560px) {
  .v2-actions { align-items: flex-start; flex-direction: column; }
  .v2-hero { min-height: 1240px; }
  .v2-hero-grid { padding-top: 55px; }
  .v2-hero h1 { font-size: clamp(61px, 18.8vw, 96px); }
  .v2-hero h1 span:nth-child(2) { margin-left: 0; }
  .v2-sunday-card { padding: 24px; }
  .v2-route-stop { min-height: 54px; padding-left: 22px; }
  .v2-route-stop small { display: none; }
  .v2-route-stop b, .v2-route-stop strong { font-size: .875rem; }
  .v2-welcome-title h2, .v2-section-head h2, .v2-jesus-copy h2, .v2-life-head h2, .v2-story-copy h2, .v2-final-copy h2 { font-size: clamp(43px, 13.5vw, 66px); }
  .v2-location-grid, .v2-life-grid { grid-template-columns: 1fr; grid-auto-rows: 370px; }
  .v2-location-featured, .v2-life-card-wide { grid-column: auto; min-height: 470px; }
  .v2-location-featured .v2-location-content h3 { font-size: 54px; }
  .v2-life-card-color { grid-column: auto; }
  .v2-jesus-media { min-height: 480px; }
  .v2-jesus-copy { padding: 80px 18px; }
  .v2-step { grid-template-columns: 43px 1fr; min-height: 128px; }
  .v2-step i { display: none; }
  .v2-step > span { width: 36px; height: 36px; }
  .v2-step:hover { padding: 0 10px; }
  .v2-story-images { padding: 0 28px 48px 0; }
  .v2-story-small { border-width: 6px; }
  .v2-story-images > span { left: -8px; top: 27px; }
  .v2-missions h2 { font-size: clamp(57px, 17vw, 92px); }
  .v2-missions-gallery { min-height: 720px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.2fr .8fr; }
  .v2-final-actions a { min-height: 105px; }
  .v2-final-actions span { font-size: 25px; }
  .v2-footer-map { grid-template-columns: 1fr; gap: 48px; }
  .v2-footer-churches { grid-column: auto; grid-row: auto; grid-template-columns: 1fr; }
  .v2-footer-churches a:last-child { border-bottom: 1px solid rgba(255, 255, 255, .14); }
  .internal-page .subpage-hero { min-height: 650px; }
  .contact-directory { grid-template-columns: 1fr; }
  .contact-directory a:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .v2-hero-media, .v2-marquee > div, .v2-scroll-cue i { animation: none !important; }
}
