/* ============================================================
   REFORGE CREATIVE — Global Stylesheet
   Design System: Luxury · Sacred · Humanistic
   ============================================================ */


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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #2C2C2C;
  background-color: #FAF7F2;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #2C2C2C;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }

p { font-size: 1rem; line-height: 1.85; margin-bottom: 1.2rem; color: #3A3530; }

a { color: #B8860B; text-decoration: none; transition: color 0.3s; }
a:hover { color: #8B6508; }

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

strong { font-weight: 700; }
em { font-style: italic; }

/* ---- COLOR VARIABLES ---- */
:root {
  --cream: #F5F0E8;
  --light: #FAF7F2;
  --gold: #B8860B;
  --gold-light: #D4A017;
  --charcoal: #2C2C2C;
  --brown: #6B5B45;
  --dark: #1A1A1A;
  --muted: #7A7068;
  --border: #E0D8C8;
}

/* ---- NAVIGATION ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  transition: all 0.4s ease;
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5F0E8;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-logo:hover { color: #B8860B; }
.logo-light { color: #B8860B; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 232, 0.85);
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s;
  white-space: nowrap;
  text-decoration: none;
}

.nav-links > li > a:hover,
.nav-links > li > a.active { color: #B8860B; }

.nav-cta {
  border: 1px solid #B8860B !important;
  padding: 0.5rem 1rem !important;
  color: #B8860B !important;
  border-radius: 2px;
}

.nav-cta:hover {
  background: #B8860B;
  color: #FAF7F2 !important;
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(26, 26, 26, 0.98);
  border-top: 2px solid #B8860B;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.8);
  padding: 0.55rem 1.2rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.dropdown li a:hover {
  color: #B8860B;
  padding-left: 1.6rem;
  background: rgba(184, 134, 11, 0.08);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F5F0E8;
  transition: all 0.3s;
}

/* ---- UTILITY CLASSES ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 4rem 0;
}

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

.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--light); }
.section-dark p { color: rgba(250, 247, 242, 0.8); }

.section-cream { background: var(--cream); }
.section-light { background: var(--light); }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }

.gold-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.gold-line-left {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.page-hero {
  padding: 10rem 0 6rem;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  opacity: 0.25;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { color: #FAF7F2; }
.page-hero .eyebrow { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 2px;
}

.btn-gold {
  background: var(--gold);
  color: #FAF7F2;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #8B6508;
  border-color: #8B6508;
  color: #FAF7F2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
}

.btn-outline {
  background: transparent;
  color: #FAF7F2;
  border-color: #FAF7F2;
}

.btn-outline:hover {
  background: #FAF7F2;
  color: var(--charcoal);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #FAF7F2;
}

.btn-dark {
  background: var(--charcoal);
  color: #FAF7F2;
  border-color: var(--charcoal);
}

.btn-dark:hover {
  background: #1A1A1A;
  color: var(--gold);
}

/* ---- CARDS ---- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 44, 44, 0.1);
  border-color: var(--gold);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 1.5rem;
}

/* ---- GRID LAYOUTS ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

/* ---- HERO (HOME) ---- */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-vid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  z-index: 1;
}

.hero-vid-active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.4) 50%, rgba(26,26,26,0.75) 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-content h1 {
  color: #FAF7F2;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-content .hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(245, 240, 232, 0.9);
  font-style: italic;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- CONTACT FORM ---- */
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2.5rem;
  max-width: 600px;
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contact-form p { margin-bottom: 1.5rem; font-size: 0.9rem; color: var(--muted); }

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--light);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color 0.3s;
  outline: none;
  border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: #fff;
}

.form-group textarea { resize: vertical; min-height: 120px; }



/* ---- STARS ---- */
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.75rem; }

/* ---- REVIEW CARD ---- */
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.review-quote { font-style: italic; color: #3A3530; margin-bottom: 1rem; font-size: 0.95rem; }
.review-name { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

/* ---- IMAGE GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 0.5rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item.tall img { height: 420px; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { height: 280px; }

/* ---- PROCESS STEPS ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.process-step {
  background: var(--light);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.88rem; }

/* ---- WHY SECTION ---- */
.why-col {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.why-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1.2rem;
}

/* ---- ARTIST CARDS ---- */
.artist-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.artist-card-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.artist-card:hover .artist-card-img { transform: scale(1.05); }

.artist-card-info {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
}

.artist-card-info h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.artist-card-info .genre { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.artist-card-info p { font-size: 0.88rem; margin-bottom: 1rem; }

/* ---- BLOG PREVIEW CARDS ---- */
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,44,44,0.1); }

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body { padding: 1.5rem; }
.blog-card-date { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; display: block; }
.blog-card-title { font-size: 1.2rem; margin-bottom: 0.75rem; font-family: 'Cormorant Garamond', serif; font-weight: 400; }
.blog-card-title a { color: var(--charcoal); }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.2rem; }

