/* ========================================
   REVIVAL ONE
   Main Website Styles
======================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}

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

.hero {
  min-height: 100vh;
  width: 100%;

  display: grid;
  grid-template-columns: 1.7fr 0.8fr 0.55fr;
  align-items: center;

  padding: 50px 4vw;

  background:
    radial-gradient(
      circle at 42% 50%,
      rgba(255, 255, 255, 0.06),
      transparent 32%
    ),
    #0a0a0a;
}

.hero-title h1 {
  font-size: clamp(5rem, 12vw, 12rem);
  line-height: 0.78;
  letter-spacing: -0.07em;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-message {
  text-align: center;
}

.hero-message p {
  font-size: clamp(1.4rem, 2.1vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: 0.11em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-event {
  text-align: center;
}

.hero-event p {
  font-size: clamp(1rem, 1.65vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b7b7b7;
}

/* ========================================
   THE CALLING
======================================== */

.calling {
  min-height: 100vh;

  padding:
    clamp(90px, 12vw, 180px)
    clamp(28px, 7vw, 110px);

  background: #f0eee8;
  color: #101010;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  margin-bottom: 50px;
}

.calling h2 {
  max-width: 1200px;

  font-size: clamp(3.4rem, 8.3vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-transform: uppercase;
}

.calling-text {
  max-width: 650px;

  margin-top: 60px;
  margin-left: auto;

  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.6;

  color: #383838;
}

/* ========================================
   EVENT DETAILS
======================================== */

.event-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  max-width: 850px;
  width: 100%;

  margin-top: 80px;
  margin-left: auto;

  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
}

.event-details div {
  padding: 30px 0;
}

.event-details div:first-child {
  border-right: 1px solid #777;
  padding-right: 40px;
}

.event-details div:last-child {
  padding-left: 40px;
}

.event-details span {
  display: block;

  margin-bottom: 10px;

  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  color: #777;
}

.event-details strong {
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  font-weight: 600;
}

/* ========================================
   BUTTON
======================================== */

.revival-button {
  align-self: flex-end;

  margin-top: 55px;

  padding: 20px 34px;

  border: 1px solid #101010;

  color: #101010;
  text-decoration: none;

  font-size: 0.85rem;
  font-weight: 700;

  letter-spacing: 0.13em;
  text-transform: uppercase;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.revival-button:hover {
  background: #101010;
  color: #ffffff;
}

/* ========================================
   MOBILE / TABLET
======================================== */

@media (max-width: 900px) {

  .hero {
    min-height: 100svh;

    grid-template-columns: 1fr;

    align-content: center;
    gap: 55px;

    padding: 50px 25px;
  }

  .hero-title h1 {
    font-size: clamp(5rem, 23vw, 9rem);
  }

  .hero-message,
  .hero-event {
    text-align: left;
  }

  .calling {
    min-height: auto;

    padding:
      100px
      25px;
  }

  .calling h2 {
    font-size: clamp(3.2rem, 14vw, 6rem);
  }

  .calling-text {
    margin-left: 0;
    margin-top: 45px;
  }

  .event-details {
    grid-template-columns: 1fr;

    margin-left: 0;
    margin-top: 55px;
  }

  .event-details div:first-child {
    border-right: 0;
    border-bottom: 1px solid #777;

    padding-right: 0;
  }

  .event-details div:last-child {
    padding-left: 0;
  }

  .revival-button {
    align-self: flex-start;
  }
}

/* ========================================
   REVIVAL EVENT CARDS
======================================== */

.revival-events {
  margin-top: 100px;
  border-top: 1px solid rgba(16, 16, 16, 0.25);
}

.event-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 40px;

  padding: 65px 0;

  border-bottom: 1px solid rgba(16, 16, 16, 0.25);
}

.event-number {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;

  color: #9c7b32;
}

.event-card-content {
  width: 100%;
}

.event-type {
  margin-bottom: 22px;

  font-size: 0.85rem;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #9c7b32;
}

.event-card h3 {
  max-width: 950px;

  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.9;

  letter-spacing: -0.05em;
  font-weight: 800;

  text-transform: uppercase;

  color: #132e55;
}

.youth-event h3 {
  color: #9daf9b;
}

.scripture-reference {
  margin-top: 25px;

  font-size: 0.9rem;
  font-style: italic;

  color: #555;
}

/* ========================================
   EVENT INFORMATION
======================================== */

.event-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;

  margin-top: 60px;

  border-top: 1px solid rgba(16, 16, 16, 0.25);
}

.event-info-grid > div {
  padding: 25px 25px 10px 0;
}

.event-info-grid span {
  display: block;

  margin-bottom: 10px;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #777;
}

.event-info-grid strong {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.4;

  color: #171717;
}

/* ========================================
   SPEAKER PREVIEW
======================================== */

.speaker-preview {
  margin-top: 120px;
  padding-top: 45px;

  border-top: 1px solid rgba(16, 16, 16, 0.25);
}

.speaker-preview .section-label {
  color: #9c7b32;
}

.speaker-preview h3 {
  margin-top: 20px;

  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;

  letter-spacing: -0.05em;
  text-transform: uppercase;

  color: #132e55;
}

.speaker-preview > p:last-child {
  margin-top: 16px;

  font-size: 1rem;
  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: #555;
}

/* ========================================
   MOBILE EVENT CARDS
======================================== */

@media (max-width: 900px) {

  .revival-events {
    margin-top: 70px;
  }

  .event-card {
    grid-template-columns: 1fr;
    gap: 18px;

    padding: 50px 0;
  }

  .event-card h3 {
    font-size: clamp(3rem, 14vw, 5.5rem);
  }

  .event-info-grid {
    grid-template-columns: 1fr;

    margin-top: 40px;
  }

  .event-info-grid > div {
    padding: 20px 0;

    border-bottom: 1px solid rgba(16, 16, 16, 0.15);
  }

  .speaker-preview {
    margin-top: 80px;
  }

  .speaker-preview h3 {
    font-size: clamp(3rem, 13vw, 5rem);
  }
}

/* ========================================
   NZ ARISE — FEATURED MAIN EVENT
======================================== */

.featured-event {
  margin-top: 70px;

  margin-left: -6vw;
  margin-right: -6vw;

  padding:
    clamp(80px, 9vw, 140px)
    6vw;

  background: #132e55;
  color: #f0eee8;

  border-bottom: none;
}

.featured-event .event-number {
  color: #d1aa55;
}

.featured-event .event-type {
  color: #d1aa55;
}

.featured-event h3 {
  max-width: 1200px;

  font-size: clamp(4.5rem, 9vw, 10rem);
  line-height: 0.84;

  color: #f4f0e5;
}

.featured-event .event-scripture {
  max-width: 850px;

  margin-top: 55px;

  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.55;
  font-style: italic;

  color: rgba(244, 240, 229, 0.85);
}

.featured-event .scripture-reference {
  color: #d1aa55;
}

