/* Oikia CC Texas — Shared Styles
   Brand: Orange #F58220 / Black #0A0A0A / White #FFFFFF
   Accent palette: Green #2EA84F, Purple #9B30B7, Blue #1FA8E0, Magenta #C8378E
*/

:root {
  --orange:       #F58220;
  --orange-dark:  #D96A0E;
  --orange-soft:  #FFB36B;
  --black:        #0A0A0A;
  --ink:          #1A1A1A;
  --paper:        #FAF8F5;
  --paper-2:      #F1EDE6;
  --white:        #FFFFFF;
  --muted:        #6B6B6B;
  --line:         rgba(255,255,255,0.08);
  --line-dark:    rgba(0,0,0,0.08);
  --green:        #2EA84F;
  --purple:       #9B30B7;
  --blue:         #1FA8E0;
  --magenta:      #C8378E;
  --radius:       18px;
  --radius-lg:    28px;
  --shadow:       0 30px 60px -20px rgba(0,0,0,0.35);
  --max:          1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  backdrop-filter: blur(14px);
  background: rgba(10,10,10,0.55);
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease, background .3s ease;
}
.nav.scrolled { padding: 12px 0; background: rgba(10,10,10,0.85); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 20px; letter-spacing: -0.01em;
}
.logo-mark { width: 36px; height: 36px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text small { font-size: 10px; letter-spacing: 0.18em; color: var(--orange); font-weight: 600; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color .2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  display: flex; align-items: center; gap: 10px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(245,130,32,0.6);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-outline-orange {
  background: transparent; color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }
.btn-large { padding: 16px 30px; font-size: 16px; }

.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  transition: all .2s;
}
.icon-btn:hover { background: var(--orange); border-color: var(--orange); }

/* ─── HAMBURGER BUTTON ─── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  transition: background .2s;
  flex-shrink: 0;
}
.hamburger-btn:hover { background: rgba(255,255,255,0.08); }
.hamburger-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}

/* ─── MOBILE MENU OVERLAY ─── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 28px 48px;
  overflow-y: auto;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.mobile-menu-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  transition: all .2s;
}
.mobile-menu-close:hover { background: var(--orange); border-color: var(--orange); }
.mobile-nav { flex: 1; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav a {
  display: block;
  padding: 20px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px; font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color .2s;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--orange); }
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}
.mobile-menu-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 18px 30px;
  font-size: 16px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 30%, rgba(245,130,32,0.18), transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(245,130,32,0.12), transparent 50%),
              var(--black);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float 14s ease-in-out infinite;
  pointer-events: none;
}
.hero-blob.b1 { width: 480px; height: 480px; background: var(--orange); top: -120px; right: -120px; }
.hero-blob.b2 { width: 360px; height: 360px; background: #d94d0e; bottom: -100px; left: -80px; animation-delay: -7s; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(40px,-30px) scale(1.08); }
}

.hero-watermark {
  position: absolute;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(220px, 38vw, 520px);
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.025);
  bottom: -10vw; left: 50%; transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-content { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--orange); }
.hero h1 {
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero h1 .accent { color: var(--orange); font-style: italic; font-weight: 600; }
.hero h1 .outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 560px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.hero-info-item svg { color: var(--orange); flex-shrink: 0; }
.hero-info-divider {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
@media (max-width: 480px) {
  .hero-info-divider { display: none; }
}
.hero-meta {
  position: absolute; bottom: 40px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: end;
  font-size: 13px; color: rgba(255,255,255,0.5);
  z-index: 2;
}
.hero-meta-item strong { color: var(--white); display: block; font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ─── MARQUEE ─── */
.marquee {
  background: var(--orange);
  color: var(--black);
  overflow: hidden;
  padding: 18px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-dot { display: inline-block; width: 10px; height: 10px; background: var(--black); border-radius: 50%; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
section { padding: 100px 0; position: relative; }
.section-light { background: var(--paper); color: var(--black); }
.section-light h1,
.section-light h2,
.section-light h3 { color: var(--ink); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--orange); }

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 24px;
  max-width: 800px;
}
.section-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 640px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 60px;
}
.section-light .section-lead { color: var(--muted); }

