/* ============================================================
   THE ENDTIME SENTINELS NETWORK — STYLESHEET
   Design System, Layout, Components, Responsive
   ============================================================ */
/* --- DESIGN TOKENS ----------------------------------------- */
:root {
  --navy:        #0B1F3B;
  --navy-deep:   #08162B;
  --navy-mid:    #0F2848;
  --gold:        #C9A34A;
  --gold-light:  #E4C77B;
  --gold-pale:   #F0DFA8;
  --cream:       #F7F4EC;
  --cream-dark:  #EDE9DC;
  --cream-mid:   #E8E3D5;
  --white:       #FFFFFF;
  --text:        #333333;
  --text-light:  #555555;
  --text-lighter:#888888;

  --font-heading: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --container:   1200px;
  --pad-section: 104px;
  --pad-sm:       64px;

  --shadow-xs:   0 1px  6px rgba(11,31,59,0.07);
  --shadow-sm:   0 4px 16px rgba(11,31,59,0.09);
  --shadow-md:   0 8px 32px rgba(11,31,59,0.13);
  --shadow-lg:   0 20px 60px rgba(11,31,59,0.18);

  --radius:      3px;
  --radius-md:   6px;
  --ease:        0.25s ease;
  --ease-long:   0.4s ease;

  --header-h:    80px;
}

/* --- RESET & BASE ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); background: none; border: none; }
iframe { border: none; }

/* --- LAYOUT ------------------------------------------------ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--pad-section) 0; }

/* --- TYPOGRAPHY -------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.025em;
}

h1 { font-size: clamp(2.1rem, 4.8vw, 3.75rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.55rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; }

p { margin-bottom: 1rem; line-height: 1.82; }
p:last-child { margin-bottom: 0; }

/* --- DESIGN ELEMENTS --------------------------------------- */
.gold-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px 0 30px;
  flex-shrink: 0;
}
.gold-divider.centered { margin: 14px auto 30px; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 13px;
  border: 1px solid rgba(201,163,74,0.38);
  margin-bottom: 14px;
}
.section-tag.light {
  color: var(--gold-light);
  border-color: rgba(228,199,123,0.35);
}

.section-header { margin-bottom: 8px; }
.section-header.centered { text-align: center; }

.section-title       { color: var(--navy); margin-bottom: 8px; }
.section-title.light { color: var(--white); }
.section-title.centered { text-align: center; }

.section-intro {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.8;
}
.section-intro.light { color: rgba(255,255,255,0.65); }

.required { color: var(--gold); }
.optional-label {
  font-size: 0.72rem;
  color: var(--text-lighter);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* --- BUTTONS ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,163,74,0.35);
}
.btn-primary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-give {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 22px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: all var(--ease);
}
.btn-give:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(201,163,74,0.4);
}

.btn-full { width: 100%; }

.btn-give-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--gold);
  color: var(--navy-deep);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 17px 28px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--ease);
  cursor: pointer;
  margin-top: 4px;
}
.btn-give-submit:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,163,74,0.4);
}
.btn-give-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* --- HEADER ------------------------------------------------ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(8,22,43,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,163,74,0.12);
  transition: box-shadow var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 6px 40px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.07em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: 16px;
}
.nav-link {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 11px;
  position: relative;
  transition: color var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 11px;
  right: 11px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.nav-link:hover          { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after  { transform: scaleX(1); }
.nav-link.active         { color: var(--white); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- HERO -------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  background: var(--navy-deep);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(201,163,74,0.055) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A34A' fill-opacity='0.035'%3E%3Cpath d='M50 50v-5h-3v5h-5v3h5v5h3v-5h5v-3h-5zM50 5V0h-3v5h-5v3h5v5h3V8h5V5h-5zM5 50v-5H2v5H0v3h2v5h3v-5h5v-3H5zM5 5V0H2v5H0v3h2v5h3V8h5V5H5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(8,22,43,0.94) 0%,
    rgba(11,31,59,0.88) 55%,
    rgba(8,22,43,0.92) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 100px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid rgba(201,163,74,0.4);
  display: inline-block;
}
.hero-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 26px;
  line-height: 1.12;
  text-shadow: 0 3px 24px rgba(0,0,0,0.28);
}
.hero-subtitle {
  font-size: clamp(0.98rem, 1.7vw, 1.13rem);
  color: rgba(255,255,255,0.78);
  max-width: 660px;
  line-height: 1.83;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- URGENCY ----------------------------------------------- */
.urgency-section { background: var(--cream); }
.urgency-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 80px;
  align-items: start;
}
.urgency-text p {
  color: var(--text-light);
  font-size: 1.01rem;
  margin-bottom: 1.35rem;
}
.scripture-quote {
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  margin-top: 36px;
  background: var(--cream-dark);
}
.scripture-quote p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.6;
}
.scripture-quote cite {
  font-size: 0.76rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-style: normal;
  font-weight: 600;
}
.urgency-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 58px; /* align with text start */
}
.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(11,31,59,0.08);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease);
}
.pillar:hover { box-shadow: var(--shadow-sm); }
.pillar-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.3;
  margin-top: 2px;
}
.pillar p {
  font-size: 0.94rem;
  color: var(--text);
  margin: 0;
  line-height: 1.65;
}