.featured-event .event-info-grid {
  margin-top: 65px;

  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-event .event-info-grid span {
  color: #d1aa55;
}

.featured-event .event-info-grid strong {
  color: #ffffff;
}


/* ========================================
   SCRIPTURE — ALL EVENTS
======================================== */

.event-scripture {
  max-width: 760px;

  margin-top: 35px;

  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.6;
  font-style: italic;

  color: #444;
}


/* ========================================
   MOBILE — FEATURED EVENT
======================================== */

@media (max-width: 900px) {

  .featured-event {
    margin-left: -25px;
    margin-right: -25px;

    padding:
      80px
      25px;
  }

  .featured-event h3 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .featured-event .event-scripture {
    margin-top: 40px;
  }
}

/* ========================================
   NZ ARISE — SAME BACKGROUND AS EVENTS
======================================== */

.featured-event {
  margin-left: 0;
  margin-right: 0;

  padding:
    clamp(70px, 8vw, 120px)
    0;

  background: transparent;
  color: #101010;

  border-bottom: 1px solid rgba(16, 16, 16, 0.25);
}

.featured-event .event-number {
  color: #9c7b32;
}

.featured-event .event-type {
  color: #9c7b32;
}

.featured-event h3 {
  color: #132e55;

  font-size: clamp(4.5rem, 8.5vw, 9rem);
}

.featured-event .event-scripture {
  color: #444;
}

.featured-event .scripture-reference {
  color: #9c7b32;
}

.featured-event .event-info-grid {
  border-top: 1px solid rgba(16, 16, 16, 0.25);
}

.featured-event .event-info-grid span {
  color: #777;
}

.featured-event .event-info-grid strong {
  color: #171717;
}

/* Mobile */
@media (max-width: 900px) {

  .featured-event {
    margin-left: 0;
    margin-right: 0;

    padding:
      60px
      0;
  }

}

/* ========================================
   NZ ARISE TAGLINE
======================================== */

.nz-arise-tagline {
  margin-top: 18px;

  font-size: 0.95rem;
  font-weight: 700;

  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: #2c2c2c;
}
/* ========================================
   HOME HERO — POLISHED
======================================== */

.hero-kicker {
  margin-bottom: 22px;

  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;

  color: #d1aa55;
}

.hero-theme {
  margin: 0;

  font-size: clamp(1.5rem, 2.2vw, 2.5rem) !important;
  line-height: 1.05 !important;
  font-weight: 700;

  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.hero-button {
  display: inline-block;

  margin-top: 35px;
  padding: 17px 24px;

  border: 1px solid rgba(255,255,255,0.7);

  color: #fff;
  text-decoration: none;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.14em;
  text-transform: uppercase;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.hero-button:hover {
  background: #fff;
  color: #0a0a0a;
}

@media (max-width: 900px) {

  .hero-button {
    margin-top: 25px;
  }

}

/* ========================================
   HOME HERO — MATCH GATHERING BACKGROUND
======================================== */

.hero {
  background: #f0eee8;
  color: #101010;
}

.hero-title h1 {
  color: #132e55;
}

.hero-theme {
  color: #132e55;
}

.hero-kicker {
  color: #9c7b32;
}

.hero-event p {
  color: #4a4a4a;
}

.hero-button {
  border-color: #132e55;
  color: #132e55;
}

.hero-button:hover {
  background: #132e55;
  color: #ffffff;
}
/* ========================================
   HOME HERO LOGO
======================================== */

.hero-logo {
  display: block;

  width: 100%;
  max-width: 6100px;
  height: auto;
}

@media (max-width: 900px) {

  .hero-logo {
    max-width: 320px;
  }

}

/* ========================================
   HERO EVENT DETAILS
======================================== */

.hero-event {
  text-align: left;
}

.hero-event-label {
  display: block;

  margin-bottom: 18px;

  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #9c7b32;
}

.hero-event strong {
  display: block;

  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;

  color: #132e55;
}

.hero-event-location {
  display: block;

  margin-top: 18px;

  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  color: #555;
}

/* ========================================
   HOME HERO — TIGHTER DESKTOP LAYOUT
======================================== */

@media (min-width: 901px) {

  .hero {
    grid-template-columns:
      minmax(320px, 420px)
      minmax(300px, 360px)
      minmax(210px, 250px);

    justify-content: center;
    column-gap: clamp(45px, 5vw, 85px);

    padding-left: 4vw;
    padding-right: 4vw;
  }

  .hero-title {
    justify-self: end;
  }

  .hero-message {
    width: 100%;
  }

  .hero-event {
    justify-self: start;
  }

}

/* ========================================
   HOME HERO — LARGE DESKTOP COMPOSITION
======================================== */

@media (min-width: 901px) {

  .hero {
    grid-template-columns:
      minmax(420px, 520px)
      minmax(390px, 450px)
      minmax(260px, 310px);

    column-gap: clamp(55px, 4vw, 80px);

    padding-left: 3vw;
    padding-right: 3vw;
  }

  /* NZ ARISE logo */
  .hero-logo {
    max-width: 510px;
  }

  /* 06 — 08 NOVEMBER */
  .hero-kicker {
    font-size: 0.82rem !important;
    margin-bottom: 28px;
  }

  /* REVIVAL OF A NATION */
  .hero-theme {
    font-size: clamp(2.8rem, 3.2vw, 4rem) !important;
    line-height: 0.98 !important;
  }

  /* CTA button */
  .hero-button {
    margin-top: 38px;
    padding: 20px 30px;

    font-size: 0.8rem;
  }

  /* MAIN GATHERING */
  .hero-event-label {
    font-size: 0.76rem;
    margin-bottom: 22px;
  }

  /* Sunday / 08 Nov */
  .hero-event strong {
    font-size: clamp(3.1rem, 3.8vw, 4.4rem);
  }

  /* Auckland */
  .hero-event-location {
    margin-top: 22px;
    font-size: 0.9rem;
  }

}
/* ========================================
   NZ ARISE HERO LOGO — ENLARGE VISUALLY
======================================== */

@media (min-width: 901px) {

  .hero-logo {
    transform: scale(1.28);
    transform-origin: center;
  }

}

/* ========================================
   MINIMAL EDITORIAL HEADER
======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  padding: 24px 32px;

  background: rgba(240, 238, 232, 0.92);
  backdrop-filter: blur(10px);
}

.site-brand,
.site-nav-link {
  color: #132e55;
  text-decoration: none;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-brand {
  justify-self: start;
}

.site-nav-link {
  justify-self: end;
}

.site-header-meta {
  justify-self: center;

  color: #9c7b32;

  font-size: 0.65rem;
  font-weight: 700;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-brand,
.site-nav-link {
  transition: opacity 0.25s ease;
}

.site-brand:hover,
.site-nav-link:hover {
  opacity: 0.55;
}

@media (max-width: 700px) {

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 20px;
  }

  .site-header-meta {
    display: none;
  }

}

/* ========================================
   HERO INTRO ANIMATION
======================================== */

.hero-logo,
.hero-kicker,
.hero-theme,
.hero-button,
.hero-event {
  opacity: 0;
  transform: translateY(24px);
}

.hero-logo {
  animation: heroReveal 0.9s ease-out 0.15s forwards;
}

.hero-kicker {
  animation: heroReveal 0.8s ease-out 0.45s forwards;
}

.hero-theme {
  animation: heroReveal 0.9s ease-out 0.65s forwards;
}

.hero-button {
  animation: heroReveal 0.8s ease-out 0.9s forwards;
}

.hero-event {
  animation: heroRevealRight 0.9s ease-out 0.75s forwards;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRevealRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  .hero-logo,
  .hero-kicker,
  .hero-theme,
  .hero-button,
  .hero-event {
    opacity: 1;
    transform: none;
    animation: none;
  }

}
/* ========================================
   HERO — CENTER ALL THREE COLUMNS
======================================== */

@media (min-width: 901px) {

  .hero {
    justify-content: center;
    align-items: center;

    grid-template-columns:
      430px
      470px
      300px;

    column-gap: 55px;
  }

  .hero-title,
  .hero-message,
  .hero-event {
    justify-self: center;
    align-self: center;
  }

  .hero-title {
    text-align: center;
  }

  .hero-message {
    text-align: center;
  }

  .hero-event {
    text-align: center;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

}
/* ========================================
   HERO — PULL OUTER COLUMNS INWARD
======================================== */

@media (min-width: 901px) {

  .hero {
    grid-template-columns:
      360px
      460px
      300px;

    column-gap: 20px;
    justify-content: center;
  }

  .hero-title {
    justify-self: end;
  }

  .hero-message {
    justify-self: center;
  }

  .hero-event {
    justify-self: start;
    text-align: center;
  }

  .hero-logo {
    transform: scale(1.28);
    transform-origin: right center;
  }

}

/* ========================================
   FULLSCREEN WORD CYCLE
======================================== */

.word-cycle {
  position: relative;
  overflow: hidden;

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 120px 6vw;

  background: #132e55;
  color: #f0eee8;
}

.word-cycle-inner {
  width: min(1200px, 100%);
}

.word-kicker {
  margin: 0 0 36px 0;

  color: #d1aa55;

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.word-stage {
  position: relative;

  min-height: 220px;
}

.word-item {
  position: absolute;
  left: 0;
  top: 50%;

  transform: translateY(-50%);

  display: block;

  font-size: clamp(4.5rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 800;
  text-transform: uppercase;

  color: #f0eee8;

  opacity: 0;
  animation: wordCycleReveal 9s ease-in-out infinite;
}

.word-item:nth-child(1) {
  animation-delay: 0s;
}

.word-item:nth-child(2) {
  animation-delay: 3s;
}

.word-item:nth-child(3) {
  animation-delay: 6s;
}

.word-support {
  margin-top: 48px;
  max-width: 620px;

  color: rgba(240, 238, 232, 0.82);

  font-size: 1rem;
  line-height: 1.7;
}

@keyframes wordCycleReveal {
  0% {
    opacity: 0;
    transform: translateY(-40%) translateX(0);
     filter: brightness(0.7);
  }

8% {
  opacity: 1;
  transform: translateY(-50%) translateX(18px);
  filter: brightness(1.25);
}

26% {
  opacity: 1;
  transform: translateY(-50%) translateX(18px);
  filter: brightness(1.25);
}

  33% {
    opacity: 0;
    transform: translateY(-60%) translateX(0);
     filter: brightness(0.7);
  }

  100% {
    opacity: 0;
    transform: translateY(-60%) translateX(0);
     filter: brightness(0.7);
  }
}


/* MOBILE */

@media (max-width: 900px) {

  .word-cycle {
    min-height: 85vh;
    padding: 90px 24px;
  }

  .word-kicker {
    margin-bottom: 28px;
    font-size: 0.72rem;
  }

  .word-stage {
    min-height: 160px;
  }

  .word-item {
    font-size: clamp(3.2rem, 18vw, 5.8rem);
  }

  .word-support {
    margin-top: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

}


/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {

  .word-item {
    position: static;
    transform: none;
    opacity: 1;
    animation: none;
    margin-bottom: 12px;
  }

  .word-stage {
    min-height: auto;
  }

}

/* ========================================
   REVIVAL WEEKEND — EDITORIAL POLISH
======================================== */

.calling {
  padding-top: 140px;
  padding-bottom: 140px;
}

.calling .section-label {
  margin-bottom: 40px;
}

.calling h2 {
  max-width: 1000px;

  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 0.86;
}

.calling-text {
  max-width: 560px;

  margin-top: 50px;
  margin-left: auto;

  font-size: 1.15rem;
  line-height: 1.7;
}

/* Give each gathering more breathing room */

.event-card {
  padding-top: 85px;
  padding-bottom: 85px;
}

.event-card h3 {
  margin-top: 10px;
}

.event-info-grid {
  margin-top: 55px;
}

/* Stronger section separation */

.revival-events {
  margin-top: 120px;
}

.event-card + .event-card {
  margin-top: 10px;
}

/* Speaker preview spacing */

.speaker-preview {
  margin-top: 140px;
}

/* ========================================
   HOME — EVENT PREVIEW
======================================== */

.home-events {
  padding: 140px 6vw;
  background: #f0eee8;
  color: #101010;
}

.home-section-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr;
  gap: 70px;
}

.home-section-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: 5px;
}

.home-section-heading h2 {
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.home-section-heading > p:last-child {
  align-self: end;
  max-width: 440px;

  font-size: 1.1rem;
  line-height: 1.7;
}


/* EVENT PREVIEW ROWS */

.event-preview-list {
  margin-top: 120px;
  border-top: 1px solid rgba(16,16,16,0.25);
}

.event-preview {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 50px;

  min-height: 260px;

  padding: 45px 0;

  border-bottom: 1px solid rgba(16,16,16,0.25);
}

.event-preview-date {
  display: flex;
  flex-direction: column;
}

.event-preview-date span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  color: #9c7b32;
}

.event-preview-date strong {
  font-size: 4rem;
  line-height: 1;
  color: #132e55;
}

.event-preview-content h3 {
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: #132e55;
}

.event-preview-content p {
  margin-top: 18px;

  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-preview-logo {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.cleansed-preview {
  color: #9daf9b !important;
}

.event-preview-link,
.text-link {
  color: #132e55;
  text-decoration: none;

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.event-preview-link:hover,
.text-link:hover {
  opacity: 0.5;
}


/* ========================================
   HOME — SPEAKER TEASER
======================================== */

.home-speaker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;

  margin-top: 160px;
  padding-top: 100px;

  border-top: 1px solid rgba(16,16,16,0.25);
}

.home-speaker-image img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.home-speaker-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-speaker-copy h2 {
  margin-top: 35px;

  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.82;
  letter-spacing: -0.055em;

  color: #132e55;
}

.home-speaker-copy > p:not(.section-label) {
  margin: 30px 0;

  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* ========================================
   HOME — MEDIA TEASER
======================================== */

.home-media {
  margin-top: 160px;
  padding-top: 100px;

  border-top: 1px solid rgba(16,16,16,0.25);
}

.home-media-content {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 70px;

  margin-top: 40px;
}

.home-media h2 {
  font-size: clamp(4.5rem, 9vw, 9rem);
  line-height: 0.84;
  letter-spacing: -0.06em;

  color: #132e55;
}

.home-media-content > div {
  align-self: end;
}

.home-media-content p {
  margin-bottom: 35px;

  font-size: 1.1rem;
  line-height: 1.7;
}


/* ========================================
   HOME — MOBILE
======================================== */

@media (max-width: 900px) {

  .home-events {
    padding: 100px 25px;
  }

  .home-section-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .event-preview {
    grid-template-columns: 75px 1fr;
    gap: 20px;

    min-height: auto;
    padding: 40px 0;
  }

  .event-preview-link {
    grid-column: 2;
    margin-top: 10px;
  }

  .event-preview-date strong {
    font-size: 2.8rem;
  }

  .event-preview-logo {
    max-width: 160px;
  }

  .home-speaker {
    grid-template-columns: 1fr;
  }

  .home-media-content {
    grid-template-columns: 1fr;
  }

}
/* ========================================
   EVENT PREVIEW LOGOS
======================================== */

.event-preview-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.cleansed-logo {
  max-width: 430px;
  max-height: 145px;
}

.bible-revival-logo {
  max-width: 350px;
  max-height: 165px;
}

.nz-preview-logo {
  max-width: 220px;
  max-height: 170px;
}

@media (max-width: 900px) {

  .cleansed-logo {
    max-width: 230px;
  }

  .bible-revival-logo {
    max-width: 210px;
  }

  .nz-preview-logo {
    max-width: 150px;
  }

}

/* ========================================
   FINAL DIVIDER FIX
======================================== */

/* Keep separators between event rows */
.event-preview-list .event-preview {
  border-bottom: 1px solid rgba(16, 16, 16, 0.25);
}

/* But remove the line after the FINAL event */
.event-preview-list .event-preview:last-child,
.event-preview-list .event-preview-main {
  border-bottom: 0 !important;
}

/* Make sure the event list itself adds no bottom line */
.event-preview-list {
  border-bottom: 0 !important;
}

/* Keep ONE divider before the speaker section */
.home-speaker {
  border-top: 1px solid rgba(16, 16, 16, 0.22) !important;
}

/* ========================================
   TIGHTEN SPEAKER SECTION SPACING
======================================== */

.home-speaker {
  padding-top: 55px !important;
  margin-top: 40px;
}
/* ========================================
   TIGHTEN HOME EVENT SECTION
======================================== */

.home-events {
  padding-top: 55px !important;
}

.event-preview-list {
  margin-top: 0 !important;
}

/* ========================================
   ENLARGE EVENT PREVIEW LOGOS
======================================== */

.cleansed-logo {
  max-width: 520px !important;
  max-height: 190px !important;
}

.bible-revival-logo {
  max-width: 430px !important;
  max-height: 210px !important;
}

.nz-preview-logo {
  max-width: 300px !important;
  max-height: 210px !important;
}

@media (max-width: 900px) {

  .cleansed-logo {
    max-width: 300px !important;
  }

  .bible-revival-logo {
    max-width: 270px !important;
  }

  .nz-preview-logo {
    max-width: 210px !important;
  }

}
/* ========================================
   MATCH ALL EVENT LOGO SIZES
======================================== */

.cleansed-logo,
.bible-revival-logo,
.nz-preview-logo {
  width: auto !important;
  height: 300px !important;
  max-width: 700px !important;
  max-height: none !important;

  object-fit: contain;
  object-position: left center;
}
@media (max-width: 900px) {

  .cleansed-logo,
  .bible-revival-logo,
  .nz-preview-logo {
    height: 120px !important;
    max-width: 100% !important;
  }

}
/* ========================================
   COMPACT EVENT PREVIEW ROWS
======================================== */

.event-preview {
  min-height: 190px !important;
  padding: 28px 0 !important;
}

.event-preview-list {
  margin-top: 0 !important;
}

.event-preview-date {
  align-self: center;
}

.event-preview-content {
  align-self: center;
}

.event-preview-link {
  align-self: center;
}

.cleansed-logo,
.bible-revival-logo,
.nz-preview-logo {
  height: 170px !important;
}

.event-preview-content p {
  margin-top: 10px !important;
}

.home-events {
  padding-top: 25px !important;
  padding-bottom: 80px !important;
}

/* ========================================
   COMPACT ROWS + LARGE EVENT LOGOS
======================================== */

.event-preview {
  min-height: 190px !important;
  padding: 22px 0 !important;
  overflow: visible;
}

.event-preview-content {
  overflow: visible;
}

/* Keep NZ Arise as the reference size */
.nz-preview-logo {
  height: 170px !important;
  width: auto !important;
  transform: none;
}

/* Visually enlarge Cleansed */
.cleansed-logo {
  height: 170px !important;
  width: auto !important;

  transform: scale(1.45);
  transform-origin: left center;
}

/* Visually enlarge Bible Revival */
.bible-revival-logo {
  height: 170px !important;
  width: auto !important;

  transform: scale(1.45);
  transform-origin: left center;
}

/* ========================================
   EVENTS PAGE — CLEANSED
======================================== */

.events-page {
  background: #f0eee8;
  color: #101010;
}


/* MAIN EVENT WRAPPER */

.event-detail {
  min-height: 100vh;

  padding:
    140px
    6vw
    120px;
}


/* ========================================
   CLEANSED EVENT HEADER
======================================== */

.event-detail-header {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;

  gap: 60px;

  padding-bottom: 70px;

  border-bottom:
    1px solid rgba(16, 16, 16, 0.22);
}


/* DATE */

.event-detail-date {
  display: flex;
  flex-direction: column;
}

.event-detail-date span {
  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #9c7b32;
}

.event-detail-date strong {
  margin: 5px 0;

  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.85;

  color: #132e55;
}


/* LOGO */

.event-detail-brand {
  display: flex;
  align-items: center;
}

.event-detail-logo {
  display: block;

  width: auto;
  height: auto;

  object-fit: contain;
}

.cleansed-detail-logo {
  max-width: 520px;
  max-height: 180px;
}


/* YOUTH REVIVAL LABEL */

.event-detail-type {
  align-self: center;
}

.event-detail-type span {
  font-size: 0.8rem;
  font-weight: 700;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #9daf9b;
}


/* ========================================
   SCRIPTURE FEATURE
======================================== */

.event-scripture-feature {
  padding:
    110px
    0;

  border-bottom:
    1px solid rgba(16, 16, 16, 0.22);
}

.event-detail-label {
  margin-bottom: 30px;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #9c7b32;
}

.event-scripture-feature blockquote {
  max-width: 1150px;

  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: 1.02;

  letter-spacing: -0.04em;

  font-style: italic;

  color: #132e55;
}

.event-scripture-feature .scripture-reference {
  margin-top: 35px;

  font-size: 0.9rem;

  color: #555;
}


/* ========================================
   DATE / TIME / VENUE
======================================== */

.event-detail-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 0;

  border-bottom:
    1px solid rgba(16, 16, 16, 0.22);
}

.event-detail-info > div {
  padding:
    45px
    35px
    45px
    0;
}

.event-detail-info > div:not(:last-child) {
  border-right:
    1px solid rgba(16, 16, 16, 0.18);

  margin-right: 35px;
}

.event-detail-info span {
  display: block;

  margin-bottom: 12px;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.17em;
  text-transform: uppercase;

  color: #9c7b32;
}

.event-detail-info strong {
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  line-height: 1.45;

  color: #132e55;
}


/* ========================================
   CLEANSED MESSAGE
======================================== */

.event-detail-story {
  padding-top: 120px;
}

.event-detail-story h1 {
  max-width: 1200px;

  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.82;

  letter-spacing: -0.06em;

  color: #9daf9b;
}

.event-detail-copy {
  max-width: 620px;

  margin-top: 55px;
  margin-left: auto;

  font-size: 1.15rem;
  line-height: 1.75;

  color: #444;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 900px) {

  .event-detail {
    padding:
      110px
      24px
      80px;
  }

  .event-detail-header {
    grid-template-columns: 1fr;

    gap: 30px;

    padding-bottom: 50px;
  }

  .event-detail-date strong {
    font-size: 4.5rem;
  }

  .cleansed-detail-logo {
    max-width: 320px;
  }

  .event-scripture-feature {
    padding:
      80px
      0;
  }

  .event-detail-info {
    grid-template-columns: 1fr;
  }

  .event-detail-info > div {
    padding:
      28px
      0;

    border-right: none !important;

    margin-right: 0 !important;

    border-bottom:
      1px solid rgba(16, 16, 16, 0.14);
  }

  .event-detail-story {
    padding-top: 80px;
  }

  .event-detail-story h1 {
    font-size: clamp(3.7rem, 17vw, 6rem);
  }

  .event-detail-copy {
    margin-left: 0;
  }


/* ========================================
   CLEANSED — COMPACT EVENT DETAIL
======================================== */

.cleansed-detail {
  min-height: calc(100vh - 68px);

  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 220px;
  gap: clamp(45px, 6vw, 110px);

  align-items: start;

  padding:
    150px
    6vw
    100px;

  background: #f0eee8;
}


/* DATE */

.cleansed-detail .event-detail-date {
  padding-top: 10px;
}

.cleansed-detail .event-detail-date span {
  display: block;

  color: #9c7b32;

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}

.cleansed-detail .event-detail-date strong {
  display: block;

  margin: 8px 0;

  color: #132e55;

  font-size: clamp(4.5rem, 7vw, 7rem);
  line-height: 0.8;
}


/* MAIN CONTENT */

.event-detail-main {
  max-width: 900px;
}

.cleansed-detail-logo {
  display: block;

  width: min(520px, 100%);
  height: auto;
}

.event-detail-type-text {
  margin-top: 16px;

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* SCRIPTURE */

.cleansed-scripture {
  max-width: 900px;

  margin-top: 70px;

  color: #132e55;

  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.08;

  letter-spacing: -0.035em;

  font-style: italic;
}

.cleansed-reference {
  margin-top: 22px;

  color: #9c7b32;

  font-size: 0.9rem;
  font-style: italic;
}


/* TIME + PLACE */

.cleansed-details {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;

  margin-top: 65px;
  padding-top: 32px;

  border-top: 1px solid rgba(16, 16, 16, 0.22);
}

.cleansed-details span {
  display: block;

  margin-bottom: 10px;

  color: #9c7b32;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}

.cleansed-details strong {
  color: #132e55;

  font-size: 1.15rem;
  line-height: 1.5;
}


/* REGISTER */

.event-detail-register {
  padding-top: 12px;
}

.event-detail-register .registration-button {
  white-space: nowrap;
}


/* MOBILE */

@media (max-width: 900px) {

  .cleansed-detail {
    grid-template-columns: 1fr;

    gap: 45px;

    min-height: auto;

    padding:
      110px
      24px
      80px;
  }

  .cleansed-detail-logo {
    width: min(380px, 100%);
  }

  .cleansed-scripture {
    margin-top: 50px;
  }

  .cleansed-details {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .event-detail-register {
    padding-top: 0;
  }

}
   
}

/* ========================================
   INLINE EVENT DETAILS — CLEANSED
======================================== */

.event-preview-expanded {
  align-items: start !important;
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}

.event-subtitle {
  margin-top: 12px !important;
}


/* Scripture */

.inline-event-scripture {
  max-width: 780px;

  margin-top: 45px;

  color: #132e55;

  font-size: clamp(1.5rem, 2.5vw, 2.6rem);
  line-height: 1.25;

  font-style: italic;
  letter-spacing: -0.025em;
}

.inline-scripture-reference {
  margin-top: 15px !important;

  color: #9c7b32 !important;

  font-size: 0.85rem !important;
  font-style: italic;

  text-transform: none !important;
  letter-spacing: 0 !important;
}


/* Time + Place */

.inline-event-details {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;

  max-width: 760px;

  margin-top: 40px;
  padding-top: 28px;

  border-top:
    1px solid rgba(16, 16, 16, 0.20);
}

.inline-event-details span {
  display: block;

  margin-bottom: 10px;

  color: #9c7b32;

  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing: 0.17em;
}

.inline-event-details strong {
  color: #132e55;

  font-size: 1rem;
  line-height: 1.5;
}


/* Registration */

.inline-registration {
  display: flex;
  align-items: center;
  gap: 55px;

  margin-top: 45px;
}

.inline-registration > div:first-child p {
  margin-bottom: 20px;

  font-size: 0.9rem;
  line-height: 1.6;

  text-transform: none;
  letter-spacing: 0;
}

.inline-registration-qr img {
  display: block;

  width: 130px;
  height: 130px;

  object-fit: contain;
}

.inline-registration-qr span {
  display: block;

  margin-top: 10px;

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.15em;
  text-transform: uppercase;

  color: #555;
}


/* Mobile */

@media (max-width: 900px) {

  .inline-event-details {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

}
/* ========================================
   TIGHTER EVENT ROW SPACING
======================================== */

.event-preview {
  min-height: 150px !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

.event-preview-content {
  margin: 0 !important;
  padding: 0 !important;
}

.event-preview-content p {
  margin-top: 6px !important;
  margin-bottom: 0 !important;
}

.event-preview-date {
  margin: 0 !important;
}

.event-preview-link {
  margin: 0 !important;
}

/* ========================================
   SPEAKER PAGE — CALEB GARRAWAY
======================================== */

.speaker-page {
  background: #f0eee8;
  color: #101010;
}


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

.speaker-hero {
  min-height: 100vh;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;

  padding-top: 68px;

  background: #f0eee8;
}


/* PHOTO */

.speaker-hero-image {
  min-height: calc(100vh - 68px);
  overflow: hidden;
}

.speaker-hero-image img {
  display: block;

  width: 100%;
  height: 100%;

  min-height: calc(100vh - 68px);

  object-fit: cover;
  object-position: center top;
}


/* CONTENT */

.speaker-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 8vw 6vw;
}


.speaker-eyebrow {
  margin-bottom: 40px;

  color: #9c7b32;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}


.speaker-hero-content h1 {
  margin: 0;

  color: #132e55;

  font-size: clamp(5rem, 9vw, 10rem);
  line-height: 0.78;

  letter-spacing: -0.065em;
}


.speaker-ministry {
  margin-top: 45px;

  color: #222;

  font-size: 1rem;
  font-weight: 500;

  letter-spacing: 0.17em;
  text-transform: uppercase;
}


.speaker-scroll-link {
  align-self: flex-start;

  margin-top: 50px;
  padding-bottom: 8px;

  border-bottom: 1px solid #132e55;

  color: #132e55;

  text-decoration: none;

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  transition:
    padding-left 0.25s ease,
    opacity 0.25s ease;
}


.speaker-scroll-link:hover {
  padding-left: 10px;
  opacity: 0.55;
}


/* ========================================
   SPEAKER STORY
======================================== */

.speaker-story {
  display: grid;
  grid-template-columns: 0.35fr 1fr;

  gap: clamp(60px, 8vw, 140px);

  padding: 150px 7vw;

  background: #f0eee8;

  border-top: 1px solid rgba(16, 16, 16, 0.2);
}


.speaker-story-label p {
  color: #9c7b32;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}


.speaker-story-content {
  max-width: 950px;
}


.speaker-intro {
  max-width: 900px;

  margin-bottom: 70px;

  color: #132e55;

  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 1;

  letter-spacing: -0.045em;
}


.speaker-biography {
  max-width: 760px;
  margin-left: auto;
}


.speaker-biography p {
  margin-bottom: 28px;

  color: #3f3f3f;

  font-size: 1.08rem;
  line-height: 1.8;
}


/* ========================================
   RETURN TO EVENTS
======================================== */

.speaker-events-link {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 40px;

  padding: 70px 7vw;

  background: #132e55;

  color: #f0eee8;
}


.speaker-events-link p {
  font-size: 0.75rem;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}


.speaker-events-link a {
  color: #f0eee8;

  text-decoration: none;

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}


.speaker-events-link a:hover {
  opacity: 0.6;
}


/* ========================================
   SPEAKER PAGE — MOBILE
======================================== */

@media (max-width: 900px) {

  .speaker-hero {
    grid-template-columns: 1fr;

    min-height: auto;
  }


  .speaker-hero-image {
    min-height: auto;
  }


  .speaker-hero-image img {
    height: auto;
    min-height: 0;
  }


  .speaker-hero-content {
    padding:
      80px
      24px
      100px;
  }


  .speaker-hero-content h1 {
    font-size: clamp(4rem, 18vw, 7rem);
  }


  .speaker-story {
    grid-template-columns: 1fr;

    gap: 45px;

    padding:
      100px
      24px;
  }


  .speaker-biography {
    margin-left: 0;
  }


  .speaker-events-link {
    flex-direction: column;
    align-items: flex-start;

    padding:
      55px
      24px;
  }

}

/* ========================================
   SPEAKER PAGE — SINGLE PROFILE LAYOUT
======================================== */

.speaker-profile {
  min-height: 100vh;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;

  padding-top: 68px;

  background: #f0eee8;
}


/* PHOTO */

.speaker-profile-image {
  min-height: calc(100vh - 68px);
  overflow: hidden;
}

.speaker-profile-image img {
  display: block;

  width: 100%;
  height: 100%;

  min-height: calc(100vh - 68px);

  object-fit: cover;
  object-position: center top;
}


/* RIGHT SIDE */

.speaker-profile-content {
  display: flex;
  flex-direction: column;

  justify-content: center;

  padding:
    80px
    clamp(50px, 7vw, 120px);
}


.speaker-profile-content h1 {
  margin: 30px 0 0;

  color: #132e55;

  font-size: clamp(4.8rem, 8vw, 9rem);
  line-height: 0.8;

  letter-spacing: -0.06em;
}


.speaker-ministry {
  margin-top: 35px;

  font-size: 1rem;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* BIOGRAPHY */

.speaker-about {
  max-width: 760px;

  margin-top: 55px;
  padding-top: 35px;

  border-top:
    1px solid rgba(16, 16, 16, 0.2);
}

.speaker-about p {
  margin-bottom: 20px;

  color: #3f3f3f;

  font-size: 1rem;
  line-height: 1.65;
}


/* EVENT LINK */

.speaker-events-button {
  align-self: flex-start;

  margin-top: 28px;
  padding-bottom: 8px;

  border-bottom:
    1px solid #132e55;

  color: #132e55;

  text-decoration: none;

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* MOBILE */

@media (max-width: 900px) {

  .speaker-profile {
    grid-template-columns: 1fr;

    min-height: auto;
  }

  .speaker-profile-image {
    min-height: auto;
  }

  .speaker-profile-image img {
    min-height: 0;
    height: auto;
  }

  .speaker-profile-content {
    padding:
      70px
      24px
      90px;
  }

  .speaker-profile-content h1 {
    font-size: clamp(4rem, 17vw, 6.5rem);
  }

}
/* ========================================
   EVENT QUICK ACTIONS
======================================== */

.event-quick-actions {
  display: flex;
  gap: 24px;
  margin-top: 18px;
}

.event-action-button {
  padding: 0 0 6px;

  border: 0;
  border-bottom: 1px solid #132e55;

  background: transparent;
  color: #132e55;

  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  cursor: pointer;
}


/* ========================================
   EVENT POPUPS
======================================== */

.event-modal {
  width: min(820px, 92vw);
  max-height: 90vh;

  padding: 0;

  border: 0;

  background: #f0eee8;
  color: #132e55;
}

.event-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.event-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  padding: 28px 30px;

  border-bottom: 1px solid rgba(16, 16, 16, 0.18);
}

.event-modal-header span {
  color: #9c7b32;

  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.event-modal-header h3 {
  margin-top: 8px;
  font-size: 1.5rem;
}

.modal-close {
  border: 0;
  background: transparent;

  color: #132e55;

  font-size: 2rem;
  cursor: pointer;
}

.event-modal-copy {
  padding: 28px 30px;
  line-height: 1.6;
}

.parking-copy h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.parking-copy p + p {
  margin-top: 28px;
}

.event-map-frame {
  display: block;

  width: 100%;
  height: 400px;

  border: 0;
}

.event-modal-footer {
  padding: 0 30px 30px;
}

@media (max-width: 700px) {

  .event-quick-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .event-map-frame {
    height: 320px;
  }

}

/* ========================================
   FORCE EVENT QUICK ACTIONS TO DISPLAY
======================================== */

.cleansed-preview .event-preview-content {
  overflow: visible !important;
}

.cleansed-preview .event-quick-actions {
  display: flex !important;
  align-items: center;
  gap: 22px;

  margin-top: 18px !important;

  visibility: visible !important;
  opacity: 1 !important;
}

.cleansed-preview .event-action-button {
  display: inline-block !important;

  padding: 0 0 6px;

  border: 0;
  border-bottom: 1px solid #132e55;

  background: transparent;

  color: #132e55;

  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing: 0.14em;
  text-transform: uppercase;

  cursor: pointer;

  visibility: visible !important;
  opacity: 1 !important;
}

.cleansed-preview .event-action-button:hover {
  opacity: 0.55 !important;
}
/* ========================================
   CLEANSED — LOGO + ACTIONS SAME ROW
======================================== */

.cleansed-preview .cleansed-content-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;

  gap: 45px;

  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;
}

.cleansed-preview .event-quick-actions {
  display: flex !important;
  flex-direction: row;
  align-items: center;

  gap: 24px;

  margin: 0 !important;
}


/* Mobile */

@media (max-width: 900px) {

  .cleansed-preview .cleansed-content-row {
    flex-direction: column !important;
    align-items: flex-start !important;

    gap: 20px;
  }

  .cleansed-preview .event-quick-actions {
    flex-wrap: wrap;
  }

}
/* ========================================
   CLEANSED — MOVE ACTIONS RIGHT
======================================== */

.cleansed-preview .cleansed-content-row {
  display: grid !important;
  grid-template-columns: 300px 1fr;
  align-items: center !important;

  column-gap: 70px;

  width: 100%;
}

.cleansed-preview .event-quick-actions {
  justify-self: start;

  display: flex !important;
  gap: 26px;

  margin: 0 !important;
}

.cleansed-preview .cleansed-logo {
  justify-self: start;
}

.cleansed-preview .event-action-button {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.cleansed-preview .event-action-button:hover {
  opacity: 0.55;
  transform: translateX(4px);
}
/* ========================================
   EVENT POPUPS
======================================== */

.event-modal {
  width: min(820px, 92vw);
  max-height: 90vh;

  padding: 0;
  border: 0;

  background: #f0eee8;
  color: #132e55;
}

.event-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.event-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  padding: 28px 30px;

  border-bottom:
    1px solid rgba(16, 16, 16, 0.18);
}

.event-modal-header span {
  color: #9c7b32;

  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.event-modal-header h3 {
  margin-top: 8px;
  font-size: 1.5rem;
}

.modal-close {
  padding: 0;

  border: 0;
  background: transparent;

  color: #132e55;

  font-size: 2rem;
  line-height: 1;

  cursor: pointer;
}

.event-modal-copy {
  padding: 28px 30px;

  line-height: 1.6;
}

.parking-copy h4 {
  margin-bottom: 15px;

  font-size: 1.2rem;
}

.parking-copy p + p {
  margin-top: 28px;
}

.event-map-frame {
  display: block;

  width: 100%;
  height: 400px;

  border: 0;
}

.event-modal-footer {
  padding: 25px 30px 30px;
}

@media (max-width: 700px) {

  .event-map-frame {
    height: 320px;
  }

}
/* ========================================
   BIBLE REVIVAL — LOGO + ACTIONS SAME ROW
======================================== */

.bible-preview .bible-content-row {
  display: grid !important;
  grid-template-columns: 300px 1fr;
  align-items: center !important;

  column-gap: 110px;

  width: 100%;
}

.bible-preview .event-quick-actions {
  display: flex !important;
  align-items: center;

  gap: 26px;

  margin: 0 !important;
}

.bible-preview .event-action-button {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

@media (max-width: 900px) {

  .bible-preview .bible-content-row {
    grid-template-columns: 1fr !important;
    row-gap: 20px;
  }

}
/* ========================================
   ALIGN BIBLE REVIVAL WITH CLEANSED
======================================== */

.bible-preview .bible-content-row {
  position: relative;
  left: -40px;
}
/* Keep event action labels on one line */
.event-action-button {
  white-space: nowrap !important;
}
@media (min-width: 901px) and (max-width: 1200px) {

  .bible-preview .bible-content-row {
    grid-template-columns: 260px 1fr !important;
    column-gap: 55px !important;
    left: -30px;
  }

  .bible-preview .event-quick-actions {
    gap: 18px;
  }

  .bible-preview .event-action-button {
    font-size: 0.62rem;
    white-space: nowrap !important;
  }

}
/* ========================================
   TABLET — ALIGN EVENT ACTIONS
======================================== */

@media (min-width: 901px) and (max-width: 1200px) {

  .cleansed-preview .cleansed-content-row,
  .bible-preview .bible-content-row {
    display: grid !important;

    grid-template-columns: 300px 1fr !important;

    column-gap: 70px !important;

    align-items: center !important;

    position: relative;
    left: 0 !important;
  }

  .cleansed-preview .event-quick-actions,
  .bible-preview .event-quick-actions {
    display: flex !important;
    align-items: center;

    gap: 28px;

    margin: 0 !important;
  }

  .cleansed-preview .event-action-button,
  .bible-preview .event-action-button {
    white-space: nowrap !important;

    font-size: 0.64rem;
    font-weight: 700;
  }

}
/* ========================================
   MOBILE FIX — CLEANSED ACTION BUTTONS
======================================== */

@media (max-width: 900px) {

  .cleansed-preview .cleansed-content-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    width: 100% !important;

    gap: 28px !important;

    position: static !important;
    left: auto !important;

    overflow: visible !important;
  }


  .cleansed-preview .event-quick-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    gap: 24px !important;

    width: 100% !important;

    margin: 8px 0 0 !important;

    position: static !important;

    visibility: visible !important;
    opacity: 1 !important;
  }


  .cleansed-preview .event-action-button {
    display: block !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    border: none !important;

    background: transparent !important;

    white-space: nowrap !important;

    visibility: visible !important;
    opacity: 1 !important;
  }

}

/* =========================================================
   FINAL RESPONSIVE EVENT PREVIEW FIX
   ========================================================= */


/* Never allow the page to grow wider than the viewport */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}


/* Keep all action text on one line */
.event-action-button,
.event-preview-link {
  white-space: nowrap !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 701px) and (max-width: 1200px) {

  .event-preview {
    display: grid !important;

    grid-template-columns:
      120px
      minmax(0, 1fr)
      auto;

    align-items: center !important;

    column-gap: 36px !important;

    width: 100%;
  }


  .cleansed-preview .cleansed-content-row,
  .bible-preview .bible-content-row {
    display: grid !important;

    grid-template-columns:
      minmax(220px, 300px)
      auto;

    align-items: center !important;

    column-gap: 42px !important;

    width: 100% !important;

    position: static !important;
    left: auto !important;
  }


  .event-quick-actions {
    display: flex !important;

    flex-direction: row !important;
    flex-wrap: nowrap !important;

    align-items: center !important;

    gap: 24px !important;

    margin: 0 !important;
  }


  .event-action-button {
    font-size: 0.62rem !important;
  }


  .event-preview-link {
    justify-self: end;

    width: max-content !important;

    font-size: 0.66rem !important;

    white-space: nowrap !important;
  }

}


/* =========================================================
   PHONE
   ========================================================= */

@media (max-width: 700px) {

  .event-preview {
    display: grid !important;

    grid-template-columns:
      90px
      minmax(0, 1fr);

    column-gap: 20px !important;
    row-gap: 34px !important;

    align-items: center !important;

    width: 100% !important;

    padding:
      55px
      26px
      45px !important;

    box-sizing: border-box;
  }


  /* Date stays on the left */

  .event-preview-date {
    grid-column: 1;
    grid-row: 1;

    align-self: center !important;

    width: auto !important;

    margin: 0 !important;
  }


  /* Logo area */

  .event-preview-content,
  .cleansed-preview .cleansed-content-row,
  .bible-preview .bible-content-row {
    grid-column: 2;
    grid-row: 1;

    display: flex !important;

    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    gap: 28px !important;

    margin: 0 !important;
    padding: 0 !important;

    position: static !important;
    left: auto !important;

    overflow: visible !important;
  }


  /* Prevent logos from escaping the screen */

  .event-preview-logo,
  .cleansed-logo,
  .bible-revival-logo,
  .nz-preview-logo {
    display: block !important;

    width: auto !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: 150px !important;

    margin: 0 auto !important;

    transform: none !important;

    object-fit: contain;
  }


  /* Map + Parking */

  .event-quick-actions,
  .cleansed-preview .event-quick-actions,
  .bible-preview .event-quick-actions {
    display: flex !important;

    flex-direction: column !important;
    align-items: center !important;

    gap: 22px !important;

    width: 100% !important;

    margin: 12px 0 0 !important;

    position: static !important;
  }


  .event-action-button {
    display: block !important;

    width: max-content !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    font-size: 0.72rem !important;
    font-weight: 700 !important;

    white-space: nowrap !important;
  }


  /* Register goes underneath the whole event */

  .event-preview-link {
    grid-column: 1 / -1;
    grid-row: 2;

    justify-self: center !important;

    width: max-content !important;

    margin: 0 auto !important;

    font-size: 0.74rem !important;

    white-space: nowrap !important;
  }

}
/* ========================================
   TABLET — ALIGN BIBLE REVIVAL LOGO
======================================== */

@media (min-width: 701px) and (max-width: 1200px) {

  .bible-preview .bible-revival-logo {
    position: relative;
    left: -40px;
  }

}

/* ========================================
   CLEANSED — TIME + SCRIPTURE
======================================== */


/* TIME UNDER DATE */

.event-preview-time {
  margin-top: 18px !important;

  color: #132e55;

  font-size: 0.68rem !important;
  font-weight: 600;

  line-height: 1.4;

  letter-spacing: 0.08em !important;
  text-transform: uppercase;

  white-space: nowrap;
}


/* LOGO + VERSE STACK */

.cleansed-brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
  max-width: 320px;
}


/* SCRIPTURE */

.event-preview-verse {
  max-width: 300px;

  margin: 18px 0 0;

  padding: 0;

  border: 0;

  color: #414141;

  font-size: 0.72rem;
  font-weight: 400;

  line-height: 1.5;

  letter-spacing: 0.01em;

  font-style: italic;
}


/* SCRIPTURE REFERENCE */

.event-preview-reference {
  margin: 7px 0 0 !important;

  color: #9c7b32 !important;

  font-size: 0.62rem !important;
  font-weight: 700 !important;

  letter-spacing: 0.08em !important;

  text-transform: none !important;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

  .event-preview-time {
    margin-top: 14px !important;

    font-size: 0.6rem !important;

    white-space: normal;
  }


  .cleansed-brand-stack {
    align-items: center;

    max-width: 100%;
  }


  .event-preview-verse {
    max-width: 270px;

    margin-top: 18px;

    font-size: 0.68rem;

    line-height: 1.5;

    text-align: center;
  }


  .event-preview-reference {
    text-align: center;
  }

}
.cleansed-brand-stack .event-preview-verse {
  margin-top: -40px !important;
}

.cleansed-brand-stack .event-preview-reference {
  margin-top: 4px !important;
}
/* ========================================
   ENQUIRIES
======================================== */

.home-enquiries {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 40px;

  padding: 55px 5vw;

  border-top: 1px solid rgba(16, 16, 16, 0.2);

  background: #f0eee8;
}

.home-enquiries .section-label {
  margin: 0;
}

.home-enquiries-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.home-enquiries-content p {
  margin: 0;

  font-size: 0.9rem;
  color: #444;
}

.enquiries-email {
  color: #132e55;

  text-decoration: none;

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.enquiries-email:hover {
  opacity: 0.55;
}


/* MOBILE */

@media (max-width: 700px) {

  .home-enquiries {
    flex-direction: column;
    align-items: flex-start;

    padding: 45px 28px;
  }

  .home-enquiries-content {
    flex-direction: column;
    align-items: flex-start;

    gap: 18px;
  }

  .enquiries-email {
    font-size: 0.7rem;
    word-break: break-word;
  }

}
/* ========================================
   FOOTER
======================================== */

.site-footer {
  padding: 24px 5vw;

  border-top: 1px solid rgba(16, 16, 16, 0.15);

  background: #f0eee8;
}

.site-footer p {
  margin: 0;

  color: #666;

  font-size: 0.68rem;
  letter-spacing: 0.08em;

  text-transform: uppercase;
}

/* ========================================
   BIBLE REVIVAL — VERSE
======================================== */

.bible-brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
  max-width: 320px;
}

.bible-brand-stack .event-preview-verse {
  margin-top: -25px !important;
}

.bible-brand-stack .event-preview-reference {
  margin-top: 5px !important;
}

@media (max-width: 700px) {

  .bible-brand-stack {
    align-items: center;
    max-width: 100%;
  }

  .bible-brand-stack .event-preview-verse {
    max-width: 270px;
    margin-top: -18px !important;
    text-align: center;
  }

  .bible-brand-stack .event-preview-reference {
    text-align: center;
  }

}

/* ========================================
   NZ ARISE — LOGO + DETAILS
======================================== */

.nz-preview .nz-content-row {
  display: grid !important;
  grid-template-columns: 300px 1fr;

  align-items: center !important;

  column-gap: 110px;

  width: 100%;
}

.nz-brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
  max-width: 320px;
}

.nz-brand-stack .event-preview-verse {
  margin-top: -20px !important;
}

.nz-brand-stack .event-preview-reference {
  margin-top: 5px !important;
}


@media (min-width: 701px) and (max-width: 1200px) {

  .nz-preview .nz-content-row {
    grid-template-columns: 300px 1fr !important;
    column-gap: 70px !important;

    position: static !important;
  }

}


@media (max-width: 700px) {

  .nz-brand-stack {
    align-items: center;

    width: 100%;
    max-width: 100%;
  }

  .nz-brand-stack .event-preview-verse {
    max-width: 270px;

    margin-top: -15px !important;

    text-align: center;
  }

  .nz-brand-stack .event-preview-reference {
    text-align: center;
  }

}
/* ========================================
   DESKTOP — ALIGN BIBLE VERSE WITH LOGO
======================================== */

@media (min-width: 1201px) {

  .bible-brand-stack .event-preview-verse,
  .bible-brand-stack .event-preview-reference {
    position: relative;
    left: 40px;
  }

}

/* ========================================
   ALL EVENT ACTION BUTTONS
   Venue + Parking Info
======================================== */

.event-action-button {
  border: none !important;
  padding: 0 !important;

  background: transparent;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}


/* Hover effect */

.event-action-button:hover {
  opacity: 0.55 !important;
  transform: translateX(4px);

  cursor: pointer;
}

/* =========================================================
   NZ ARISE — FINAL ACTION ALIGNMENT
   ========================================================= */


/* DESKTOP */
@media (min-width: 1201px) {

  .nz-preview .event-quick-actions {
    position: relative !important;
    left: -55px !important;

    margin: 0 !important;
  }

}


/* TABLET */
@media (min-width: 701px) and (max-width: 1200px) {

  .nz-preview .nz-content-row {
    display: grid !important;

    grid-template-columns:
      minmax(220px, 300px)
      auto !important;

    column-gap: 42px !important;

    align-items: center !important;

    width: 100% !important;

    position: static !important;
    left: auto !important;
  }


  .nz-preview .event-quick-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    align-items: center !important;
    justify-content: flex-start !important;

    gap: 24px !important;

    width: auto !important;

    margin: 0 !important;

    position: static !important;
    left: auto !important;
    transform: none !important;
  }

}


/* PHONE */
@media (max-width: 700px) {

  .nz-preview .nz-content-row {
    grid-column: 2 !important;
    grid-row: 1 !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    gap: 24px !important;

    margin: 0 !important;
    padding: 0 !important;

    position: static !important;
    left: auto !important;
    right: auto !important;

    transform: none !important;

    overflow: visible !important;
  }


  .nz-preview .nz-brand-stack {
    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
  }


  .nz-preview .event-quick-actions {
    display: flex !important;

    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 22px !important;

    width: 100% !important;

    margin: 12px 0 0 !important;

    position: static !important;

    left: auto !important;
    right: auto !important;

    transform: none !important;

    visibility: visible !important;
    opacity: 1 !important;
  }


  .nz-preview .event-action-button {
    display: block !important;

    width: max-content !important;

    margin: 0 auto !important;
    padding: 0 !important;

    border: none !important;

    white-space: nowrap !important;

    visibility: visible !important;
    opacity: 1 !important;
  }

}

@media (min-width: 1201px) {

  .nz-preview .event-quick-actions {
    position: relative !important;
    left: -40px !important;
    margin: 0 !important;
  }

}
/* ========================================
   DESKTOP — TIGHTER ENQUIRIES SECTION
======================================== */

@media (min-width: 1201px) {

  .home-enquiries {
    padding-top: 18px !important;
    padding-bottom: 30px !important;
  }

}
/* ========================================
   TABLET + MOBILE — COMPACT ENQUIRIES
======================================== */

@media (max-width: 1200px) {

  .home-enquiries {
    padding-top: 28px !important;
    padding-bottom: 28px !important;

    gap: 18px !important;
  }

  .home-enquiries-content {
    gap: 14px !important;
  }

}


/* PHONE */

@media (max-width: 700px) {

  .home-enquiries {
    padding:
      26px
      28px
      28px !important;

    gap: 16px !important;
  }

  .home-enquiries .section-label {
    margin-bottom: 0 !important;
  }

  .home-enquiries-content {
    gap: 12px !important;
  }

  .home-enquiries-content p {
    margin: 0 !important;
  }

  .enquiries-email {
    margin: 0 !important;
  }

}
/* ========================================
   TOP + BOTTOM GREY BARS
======================================== */



/* BOTTOM GREY BAR */

.site-footer {
  width: 100%;

  padding: 24px 5vw;

  background: #4a4a4a !important;

  border-top: none !important;

  box-sizing: border-box;
}


/* COPYRIGHT */

.site-footer p {
  margin: 0;

  color: #ffffff !important;

  font-size: 0.68rem;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

/* ========================================
   TOP GREY BAR
======================================== */

body::before {
  content: "";

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 18px;

  background: #4a4a4a;

  z-index: 9999;
}


/* Move fixed navigation below the grey bar */

.site-header {
  top: 18px !important;
}

/* ========================================
   DARK GREY NAVIGATION BAR
======================================== */

/* Remove the separate top grey strip */
body::before {
  display: none !important;
}


/* Turn the menu/header into the grey bar */
.site-header {
  top: 0 !important;

  background: #4a4a4a !important;

  border-bottom: none !important;

  padding-top: 22px !important;
  padding-bottom: 22px !important;

  box-sizing: border-box;

  z-index: 9999;
}


/* NZ ARISE */
.site-brand {
  color: #ffffff !important;
}


/* EVENTS */
.site-nav-link {
  color: #ffffff !important;
}


/* Centre date */
.site-header-meta {
  color: #d2a84a !important;
}

/* ========================================
   ENQUIRIES — GREY BACKGROUND
======================================== */

.home-enquiries {
  background: #4a4a4a !important;
  border-top: none !important;
}


/* ENQUIRIES heading */

.home-enquiries .section-label {
  color: #ffffff !important;
}


/* Supporting text */

.home-enquiries-content p {
  color: #ffffff !important;
}


/* Email */

.enquiries-email {
  color: #ffffff !important;
}


/* Optional hover */

.enquiries-email:hover {
  opacity: 0.65;
}

/* ========================================
   ENQUIRIES — FULL WIDTH GREY BAR
======================================== */

.home-enquiries {
  width: 100vw !important;

  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;

  padding-left: 5vw !important;
  padding-right: 5vw !important;

  box-sizing: border-box;

  background: #4a4a4a !important;
}
/* ========================================
   REMOVE GAP BETWEEN ENQUIRIES + FOOTER
======================================== */

main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.home-enquiries {
  margin-bottom: 0 !important;
}

.site-footer {
  margin-top: 0 !important;
}

/* ========================================
   MOBILE HEADER — SHOW EVENT DATE
======================================== */

@media (max-width: 700px) {

  .site-header {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto auto !important;

    align-items: center !important;

    row-gap: 12px !important;

    padding:
      18px
      28px
      16px !important;

    background: #4a4a4a !important;
  }


  /* NZ ARISE */

  .site-brand {
    grid-column: 1;
    grid-row: 1;

    justify-self: start;

    color: #ffffff !important;
  }


  /* EVENTS */

  .site-nav-link {
    grid-column: 2;
    grid-row: 1;

    justify-self: end;

    color: #ffffff !important;
  }


  /* DATE + LOCATION */

  .site-header-meta {
    display: block !important;

    grid-column: 1 / -1;
    grid-row: 2;

    justify-self: center;

    width: auto !important;

    margin: 0 !important;

    color: #d2a84a !important;

    font-size: 0.62rem !important;
    font-weight: 700;

    letter-spacing: 0.14em;

    white-space: nowrap;

    visibility: visible !important;
    opacity: 1 !important;
  }

}

/* ========================================
   PRESENTED BY
======================================== */

.presented-by {
  display: grid;

  grid-template-columns: 220px 1fr;

  align-items: center;

  gap: 60px;

  padding: 48px 5vw;

  border-top: 1px solid rgba(16, 16, 16, 0.15);

  background: #f0eee8;
}


.presented-by .section-label {
  margin: 0;

  color: #132e55;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.16em;
}


.presented-by-logos {
  display: flex;

  align-items: center;
  justify-content: flex-start;

  gap: 90px;
}


.presented-logo-item {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 280px;
  height: 150px;
}


.presented-logo {
  display: block;

  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;

  object-fit: contain;
}


/* MZBBC is more square */
.mzbbc-logo {
  max-height: 145px;
}


/* Remnant is much wider */
.remnant-logo {
  max-width: 300px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1200px) {

  .presented-by {
    grid-template-columns: 170px 1fr;

    gap: 40px;

    padding: 40px 5vw;
  }

  .presented-by-logos {
    gap: 55px;
  }

  .presented-logo-item {
    width: 230px;
    height: 130px;
  }

}


/* ========================================
   PHONE
======================================== */

@media (max-width: 700px) {

  .presented-by {
    display: flex;

    flex-direction: column;
    align-items: flex-start;

    gap: 28px;

    padding: 38px 28px;
  }


  .presented-by-logos {
    width: 100%;

    flex-direction: column;
    align-items: center;

    gap: 35px;
  }


  .presented-logo-item {
    width: 100%;
    max-width: 290px;

    height: 130px;
  }


  .mzbbc-logo {
    max-height: 125px;
  }


  .remnant-logo {
    max-width: 270px;
  }

}

/* ========================================
   PRESENTED BY — COMPACT + RIGHT ALIGNED
======================================== */

@media (min-width: 1201px) {

  .presented-by {
    display: grid !important;

    grid-template-columns: 260px 1fr !important;

    align-items: center !important;

    gap: 40px !important;

    padding:
      24px
      5vw !important;
  }


  .presented-by-logos {
    display: flex !important;

    align-items: center !important;
    justify-content: flex-end !important;

    gap: 90px !important;

    width: 100% !important;
  }


  .presented-logo-item {
    width: auto !important;
    height: 90px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }


  .mzbbc-logo {
    max-height: 90px !important;
    width: auto !important;
  }


  .remnant-logo {
    max-height: 70px !important;
    max-width: 330px !important;

    width: auto !important;
  }

}

/* ========================================
   TABLET — PRESENTED BY
   compact + right aligned
======================================== */

@media (min-width: 701px) and (max-width: 1200px) {

  .presented-by {
    display: grid !important;

    grid-template-columns: 180px 1fr !important;

    align-items: center !important;

    gap: 30px !important;

    padding: 28px 5vw !important;

    min-height: 0 !important;
  }


  .presented-by .section-label {
    margin: 0 !important;
  }


  .presented-by-logos {
    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;
    justify-content: flex-end !important;

    gap: 65px !important;

    width: 100% !important;

    margin: 0 !important;
  }


  .presented-logo-item {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    height: 90px !important;

    margin: 0 !important;
  }


  .mzbbc-logo {
    width: auto !important;
    height: auto !important;

    max-height: 85px !important;
    max-width: 150px !important;
  }


  .remnant-logo {
    width: auto !important;
    height: auto !important;

    max-height: 58px !important;
    max-width: 280px !important;
  }

}

/* ========================================
   REDUCE GAP ABOVE PRESENTED BY
======================================== */

.presented-by {
  padding-top: 10px !important;
  padding-bottom: 22px !important;
  margin-top: 0 !important;
}

/* ========================================
   TABLET — REMOVE LARGE GAP BEFORE
   PRESENTED BY
======================================== */

@media (min-width: 701px) and (max-width: 1200px) {

  /* Remove unused space below speaker */
  .home-speaker {
    height: auto !important;
    min-height: 0 !important;

    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }


  /* Compact Presented By section */
  .presented-by {
    height: auto !important;
    min-height: 0 !important;

    margin-top: 0 !important;
    margin-bottom: 0 !important;

    padding-top: 16px !important;
    padding-bottom: 16px !important;

    align-content: center !important;
  }


  .presented-by-logos {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }


  .presented-logo-item {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

}

/* ========================================
   TABLET — REMOVE SPACE BELOW SPEAKER
======================================== */

@media (min-width: 701px) and (max-width: 1200px) {

  .home-speaker {
    height: auto !important;
    min-height: 0 !important;

    padding-bottom: 5px !important;
    margin-bottom: 0 !important;

    align-items: start !important;
  }


  .home-speaker-image,
  .home-speaker-copy {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }


  .home-speaker-image img {
    display: block !important;
    margin-bottom: 0 !important;
  }


  .presented-by {
    margin-top: 0 !important;
    padding-top: 12px !important;

    height: auto !important;
    min-height: 0 !important;
  }

}
/* =========================================================
   NEW ZEALAND ARISE — MOTION HERO
========================================================= */

.hero-showcase {
  padding:
    115px
    3vw
    70px;

  background: #f0eee8;

  overflow: hidden;
}


/* NEW ZEALAND */

.hero-showcase-heading {
  margin-bottom: 24px;

  color: #132e55;

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}


/* =========================================================
   ARISE VIDEO PANELS
========================================================= */

.arise-video-grid {
  display: grid;

  grid-template-columns:
    1.1fr
    1.45fr
    0.72fr
    1.25fr
    0.78fr;

  gap: clamp(15px, 3vw, 70px);

  width: 100%;

  height: clamp(380px, 53vh, 650px);

  margin-bottom: 48px;
}


.arise-video-panel {
  position: relative;

  overflow: hidden;

  background: #9CAB97;
}


.arise-video-panel video {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  filter:
    saturate(0.75)
    contrast(1.05)
    brightness(0.78);

  transform: scale(1.03);

  transition: transform 8s ease;
}


.arise-video-panel:hover video {
  transform: scale(1.1);
}


/* GIANT LETTER */

.arise-letter {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #f0eee8;

  font-size: clamp(8rem, 18vw, 19rem);
  font-weight: 800;

  line-height: 1;

  letter-spacing: -0.08em;

  pointer-events: none;
}


/* =========================================================
   REVIVAL OF A NATION
========================================================= */

.hero-showcase-statement {
  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 50px;

  padding-bottom: 42px;
}


.hero-showcase-statement h1 {
  max-width: 950px;

  margin: 0;

  color: #132e55;

  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 500;

  line-height: 0.92;

  letter-spacing: -0.055em;
}


/* =========================================================
   CHANGING WORD
========================================================= */

.hero-changing-message {
  display: flex;

  flex-direction: column;

  align-items: flex-end;

  min-width: 270px;

  padding-bottom: 8px;
}


.changing-label {
  margin-bottom: 8px;

  color: #a47c27;

  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing: 0.16em;
}


.changing-word {
  color: #132e55;

  font-size: clamp(1.7rem, 3vw, 3.5rem);
  font-weight: 700;

  letter-spacing: -0.02em;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}


.changing-word.is-changing {
  opacity: 0;

  transform: translateY(12px);
}


/* =========================================================
   HERO INFORMATION ROW
========================================================= */

.hero-showcase-info {
  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  align-items: center;

  gap: 60px;

  padding-top: 35px;

  border-top:
    1px solid
    rgba(19, 46, 85, 0.22);
}


.showcase-date,
.showcase-main-event {
  display: flex;

  flex-direction: column;

  gap: 6px;

  color: #132e55;
}


.showcase-main-event {
  align-items: flex-end;

  text-align: right;
}


.showcase-label {
  color: #a47c27;

  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing: 0.17em;
}


.showcase-date strong {
  font-size: 1.25rem;

  letter-spacing: 0.08em;
}


.showcase-main-event strong {
  font-size: 2rem;

  line-height: 0.95;
}


.hero-showcase-button {
  padding:
    22px
    36px;

  border:
    1px solid
    #132e55;

  color: #132e55;

  text-decoration: none;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.14em;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}


.hero-showcase-button:hover {
  background: #132e55;

  color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 701px) and (max-width: 1200px) {

  .hero-showcase {
    padding:
      120px
      5vw
      55px;
  }


  .arise-video-grid {
    gap: 20px;

    height: 420px;
  }


  .hero-showcase-statement {
    align-items: flex-start;
  }


  .hero-changing-message {
    min-width: 200px;
  }


  .hero-showcase-info {
    gap: 30px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .hero-showcase {
    padding:
      125px
      24px
      50px;
  }


  .hero-showcase-heading {
    margin-bottom: 18px;
  }


  .arise-video-grid {
    grid-template-columns:
      1.1fr
      1.4fr
      0.75fr
      1.2fr
      0.8fr;

    gap: 7px;

    height: 330px;

    margin-bottom: 35px;
  }


  .arise-letter {
    font-size: clamp(4rem, 23vw, 7rem);
  }


  .hero-showcase-statement {
    flex-direction: column;

    align-items: flex-start;

    gap: 28px;
  }


  .hero-showcase-statement h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }


  .hero-changing-message {
    align-items: flex-start;

    min-width: 0;
  }


  .hero-showcase-info {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 32px;
  }


  .showcase-main-event {
    align-items: flex-start;

    text-align: left;
  }


  .hero-showcase-button {
    width: 100%;

    box-sizing: border-box;

    text-align: center;
  }

}


/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {

  .arise-video-panel video {
    animation: none;
  }

  .changing-word {
    transition: none;
  }

}

/* ========================================
   DESKTOP HERO — COMPACT ARISE PANELS
======================================== */

@media (min-width: 1201px) {

  /* Make NEW ZEALAND larger */

  .hero-showcase-heading {
    font-size: 1.45rem !important;
    font-weight: 700 !important;

    letter-spacing: 0.20em !important;

    margin-bottom: 22px !important;
  }


  /* Reduce height of ARISE video / blue panels */

  .arise-video-grid {
    height: clamp(300px, 38vh, 430px) !important;

    margin-bottom: 38px !important;
  }


  /* Keep the letters strong inside shorter panels */

  .arise-letter {
    font-size: clamp(7rem, 14vw, 13rem) !important;
  }

}

/* =========================================================
   ONE-SCREEN HERO — DESKTOP + TABLET
========================================================= */

@media (min-width: 701px) {

  .hero-showcase {
    box-sizing: border-box;

    /* subtract approximate navigation height */
    height: calc(100svh - 74px) !important;
    min-height: 620px;

    padding:
      28px
      3vw
      24px !important;

    display: grid !important;

    grid-template-rows:
      auto
      minmax(220px, 1fr)
      auto
      auto !important;

    row-gap: 18px !important;

    overflow: hidden !important;
  }


  /* NEW ZEALAND */

  .hero-showcase-heading {
    margin: 0 !important;

    font-size: clamp(1rem, 1.5vw, 1.45rem) !important;
    line-height: 1 !important;
  }


  /* ARISE */

  .arise-video-grid {
    height: 100% !important;
    min-height: 220px !important;
    max-height: 360px !important;

    margin: 0 !important;

    gap: clamp(14px, 2.5vw, 48px) !important;
  }


  .arise-letter {
    font-size: clamp(6rem, 12vw, 11rem) !important;
  }


  /* REVIVAL OF A NATION + ROTATING WORD */

  .hero-showcase-statement {
    margin: 0 !important;
    padding: 0 !important;

    align-items: end !important;

    gap: 30px !important;
  }


  .hero-showcase-statement h1 {
    margin: 0 !important;

    font-size: clamp(2.8rem, 5.5vw, 6rem) !important;
    line-height: 0.88 !important;
  }


  .hero-changing-message {
    margin: 0 !important;
    padding: 0 0 4px !important;
  }


  .changing-label {
    margin-bottom: 5px !important;
  }


  .changing-word {
    font-size: clamp(1.7rem, 2.8vw, 3rem) !important;
  }


  /* BOTTOM INFORMATION */

  .hero-showcase-info {
    margin: 0 !important;

    padding-top: 14px !important;

    gap: 30px !important;
  }


  .showcase-date {
    gap: 2px !important;
  }


  .showcase-date strong {
    font-size: 1rem !important;
  }


  .showcase-main-event {
    gap: 2px !important;
  }


  .showcase-main-event strong {
    font-size: 1.7rem !important;
  }


  .hero-showcase-button {
    padding:
      15px
      28px !important;
  }

}

/* =========================================================
   ONE-SCREEN HERO — KEEP NEW ZEALAND VISIBLE
========================================================= */

@media (min-width: 701px) {

  .hero-showcase {
    /* Give breathing room below the fixed menu */
    padding-top: 46px !important;

    grid-template-rows:
      auto
      minmax(200px, 1fr)
      auto
      auto !important;

    row-gap: 14px !important;
  }


  /* NEW ZEALAND */

  .hero-showcase-heading {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    margin: 0 0 8px 0 !important;

    position: relative !important;
    z-index: 5 !important;
  }


  /* Move ARISE down by preserving space for heading */

  .arise-video-grid {
    margin-top: 0 !important;

    max-height: 330px !important;
  }

}

/* =========================================================
   DESKTOP + TABLET — PLACE HERO BELOW FIXED HEADER
========================================================= */

@media (min-width: 701px) {

  .hero-showcase {
    margin-top: 76px !important;

    height: calc(100svh - 76px) !important;

    padding-top: 20px !important;
  }

  .hero-showcase-heading {
    margin-top: 0 !important;
    margin-bottom: 18px !important;

    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

}

/* =========================================================
   CLEAN HEADER / REMOVE BLACK GAP
========================================================= */

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  background: #f0eee8 !important;
}


/* Remove any old fake top bar */

body::before,
body::after {
  display: none !important;
  content: none !important;
}


/* Let the header occupy its real space */
.site-header {
  position: sticky !important;
  top: 0 !important;

  margin: 0 !important;

  background: #4a4a4a !important;

  border: 0 !important;
  box-shadow: none !important;

  z-index: 9999;
}


/* Hero starts immediately after header */

.hero-showcase {
  margin: 0 !important;

  padding-top: 14px !important;

  background: #f0eee8 !important;
}


/* Make NEW ZEALAND larger */

.hero-showcase-heading {
  margin:
    0
    0
    18px
    0 !important;

  font-size: clamp(
    2rem,
    2.8vw,
    3.2rem
  ) !important;

  font-weight: 700 !important;

  line-height: 1 !important;

  letter-spacing: 0.18em !important;

  color: #132e55 !important;
}
