:root {
  --ink: #1b202c;
  --ink-soft: #2f3743;
  --paper: #f5f6f2;
  --white: #ffffff;
  --muted: #65717a;
  --green: #88bd45;
  --green-dark: #52762a;
  --red: #d44e47;
  --gold: #e5b44b;
  --line: rgba(27, 32, 44, 0.14);
  --shadow: 0 26px 80px rgba(20, 27, 36, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Avenir, "Avenir Next", Montserrat, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 10, 14, 0.82), rgba(7, 10, 14, 0));
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: clamp(132px, 16vw, 212px);
}

.brand img,
.site-footer img {
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.32));
}

.quick-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 2.1vw, 30px);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-nav a {
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  background: var(--ink);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 11, 16, 0.5), rgba(8, 11, 16, 0.3) 34%, rgba(8, 11, 16, 0.82)),
    linear-gradient(90deg, rgba(8, 11, 16, 0.82), rgba(8, 11, 16, 0.45), rgba(8, 11, 16, 0.36));
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 110px;
  text-align: center;
}

.vision-mark {
  width: min(520px, 88vw);
  margin: 0 auto 28px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.green,
.card-kicker {
  color: var(--green-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin: 0 auto 18px;
  font-size: clamp(3.2rem, 7.9vw, 7.6rem);
  font-weight: 900;
  line-height: 0.92;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

.hero-actions,
.mini-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 4px;
  color: var(--white);
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.button.dark {
  background: var(--ink);
}

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

.button.cafe {
  background: var(--green-dark);
}

.button.gold {
  color: var(--ink);
  background: var(--gold);
}

.button.live {
  background: #2b6f8e;
}

.button.translation {
  background: #2f6f63;
}

.service-strip {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: translateX(-50%);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.service-strip span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-weight: 850;
}

.service-strip span:last-child {
  border-right: 0;
}

.links-section {
  padding: 104px 0 86px;
  background:
    linear-gradient(rgba(245, 246, 242, 0.93), rgba(245, 246, 242, 0.93)),
    url("assets/rotator-bg.jpg") center / cover fixed;
}

.section-heading,
.action-grid,
.visit-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.section-heading h2,
.visit-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.action-card {
  min-width: 0;
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(190px, 0.86fr) 1.14fr;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(18, 25, 34, 0.12);
}

.media-panel {
  min-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.giving-panel {
  background: linear-gradient(135deg, var(--red), #9c2630);
}

.giving-panel img {
  width: min(148px, 64%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.24));
}

.kingdom-panel {
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(rgba(91, 38, 34, 0.72), rgba(91, 38, 34, 0.72)),
    var(--red);
  text-align: center;
  text-transform: uppercase;
}

.live-card {
  min-height: 320px;
  grid-column: 1 / -1;
}

.live-panel {
  padding: clamp(26px, 4vw, 46px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(43, 111, 142, 0.92), rgba(27, 32, 44, 0.94)),
    var(--ink);
  text-align: center;
}

.live-panel p {
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-mark {
  width: min(156px, 52vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 12px rgba(255, 255, 255, 0.08),
    0 22px 46px rgba(0, 0, 0, 0.25);
}

.play-triangle {
  width: 0;
  height: 0;
  margin-left: 10px;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 46px solid var(--white);
}

.event-month,
.event-time {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.event-day {
  margin: 0;
  font-size: clamp(5.6rem, 10vw, 8.4rem);
  font-weight: 900;
  line-height: 0.86;
}

.cafe-panel {
  background: #eef1ed;
}

.cafe-panel img {
  width: min(260px, 78%);
  height: auto;
  object-fit: contain;
}

.jamie-panel img {
  object-position: center 26%;
}

.card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 36px);
}

.card-kicker {
  margin-bottom: 12px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kingdom-card .card-kicker {
  color: var(--red);
}

.live-card .card-kicker {
  color: #2b6f8e;
}

.translation-card .card-kicker {
  color: #2f6f63;
}

.jamie-card .card-kicker {
  color: #9a6b0f;
}

.translation-panel {
  padding: clamp(26px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(47, 111, 99, 0.94), rgba(27, 32, 44, 0.92)),
    var(--ink);
  text-align: center;
}

.translation-panel p {
  margin: 16px 0 0;
  color: var(--white);
  font-size: clamp(1rem, 1.8vw, 1.34rem);
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.translation-mark {
  width: min(160px, 58vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 13px rgba(255, 255, 255, 0.08),
    0 20px 42px rgba(0, 0, 0, 0.24);
}

.translation-mark span,
.translation-mark strong {
  display: block;
}

.translation-mark span {
  margin-bottom: -18px;
  font-size: clamp(3.4rem, 8vw, 5.2rem);
  font-weight: 900;
  line-height: 1;
}

.translation-mark strong {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.action-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.58rem, 2.6vw, 2.35rem);
  font-weight: 900;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.action-card p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.action-card .kingdom-panel p {
  color: var(--white);
}

.action-card .button {
  margin-top: auto;
}

.mini-details {
  justify-content: flex-start;
  margin: 4px 0 22px;
}

.mini-details span {
  padding: 8px 10px;
  background: rgba(136, 189, 69, 0.12);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.visit-section {
  padding: 74px 0 86px;
}

.visit-heading {
  margin-bottom: 32px;
  text-align: center;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.visit-grid article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border-top: 8px solid var(--green);
  box-shadow: 0 16px 38px rgba(18, 25, 34, 0.1);
}

.visit-grid article:nth-child(2) {
  border-top-color: var(--ink);
}

.visit-grid article:nth-child(3) {
  border-top-color: var(--red);
}

.visit-grid h3 {
  margin-bottom: 16px;
  font-size: 1.42rem;
}

.visit-grid p {
  color: var(--muted);
}

.database-block {
  color: var(--white);
  background: var(--red) !important;
}

.database-block p {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 48px 20px 56px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .action-card {
    grid-template-columns: 1fr;
  }

  .media-panel {
    min-height: 220px;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .quick-nav {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    gap: 8px 14px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 136px;
  }

  .service-strip,
  .action-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .service-strip {
    position: static;
    width: 100%;
    transform: none;
  }

  .service-strip span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-strip span:last-child {
    border-bottom: 0;
  }

  .links-section {
    padding-top: 58px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    width: 108px;
  }

  .quick-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    justify-content: stretch;
    gap: 7px 8px;
    font-size: 0.6rem;
  }

  .quick-nav a {
    min-width: 0;
    text-align: center;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 166px;
  }

  .hero-content,
  .section-heading,
  .action-grid,
  .visit-section {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .vision-mark {
    width: min(320px, 82vw);
  }

  .button {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }
}