/* --- THREE ANGELS ------------------------------------------ */
.angels-section {
  background: var(--navy);
  padding: var(--pad-section) 0;
}
.angels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.angel-card {
  padding: 52px 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,163,74,0.1);
  position: relative;
  transition: background var(--ease);
}
.angel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}
.angel-card:hover::before,
.angel-card.featured-card::before { opacity: 1; }
.angel-card:hover { background: rgba(255,255,255,0.06); }
.angel-card.featured-card {
  background: rgba(201,163,74,0.07);
  border-color: rgba(201,163,74,0.28);
}
.angel-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: rgba(201,163,74,0.2);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1;
}
.angel-card.featured-card .angel-number { color: rgba(228,199,123,0.35); }
.angel-title { color: var(--white); margin-bottom: 5px; font-size: 1.2rem; }
.angel-ref {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  font-weight: 600;
}
.angel-card p {
  color: rgba(255,255,255,0.68);
  font-size: 0.94rem;
  line-height: 1.8;
  margin: 0;
}

/* --- WATCH ------------------------------------------------- */
.watch-section { background: var(--cream); }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.video-card {
  background: var(--white);
  border: 1px solid rgba(11,31,59,0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--navy-deep);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.video-info { padding: 26px; }
.video-info h3 { font-size: 1rem; color: var(--navy); margin-bottom: 9px; }
.video-info p  { font-size: 0.88rem; color: var(--text-light); margin: 0; line-height: 1.65; }
.section-cta   { text-align: center; }

/* --- STUDY ------------------------------------------------- */
.study-section { background: var(--cream-dark); }
.studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.study-card {
  padding: 46px 36px;
  background: var(--white);
  border: 1px solid rgba(11,31,59,0.08);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.study-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--ease-long);
}
.study-card:hover::after,
.study-card.featured-study::after { transform: scaleX(1); }
.study-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.study-card.featured-study {
  border-color: rgba(201,163,74,0.28);
}
.study-icon { font-size: 1.4rem; color: var(--gold); line-height: 1; }
.study-card h3 { color: var(--navy); margin: 0; }
.study-card p  { color: var(--text-light); font-size: 0.93rem; line-height: 1.75; flex: 1; margin: 0; }
.study-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(11,31,59,0.07);
  margin-top: auto;
}
.study-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 3px 10px;
  border: 1px solid rgba(201,163,74,0.35);
}
.study-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--ease);
}
.study-link:hover { color: var(--gold); }

