:root {
  --ink: #07111d;
  --deep: #061829;
  --blue: #0b2d4c;
  --blue-soft: #123e64;
  --paper: #f8fbff;
  --white: #ffffff;
  --muted: #bac7d4;
  --gold: #d9b56a;
  --gold-dark: #9f7935;
  --line: rgba(255, 255, 255, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter Tight", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header.scrolled,
body.menu-open .site-header {
  background: rgba(5, 20, 35, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  border: 1px solid rgba(217, 181, 106, 0.65);
  color: var(--gold);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand strong,
.brand em {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
  margin-top: 4px;
}

.site-nav {
  align-items: center;
  color: var(--white);
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.86;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-cta {
  border: 1px solid rgba(217, 181, 106, 0.75);
  color: var(--gold);
  padding: 11px 15px;
}

.menu-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: none;
  height: 42px;
  padding: 0;
  width: 42px;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 7px auto;
  width: 20px;
}

.hero {
  background: var(--deep);
  color: var(--white);
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-media {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 18, 32, 0.95) 0%, rgba(4, 18, 32, 0.72) 38%, rgba(4, 18, 32, 0.22) 75%),
    linear-gradient(0deg, rgba(4, 18, 32, 0.92) 0%, rgba(4, 18, 32, 0.05) 45%);
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 720px;
  padding: 180px clamp(22px, 7vw, 96px) 170px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(62px, 9vw, 132px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.88;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.hero-subtitle {
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.18;
  margin: 0 0 24px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.55;
  margin: 0;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 50px;
  padding: 15px 20px;
  text-transform: uppercase;
}

.button-primary {
  background: var(--gold);
  color: #102038;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-dark {
  background: var(--blue);
  color: var(--white);
}

.hero-note {
  border-left: 2px solid var(--gold);
  bottom: 42px;
  color: var(--white);
  display: grid;
  gap: 5px;
  max-width: 330px;
  padding-left: 18px;
  position: absolute;
  right: clamp(22px, 5vw, 70px);
  z-index: 2;
}

.hero-note span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note strong {
  font-size: 19px;
  line-height: 1.2;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max);
  padding: 100px 24px;
}

.section-light {
  background: #edf4fb;
}

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

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

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

.statement-grid,
.split-layout,
.relationship-grid,
.watch-layout,
.pastor-grid,
.community-layout {
  display: grid;
  gap: clamp(34px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

h2 {
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
  text-transform: uppercase;
}

.section-deep h2,
.section-blue h2,
.final-cta h2 {
  color: var(--white);
}

p {
  font-size: 19px;
  line-height: 1.62;
}

.statement-copy,
.text-stack,
.pastor-content {
  align-self: end;
}

.statement-copy p,
.text-stack p,
.watch-layout p,
.pastor-content p {
  margin: 0 0 18px;
}

.large-line,
.emphasis {
  color: var(--gold-dark);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.section-deep .emphasis,
.section-deep .large-line {
  color: var(--gold);
}

.section-heading {
  margin-bottom: 42px;
  max-width: 850px;
}

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

.belief-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 220px;
  padding: 26px;
}

.belief-grid article:nth-child(1),
.belief-grid article:nth-child(4),
.belief-grid article:nth-child(7) {
  background: rgba(217, 181, 106, 0.13);
}

.belief-grid span {
  color: var(--gold);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}

.belief-grid p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.35;
  margin: 0;
}

.vertical-label {
  border-left: 2px solid var(--gold);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  padding-left: 16px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.relationship-grid {
  grid-template-columns: auto minmax(0, 1.2fr) minmax(260px, 0.7fr);
}

.relationship-grid p {
  color: #314256;
  margin: 24px 0 0;
}

.plain-list {
  align-self: end;
  border-top: 1px solid rgba(6, 24, 41, 0.18);
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
}

.plain-list li {
  color: var(--blue);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
}

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

.topic-grid span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  display: block;
  font-size: 22px;
  font-weight: 800;
  min-height: 92px;
  padding: 24px;
}

.watch-layout {
  align-items: end;
}

.watch-list {
  display: grid;
  gap: 10px;
}

.watch-list a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
}

.watch-list span {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}

.watch-list strong {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pastor-grid {
  align-items: center;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.pastor-image-wrap {
  aspect-ratio: 4 / 5;
  background: var(--blue);
  overflow: hidden;
}

.pastor-image-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.pastor-content h2 {
  color: var(--blue);
}

.role {
  color: var(--gold-dark);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 28px;
}

.community-layout {
  align-items: start;
}

.community-actions {
  display: grid;
  gap: 12px;
}

.community-actions a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  padding: 24px;
  text-transform: uppercase;
}

.final-cta {
  background:
    linear-gradient(rgba(6, 24, 41, 0.9), rgba(6, 24, 41, 0.94)),
    url("/assets/hero-biblia-ministerio.png") center / cover;
  color: var(--white);
}

.final-cta-inner {
  margin: 0 auto;
  max-width: 980px;
  padding: 120px 24px;
  text-align: center;
}

.final-cta .button {
  margin-top: 34px;
}

.site-footer {
  background: #030a12;
  color: var(--white);
}

.footer-inner {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 42px 24px;
}

.site-footer strong {
  color: var(--gold);
  font-size: 18px;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.enhanced .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    align-content: start;
    background: rgba(5, 20, 35, 0.98);
    display: grid;
    gap: 0;
    inset: 79px 0 auto;
    opacity: 0;
    padding: 24px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
  }

  .nav-cta {
    border: 0;
    color: var(--gold);
  }

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

  .hero-note {
    bottom: 28px;
    left: 24px;
    right: 24px;
  }

  .statement-grid,
  .split-layout,
  .relationship-grid,
  .watch-layout,
  .pastor-grid,
  .community-layout {
    grid-template-columns: 1fr;
  }

  .vertical-label {
    writing-mode: initial;
  }

  .belief-grid,
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand strong {
    font-size: 12px;
  }

  .brand em {
    font-size: 11px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding: 122px 20px 200px;
  }

  .hero h1 {
    font-size: min(12vw, 58px);
  }

  .hero-copy,
  p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .section-inner,
  .final-cta-inner {
    padding: 78px 20px;
  }

  h2 {
    font-size: 40px;
  }

  .belief-grid,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .belief-grid article {
    min-height: 0;
  }

  .watch-list span,
  .plain-list li,
  .community-actions a {
    font-size: 20px;
  }

  .footer-inner {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