/* ---- INNER PAGE CONTENT ---- */
.inner-content { max-width: 800px; margin: 0 auto; }
.inner-content h2 { margin: 2.5rem 0 1rem; }
.inner-content h3 { margin: 2rem 0 0.75rem; color: var(--brown); }
.inner-content ul, .inner-content ol { margin-left: 1.5rem; margin-bottom: 1.2rem; }
.inner-content li { margin-bottom: 0.4rem; font-size: 0.95rem; }
.inner-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--cream);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--brown);
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { font-size: 0.92rem; color: var(--muted); padding-top: 0.75rem; display: none; }
.faq-answer.open { display: block; }

/* ---- NEWS ITEMS ---- */
.news-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.news-item img { width: 200px; height: 140px; object-fit: cover; }
.news-date { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.5rem; }
.news-title { font-size: 1.3rem; font-family: 'Cormorant Garamond', serif; font-weight: 400; margin-bottom: 0.5rem; }
.news-excerpt { font-size: 0.9rem; color: var(--muted); }

/* ---- EVENT CARD ---- */
.event-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  background: #fff;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.event-card:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }

.event-date-box {
  text-align: center;
  background: var(--gold);
  color: #fff;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-day { font-size: 2rem; font-weight: 700; line-height: 1; }
.event-month { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; }
.event-title { font-size: 1.2rem; font-family: 'Cormorant Garamond', serif; margin-bottom: 0.3rem; }
.event-location { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }

/* ---- PATRON TIERS ---- */
.patron-tier {
  border: 1px solid var(--border);
  padding: 2.5rem;
  text-align: center;
  background: #fff;
  position: relative;
  transition: all 0.3s;
}

.patron-tier.featured {
  border-color: var(--gold);
  background: var(--dark);
  color: var(--light);
}

.patron-tier.featured h3,
.patron-tier.featured h2,
.patron-tier.featured p { color: var(--light); }

.patron-tier:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
}

.tier-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin: 1rem 0;
}

.tier-features {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
}

.tier-features li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.patron-tier.featured .tier-features li { border-color: rgba(245,240,232,0.15); color: rgba(250,247,242,0.85); }

.tier-features li::before { content: '✦'; color: var(--gold); flex-shrink: 0; font-size: 0.6rem; margin-top: 4px; }

/* ---- VALUES GRID ---- */
.value-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
}

.value-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

/* ---- SCRIPTURE SECTION ---- */
.verse-block {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--brown);
}

.verse-ref {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-top: 0.75rem;
}

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--dark);
  padding: 3rem 0;
}

.stats-strip .stat {
  text-align: center;
  border-right: 1px solid rgba(184, 134, 11, 0.3);
}

.stats-strip .stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,0.6); margin-top: 0.5rem; }