/* --- NEWS & EVENTS ----------------------------------------- */
.news-section { background: var(--cream); }
.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: start;
}
.current-focus {
  background: var(--navy);
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.current-focus::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.focus-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding: 4px 11px;
  border: 1px solid rgba(201,163,74,0.4);
}
.current-focus h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 18px; }
.current-focus p  { color: rgba(255,255,255,0.7); font-size: 0.96rem; line-height: 1.82; }
.focus-meta {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.focus-meta span {
  font-size: 0.76rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.news-sidebar { display: flex; flex-direction: column; gap: 18px; }
.event-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(11,31,59,0.08);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease);
}
.event-card:hover { box-shadow: var(--shadow-sm); }
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  background: var(--navy);
  padding: 12px 16px;
  min-width: 64px;
}
.event-month {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
}
.event-day {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--white);
  line-height: 1.1;
  font-weight: 700;
}
.event-info h4 { color: var(--navy); margin-bottom: 7px; font-size: 1rem; }
.event-info p  { font-size: 0.85rem; color: var(--text-light); margin-bottom: 10px; }
.event-link {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: color var(--ease);
}
.event-link:hover { color: var(--navy); }
.ministry-update {
  padding: 24px;
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
}
.ministry-update h4 {
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ministry-update p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* --- MISSION ----------------------------------------------- */
.mission-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A34A' fill-opacity='0.028'%3E%3Cpath d='M50 50v-5h-3v5h-5v3h5v5h3v-5h5v-3h-5zM50 5V0h-3v5h-5v3h5v5h3V8h5V5h-5zM5 50v-5H2v5H0v3h2v5h3v-5h5v-3H5zM5 5V0H2v5H0v3h2v5h3V8h5V5H5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.mission-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.mission-text {
  color: rgba(255,255,255,0.7);
  font-size: 1.03rem;
  line-height: 1.88;
  margin-bottom: 1.5rem;
  text-align: left;
}
.mission-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid rgba(201,163,74,0.18);
}
.value-title {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.value-divider { color: rgba(201,163,74,0.35); font-size: 0.7rem; }

/* --- CONTACT ----------------------------------------------- */
.contact-section { background: var(--cream-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 34px; }
.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
}
.contact-detail a,
.contact-detail p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.72;
  transition: color var(--ease);
}
.contact-detail a:hover { color: var(--gold); }
.contact-form {
  background: var(--white);
  padding: 52px;
  box-shadow: var(--shadow-md);
}

/* --- GIVE -------------------------------------------------- */
.give-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.give-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A34A' fill-opacity='0.028'%3E%3Cpath d='M50 50v-5h-3v5h-5v3h5v5h3v-5h5v-3h-5zM50 5V0h-3v5h-5v3h5v5h3V8h5V5h-5zM5 50v-5H2v5H0v3h2v5h3v-5h5v-3H5zM5 5V0H2v5H0v3h2v5h3V8h5V5H5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.give-inner { position: relative; z-index: 1; }
.give-text {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
  line-height: 1.88;
}
.give-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 36px;
  align-items: start;
}
.give-form-wrapper {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,163,74,0.18);
  padding: 52px;
}
.give-sidebar { display: flex; flex-direction: column; gap: 14px; }
.give-cause-card {
  padding: 26px 28px;
  border: 1px solid rgba(201,163,74,0.14);
  background: rgba(255,255,255,0.035);
  transition: border-color var(--ease), background var(--ease);
}
.give-cause-card:hover {
  border-color: rgba(201,163,74,0.38);
  background: rgba(255,255,255,0.06);
}
.give-cause-card h4 {
  color: var(--gold-light);
  font-size: 0.92rem;
  margin-bottom: 9px;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}
.give-cause-card p {
  color: rgba(255,255,255,0.52);
  font-size: 0.84rem;
  line-height: 1.65;
  margin: 0;
}

/* Amount presets */
.amount-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.amount-btn {
  padding: 13px 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(201,163,74,0.1);
  border: 1px solid rgba(201,163,74,0.28);
  border-radius: var(--radius);
  transition: all var(--ease);
  cursor: pointer;
}
.amount-btn:hover,
.amount-btn.selected,
.amount-btn[aria-pressed="true"] {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.custom-amount-wrapper { position: relative; }
.currency-symbol {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  pointer-events: none;
  line-height: 1;
}
.custom-amount-wrapper input { padding-left: 32px; }

.secure-note {
  text-align: center;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.38);
  margin-top: 14px;
  line-height: 1.6;
}

/* --- FORMS ------------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(11,31,59,0.18);
  border-radius: var(--radius);
  padding: 13px 16px;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,163,74,0.14);
}
input::placeholder, textarea::placeholder { color: var(--text-lighter); }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 118px; }

/* Give section inputs — dark theme */
.give-section label { color: rgba(255,255,255,0.52); }
.give-section input,
.give-section select,
.give-section textarea {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,163,74,0.18);
  color: var(--white);
}
.give-section input:focus,
.give-section select:focus,
.give-section textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.give-section input::placeholder,
.give-section textarea::placeholder { color: rgba(255,255,255,0.28); }
.give-section select option { background: var(--navy); color: var(--white); }