.section-header { display: flex; justify-content: space-between; align-items: end; gap: 40px; flex-wrap: wrap; margin-bottom: 60px; }
.section-header .left { max-width: 700px; }

/* ─── INTRO / WHO WE ARE ─── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.intro-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.intro-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.18), transparent 50%);
}
.intro-visual svg { width: 60%; height: auto; position: relative; z-index: 1; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }
.intro-visual .verse-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(10px);
  padding: 12px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--white);
}
/* Video variant */
.intro-visual--video {
  aspect-ratio: 9 / 16;
  background: var(--black);
}
.intro-visual--video::before { display: none; }
.intro-visual--video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.intro-text h2 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 24px; }
.intro-text p { font-size: 17px; color: var(--muted); margin-bottom: 18px; }
.intro-verse {
  margin: 20px 0 22px;
  padding: 16px 20px;
  border-left: 3px solid var(--orange);
  background: rgba(245, 130, 32, 0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px; font-style: italic; color: var(--muted);
  line-height: 1.65;
}
.intro-verse cite { font-style: normal; font-weight: 600; color: var(--orange); }
.intro-text .greek {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: var(--ink); color: var(--white);
  border-radius: 999px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ─── PILLARS ─── */
.pillars { background: var(--black); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.pillar {
  position: relative;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  transition: all .35s ease;
  overflow: hidden;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--orange); background: rgba(245,130,32,0.08); }
.pillar-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px; font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.1);
  transition: color .3s;
}
.pillar:hover .pillar-num { color: var(--orange); }
.pillar h3 { font-size: 22px; margin-bottom: 8px; }
.pillar p { font-size: 13px; color: rgba(255,255,255,0.6); }
.pillar.p1::before, .pillar.p2::before, .pillar.p3::before,
.pillar.p4::before, .pillar.p5::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.pillar.p1::before { background: var(--orange); }
.pillar.p2::before { background: var(--green); }
.pillar.p3::before { background: var(--blue); }
.pillar.p4::before { background: var(--purple); }
.pillar.p5::before { background: var(--magenta); }

/* ─── NEXT STEPS ─── */
.next-steps { background: var(--paper); color: var(--black); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.step {
  padding: 28px 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line-dark);
  transition: all .3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  background: var(--black); color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step.s1 .step-num { background: var(--orange); }
.step.s2 .step-num { background: var(--green); }
.step.s3 .step-num { background: var(--blue); }
.step.s4 .step-num { background: var(--purple); }
.step.s5 .step-num { background: var(--magenta); }
.step h3 { font-size: 18px; margin-bottom: 8px; color: var(--ink); }
.step p  { font-size: 13px; color: var(--muted); }

/* ─── SERVICE / VISIT BLOCK ─── */
.service {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  border: 2px solid rgba(245,130,32,0.15);
  border-radius: 50%;
}
.service::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  border: 2px solid rgba(245,130,32,0.1);
  border-radius: 50%;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.service-time {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 700;
  line-height: 0.9;
  background: linear-gradient(180deg, var(--white), rgba(255,255,255,0.4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.service-day { font-size: 24px; font-weight: 600; color: var(--orange); margin-bottom: 24px; }
.service-info { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 8px; display: flex; align-items: start; gap: 12px; }
.service-info svg { flex-shrink: 0; margin-top: 3px; color: var(--orange); }

/* ─── EVENTS PREVIEW ─── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-height: 200px;
}
.event-card {
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .3s;
}
.section-light .event-card { background: var(--white); border-color: var(--line-dark); }
.event-card:hover { transform: translateY(-6px); border-color: var(--orange); }
.event-thumb {
  aspect-ratio: 16/10;
  position: relative;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.event-thumb.alt-1 { background: linear-gradient(135deg, var(--purple), #6c1d80); }
.event-thumb.alt-2 { background: linear-gradient(135deg, var(--blue), #0d6e94); }
.event-thumb.alt-3 { background: linear-gradient(135deg, var(--green), #1c6e34); }
.event-date-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--white);
  letter-spacing: 0.05em;
}
.event-thumb-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(0,0,0,0.2), transparent 40%);
}
.event-content { padding: 24px; }
.event-meta { font-size: 12px; color: var(--orange); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.event-card h3 { font-size: 22px; margin-bottom: 10px; }
.event-card p { font-size: 14px; color: rgba(255,255,255,0.6); }
.section-light .event-card p { color: var(--muted); }

/* ─── CONNECT CTA ─── */
.connect {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--black);
  padding: 80px 0;
  text-align: center;
}
.connect h2 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 20px; }
.connect p { font-size: 18px; max-width: 560px; margin: 0 auto 36px; opacity: 0.85; }
.connect .btn-primary { background: var(--black); color: var(--white); }
.connect .btn-primary:hover { background: var(--ink); }
.connect .btn-ghost { color: var(--black); border-color: rgba(0,0,0,0.3); }
.connect .btn-ghost:hover { border-color: var(--black); color: var(--black); background: rgba(0,0,0,0.05); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; max-width: 320px; margin-top: 16px; }
.footer-col h4 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; border-top: 1px solid var(--line);
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-socials { display: flex; gap: 10px; }

/* ─── INNER PAGE HEROES ─── */
.page-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 80% 20%, rgba(245,130,32,0.18), transparent 55%), var(--black);
}
.page-hero h1 {
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  margin-bottom: 24px;
}
.page-hero h1 .accent { color: var(--orange); font-style: italic; font-weight: 600; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; }
.breadcrumb {
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
}

