/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --forest: #0f2318;
  --deep: #1e4030;
  --green: #3d7a5a;
  --gold: #d4a843;
  --gold-lt: #e8c876;
  --cream: #f9f3e8;
  --cream-dk: #f0e8d5;
  --sage: #a8b89a;
  --white: #ffffff;
  --ink: #1a1a1a;
  --muted: #5a6b52;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  --section-pad: 96px;
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  position: relative;
  /* ← this is key for Samsung */
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ── Utility ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  :root {
    --section-pad: 60px;
  }
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 20px;
}

.section-heading em {
  font-style: italic;
  color: var(--green);
}

.section-heading--light {
  color: var(--cream);
}

.section-heading--light em {
  color: var(--gold);
}

.lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
}

.lead--light {
  color: var(--sage);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all .22s ease;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest);
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(249, 243, 232, .28);
}

.btn-outline:hover {
  border-color: rgba(249, 243, 232, .6);
  background: rgba(249, 243, 232, .07);
}

.btn-outline-dark {
  background: transparent;
  color: var(--forest);
  border: 1px solid rgba(15, 35, 24, .25);
}

.btn-outline-dark:hover {
  border-color: var(--forest);
  background: rgba(15, 35, 24, .04);
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;


  background:
    linear-gradient(to bottom,
      rgba(7, 24, 17, 0.92),
      rgba(7, 24, 17, 0.72));

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(212, 168, 67, 0.08);

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* Scrolled State */

#nav.scrolled {
  background:
    rgba(10, 30, 21, 0.94);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.18);

  border-bottom:
    1px solid rgba(212, 168, 67, 0.12);
}

/* Inner Layout */

.nav-inner {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: min(1320px, 92%);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--cream);
}

.nav-logo-sub {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;

}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--forest);
  background: var(--gold);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.nav-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all .3s;
}

/* Hide icons and drawer CTA on desktop */
.nav-links a svg {
  display: none;
}

.nav-links .nav-drawer-cta {
  display: none;
}

/* ─────────────────────────────
   NAV BRANDING
───────────────────────────── */

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

/* LOGO IMAGE */

.nav-logo-img {
  width: 185px;
  height: auto;

  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.22)) drop-shadow(0 0 18px rgba(212, 168, 67, 0.18));
}


/* NAV HEIGHT */

.nav-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
}

/*NAV MOBILE*/

@media (max-width: 900px) {

  .nav-links a svg {
    display: block;
  }

  .nav-drawer-cta {
    display: block;
  }

  /* Fix drawer width — enforce true 25% */
  .nav-links {
    width: min(25%, 220px);
  }

  .nav-drawer-cta {
    width: min(25%, 220px);
    bottom: 28px;
    /* padding: 0 20px; */
  }

  .nav-inner {
    min-height: 82px;
  }

  .nav-logo-img {
    width: 80px;
  }

  /* CTA list item — push to bottom of drawer */
  .nav-drawer-cta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(168, 184, 154, 0.12);
    width: 100%;
    border-bottom: none !important;
  }

  .nav-drawer-cta-item a {
    border-bottom: none !important;
    justify-content: center;
    background: var(--gold);
    color: var(--forest);
    border-radius: var(--radius);
    font-size: 12px;
    padding: 10px 16px;
    width: 100%;
  }

  .nav-drawer-cta-item a:hover {
    background: var(--gold-lt);
    color: var(--forest);
    gap: 12px;
  }

  .nav-drawer-cta-item a svg {
    display: none;
  }

  /* DRAWER PANEL */
  .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    /* padding-top: 110px;
    padding-bottom: 40px; */
    overflow-x: hidden;

    position: fixed;
    top: 0;
    right: 0;

    width: 25%;
    min-width: 200px;
    max-width: 100vw;
    /* ← add this */
    height: 100dvh;

    background: rgba(7, 24, 17, 0.98);
    backdrop-filter: blur(16px);
    border-left: 1px solid rgba(212, 168, 67, 0.2);

    padding: 100px 28px 40px;
    margin: 0;
    list-style: none;

    z-index: 99998;

    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(245, 241, 232, 0.7);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(168, 184, 154, 0.08);
    transition: color 0.2s ease, gap 0.2s ease;
    width: 100%;
  }

  .nav-links a:hover {
    color: var(--gold);
    gap: 16px;
  }

  .nav-links a svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    opacity: 0.6;
  }

  .nav-links a:hover svg {
    opacity: 1;
  }

  /* DRAWER CTA — lives inside the ul as the last li */
  .nav-drawer-cta {
    margin-top: auto;
    padding-top: 28px;
    width: 100%;
    border-bottom: none !important;
  }

  .nav-drawer-cta a.nav-cta {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 12px;
    padding: 10px 16px;
    background: var(--gold);
    color: var(--forest) !important;
    border-radius: var(--radius);
    border-bottom: none !important;
    font-weight: 500;
  }

  .nav-drawer-cta a.nav-cta:hover {
    background: var(--gold-lt);
    gap: 12px;
  }

  /* Hide desktop CTA */
  .nav-inner>.nav-cta {
    display: none;
  }

  /* HAMBURGER */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 100000;
  }

  .nav-hamburger span {
    width: 26px;
    height: 2px;
    background: #F5F1E8;
    transition: 0.3s ease;
  }

  /* HAMBURGER → X */
  .nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links .nav-drawer-cta {
    display: flex;
  }
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--forest);
  overflow: hidden;
}