/* Checkbox */
.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.form-check input[type="checkbox"] {
  width: auto;
  flex-shrink: 0;
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--gold);
}
.form-check label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 0.87rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.6;
}

/* Form feedback messages */
.form-message {
  border-radius: var(--radius);
  font-size: 0.88rem;
  line-height: 1.55;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease, margin 0.35s ease;
}
.form-message.visible {
  max-height: 200px;
  opacity: 1;
  padding: 14px 18px;
  margin-bottom: 18px;
}
.form-message.success {
  background: rgba(34,139,34,0.1);
  border: 1px solid rgba(34,139,34,0.3);
  color: #1a6b1a;
}
.form-message.error {
  background: rgba(168,28,28,0.1);
  border: 1px solid rgba(168,28,28,0.25);
  color: #8c1f1f;
}
.give-section .form-message.success { background: rgba(34,139,34,0.15); color: #82d882; border-color: rgba(34,139,34,0.3); }
.give-section .form-message.error   { background: rgba(168,28,28,0.15); color: #f09090; border-color: rgba(168,28,28,0.3); }

/* --- FOOTER ------------------------------------------------ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,163,74,0.1);
  padding-top: 68px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  width: fit-content;
}
.footer-mission {
  color: rgba(255,255,255,0.48);
  font-size: 0.88rem;
  line-height: 1.78;
  max-width: 340px;
}
.footer-links h5,
.footer-connect h5 {
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.87rem;
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-email {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 26px;
  transition: color var(--ease);
  word-break: break-all;
}
.footer-email:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 16px; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  transition: color var(--ease);
}
.social-link:hover { color: var(--gold-light); }
.footer-bar {
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bar p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
  line-height: 1.55;
}
.footer-scripture {
  font-style: italic;
  max-width: 500px;
  text-align: right;
}

/* --- RESPONSIVE -------------------------------------------- */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .urgency-grid { gap: 52px; }
  .angels-grid { gap: 1px; }
  .contact-grid { gap: 44px; grid-template-columns: 1fr 1.8fr; }
}

@media (max-width: 900px) {
  :root { --pad-section: 72px; }
  .container { padding: 0 24px; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    inset-inline: 0;
    background: var(--navy-deep);
    border-top: 1px solid rgba(201,163,74,0.15);
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px 32px;
    gap: 0;
    transform: translateY(-105%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.32s ease, opacity 0.32s ease, visibility 0.32s;
    z-index: 999;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; margin-right: 0; margin-bottom: 22px; gap: 0; }
  .nav-link { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.88rem; }
  .nav-link::after { display: none; }
  .btn-give { text-align: center; padding: 14px; justify-content: center; }

  /* Grid collapses */
  .urgency-grid,
  .news-grid,
  .contact-grid,
  .give-grid { grid-template-columns: 1fr; }
  .angels-grid,
  .videos-grid,
  .studies-grid { grid-template-columns: 1fr; }
  .urgency-pillars { padding-top: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  .give-form-wrapper { padding: 36px; }
  .contact-form { padding: 36px; }
  .current-focus { padding: 36px; }
}

@media (max-width: 600px) {
  :root { --pad-section: 56px; }
  .container { padding: 0 18px; }

  .hero-content {
    padding-top: calc(var(--header-h) + 36px);
    padding-bottom: 72px;
  }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .amount-presets { grid-template-columns: repeat(2, 1fr); }

  .give-form-wrapper,
  .contact-form { padding: 28px 22px; }
  .current-focus { padding: 30px 26px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-scripture { text-align: left; max-width: 100%; }

  .angel-card { padding: 34px 26px; }
  .study-card { padding: 34px 28px; }

    .mission-values { gap: 16px; flex-direction: column; }
    .value-divider { transform: rotate(90deg); }
    .study-card img {    /* <-- move it INSIDE */
        filter: brightness(0) saturate(100%) invert(68%) sepia(45%) saturate(600%) hue-rotate(5deg) brightness(95%);
    }
}