/* ─── ABOUT SPECIFICS ─── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-grid h2 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 30px; }
.story-grid p { font-size: 17px; color: var(--muted); margin-bottom: 18px; }
.timeline {
  border-left: 2px solid var(--orange);
  padding-left: 30px;
  margin-top: 20px;
}
.timeline-item { margin-bottom: 30px; position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: -38px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--paper);
}
.timeline-item h4 { font-size: 18px; margin-bottom: 4px; color: var(--ink); }
.timeline-item .year { font-size: 13px; color: var(--orange); font-weight: 600; letter-spacing: 0.1em; }

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.belief {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  display: flex; align-items: start; gap: 14px;
  transition: all .3s;
}
.belief:hover { background: rgba(245,130,32,0.08); border-color: var(--orange); }
.belief-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px;
}
.belief p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.45; }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vm-card {
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  background: var(--ink); color: var(--white);
  position: relative; overflow: hidden;
}
.vm-card.orange { background: var(--orange); color: var(--black); }
.vm-card h3 { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; opacity: 0.7; }
.vm-card h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 24px; }
.vm-card ul { list-style: none; }
.vm-card li {
  font-size: 16px; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 12px;
}
.vm-card.orange li { border-color: rgba(0,0,0,0.15); }
.vm-card li::before { content: '→'; color: inherit; opacity: 0.6; font-weight: 600; }

.pastor-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
}
.pastor-photo {
  aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 80px; font-weight: 700;
  color: var(--white);
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pastor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.pastor-card h3 { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.pastor-card h2 { font-size: 36px; color: var(--ink); margin-bottom: 16px; }
.pastor-card p { color: var(--muted); font-size: 16px; }

.global-strip { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.global-tag {
  padding: 10px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.8);
}

/* ─── EVENTS PAGE ─── */
.event-list { display: flex; flex-direction: column; gap: 16px; }
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s;
}
.event-row:hover { border-color: var(--orange); background: rgba(245,130,32,0.06); transform: translateX(4px); }
.event-date {
  text-align: center;
  padding: 12px;
  background: var(--orange); color: var(--black);
  border-radius: 14px;
}
.event-date .day { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700; line-height: 1; }
.event-date .month { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 4px; }
.event-row h3 { font-size: 22px; margin-bottom: 8px; }
.event-row .info { font-size: 14px; color: rgba(255,255,255,0.6); }
.event-row .info span { margin-right: 16px; }
.events-empty {
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 60px 20px;
  font-size: 16px;
}