.hero-content,
.hero-image,
.hero-overlay {
  z-index: 1;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(rgba(5, 16, 10, .58),
      rgba(5, 16, 10, .58)),
    url("../images/hero/sunrise.jpg");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  transform: scale(1);
  animation: heroZoom 14s ease-in-out infinite alternate;

  filter:
    brightness(.82) saturate(.95) contrast(1.05);
}

/* subtle cinematic motion */
@keyframes heroZoom {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.06) translate3d(-12px, -6px, 0);
  }
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at center,
      rgba(255, 255, 255, .06),
      transparent 60%);

  mix-blend-mode: screen;

  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: .35;
  }

  50% {
    opacity: .6;
  }
}

/* Overlay: top dark, slightly lighter at bottom center */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(90deg,
      rgba(4, 12, 8, .82) 0%,
      rgba(4, 12, 8, .62) 38%,
      rgba(4, 12, 8, .30) 70%,
      rgba(4, 12, 8, .18) 100%);
}

/* Decorative thin horizontal rule */
.hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, .4), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 28px;
  max-width: 720px;
  opacity: 0;
  animation: fadeUp .9s .38s forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .9s .52s forwards;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .66s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(168, 184, 154, .5);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(212, 168, 67, .5), transparent);
  animation: scrollPulse 2s 1.5s infinite;
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: flex;
  opacity: 0;
  animation: fadeIn 1s .9s forwards;
}

.hero-stat {
  padding: 24px 32px;
  border-left: 1px solid rgba(168, 184, 154, .12);
  background: rgba(15, 35, 24, .6);
  backdrop-filter: blur(8px);
  text-align: center;
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ── INTRO STRIP ── */
#intro {
  background: var(--deep);
  padding: 48px 0;
  border-bottom: 1px solid rgba(168, 184, 154, .1);
}

.intro-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.intro-line {
  width: 1px;
  height: 64px;
  background: rgba(212, 168, 67, .3);
  flex-shrink: 0;
}

.intro-text {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
  line-height: 1.6;
  flex: 1;
}

.intro-text strong {
  font-style: normal;
  color: var(--cream);
}

.intro-scripture {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(168, 184, 154, .5);
  flex-shrink: 0;
}

/* ── OUR STORY ── */
#story {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-media {
  position: relative;
}

.story-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream-dk);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px dashed rgba(61, 122, 90, .2);
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  /* optional */
}

.img-placeholder-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(90, 107, 82, .4);
}

.img-placeholder-icon {
  width: 40px;
  height: 40px;
  opacity: .25;
}

.story-img-placeholder svg {
  opacity: .2;
}

/* Year badge */
.story-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--cream);
}

.story-badge-year {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.story-badge-label {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 3px;
}

.story-content {
  padding-top: 12px;
}

.story-body {
  font-size: 16px;
  color: #4a5c42;
  line-height: 1.85;
  margin-bottom: 24px;
}

/* Timeline */
.timeline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
  flex-shrink: 0;
}

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  outline: 1px solid var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.tl-line {
  width: 1px;
  flex: 1;
  background: rgba(212, 168, 67, .25);
  margin-top: 6px;
}

.tl-year {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
  margin-top: 3px;
  min-width: 44px;
  flex-shrink: 0;
}

