:root {
  --black: #050505;
  --charcoal: #171717;
  --white: #ffffff;
  --paper: #f7f5ef;
  --gray: #eceae4;
  --red: #ed1c24;
  --blue: #0088cb;
  --yellow: #ffcb05;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.site-header {
  align-items: center;
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, border-color 180ms ease;
  z-index: 20;
}

.site-header.is-solid {
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: var(--yellow);
  color: var(--black);
  display: inline-flex;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  width: 54px;
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 800;
  max-width: 180px;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-cta,
.btn {
  align-items: center;
  border: 2px solid transparent;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  text-transform: uppercase;
}

.header-cta,
.btn.primary {
  background: var(--yellow);
  color: var(--black);
}

.btn.secondary {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn.secondary.light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.hero {
  background: var(--black);
  color: var(--white);
  display: grid;
  min-width: 0;
  min-height: 92vh;
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 72px) 34px;
  place-items: end start;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media img {
  filter: saturate(1.05) contrast(1.1);
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.4) 52%, rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 75% 20%, rgba(255, 203, 5, 0.28), transparent 28%);
}

.truth-stamp {
  border: 7px solid rgba(255, 203, 5, 0.58);
  color: rgba(255, 203, 5, 0.28);
  font-size: clamp(4.5rem, 14vw, 13rem);
  font-weight: 1000;
  line-height: 0.9;
  padding: 14px 24px;
  position: absolute;
  right: clamp(18px, 6vw, 90px);
  top: 22%;
  transform: rotate(-8deg);
}

.hero-content {
  max-width: 780px;
  min-width: 0;
  position: relative;
  width: min(100%, 780px);
  z-index: 2;
}

.eyebrow {
  color: var(--yellow);
  font-size: 0.77rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.84;
  max-width: 820px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-copy {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
  margin: 22px 0 30px;
  max-width: 650px;
}

.hero-actions,
.watch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-strip {
  align-items: center;
  background: var(--white);
  bottom: 0;
  color: var(--black);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  left: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}

.service-strip span {
  background: var(--yellow);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  min-height: 48px;
  padding: 16px 12px;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(70px, 9vw, 130px) clamp(18px, 5vw, 72px);
}

.section-heading {
  margin: 0 auto 36px;
  max-width: var(--max);
}

.section-heading p {
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 620px;
}

.section-heading.split {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.path-grid,
.campus-grid,
.next-grid {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: var(--max);
}

.path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-card {
  color: var(--black);
  display: grid;
  min-height: 280px;
  padding: 26px;
}

.path-card.yellow {
  background: var(--yellow);
}

.path-card.blue {
  background: var(--blue);
  color: var(--white);
}

.path-card.red {
  background: var(--red);
  color: var(--white);
}

.path-card span,
.campus-label {
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.path-card strong {
  align-self: center;
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.path-card em {
  align-self: end;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.dark-section {
  background: var(--black);
  color: var(--white);
}

.campus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.campus-card {
  border-top: 12px solid var(--yellow);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 420px;
  padding: 28px;
}

.campus-card.tampa {
  background: #252000;
  border-color: var(--yellow);
}

.campus-card.wesley {
  background: #00263a;
  border-color: var(--blue);
}

.campus-card.pete {
  background: #370306;
  border-color: var(--red);
}

.campus-card p,
.campus-card strong,
.campus-card span {
  line-height: 1.45;
  margin: 0;
}

.campus-card a {
  border: 2px solid rgba(255, 255, 255, 0.72);
  font-weight: 950;
  margin-top: auto;
  padding: 14px 16px;
  text-align: center;
  text-transform: uppercase;
}

.connect-section {
  background:
    linear-gradient(135deg, rgba(255, 203, 5, 0.18), transparent 35%),
    var(--paper);
}

.next-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.next-grid a {
  align-items: end;
  background: var(--white);
  border: 3px solid var(--black);
  display: flex;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 1000;
  min-height: 170px;
  padding: 18px;
  text-transform: uppercase;
}

.watch-section {
  align-items: center;
  background: var(--blue);
  color: var(--white);
  display: grid;
  gap: 42px;
  grid-template-columns: 0.8fr 1.2fr;
}

.watch-copy {
  max-width: 520px;
}

.watch-copy p:not(.eyebrow) {
  font-size: 1.1rem;
  line-height: 1.65;
}

.sermon-frame {
  aspect-ratio: 16 / 9;
  background: var(--black);
  box-shadow: 18px 18px 0 var(--yellow);
  width: 100%;
}

.sermon-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.we-section {
  align-items: center;
  background: var(--black);
  color: var(--white);
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr 1fr;
}

.me-we {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.me-we span {
  color: var(--yellow);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 1000;
  line-height: 0.8;
}

.me-we span:nth-child(2) {
  color: var(--white);
}

.me-we span:nth-child(3) {
  color: var(--red);
}

.we-copy p:not(.eyebrow) {
  font-size: 1.1rem;
  line-height: 1.65;
}

blockquote {
  border-left: 10px solid var(--yellow);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 1000;
  line-height: 1;
  margin: 28px 0 0;
  padding-left: 18px;
  text-transform: uppercase;
}

.nation-section {
  background: var(--yellow);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  background: var(--black);
  color: var(--white);
  font-weight: 950;
  padding: 14px 16px;
  text-transform: uppercase;
}

.site-footer {
  align-items: center;
  background: var(--black);
  color: var(--white);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 34px clamp(18px, 5vw, 72px) 88px;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.mobile-actions {
  display: none;
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 110px;
  }

  .hero-content {
    max-width: calc(100vw - 36px);
    width: 100%;
  }

  .service-strip,
  .path-grid,
  .campus-grid,
  .next-grid,
  .watch-section,
  .we-section {
    grid-template-columns: 1fr;
  }

  .service-strip {
    position: relative;
  }

  .service-strip span {
    text-align: left;
  }

  .truth-stamp {
    font-size: clamp(3rem, 18vw, 5.2rem);
    max-width: calc(100vw - 32px);
    padding: 10px 14px;
    right: 16px;
    top: 150px;
    transform: rotate(-8deg);
  }

  .path-card {
    min-height: 220px;
  }

  .section-heading.split,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .next-grid a {
    min-height: 120px;
  }

  .sermon-frame {
    box-shadow: 10px 10px 0 var(--yellow);
  }

  .mobile-actions {
    background: var(--black);
    bottom: 0;
    color: var(--white);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .mobile-actions a {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.82rem;
    font-weight: 950;
    padding: 16px 8px;
    text-align: center;
    text-transform: uppercase;
  }
}

@media (max-width: 520px) {
  .brand-name {
    max-width: 132px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.25rem);
    max-width: 100%;
  }

  .truth-stamp {
    display: none;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero .eyebrow {
    font-size: 0.72rem;
    line-height: 1.4;
    max-width: 100%;
  }

  .hero-actions .btn,
  .watch-actions .btn {
    width: 100%;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .campus-card {
    min-height: 340px;
  }
}