/* ---- ARTICLE PAGE ---- */
.article-hero {
  height: 450px;
  position: relative;
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.article-header {
  background: var(--dark);
  padding: 3rem 0;
  text-align: center;
}

.article-header h1 { color: var(--light); font-size: clamp(1.8rem, 4vw, 3rem); }
.article-meta { font-size: 0.75rem; color: rgba(245,240,232,0.55); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.75rem; }

.article-body {
  padding: 4rem 0;
}

.article-body .inner-content p { font-size: 1rem; line-height: 1.9; }
.article-body .inner-content h2 { margin-top: 3rem; font-size: 1.8rem; }
.article-body .inner-content h3 { margin-top: 2rem; font-size: 1.3rem; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- SIDEBAR ---- */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.sidebar-widget {
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: #fff;
  margin-bottom: 2rem;
}

.sidebar-widget h4 { margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.sidebar-widget ul { list-style: none; }
.sidebar-widget li { padding: 0.4rem 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.sidebar-widget li:last-child { border-bottom: none; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  color: rgba(245,240,232,0.7);
  padding: 5rem 0 0;
}

.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(184,134,11,0.25);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.footer-logo span { color: var(--gold); }
.footer-tagline { font-style: italic; font-size: 0.9rem; color: rgba(245,240,232,0.5); margin-bottom: 1.5rem; }

.footer-contact-info p { margin-bottom: 0.5rem; font-size: 0.85rem; }
.footer-contact-info i { color: var(--gold); width: 16px; margin-right: 0.5rem; }
.footer-contact-info a { color: rgba(245,240,232,0.7); }
.footer-contact-info a:hover { color: var(--gold); }

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(245,240,232,0.65); font-size: 0.88rem; transition: color 0.3s; text-decoration: none; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a { color: rgba(245,240,232,0.35); }
.footer-bottom a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: rgba(245,240,232,0.5); font-size: 1rem; transition: color 0.3s; text-decoration: none; }
.footer-social a:hover { color: var(--gold); }

/* ---- VIDEO SECTION ---- */
.video-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.video-item video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.video-item figcaption {
  padding: 0.75rem;
  font-size: 0.78rem;
  text-align: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--cream);
}

/* ---- DATA VIZ / CHART PLACEHOLDER ---- */
.chart-container {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 2rem;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; }

/* ---- CONTENT WITH IMAGE ---- */
.content-with-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-with-img.reverse { direction: rtl; }
.content-with-img.reverse > * { direction: ltr; }

.content-with-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.content-with-img img.img-natural {
  height: auto !important;
  object-fit: contain !important;
}

/* Scripture image — zoom in to crop out vignette borders */
.scripture-img-wrap {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
}
.scripture-img-wrap img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ---- HOMEPAGE CONTACT ROW ---- */
.home-top-contact {
  background: var(--dark);
  padding: 7rem 0 4rem;
}

.home-top-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.home-top-contact-text h2 { color: var(--light); font-size: clamp(1.6rem, 3vw, 2.5rem); }
.home-top-contact-text p { color: rgba(245,240,232,0.75); }
.home-top-contact-text .eyebrow { color: var(--gold); }

/* ---- ART SUB GRID ---- */
.art-form-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}

.art-form-item {
  background: var(--light);
  padding: 2.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.art-form-item:hover {
  background: var(--dark);
  color: var(--light);
}

.art-form-item:hover h3 { color: var(--gold); }
.art-form-item:hover .art-icon { color: var(--gold); }

.art-icon { font-size: 2rem; color: var(--brown); margin-bottom: 0.75rem; transition: color 0.3s; }
.art-form-item h3 { font-size: 1rem; transition: color 0.3s; }

/* ---- MAP PLACEHOLDER ---- */
.map-placeholder {
  background: var(--cream);
  border: 1px solid var(--border);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---- NOTIFICATION ---- */
.form-success {
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid var(--gold);
  color: var(--brown);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  border-radius: 3px;
  display: none;
}

.form-error {
  background: rgba(180, 40, 40, 0.08);
  border: 1px solid #c0392b;
  color: #922b21;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  border-radius: 3px;
  display: none;
}

.form-error a {
  color: #922b21;
  font-weight: 600;
  text-decoration: underline;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .grid-4, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .art-form-grid { grid-template-columns: repeat(4, 1fr); }
  .layout-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .content-with-img { grid-template-columns: 1fr; }
  .content-with-img.reverse { direction: ltr; }
  .content-with-img img { height: 320px; }
  .content-with-img img.img-natural { height: auto !important; }
  .scripture-img-wrap { height: 320px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .home-top-contact-inner { grid-template-columns: 1fr; }
  .video-row { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; }
  .news-item img { width: 100%; height: 200px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: rgba(26,26,26,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links > li { width: 100%; }
  .nav-links > li > a { padding: 0.9rem 0.5rem; font-size: 0.85rem; border-bottom: 1px solid rgba(184,134,11,0.15); }

  .dropdown {
    position: static;
    display: none !important;
    background: rgba(184,134,11,0.08);
    border-top: none;
    border-left: 2px solid var(--gold);
    margin-left: 1rem;
  }

  .has-dropdown.open-mobile .dropdown { display: block !important; }

  .art-form-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall img, .gallery-item img, .gallery-item.wide img { height: 220px; }
  .gallery-item.wide { grid-column: span 1; }
  .footer-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .patron-tier { margin-bottom: 2rem; }
  .stats-strip .container.grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .process-steps, .grid-4, .stats-strip .container.grid-4 { grid-template-columns: 1fr; }
  .art-form-grid { grid-template-columns: repeat(2, 1fr); }
  .patron-tier { margin-bottom: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* Ensure nav is always dark when scrolled */
.site-nav { background: transparent; }
.site-nav:not(.scrolled) .nav-links > li > a { text-shadow: 0 1px 4px rgba(0,0,0,0.4); }

/* Page hero fallback bg */
.page-hero { min-height: 300px; }

/* Fix inner link colours inside dark sections */
.section-dark a:not(.btn) { color: var(--gold-light); }
.section-dark a:not(.btn):hover { color: #FAF7F2; }

/* ============================================================
   LEGAL PAGES — Privacy Policy & Terms of Use
   ============================================================ */

.legal-doc {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.legal-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  background: #f5f0e8;
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 2rem;
}

.legal-meta p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 1.5rem 0 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.legal-section p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: #444;
  line-height: 1.9;
}

.legal-section ul li {
  margin-bottom: 0.35rem;
}

.legal-contact-block {
  background: #f5f0e8;
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin-top: 1rem;
}

.legal-contact-block p {
  margin: 0.2rem 0;
  color: var(--dark);
}

.legal-contact-block a {
  color: var(--gold);
  text-decoration: underline;
}

.legal-contact-block a:hover {
  color: var(--dark);
}

@media (max-width: 768px) {
  .legal-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal-section h2 {
    font-size: 1.15rem;
  }
}