.tl-text {
  font-size: 14px;
  color: #5a6b52;
  line-height: 1.65;
  padding-top: 2px;
}

/* ── COMMUNITY PILLARS ── */
#pillars {
  background: var(--forest);
  padding: var(--section-pad) 0;
}

.pillars-header {
  text-align: center;
  margin-bottom: 64px;
}

.pillars-header .lead--light {
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(168, 184, 154, .1);
  border: 1px solid rgba(168, 184, 154, .1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pillar {
  background: var(--forest);
  padding: 48px 40px;
  position: relative;
  transition: background .25s;
}

.pillar:hover {
  background: var(--deep);
}

.pillar-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  color: rgba(212, 168, 67, .12);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 28px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.25;
}

.pillar-text {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.75;
}

/* ─────────────────────────────
   SACRED SCROLL
───────────────────────────── */

.sacred-scroll {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  perspective: 1200px;
}

/* Wooden rods */

.scroll-rod {
  height: 26px;
  border-radius: 999px;
  position: relative;
  z-index: 5;

  background:
    linear-gradient(to bottom,
      #6d4b2f,
      #4e341f,
      #7a5534,
      #3e2919);

  box-shadow:
    0 6px 14px rgba(0, 0, 0, .28),
    inset 0 2px 3px rgba(255, 255, 255, .18),
    inset 0 -2px 3px rgba(0, 0, 0, .3);
}

.scroll-rod.top {
  margin-bottom: -6px;
}

.scroll-rod.bottom {
  margin-top: -6px;
}

/* Main parchment */

.scroll-paper {
  position: relative;

  max-height: 120px;
  overflow: hidden;

  background:
    linear-gradient(to bottom,
      rgba(255, 248, 229, .98),
      rgba(240, 223, 186, .98));

  border-left: 1px solid rgba(120, 90, 40, .25);
  border-right: 1px solid rgba(120, 90, 40, .25);

  box-shadow:
    inset 0 0 80px rgba(90, 60, 20, .12),
    inset 0 0 12px rgba(255, 255, 255, .5),
    0 12px 30px rgba(0, 0, 0, .15);

  transition:
    max-height 3.8s cubic-bezier(.19, 1, .22, 1),
    box-shadow 2s ease;

  transform-origin: top center;
  transform: scaleY(.92);
}

/* Ancient parchment texture */

.scroll-paper::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top left,
      rgba(120, 80, 20, .08),
      transparent 40%),
    radial-gradient(circle at bottom right,
      rgba(120, 80, 20, .08),
      transparent 40%);

  opacity: .9;
  pointer-events: none;
}

/* Opened state */

.sacred-scroll.open .scroll-paper {
  max-height: 1600px;
  transform: scaleY(1);
}

/* Inner content */

.scroll-inner {
  padding:
    70px 52px 80px;

  opacity: 0;
  transform: translateY(40px);

  transition:
    opacity 2.8s ease,
    transform 2.8s cubic-bezier(.19, 1, .22, 1);

  transition-delay: .8s;
}

.sacred-scroll.open .scroll-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Title */

.scroll-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: #3f2b18;

  margin-bottom: 18px;
  letter-spacing: .04em;
}

/* Date */

.scroll-date {
  text-align: center;
  margin-bottom: 42px;

  font-family: var(--serif);
  font-size: 18px;
  color: #6b4b2a;
}

/* Body text */

.scroll-text {
  display: flex;
  flex-direction: column;
  gap: 42px;

  text-align: center;

  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.9;

  color: #4e3922;
}

.scroll-text p {
  margin: 0;
}

/* Sacred atmospheric lighting */

.sacred-scroll::after {
  content: "";

  position: absolute;
  inset: -40px;

  background:
    radial-gradient(circle,
      rgba(212, 168, 67, .08),
      transparent 70%);

  opacity: 0;
  transition: opacity 1.4s ease;

  pointer-events: none;
}

.sacred-scroll.open::after {
  opacity: 1;
}

/* Mobile */

@media (max-width: 768px) {

  .sacred-scroll.open .scroll-paper {
    max-height: 1800px;
  }

  .scroll-inner {
    padding: 52px 28px 70px;
  }

  .scroll-title {
    font-size: 28px;
  }

  .scroll-text {
    font-size: 18px;
    line-height: 1.8;
  }
}

