/* =========================================================
   AMOR Y GRACIA WORSHIP CENTER (A&G WC)
   Black + gold, bilingual. Type scale, spacing rhythm & motion
   carried over from the references; layout original.
   Signature: metallic gold + the tri-motto + script flourish.
   ========================================================= */

/* ---- Tokens ---- */
:root {
  /* color — near-black + warm ivory + metallic gold */
  --bg:        #0A0908;
  --bg-2:      #100E0B;      /* elevated / alt sections */
  --bg-3:      #080706;      /* footer / deepest */
  --surface:   #17130C;      /* cards */
  --surface-2: #1E1810;
  --text:      #F4ECD8;      /* warm ivory */
  --text-soft: #B6A984;      /* muted gold-beige */
  --text-mute: #8A7E63;
  --line:      #2C2413;      /* hairline */
  --line-soft: #201B10;

  --gold:       #E7C25C;     /* solid accent / links (AA on black) */
  --gold-bright:#F6DE95;
  --gold-deep:  #B78A2E;
  --gold-dim:   #9A7726;

  /* gradients */
  --grad-gold: linear-gradient(115deg, #9A7326 0%, #E7C25C 34%, #F8E9B4 52%, #D6A63A 72%, #A87C28 100%);
  --grad-gold-soft: linear-gradient(120deg, #C79A38, #F3D67A 55%, #C79A38);
  --grad-cta: linear-gradient(120deg, #D9AE44, #F6E1A0 48%, #CE9E34);

  /* type — classical serif + script + geometric sans */
  --display: "Cinzel", Georgia, "Times New Roman", serif;
  --script:  "Pinyon Script", "Segoe Script", cursive;
  --sans:    "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --fs-eyebrow: 0.74rem;
  --fs-body:    1.0625rem;
  --fs-body-lg: 1.2rem;
  --fs-h3:      clamp(1.3rem, 1rem + 1.5vw, 1.7rem);
  --fs-h2:      clamp(1.9rem, 1.1rem + 3.4vw, 3.1rem);
  --fs-display: clamp(2.5rem, 1.2rem + 6vw, 5.2rem);

  --lh-tight: 1.08;
  --lh-head:  1.16;
  --lh-body:  1.72;

  /* spacing — 8px grid, spacious (unchanged rhythm) */
  --s-1: .25rem; --s-2: .5rem;  --s-3: .75rem; --s-4: 1rem;
  --s-6: 1.5rem; --s-8: 2rem;   --s-12: 3rem;  --s-16: 4rem;
  --s-24: 6rem;  --s-section: clamp(5rem, 3rem + 9vw, 10rem);

  --container: 1200px;
  --gutter: clamp(1.25rem, 0.5rem + 4vw, 4rem);
  --radius: 6px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  /* motion (unchanged) */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 320ms;
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* subtle film grain over the whole page */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 500; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }

.skip-link {
  position: absolute; left: 50%; top: -70px; transform: translateX(-50%);
  background: var(--gold); color: #1a1200; padding: .6rem 1rem; border-radius: var(--radius);
  z-index: 1000; font-weight: 600; transition: top 160ms var(--ease);
}
.skip-link:focus { top: 8px; }

:where(a, button, input, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- Bilingual helpers ---- */
.en { display: block; color: var(--text-mute); font-size: 0.92em; margin-top: .35em; font-weight: 400; }
.en-inline { color: var(--text-mute); font-weight: 400; }

/* ---- Shared type devices ---- */
.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 var(--s-4);
}
.script {
  font-family: var(--script); font-weight: 400;
  font-size: clamp(2rem, 1rem + 3vw, 3.2rem); line-height: 1; color: var(--gold-bright);
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-h { font-size: var(--fs-h2); line-height: var(--lh-head); letter-spacing: 0.01em; }
.meta {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-deep); font-variant-numeric: tabular-nums;
}
.grad {
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
  color: transparent; font-style: normal;
}

/* =========================================================
   Announcement + Nav
   ========================================================= */
.announce {
  background: linear-gradient(90deg, #0f0c07, #171207, #0f0c07);
  color: var(--text-soft); border-bottom: 1px solid var(--line-soft);
  font-size: 0.76rem; letter-spacing: 0.05em; position: relative; z-index: 3;
}
.announce__row { display: flex; justify-content: center; gap: var(--s-6); align-items: center; padding: .55rem 0; flex-wrap: wrap; }
.announce a { color: var(--gold); border-bottom: 1px solid #e7c25c55; padding-bottom: 1px; transition: border-color var(--dur) var(--ease); }
.announce a:hover { border-color: var(--gold); }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: saturate(130%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); background: color-mix(in srgb, var(--bg) 90%, transparent); }
.nav__row { display: flex; align-items: center; gap: var(--s-8); padding: .85rem 0; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__logo { height: 42px; width: auto; display: block; filter: drop-shadow(0 0 12px #e7c25c30); }
.foot__logo { height: 96px; width: auto; display: block; }
.brand__text { display: grid; line-height: 1; }
.brand__name { font-family: var(--display); font-size: 1.35rem; font-weight: 700; letter-spacing: .06em; color: var(--text); }
.brand__sub { font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-deep); margin-top: .28rem; }
.brand--light .brand__name { color: var(--text); }

.nav__links { display: flex; gap: var(--s-6); margin-left: auto; align-items: center; }
.nav__links a {
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.03em; color: var(--text-soft);
  position: relative; padding: .3rem 0; transition: color var(--dur) var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 100%;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease-out);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__give { color: var(--gold) !important; font-weight: 600 !important; }

.nav__tools { display: flex; align-items: center; gap: var(--s-4); }
.lang { display: inline-flex; border: 1px solid #e7c25c44; border-radius: 999px; overflow: hidden; }
.lang__btn {
  background: none; border: none; color: var(--text-soft);
  font-family: var(--sans); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.08em;
  padding: .4rem .72rem; transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lang__btn.is-active { background-image: var(--grad-cta); color: #201400; }
.lang__btn:not(.is-active):hover { color: var(--gold-bright); }
.nav__menu { display: none; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --pad-y: .8rem; --pad-x: 1.5rem;
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-family: var(--sans); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.04em;
  padding: var(--pad-y) var(--pad-x); border-radius: 999px; border: 1.5px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform 180ms var(--ease-out), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--sm { --pad-y: .6rem; --pad-x: 1.15rem; font-size: 0.8rem; }
.btn:active { transform: translateY(1px); }
.btn .en-inline { color: inherit; opacity: .72; }

.btn--solid { background-image: var(--grad-cta); color: #201400; box-shadow: 0 6px 20px -8px #e7c25c66; }
.btn--solid:hover { box-shadow: 0 10px 28px -8px #e7c25c99; filter: brightness(1.06); }

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

.btn--ghost { background: transparent; color: var(--text); border-color: #e7c25c55; }
.btn--ghost:hover { background: #e7c25c14; border-color: var(--gold); color: var(--gold-bright); }

.btn--text {
  padding-inline: 0; border-radius: 0; background: none; color: var(--gold);
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
}
.btn--text:hover { border-bottom-color: var(--gold); }
.btn--text span[aria-hidden] { transition: transform var(--dur) var(--ease-out); }
.btn--text:hover span[aria-hidden] { transform: translateX(4px); }

/* =========================================================
   Aurora (signature ambient gold light)
   ========================================================= */
.aurora { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.aurora::before, .aurora::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
}
.aurora::before {
  width: 44vw; height: 44vw; left: -8vw; top: -12vw;
  background: radial-gradient(circle, #C7962E88, transparent 66%);
  animation: drift1 22s var(--ease) infinite alternate;
}
.aurora::after {
  width: 40vw; height: 40vw; right: -6vw; bottom: -14vw;
  background: radial-gradient(circle, #7A5A1E77, transparent 66%);
  animation: drift2 26s var(--ease) infinite alternate;
}
.aurora--verse::before { opacity: .35; left: 50%; top: -20%; transform: translateX(-50%); }
.aurora--verse::after { opacity: .3; }
@keyframes drift1 { from { transform: translate(0,0); } to { transform: translate(6vw, 4vw); } }
@keyframes drift2 { from { transform: translate(0,0); } to { transform: translate(-5vw, -3vw); } }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; padding-top: clamp(2.5rem, 2rem + 4vw, 5rem); padding-bottom: var(--s-24); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 1rem + 5vw, 6rem);
  align-items: center;
}

/* ---- Video-background hero ---- */
.hero--video {
  min-height: min(90vh, 820px); display: flex; align-items: center;
  padding-top: clamp(4rem, 3rem + 6vw, 8rem); padding-bottom: clamp(4rem, 3rem + 6vw, 8rem);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; background: #0a0908 url("hero-poster.jpg?v=8") center/cover no-repeat; }
.hero__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,7,6,.95) 0%, rgba(8,7,6,.78) 40%, rgba(8,7,6,.42) 100%),
    linear-gradient(180deg, rgba(8,7,6,.55) 0%, transparent 26%, transparent 60%, var(--bg) 100%),
    radial-gradient(120% 90% at 85% 30%, rgba(231,194,92,.10), transparent 60%);
}
.hero--video .hero__inner { position: relative; z-index: 2; width: 100%; }
.hero--video .hero__copy { max-width: 40ch; }
.hero--video .hero__title, .hero--video .hero__lead { text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.hero--video .hero__lead { color: var(--text); }

.hero__copy { max-width: 36ch; }
.hero .script { margin: -.2rem 0 .4rem; }
.hero__title {
  font-family: var(--display);
  font-size: var(--fs-display); line-height: var(--lh-tight); letter-spacing: 0.005em;
  margin: 0 0 var(--s-6); font-weight: 600;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__lead { font-family: var(--sans); font-size: var(--fs-body-lg); color: var(--text-soft); margin-bottom: var(--s-8); max-width: 44ch; }
.hero__actions { display: flex; align-items: center; gap: var(--s-6); flex-wrap: wrap; }

.hero__media { position: relative; }
.portrait { margin: 0; position: relative; }
.portrait__frame {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5; background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px #000, 0 0 0 1px #e7c25c12;
}
.portrait__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, #0a0908cc); }
.portrait__frame img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }

.sunday-card {
  position: absolute; left: -1.5rem; bottom: -1.5rem; z-index: 3;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid #e7c25c33; border-top-color: #e7c25c55;
  padding: 1.1rem 1.3rem; border-radius: var(--radius-lg); display: grid; gap: .25rem;
  box-shadow: 0 24px 50px -26px #000; max-width: 16rem;
}
.sunday-card__k { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); }
.sunday-card__t { font-family: var(--display); font-size: 1.15rem; font-weight: 600; line-height: 1.2; color: var(--text); }
.sunday-card__m { font-size: 0.8rem; color: var(--text-soft); }

.hero__scroll { position: absolute; left: var(--gutter); bottom: 1.5rem; z-index: 2; }
.hero__scroll span {
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-mute);
  writing-mode: vertical-rl; display: inline-flex; align-items: center; gap: .6rem;
}
.hero__scroll span::after { content: ""; width: 1px; height: 34px; background: var(--gold); animation: scrollpulse 2.4s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* =========================================================
   Pillars (tri-motto)
   ========================================================= */
.pillars { padding-block: var(--s-12); border-block: 1px solid var(--line-soft); background: var(--bg-2); position: relative; z-index: 2; }
.pillars__grid { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 4vw, 3.5rem); flex-wrap: wrap; text-align: center; }
.pillar { display: grid; gap: .3rem; }
.pillar__es { font-family: var(--display); font-size: clamp(1.15rem, 1rem + 1vw, 1.7rem); font-weight: 600; letter-spacing: 0.04em; color: var(--text); }
.pillar__en { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.pillar__dot { color: var(--gold); font-size: .8rem; opacity: .8; }

/* =========================================================
   Selah / script breather (signature)
   ========================================================= */
.selah {
  display: flex; align-items: center; justify-content: center; gap: var(--s-6);
  padding: var(--s-16) var(--gutter); position: relative; z-index: 2;
}
.selah__rule { height: 1px; width: min(24vw, 300px); background: linear-gradient(90deg, transparent, var(--gold-deep)); }
.selah .selah__rule:last-child { background: linear-gradient(90deg, var(--gold-deep), transparent); }
.selah__word { font-size: clamp(1.8rem, 1rem + 2.6vw, 2.8rem); }

/* =========================================================
   Welcome
   ========================================================= */
.welcome { padding-block: var(--s-section); position: relative; z-index: 2; }
.welcome__grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(1.5rem, 1rem + 4vw, 5rem);
  align-items: start;
}
.welcome__grid .eyebrow { grid-column: 1; margin-top: .5rem; }
.welcome__head {
  grid-column: 2; font-family: var(--display); font-size: clamp(1.6rem, 1rem + 2.6vw, 2.6rem);
  line-height: 1.24; letter-spacing: 0.01em; max-width: 22ch; font-weight: 500; color: var(--text);
}
.welcome__body { grid-column: 2; display: grid; gap: var(--s-4); color: var(--text-soft); font-size: var(--fs-body-lg); max-width: 56ch; margin-top: var(--s-6); }
.welcome__body .en { margin-top: 0; }

/* =========================================================
   Locations
   ========================================================= */
.locations { padding-block: var(--s-section); background: var(--bg-2); border-block: 1px solid var(--line-soft); position: relative; z-index: 2; }
.loc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 5vw, 6rem); align-items: center; }
.loc__note { color: var(--text-soft); margin-bottom: var(--s-8); max-width: 42ch; }

.loc__tabs { display: flex; gap: var(--s-2); border-bottom: 1px solid var(--line); margin-bottom: var(--s-8); }
.loc__tab {
  background: none; border: none; padding: .6rem .2rem 1rem; margin-right: 1.2rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem; color: var(--text-soft); position: relative;
  transition: color var(--dur) var(--ease);
}
.loc__tab::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease-out);
}
.loc__tab:hover { color: var(--text); }
.loc__tab.is-active { color: var(--gold-bright); }
.loc__tab.is-active::after { transform: scaleX(1); }

.loc__panel { display: none; }
.loc__panel.is-active { display: block; animation: fadeIn 420ms var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.loc__detail { display: grid; gap: var(--s-6); margin: 0 0 var(--s-8); }
.loc__detail > div { display: grid; grid-template-columns: 10rem 1fr; gap: var(--s-4); align-items: baseline; border-bottom: 1px solid var(--line-soft); padding-bottom: var(--s-4); }
.loc__detail dt { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin: 0; }
.loc__detail dd { margin: 0; font-size: var(--fs-body-lg); font-family: var(--display); font-weight: 500; color: var(--text); }

.loc__map-frame { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4 / 5; border: 1px solid var(--line); box-shadow: 0 40px 80px -44px #000; background: var(--surface); }
.loc__map-embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
@keyframes ping { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(2.2); opacity: 0; } }

/* =========================================================
   Connect / paths
   ========================================================= */
.connect { padding-block: var(--s-section); position: relative; z-index: 2; }
.connect__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 1rem + 5vw, 6rem); align-items: start; }
.connect__aside p { color: var(--text-soft); max-width: 36ch; margin-top: var(--s-4); }
.connect__photo { margin: var(--s-12) 0 0; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 5 / 4; border: 1px solid var(--line); box-shadow: 0 30px 60px -34px #000; }
.connect__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); filter: brightness(.92); }
.connect__photo:hover img { transform: scale(1.05); }

.paths { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.path a {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--s-4) var(--s-6);
  padding: var(--s-8) var(--s-2); border-bottom: 1px solid var(--line);
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease);
}
.path a:hover { padding-left: 1.25rem; background: linear-gradient(90deg, #e7c25c0f, transparent); }
.path__title { font-family: var(--display); font-weight: 600; font-size: var(--fs-h3); grid-column: 1; color: var(--text); }
.path__title .en-inline { font-family: var(--sans); font-weight: 400; font-size: 0.8em; }
.path__desc { grid-column: 1; color: var(--text-soft); font-size: 0.98rem; max-width: 48ch; }
.path__arrow {
  grid-row: 1 / span 2; grid-column: 2; font-size: 1.4rem; color: var(--gold);
  transform: translateX(-6px); opacity: 0; transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease);
}
.path a:hover .path__arrow { transform: translateX(0); opacity: 1; }

/* =========================================================
   Messages
   ========================================================= */
.messages { padding-block: var(--s-section); background: var(--bg-2); border-block: 1px solid var(--line-soft); position: relative; z-index: 2; }
.messages__head { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--s-6); margin-bottom: var(--s-16); flex-wrap: wrap; }
.messages__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: start; }

.feature__art { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 16 / 10; border: 1px solid var(--line); box-shadow: 0 30px 60px -34px #000; }
.feature__art img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); filter: brightness(.9); }
.feature:hover .feature__art img { transform: scale(1.05); }
.feature__art--video { aspect-ratio: 16 / 9; }
.feature__video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.feature__badge { position: absolute; top: 1rem; left: 1rem; background-image: var(--grad-cta); color: #201400; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: .4rem .7rem; border-radius: 999px; }
.feature__body { margin-top: var(--s-6); display: grid; gap: var(--s-3); }
.feature__title { font-family: var(--display); font-weight: 600; font-size: clamp(1.4rem, 1rem + 1.6vw, 2rem); line-height: 1.18; color: var(--text); }
.feature__body p { color: var(--text-soft); max-width: 50ch; }
.feature__actions { display: flex; gap: var(--s-3); margin-top: var(--s-3); flex-wrap: wrap; }

.mlist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.mrow a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--s-4); padding: var(--s-6) var(--s-2); border-bottom: 1px solid var(--line); transition: padding var(--dur) var(--ease), background var(--dur) var(--ease); }
.mrow a:hover { padding-left: 1rem; background: linear-gradient(90deg, #e7c25c0f, transparent); }
.mrow__title { font-family: var(--display); font-weight: 500; font-size: var(--fs-h3); color: var(--text); }
.mrow .path__arrow { position: static; grid-row: auto; }

/* =========================================================
   Verse breather (signature moment)
   ========================================================= */
.verse { padding-block: var(--s-24); background: var(--bg-3); text-align: center; position: relative; overflow: hidden; z-index: 2; border-block: 1px solid var(--line-soft); }
.verse__inner { display: grid; justify-items: center; gap: var(--s-6); max-width: 62ch; }
.verse__glyph { color: var(--gold); font-size: 1.8rem; }
.verse__quote {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.4rem, 1rem + 2.6vw, 2.6rem); line-height: 1.34; letter-spacing: 0.01em;
  margin: 0; color: var(--text); text-wrap: balance;
}
.verse__cite { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }

/* =========================================================
   Connect card / newsletter
   ========================================================= */
.stay { padding-block: var(--s-section); position: relative; z-index: 2; }
.stay__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 5vw, 6rem); align-items: center; }
.stay__copy p { color: var(--text-soft); max-width: 44ch; margin-top: var(--s-4); font-size: var(--fs-body-lg); }
.stay__form {
  display: grid; gap: var(--s-4); background: var(--surface); border: 1px solid var(--line);
  border-top: 2px solid transparent; border-image: var(--grad-gold) 1;
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); border-radius: var(--radius-lg);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field { display: grid; gap: .4rem; }
.field label, .field legend { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; padding: 0; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: #0d0b08; color: var(--text); transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px #e7c25c22; }
.field textarea { resize: vertical; min-height: 3.4rem; font-family: inherit; line-height: 1.5; }
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23B78A2E' stroke-width='1.6' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.field select option { background: #0d0b08; color: var(--text); }
.gf-sink { position: absolute; width: 0; height: 0; border: 0; overflow: hidden; opacity: 0; pointer-events: none; }
.field--check { border: none; margin: 0; }
.field--check { display: grid; gap: .5rem; }
.check { display: inline-flex; align-items: center; gap: .5rem; font-size: 0.95rem; color: var(--text-soft); font-weight: 500; margin-right: 1.2rem; cursor: pointer; }
.check input { accent-color: var(--gold); width: 1.05rem; height: 1.05rem; }
.field--check legend + .check { margin-top: .2rem; }
.stay__form .field--check { grid-auto-flow: column; justify-content: start; align-items: center; gap: 1rem; }
.stay__form .field--check legend { grid-row: 1; grid-column: 1 / -1; }
.stay__form .btn { justify-self: start; margin-top: var(--s-2); }
.stay__note { font-size: 0.9rem; color: var(--gold-bright); min-height: 1.2em; }

/* =========================================================
   Footer
   ========================================================= */
.foot { background: var(--bg-3); color: var(--text-soft); padding-top: var(--s-24); position: relative; z-index: 2; border-top: 1px solid var(--line); }
.foot__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.2fr; gap: var(--s-8); padding-bottom: var(--s-16); }
.foot__brand .brand__name { color: var(--text); }
.foot__brand .brand__sub { color: var(--gold-deep); }
.foot__tag { margin: var(--s-6) 0; color: var(--gold-deep); font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.08em; }
.foot__tag .en { color: var(--text-mute); letter-spacing: 0.04em; }
.foot__col h3 { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 0 0 var(--s-6); font-weight: 700; }
.foot__col a { display: block; padding: .35rem 0; color: var(--text-soft); font-size: 0.94rem; transition: color var(--dur) var(--ease); }
.foot__col a:hover { color: var(--gold-bright); }
.foot__contact p { margin-bottom: var(--s-4); font-size: 0.94rem; color: var(--text-soft); }
.foot__contact a { color: inherit; border-bottom: 1px solid #e7c25c33; }
.foot__give { margin-top: var(--s-2); }

.foot__base {
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-6);
  padding-block: var(--s-8); border-top: 1px solid var(--line-soft); font-size: 0.82rem;
  color: var(--text-mute); flex-wrap: wrap;
}
.foot__social { display: flex; gap: var(--s-6); align-items: center; }
.foot__social a { transition: color var(--dur) var(--ease); }
.foot__social a:hover { color: var(--gold-bright); }
.foot__handle { color: var(--gold-deep); font-weight: 600; letter-spacing: 0.04em; }