.recurring-spotlight {
  padding: 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--black);
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; overflow: hidden;
}
.recurring-spotlight::after {
  content: ''; position: absolute; right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  border: 2px solid rgba(0,0,0,0.1); border-radius: 50%;
}
.recurring-spotlight h3 { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.recurring-spotlight h2 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 20px; line-height: 1; }
.recurring-spotlight p { font-size: 17px; max-width: 480px; opacity: 0.8; margin-bottom: 24px; }
.spotlight-time {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 700; line-height: 0.9;
  text-align: right;
}
.spotlight-time small { display: block; font-size: 18px; font-weight: 600; letter-spacing: 0.15em; opacity: 0.7; }

/* ─── GIVE / VISIT PAGE ─── */
.give-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.give-card {
  padding: 50px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--black);
  position: relative; overflow: hidden;
}
.give-card::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  border: 2px solid rgba(0,0,0,0.1); border-radius: 50%;
}
.give-method-label { font-size: 14px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; }
.give-card h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 30px; }
.give-handle {
  background: var(--black); color: var(--white);
  padding: 24px 28px;
  border-radius: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(15px, 2vw, 22px); font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  position: relative; z-index: 1;
  word-break: break-all;
}
.give-handle .copy-btn {
  background: var(--orange); color: var(--black);
  border: none; padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 13px; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .2s;
  flex-shrink: 0;
}
.give-handle .copy-btn:hover { background: var(--orange-dark); }
.give-note { font-size: 14px; opacity: 0.75; line-height: 1.5; position: relative; z-index: 1; }

.give-info { background: var(--ink); padding: 40px; border-radius: var(--radius-lg); }
.give-info h3 { font-size: 22px; margin-bottom: 16px; }
.give-info p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 14px; }
.give-info ul { list-style: none; margin-top: 12px; }
.give-info li { padding: 10px 0; border-bottom: 1px solid var(--line); display: flex; gap: 12px; align-items: start; font-size: 14px; color: rgba(255,255,255,0.85); }
.give-info li::before { content: '✓'; color: var(--orange); font-weight: 700; }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.map-block {
  aspect-ratio: 1.4;
  border-radius: var(--radius-lg);
  background: var(--ink);
  position: relative; overflow: hidden;
  border: 1px solid var(--line-dark);
}
.map-block iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
}
/* Fallback placeholder styling (shown before iframe loads) */
.map-block::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,130,32,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,130,32,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}
.map-pin {
  position: relative; z-index: 1;
  text-align: center;
}
.map-pin-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 0 0 8px rgba(245,130,32,0.2), 0 0 0 16px rgba(245,130,32,0.1);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(245,130,32,0.2), 0 0 0 16px rgba(245,130,32,0.1); }
  50%       { box-shadow: 0 0 0 14px rgba(245,130,32,0.15), 0 0 0 28px rgba(245,130,32,0.05); }
}
.map-pin-label { font-size: 15px; color: var(--white); font-weight: 600; }
.map-pin-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.visit-info h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 24px; }
.visit-info .info-block { margin-bottom: 26px; }
.visit-info h4 { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.visit-info p { font-size: 17px; color: rgba(255,255,255,0.85); }

/* ─── FORMS ─── */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.section-light .form-field label { color: var(--muted); }
.form-field input,
.form-field textarea,
.form-field select {
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--white);
  font-family: inherit; font-size: 15px;
  transition: all .2s;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(245,130,32,0.06);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
.section-light .form-field input,
.section-light .form-field textarea,
.section-light .form-field select {
  background: var(--white);
  border-color: var(--line-dark);
  color: var(--ink);
}

/* ─── MODALS ─── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.modal {
  background: var(--ink);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 52px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.8);
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  transition: all .2s;
}
.modal-close:hover { background: var(--orange); border-color: var(--orange); }
.modal .section-eyebrow { margin-bottom: 10px; }
.modal h2 { font-size: clamp(26px, 4vw, 34px); margin: 0 0 10px; }
.modal > p { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 30px; line-height: 1.6; }

/* Modal form fields */
.modal .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.modal .form-field { margin-bottom: 14px; }
.modal .form-field:last-of-type { margin-bottom: 0; }
.modal .form-field label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  margin-bottom: 7px;
}
.modal .form-field input,
.modal .form-field textarea,
.modal .form-field select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit; font-size: 15px;
  transition: all .2s;
}
.modal .form-field input:focus,
.modal .form-field textarea:focus,
.modal .form-field select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(245,130,32,0.07);
}
.modal .form-field textarea { min-height: 90px; resize: vertical; }
.modal .form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}
.modal [type="submit"] { margin-top: 8px; width: 100%; }