/* ── FAMILIES ── */
#families {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.families-header {
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.families-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .families-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .families-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.family-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.family-photo {
  aspect-ratio: 3/4;
  background: var(--cream-dk);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 1px dashed rgba(61, 122, 90, .15);
}

.family-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.8s ease;
}

.family-photo:hover .family-photo-img {
  transform: scale(1.15);
}

.family-initials {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: rgba(61, 122, 90, .3);
}

.family-photo-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(61, 122, 90, .25);
}

.family-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 4px;
  line-height: 1.3;
}

.family-role {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.family-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(61, 122, 90, .08);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── FARM & PRODUCE ── */
#farm {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.farm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.farm-content {
  order: 2;
}

.farm-media {
  order: 1;
}

.farm-image {
  height: 520px;
  border-radius: 12px;
  overflow: hidden;
  object-fit: cover;
  background: var(--cream-dk);
}

.farm-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.6s ease;
}

.farm-image:hover .farm-image-img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .farm-image {
    height: 320px;
  }
}

.produce-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(61, 122, 90, .15);
}

.produce-item {
  background: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background .2s;
}

.produce-item:hover {
  background: rgba(249, 243, 232, .7);
}

.produce-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(61, 122, 90, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.produce-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.produce-info {
  flex: 1;
}

.produce-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 2px;
}

.produce-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.produce-cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.produce-cta svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
}

.farm-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(212, 168, 67, .08);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.farm-note strong {
  color: var(--forest);
}

/* ── MINISTRIES ── */
#ministries {
  background: var(--deep);
  padding: var(--section-pad) 0;
}

.ministries-header {
  margin-bottom: 56px;
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ministry-card {
  background: rgba(15, 35, 24, .6);
  border: 1px solid rgba(168, 184, 154, .12);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 28px;
  transition: border-color .25s, background .25s;
}

.ministry-card:hover {
  border-color: rgba(212, 168, 67, .3);
  background: rgba(15, 35, 24, .8);
}

.ministry-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ministry-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ministry-body {}

.ministry-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 67, .1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.ministry-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.25;
}

.ministry-text {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.75;
}

/* ── VISIT ── */
#visit {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.visit-header {
  text-align: center;
  margin-bottom: 56px;
}

.visit-header .lead {
  margin: 0 auto;
  text-align: center;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.visit-card {
  border: 1px solid rgba(61, 122, 90, .15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}

.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 35, 24, .1);
}

.visit-card-top {
  background: var(--forest);
  padding: 36px 32px 28px;
  position: relative;
  overflow: hidden;
}

.visit-card-top::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(212, 168, 67, .06);
}

.visit-card-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: rgba(212, 168, 67, .15);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.visit-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.visit-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visit-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}

.visit-card-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.visit-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.visit-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.visit-detail-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: #5a6b52;
  line-height: 1.5;
}

.visit-detail-item::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  transform: translateY(-3px);
}

.visit-card-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  background: var(--gold);
  border: none;
  padding: 12px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
  align-self: flex-start;
}

.visit-card-btn:hover {
  background: var(--gold-lt);
}

/* ── JOIN ── */
#join {
  background: var(--forest);
  padding: var(--section-pad) 0;
}

.join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.join-steps {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}

.join-step {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}

.join-step:last-child {
  padding-bottom: 0;
}

.join-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.join-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.join-step-connector {
  width: 1px;
  flex: 1;
  background: rgba(212, 168, 67, .15);
  margin-top: 8px;
}

.join-step-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
  padding-top: 6px;
}

.join-step-text {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.75;
}

.join-note {
  margin-top: 20px;
  padding: 20px 24px;
  background: rgba(212, 168, 67, .08);
  border: 1px solid rgba(212, 168, 67, .2);
  border-radius: var(--radius-lg);
}

.join-note-text {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.7;
}

.join-note-text strong {
  color: var(--gold);
}

.join-media {
  position: relative;
}

.join-image-wrap {
  width: 100%;
  aspect-ratio: 1;

  border-radius: var(--radius-lg);
  overflow: hidden;

  background: rgba(30, 64, 48, .6);

  border: 1px solid rgba(168, 184, 154, .08);

  position: relative;
}

/* Image */

.join-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  transition:
    transform 1.2s ease,
    filter 1s ease;
}

/* Premium hover effect */

.join-image-wrap:hover .join-image {
  transform: scale(1.04);
}