/* =========================================================
   Give / Dar
   ========================================================= */
.give-sec { padding-block: var(--s-section); position: relative; overflow: hidden; z-index: 2; }
.give__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 5vw, 6rem); align-items: center; }
.give__intro > p.reveal { color: var(--text-soft); max-width: 46ch; margin-top: var(--s-4); font-size: var(--fs-body-lg); }
.give__verse {
  margin: var(--s-8) 0 0; padding-left: 1.3rem; border-left: 2px solid var(--gold-deep);
  font-family: var(--display); font-style: italic; font-size: 1.2rem; line-height: 1.4; color: var(--text);
}
.give__verse cite { display: block; margin-top: .7rem; font-family: var(--sans); font-style: normal; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); }

.give__card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); display: grid; gap: var(--s-6);
  box-shadow: 0 40px 80px -44px #000; position: relative; overflow: hidden;
}
.give__card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background-image: var(--grad-gold); }

.zelle { display: grid; gap: .7rem; }
.zelle__brand {
  justify-self: start; display: inline-flex; align-items: flex-start; gap: .05rem;
  background: #fff; color: #6D1ED4; font-family: var(--sans); font-weight: 800; font-size: 1.3rem;
  letter-spacing: -0.02em; padding: .3rem .75rem; border-radius: 8px; line-height: 1.1;
}
.zelle__brand sup { font-size: .5em; font-weight: 700; }
.zelle__label { font-size: 0.85rem; letter-spacing: 0.03em; color: var(--text-soft); }
.zelle__num { display: flex; align-items: center; gap: var(--s-4); flex-wrap: wrap; }
.zelle__num #zelleNum { font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem, 1rem + 2vw, 2.2rem); color: var(--gold-bright); font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.zelle__copy {
  background: transparent; border: 1.5px solid #e7c25c66; color: var(--gold); border-radius: 999px;
  padding: .4rem .9rem; font-family: var(--sans); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.zelle__copy:hover { border-color: var(--gold); background: #e7c25c14; }
.zelle__copy.is-copied { background-image: var(--grad-cta); color: #201400; border-color: transparent; }

.give__divider { height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.zelle__how { font-size: 0.95rem; line-height: 1.6; color: var(--text-soft); max-width: 42ch; }

.qr { display: flex; align-items: center; gap: var(--s-6); }
.qr img { width: clamp(140px, 42%, 180px); height: auto; background: #fff; padding: 10px; border-radius: 12px; box-shadow: 0 12px 30px -14px #000; }
.qr__cap { font-size: 0.88rem; color: var(--text-soft); max-width: 18ch; line-height: 1.5; }

@media (max-width: 900px) { .give__grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .qr { flex-direction: column; align-items: flex-start; } }

/* =========================================================
   Motion — reveal system (unchanged behavior)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

[data-selah], [data-selah-big] { opacity: 0; transition: opacity 900ms var(--ease-out); }
[data-selah].in, [data-selah-big].in { opacity: 1; }
[data-selah-big].in .verse__glyph { animation: breathe 4.5s var(--ease) infinite; }
@keyframes breathe { 0%,100% { opacity: .55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.12); } }

/* hero load sequence (JS adds .loaded to body) */
.hero [data-rise] { transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out); }
body:not(.loaded) .hero [data-rise] { opacity: 0; transform: translateY(28px); }
body.loaded .hero [data-rise] { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__tools { margin-left: auto; }
  .nav__menu { display: inline-flex; flex-direction: column; gap: 5px; margin-left: var(--s-3); background: none; border: none; padding: 8px; }
  .nav__menu span { width: 24px; height: 2px; background: var(--gold); display: block; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
  .nav.is-open .nav__menu span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav.is-open .nav__menu span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav.is-open .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: var(--s-6) var(--gutter); gap: var(--s-4); margin: 0;
  }

  .hero__grid, .welcome__grid, .loc__grid, .connect__grid, .messages__grid, .stay__grid { grid-template-columns: 1fr; }
  .welcome__grid .eyebrow, .welcome__head, .welcome__body { grid-column: 1; }
  .welcome__head { max-width: none; }
  .hero { padding-bottom: var(--s-16); }
  .hero__copy { max-width: none; }
  .hero__media { margin-top: var(--s-8); max-width: 30rem; }
  .sunday-card { left: auto; right: -0.5rem; }
  .hero__scroll { display: none; }
  .connect__photo { display: none; }
  .pillars__grid { gap: 1rem 2rem; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: var(--s-12) var(--s-8); }
  .foot__brand { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .foot__grid { grid-template-columns: 1fr; }
  .path a { grid-template-columns: 1fr; }
  .path__arrow { display: none; }
  .loc__detail > div { grid-template-columns: 1fr; gap: .2rem; }
  .field-row { grid-template-columns: 1fr; }
  .announce__row { font-size: 0.7rem; gap: var(--s-3); }
  .pillar__dot { display: none; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, body:not(.loaded) .hero [data-rise], [data-selah], [data-selah-big] { opacity: 1 !important; transform: none !important; }
  .portrait__frame img { transform: none !important; }
  .aurora::before, .aurora::after { animation: none !important; }
}