/* Checkbox group (volunteer form) */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: all .2s;
}
.checkbox-label:hover { border-color: var(--orange); background: rgba(245,130,32,0.07); }
.checkbox-label input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--orange);
  flex-shrink: 0;
  cursor: pointer;
}

/* Form feedback */
.form-success {
  text-align: center;
  padding: 48px 20px;
}
.form-success svg { margin: 0 auto 20px; display: block; }
.form-success h3 { font-size: 28px; margin-bottom: 12px; }
.form-success p { color: rgba(255,255,255,0.65); font-size: 16px; }
.form-error {
  color: #ff7070;
  font-size: 14px;
  margin-top: 14px;
  text-align: center;
}

/* ─── THANKS PAGE ─── */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 30%, rgba(245,130,32,0.15), transparent 55%), var(--black);
}
.thanks-check {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
  box-shadow: 0 20px 50px -10px rgba(245,130,32,0.55);
}
.thanks-content { position: relative; z-index: 2; max-width: 560px; }
.thanks-content h1 { font-size: clamp(48px, 8vw, 96px); margin-bottom: 20px; }
.thanks-content p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; line-height: 1.6; }

/* ─── 404 PAGE ─── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  background: radial-gradient(ellipse at 60% 30%, rgba(245,130,32,0.12), transparent 55%), var(--black);
}
.error-page .error-code {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(100px, 20vw, 200px);
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  margin-bottom: -40px;
}
.error-content { position: relative; z-index: 2; max-width: 500px; }
.error-content h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 18px; }
.error-content p { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 36px; }

/* ─── TOAST NOTIFICATION ─── */
#oikia-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--green);
  border: none;
  color: var(--white);
  padding: 16px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  max-width: 440px;
  width: calc(100% - 48px);
  box-shadow: 0 20px 60px -10px rgba(46,168,79,0.5);
  z-index: 500;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
#oikia-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
#oikia-toast span { flex: 1; }
.toast-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color .2s;
  border-radius: 4px;
}
.toast-close:hover { color: var(--white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .pillars-grid, .steps-grid  { grid-template-columns: repeat(2, 1fr); }
  .events-grid, .beliefs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .nav-links    { display: none !important; }
  .nav-cta      { display: none !important; }
  .hamburger-btn{ display: flex; }

  section { padding: 70px 0; }

  .intro-grid,
  .service-grid,
  .give-grid,
  .visit-grid,
  .story-grid,
  .vm-grid,
  .recurring-spotlight { grid-template-columns: 1fr; gap: 40px; }

  .pillars-grid,
  .steps-grid,
  .events-grid,
  .beliefs-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .pastor-card { grid-template-columns: 1fr; padding: 40px 30px; text-align: center; }
  .pastor-photo { margin: 0 auto; max-width: 200px; }

  .event-row { grid-template-columns: 80px 1fr; }
  .event-row .btn { grid-column: 1 / -1; }

  .contact-form { grid-template-columns: 1fr; }

  .hero-meta { flex-direction: column; align-items: start; gap: 16px; }
  .scroll-cue { display: none; }

  .recurring-spotlight { text-align: center; }
  .spotlight-time { text-align: center; }

  .modal { padding: 36px 24px; }
  .modal .form-row { grid-template-columns: 1fr; }

  .give-handle { font-size: 14px; flex-wrap: wrap; }

  .map-block { aspect-ratio: 1; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(48px, 14vw, 72px); }
  .page-hero h1 { font-size: clamp(44px, 13vw, 72px); }
  .section-title { font-size: clamp(30px, 8vw, 44px); }
  .connect h2 { font-size: clamp(32px, 9vw, 48px); }
  .give-card { padding: 36px 28px; }
  .recurring-spotlight { padding: 40px 30px; }
  .vm-card { padding: 36px 28px; }
}