/* Subtle cinematic overlay */

.join-image-wrap::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .18),
      transparent 35%);

  pointer-events: none;
}

/* ── GALLERY STRIP ── */
#gallery {
  background: var(--forest);
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(168, 184, 154, .08);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.gallery-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.gallery-link:hover {
  gap: 10px;
}

.gallery-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
}

.gallery-cell {
  position: relative;
  overflow: hidden;

  border-radius: var(--radius-lg);

  background: var(--deep);

  cursor: pointer;

  transition:
    transform .5s ease,
    box-shadow .5s ease;
}

/* Hover elevation */

.gallery-cell:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, .25);
}

/* Images */

.gallery-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  transition:
    transform 1.4s ease,
    filter 1s ease;
}

/* Smooth cinematic zoom */

.gallery-cell:hover .gallery-image {
  transform: scale(1.06);
}

/* Overlay */

.gallery-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;

  padding: 24px;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .55),
      rgba(0, 0, 0, .15),
      transparent 55%);
}

/* Category label */

.gallery-cell-cat {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;

  color: var(--cream);

  position: relative;
  z-index: 2;
}

.gallery-cell:first-child {
  grid-row: span 2;
}


/* ── SUPPORT ── */
#support {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.support-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.support-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support-card {
  background: var(--white);
  border: 1px solid rgba(61, 122, 90, .12);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color .2s, transform .2s;
}

.support-card:hover {
  border-color: rgba(212, 168, 67, .4);
  transform: translateX(4px);
}

.support-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 168, 67, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-card-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 6px;
}

.support-card-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CONTACT ── */
#contact {
  background: var(--forest);
  padding: var(--section-pad) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(168, 184, 154, .5);
  margin-bottom: 4px;
}

.contact-item-val {
  font-size: 15px;
  color: var(--cream);
  line-height: 1.5;
}

.contact-item-val a {
  color: var(--gold);
  text-decoration: none;
}

.contact-item-val a:hover {
  text-decoration: underline;
}

.contact-form {
  background: rgba(30, 64, 48, .4);
  border: 1px solid rgba(168, 184, 154, .1);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(168, 184, 154, .6);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(15, 35, 24, .6);
  border: 1px solid rgba(168, 184, 154, .15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream);
  transition: border-color .2s;
  outline: none;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(168, 184, 154, .3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(212, 168, 67, .4);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--forest);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--forest);
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.form-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}



/* ── FOOTER ── */
footer {
  background: #080f0a;
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {}

.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(168, 184, 154, .5);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-scripture {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(212, 168, 67, .5);
  line-height: 1.6;
  max-width: 240px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(168, 184, 154, .4);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(168, 184, 154, .55);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(168, 184, 154, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(168, 184, 154, .3);
}

.footer-credit {
  font-size: 12px;
  color: rgba(168, 184, 154, .25);
}

.footer-credit a {
  color: rgba(212, 168, 67, .4);
  text-decoration: none;
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .5;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.08);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.stagger.visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.stagger.visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: .1s;
}

.stagger.visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: .18s;
}

.stagger.visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: .26s;
}

.stagger.visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: .34s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

  .story-grid,
  .farm-layout,
  .join-inner,
  .support-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .farm-content {
    order: 1;
  }

  .farm-media {
    order: 2;
  }

  .story-badge {
    right: 0;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .ministries-grid {
    grid-template-columns: 1fr;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    display: none;
  }

  .families-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-cell:first-child {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {

  .nav-inner>.nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }


  .hero-h1 {
    font-size: 38px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .families-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-inner {
    flex-direction: column;
    gap: 28px;
  }

  .intro-line {
    width: 64px;
    height: 1px;
  }
}

/* ── WHATSAPP GDPR POPUP ── */

.wa-consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 15, 10, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.wa-consent-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wa-consent-modal {
  width: min(92%, 480px);
  background: #183126;
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.wa-consent-modal h3 {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 28px;
  margin-bottom: 16px;
}

.wa-consent-modal p {
  color: rgba(245, 240, 230, 0.78);
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 14px;
}

.wa-consent-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.wa-btn {
  flex: 1;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wa-btn-primary {
  background: var(--gold);
  color: var(--forest);
}

.wa-btn-primary:hover {
  background: var(--gold-lt);
}

.wa-btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 230, 0.12);
}

.wa-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
}