/* ═══════════════════════════════════════════════════════════════
   PALACE OF TRANSFORMATION · EPSIM
   A sanctuary in cream, royal purple, and gold.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Royal purples — from the crest banner & ribbon */
  --purple:          #2A1A4B;
  --purple-deep:     #170B33;
  --purple-light:    #4B3473;
  --purple-soft:     rgba(42, 26, 75, 0.08);

  /* Warm gold — laurel wreath & rope border */
  --gold:            #C9A227;
  --gold-bright:     #D9B33E;
  --gold-soft:       rgba(201, 162, 39, 0.4);
  --gold-faint:      rgba(201, 162, 39, 0.18);
  --gold-whisper:    rgba(201, 162, 39, 0.08);

  /* Parchment cream */
  --cream:           #F7F1E3;
  --cream-warm:      #F1E8D2;
  --cream-deeper:    #E9DDC0;

  /* Ink with a violet undertone */
  --ink:             #1A1233;
  --ink-soft:        #4A3E66;
  --ink-faint:       #7A6E91;

  /* Rare accent */
  --burgundy:        #6B1F2E;

  /* Typography */
  --font-display:    'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-display-sc: 'Cormorant SC', Georgia, serif;
  --font-body:       'Manrope', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container:       1240px;
  --gutter:          clamp(1.25rem, 4vw, 2.75rem);

  /* Motion */
  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:       cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, address { margin: 0; padding: 0; font-style: normal; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { background: none; border: none; font: inherit; cursor: pointer; color: inherit; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--purple);
  color: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ─── Parchment grain overlay (fixed, behind nothing) ─────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.07 0 0 0 0 0.20 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}


/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY · shared utilities
   ═══════════════════════════════════════════════════════════════ */

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.70rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--purple);
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--purple-light);
}

.section-title-left { text-align: left; }


/* ─── Gold rule with central fleuron ──────────────────────────── */
.rule {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  max-width: 240px;
  margin: 1.5rem 0;
  color: var(--gold);
}

.rule-center { margin-left: auto; margin-right: auto; }

.rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--gold-soft) 35%,
    var(--gold) 55%,
    var(--gold-soft) 75%,
    transparent 100%
  );
}

.fleuron {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--gutter);
  background: rgba(247, 241, 227, 0);
  transition: background 0.4s var(--ease-soft),
              padding 0.4s var(--ease-soft),
              box-shadow 0.4s var(--ease-soft),
              border-color 0.4s var(--ease-soft);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(247, 241, 227, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.9rem var(--gutter);
  border-bottom-color: var(--gold-faint);
  box-shadow: 0 8px 24px -16px rgba(26, 18, 51, 0.18);
}

.nav-brand {
  display: flex;
  align-items: center;
  transition: transform 0.4s var(--ease-out);
}
.nav-brand:hover { transform: translateY(-1px); }
.nav-brand img {
  height: 38px;
  width: auto;
  transition: height 0.4s var(--ease-soft);
}
.nav.scrolled .nav-brand img { height: 32px; }

.nav-links {
  display: flex;
  gap: clamp(1.5rem, 2.4vw, 2.25rem);
  align-items: center;
}

.nav-links a {
  position: relative;
  padding: 0.5rem 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.45s var(--ease-out);
}

.nav-links a:hover { color: var(--purple); }
.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }


/* ─── Mobile toggle ─────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 18px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ─── Mobile menu ───────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4%);
  transition: opacity 0.5s var(--ease-out),
              transform 0.5s var(--ease-out),
              visibility 0s linear 0.5s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.5s var(--ease-out),
              transform 0.5s var(--ease-out),
              visibility 0s;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 400;
  color: var(--purple);
  transition: color 0.3s, font-style 0.3s;
}
.mobile-menu a:hover { color: var(--gold); font-style: italic; }

.mobile-menu-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 0.5rem;
}

.mobile-menu-motto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
}


/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem var(--gutter) 4.5rem;
  overflow: hidden;
}

/* Hairline corner ornaments (the room you're stepping into) */
.hero-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-soft);
  pointer-events: none;
  opacity: 0;
  animation: corner-in 1.4s var(--ease-out) 0.4s forwards;
}
.hero-corner-tl { top: 4.5rem; left: var(--gutter); border-right: 0; border-bottom: 0; }
.hero-corner-tr { top: 4.5rem; right: var(--gutter); border-left: 0; border-bottom: 0; }
.hero-corner-bl { bottom: 2rem; left: var(--gutter); border-right: 0; border-top: 0; }
.hero-corner-br { bottom: 2rem; right: var(--gutter); border-left: 0; border-top: 0; }

@keyframes corner-in {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

/* Two-column grid: brand text on the left, video slider on the right */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-text {
  text-align: left;
  max-width: 540px;
}

.hero-crest {
  width: clamp(120px, 11vw, 150px);
  height: auto;
  margin: 0 0 1.5rem;
  opacity: 0;
  filter: drop-shadow(0 18px 32px rgba(42, 26, 75, 0.18));
  animation: crest-in 1.4s var(--ease-out) 0.15s forwards;
}

@keyframes crest-in {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-est {
  font-family: var(--font-display-sc);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.5s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.6vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--purple);
  margin: 0;
  max-width: none;
  opacity: 0;
  animation: fade-up 1.1s var(--ease-out) 0.65s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--purple-light);
}

.hero-text .rule {
  margin: 1.75rem 0 1.5rem;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.85s forwards;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.95s forwards;
}

.hero-motto {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: var(--ink);
  letter-spacing: 0.005em;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 1.1s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 1.3s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.05rem 1.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid;
  transition: all 0.5s var(--ease-out);
  white-space: nowrap;
  overflow: hidden;
}

.btn-primary {
  background: var(--purple);
  color: var(--cream);
  border-color: var(--purple);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--purple-deep);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(42, 26, 75, 0.5);
  border-color: var(--purple-deep);
}
.btn-primary:hover::before { transform: translateY(0); }

.btn-divider { color: var(--gold-bright); opacity: 0.7; }

.btn-ghost {
  background: transparent;
  color: var(--purple);
  border-color: var(--gold-soft);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-whisper);
  transform: translateY(-2px);
}


/* ─── Scroll indicator ─────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0;
  animation: fade-up 1.2s var(--ease-out) 1.6s forwards;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--cream);
  transform-origin: top;
  animation: scroll-sweep 2.6s var(--ease-soft) infinite;
}

@keyframes scroll-sweep {
  0%        { transform: scaleY(1); transform-origin: top;    }
  45%, 50%  { transform: scaleY(0); transform-origin: top;    }
  50.01%    { transform: scaleY(0); transform-origin: bottom; }
  95%, 100% { transform: scaleY(1); transform-origin: bottom; }
}


/* ═══════════════════════════════════════════════════════════════
   HERO VIDEO SLIDER
   ═══════════════════════════════════════════════════════════════ */

.hero-slider {
  position: relative;
  opacity: 0;
  animation: fade-up 1.2s var(--ease-out) 0.45s forwards;
  width: 100%;
}

.slider-stage {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--purple-deep);
  border: 1px solid var(--gold-soft);
  overflow: hidden;
  box-shadow:
    0 30px 60px -30px rgba(42, 26, 75, 0.4),
    inset 0 0 0 1px rgba(247, 241, 227, 0.06);
}

/* Inset double-frame, echoing the offering tablet */
.slider-stage::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 162, 39, 0.18);
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.4s;
}
.slider-stage.is-playing::before { opacity: 0; }

.slider-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
  background:
    radial-gradient(ellipse at 50% 40%,
      var(--purple-light) 0%,
      var(--purple) 55%,
      var(--purple-deep) 100%);
}
.slider-loading img {
  width: 80px;
  height: auto;
  opacity: 0.4;
  animation: gentle-pulse 2.4s ease-in-out infinite;
}
.slider-loading p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(247, 241, 227, 0.5);
}
@keyframes gentle-pulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.55; }
}

.slider-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--ease-soft), visibility 0s linear 0.9s;
}

.slider-frame.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.9s var(--ease-soft), visibility 0s;
}

.slider-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Bottom gradient + meta band */
.slider-frame .slider-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(to top,
    rgba(23, 11, 51, 0.92) 0%,
    rgba(23, 11, 51, 0.7) 35%,
    transparent 100%);
  pointer-events: none;
}

.slider-meta {
  position: absolute;
  left: clamp(1.25rem, 2.5vw, 1.75rem);
  right: clamp(1.25rem, 2.5vw, 1.75rem);
  bottom: clamp(1.1rem, 2.5vw, 1.5rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  z-index: 2;
}

.slider-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.25;
  color: var(--cream);
  letter-spacing: 0.005em;
  max-width: 70%;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.slider-play {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(247, 241, 227, 0.96);
  border: 1px solid var(--gold-soft);
  color: var(--purple);
  cursor: pointer;
  transition: transform 0.4s var(--ease-out),
              background 0.4s,
              border-color 0.4s,
              box-shadow 0.4s;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.45);
}
.slider-play svg { width: 22px; height: 22px; margin-left: 3px; transition: color 0.3s; }
.slider-play:hover,
.slider-play:focus-visible {
  outline: none;
  transform: scale(1.08);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 10px rgba(201, 162, 39, 0.18), 0 12px 28px -10px rgba(0,0,0,0.45);
}
.slider-play:hover svg,
.slider-play:focus-visible svg { color: var(--cream); }

/* Eyebrow label inside the slide top-left (e.g. "Latest", "Morning Elevation") */
.slider-badge {
  position: absolute;
  top: clamp(1rem, 2vw, 1.25rem);
  left: clamp(1rem, 2vw, 1.25rem);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(23, 11, 51, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.45);
  padding: 0.4rem 0.75rem 0.35rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
}

/* Controls row */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-faint);
  background: transparent;
  color: var(--purple);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s var(--ease-out);
}
.slider-arrow svg { width: 16px; height: 16px; }
.slider-arrow:hover,
.slider-arrow:focus-visible {
  outline: none;
  border-color: var(--gold);
  background: var(--gold);
  color: var(--cream);
  transform: translateY(-1px);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.slider-dot {
  width: 28px;
  height: 2px;
  background: rgba(201, 162, 39, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.4s, width 0.4s;
}
.slider-dot.active {
  background: var(--gold);
  width: 44px;
}
.slider-dot:hover { background: var(--gold-soft); }
.slider-dot:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.slider-channel {
  margin-top: 0.75rem;
  text-align: center;
  font-family: var(--font-display-sc);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
}
.slider-channel a {
  color: inherit;
  border-bottom: 1px solid var(--gold-faint);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.slider-channel a:hover,
.slider-channel a:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════════
   SECTIONS · shared
   ═══════════════════════════════════════════════════════════════ */

.section {
  padding: clamp(5rem, 9vw, 7.5rem) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}


/* ═══════════════════════════════════════════════════════════════
   GATHER WITH US
   ═══════════════════════════════════════════════════════════════ */

.section-times { padding-top: clamp(4rem, 8vw, 6.5rem); }

.times-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.time-card {
  position: relative;
  background: var(--cream-warm);
  border: 1px solid var(--gold-faint);
  padding: 3.25rem 2rem 2.5rem;
  text-align: center;
  transition: transform 0.55s var(--ease-out),
              border-color 0.4s,
              box-shadow 0.55s var(--ease-out);
  overflow: hidden;
}

.time-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s, inset 0.4s;
  pointer-events: none;
}

.time-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: 0 28px 50px -28px rgba(42, 26, 75, 0.25);
}

.time-card:hover::before {
  inset: 6px;
  border-color: var(--gold-faint);
}

.time-fleuron {
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  display: block;
}

.time-day {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.65rem;
}

.time-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  color: var(--purple);
  margin-bottom: 1.25rem;
}

.time-clock {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 4.8vw, 3.5rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.time-clock.time-clock-text {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
}

.time-sep {
  color: var(--gold-soft);
  margin: 0 -0.05em;
}

.time-meridiem,
.time-range {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.42em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  vertical-align: middle;
  margin-left: 0.4em;
}

.time-clock-text .time-range {
  display: block;
  margin: 0.5rem 0 0;
  font-size: 0.42em;
  color: var(--ink-soft);
}

.time-desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 26ch;
  margin: 0 auto;
}

.time-card-elevations .time-desc { margin-bottom: 1.5rem; }

.time-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-faint);
}

.time-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-faint);
  border-radius: 50%;
  color: var(--purple);
  transition: all 0.4s var(--ease-out);
}
.time-socials a svg { width: 16px; height: 16px; }
.time-socials a:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--gold);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════
   WHO WE ARE
   ═══════════════════════════════════════════════════════════════ */

.section-about {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.about-quote {
  position: sticky;
  top: 8rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
}

.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 9vw, 7rem);
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 0.25rem;
  letter-spacing: -0.05em;
}

.quote-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.12;
  color: var(--purple);
  letter-spacing: -0.012em;
  margin-bottom: 1.5rem;
}

.quote-text em {
  font-style: italic;
  color: var(--purple-light);
}

.quote-attribution {
  font-family: var(--font-display-sc);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.about-body { padding-top: 1rem; }

.about-body .section-title {
  margin-bottom: 2rem;
}

.lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.1vw, 1.65rem);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.about-body p:not(.lede):not(.eyebrow) {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.dropcap {
  float: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 4.5rem;
  line-height: 0.85;
  color: var(--gold);
  padding: 0.35rem 0.6rem 0 0;
  margin-top: 0.15rem;
}

.about-signoff {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  position: relative;
}

.about-signoff::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.about-signoff-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  line-height: 1.2;
  color: var(--purple);
  letter-spacing: -0.005em;
}

.about-signoff-role {
  margin-top: 0.4rem;
  font-family: var(--font-display-sc);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════════
   WATCH & LISTEN
   ═══════════════════════════════════════════════════════════════ */

.section-watch {
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(201, 162, 39, 0.04) 25%,
    rgba(201, 162, 39, 0.04) 75%,
    transparent 100%);
  max-width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section-watch > * { max-width: var(--container); margin-left: auto; margin-right: auto; }

.watch-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--cream-warm);
  border: 1px solid var(--gold-faint);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out),
              border-color 0.4s,
              box-shadow 0.6s var(--ease-out);
  max-width: 1080px;
}

.watch-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: 0 40px 70px -40px rgba(42, 26, 75, 0.35);
}

.watch-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background:
    radial-gradient(ellipse at 50% 40%,
      var(--purple-light) 0%,
      var(--purple) 55%,
      var(--purple-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.watch-thumb-embed {
  background: var(--purple-deep);
}

.watch-thumb-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.watch-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}

.watch-thumb img {
  position: relative;
  width: 52%;
  max-width: 220px;
  z-index: 1;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
  transition: transform 0.7s var(--ease-out);
}

.watch-card:hover .watch-thumb img {
  transform: scale(1.04);
}

.watch-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.play-button {
  position: absolute;
  z-index: 3;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(247, 241, 227, 0.96);
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-out),
              background 0.5s,
              border-color 0.5s;
  box-shadow: 0 0 0 0 var(--gold-soft), 0 16px 32px -8px rgba(0,0,0,0.4);
}

.watch-card:hover .play-button {
  transform: scale(1.1);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 12px rgba(201, 162, 39, 0.15), 0 16px 32px -8px rgba(0,0,0,0.4);
}

.play-button svg {
  width: 28px;
  height: 28px;
  color: var(--purple);
  margin-left: 4px;
  transition: color 0.4s;
}
.watch-card:hover .play-button svg { color: var(--cream); }

.watch-meta {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.watch-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.watch-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  line-height: 1.15;
  color: var(--purple);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.watch-desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  max-width: 36ch;
}

.watch-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-soft);
  width: fit-content;
  transition: border-color 0.3s, color 0.3s, gap 0.3s;
}

.watch-card:hover .watch-cta,
.watch-cta:hover,
.watch-cta:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
  gap: 0.75rem;
}

.watch-card:hover .arrow {
  transform: translateX(2px);
}

.arrow, .social-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}


/* ─── Social tiles ─────────────────────────────────────────── */
.social-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 1080px;
}

.social-tile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--cream-warm);
  border: 1px solid var(--gold-faint);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.4s var(--ease-out);
}

.social-tile:hover {
  border-color: var(--gold);
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(42, 26, 75, 0.18);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--purple);
  color: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.4s;
}
.social-tile:hover .social-icon { background: var(--purple-deep); }
.social-icon svg { width: 18px; height: 18px; }

.social-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.social-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

.social-handle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.social-arrow {
  color: var(--gold);
  font-size: 1.1rem;
}
.social-tile:hover .social-arrow { transform: translateX(3px); }


/* ═══════════════════════════════════════════════════════════════
   FIND US
   ═══════════════════════════════════════════════════════════════ */

.visit-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.visit-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.visit-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  color: var(--purple);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.visit-address {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold-soft);
  width: fit-content;
  transition: gap 0.3s, color 0.3s, border-color 0.3s;
}

.link-arrow:hover {
  gap: 0.75rem;
  color: var(--purple);
  border-color: var(--purple);
}

.visit-meta {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--gold-faint);
}

.visit-meta-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.visit-meta-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1;
  color: var(--purple);
}
.visit-meta-value span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6em;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-left: 0.25em;
  vertical-align: middle;
}

.visit-map {
  position: relative;
  min-height: 420px;
  background: var(--cream-warm);
  border: 1px solid var(--gold-faint);
  overflow: hidden;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  display: block;
  filter: saturate(0.85) contrast(0.98);
}

/* ─── What to Expect strip ─────────────────────────────────── */
.expect-strip {
  margin-top: clamp(4rem, 7vw, 5.5rem);
  padding-top: 3rem;
  border-top: 1px solid var(--gold-faint);
  text-align: center;
}

.expect-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.expect-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
}

.expect-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--gold-faint);
  text-align: center;
}
.expect-item:last-child { border-right: none; }

.expect-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-feature-settings: "lnum";
}

.expect-item p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  max-width: 22ch;
}


/* ═══════════════════════════════════════════════════════════════
   GIVE / OFFERING  —  the offering tablet
   ═══════════════════════════════════════════════════════════════ */

.section-give { text-align: center; }

.give-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.85vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
  margin: -1.5rem auto 3rem;
}

/* ─── The tablet: one centered ornate frame holding the three rows ── */
.give-tablet {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  background: var(--cream-warm);
  border: 1px solid var(--gold-soft);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 24px 60px -36px rgba(42, 26, 75, 0.2);
  text-align: left;
}

/* Inner double-line border, like an engraved plate */
.give-tablet::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold-faint);
  pointer-events: none;
}

.give-tablet-mark {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto 2rem;
  color: var(--gold);
}

.give-rows {
  display: flex;
  flex-direction: column;
}

.give-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.85fr) minmax(0, 1.6fr) auto;
  align-items: baseline;
  column-gap: clamp(1rem, 3vw, 2.25rem);
  padding: 1.65rem 0.25rem;
  border: 0;
  border-bottom: 1px solid var(--gold-faint);
  background: transparent;
  font: inherit;
  color: inherit;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  width: 100%;
  position: relative;
  transition: background 0.45s var(--ease-soft),
              padding-left 0.45s var(--ease-out),
              padding-right 0.45s var(--ease-out);
}

.give-row:first-child { padding-top: 0.5rem; }
.give-row:last-child  { border-bottom: 0; padding-bottom: 0.5rem; }

.give-row:hover,
.give-row:focus-visible {
  outline: none;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(201, 162, 39, 0.06) 50%,
    transparent 100%);
  padding-left: 1rem;
  padding-right: 1rem;
}

.give-row-method {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  letter-spacing: 0.005em;
}

.give-row-handle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  color: var(--purple);
  letter-spacing: -0.005em;
  word-break: break-word;
  transition: color 0.35s;
}

.give-row:hover .give-row-handle { color: var(--purple-deep); }

.give-row-action {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transition: color 0.3s, gap 0.3s;
  justify-self: end;
}

.give-row:hover .give-row-action {
  color: var(--purple);
  gap: 0.75rem;
}

.give-row .arrow { transition: transform 0.3s var(--ease-out); }
.give-row:hover .arrow { transform: translateX(3px); }

/* ─── Copy-state animation (Zelle row) ──────────────────────── */
.give-row-action-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.25s, transform 0.25s;
}

.give-row-action-copied {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(4px);
  color: var(--purple);
  pointer-events: none;
}

.give-row-copy.copied .give-row-action-default {
  opacity: 0;
  transform: translateY(-4px);
}

.give-row-copy.copied .give-row-action-copied {
  opacity: 1;
  transform: translateY(0);
  color: var(--gold);
}

.give-row-copy.copied {
  background: rgba(201, 162, 39, 0.10);
}

/* ─── Scripture pull below the tablet ───────────────────────── */
.give-scripture {
  max-width: 640px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding: 2.5rem 1.5rem 0;
  position: relative;
}

.give-scripture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.give-scripture p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink);
}

.give-scripture cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-display-sc);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════════ */

.section-contact {
  position: relative;
  max-width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(201, 162, 39, 0.04) 25%,
    rgba(201, 162, 39, 0.04) 75%,
    transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.section-contact > * {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.contact-intro {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  margin: -1.5rem auto 3rem;
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
}

.field-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream-warm);
  border: 1px solid var(--gold-faint);
  border-radius: 0;
  padding: 0.95rem 1.15rem;
  width: 100%;
  transition: border-color 0.35s var(--ease-soft),
              background 0.35s var(--ease-soft),
              box-shadow 0.35s var(--ease-soft);
  -webkit-appearance: none;
  appearance: none;
  font-feature-settings: "lnum";
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
  font-style: italic;
  opacity: 0.85;
}

.field select {
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1 L6 6 L11 1' stroke='%23C9A227' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  cursor: pointer;
}

.field textarea {
  resize: vertical;
  min-height: 150px;
  font-family: var(--font-display);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(107, 31, 46, 0.3);
}

/* Honeypot — visually hidden but accessible to assistive tech as "not for you" */
.hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.form-actions .btn[disabled] {
  opacity: 0.55;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
  font-size: 1em;
}
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.contact-direct-link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.contact-direct-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.form-status {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: center;
  min-height: 1.5em;
  transition: opacity 0.3s, color 0.3s;
}
.form-status.success {
  color: var(--purple);
  font-style: italic;
}
.form-status.error {
  color: var(--burgundy);
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  position: relative;
  background: var(--purple-deep);
  color: var(--cream);
  padding: 5rem var(--gutter) 2rem;
  margin-top: 5rem;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 50%, transparent);
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.79 0 0 0 0 0.64 0 0 0 0 0.16 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
}

.footer-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 4rem;
}

.footer-crest {
  width: 72px;
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.footer-motto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  opacity: 0.92;
}

.footer-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.footer-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.footer-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 4px;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
}
.footer-link:hover { color: var(--cream); border-color: var(--cream); gap: 0.75rem; }

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.35s var(--ease-out);
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover {
  background: var(--gold);
  color: var(--purple-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
}
.footer-cta:hover { color: var(--gold); border-color: var(--gold); gap: 0.75rem; }

.footer-base {
  border-top: 1px solid rgba(201, 162, 39, 0.18);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(247, 241, 227, 0.65);
}

.footer-base-motto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
}
.footer-base-motto em { font-weight: 500; }


/* ═══════════════════════════════════════════════════════════════
   REVEAL ON SCROLL
   ═══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

/* Stagger inner cards on reveal */
.times-grid.revealed > :nth-child(2) { transition-delay: 0.12s; }
.times-grid.revealed > :nth-child(3) { transition-delay: 0.24s; }
.social-tiles.revealed > :nth-child(2) { transition-delay: 0.1s; }
.social-tiles.revealed > :nth-child(3) { transition-delay: 0.2s; }


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    max-width: 640px;
  }
  .hero-text { text-align: center; max-width: 100%; }
  .hero-crest { margin: 0 auto 1.5rem; }
  .hero-text .rule { margin: 1.5rem auto; }
  .hero-title { max-width: 14ch; margin: 0 auto; }
  .hero-ctas { justify-content: center; }

  .hero-corner { width: 32px; height: 32px; }
  .hero-corner-tl, .hero-corner-tr { top: 4.5rem; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .times-grid { grid-template-columns: 1fr; gap: 1rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-quote { position: static; padding: 2rem 0; }

  .watch-card { grid-template-columns: 1fr; }
  .watch-thumb { aspect-ratio: 16/9; }
  .watch-meta { padding: 2rem; }

  .social-tiles { grid-template-columns: 1fr; }

  .visit-grid { grid-template-columns: 1fr; gap: 2rem; }
  .visit-meta { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .visit-map { min-height: 320px; }
  .visit-map iframe { min-height: 320px; }

  .expect-items { grid-template-columns: 1fr; }
  .expect-item {
    border-right: none;
    border-bottom: 1px solid var(--gold-faint);
  }
  .expect-item:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.75rem; }

  .footer-base { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 720px) {
  .field-row { grid-template-columns: 1fr; gap: 1.25rem; }
  .form-actions { flex-direction: column; align-items: stretch; gap: 1.25rem; }
  .form-actions .btn { width: 100%; justify-content: center; }
  .contact-direct-link { text-align: center; }
}

@media (max-width: 600px) {
  .give-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem 0.25rem;
    text-align: center;
  }
  .give-row-method,
  .give-row-handle { text-align: center; }
  .give-row-action {
    justify-self: center;
    margin-top: 0.4rem;
  }
  .give-row-action-copied {
    justify-content: center;
    inset: auto 0 0 0;
  }
  .give-row:hover,
  .give-row:focus-visible {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}

@media (max-width: 540px) {
  .hero { padding: 7rem var(--gutter) 5rem; }
  .hero-crest { width: 150px; margin-bottom: 1.75rem; }
  .hero-est { font-size: 0.7rem; }

  .hero-corner-tl, .hero-corner-tr { top: 4rem; }
  .hero-corner { width: 24px; height: 24px; }

  .btn { padding: 0.95rem 1.25rem; font-size: 0.7rem; }
  .btn-primary { width: 100%; justify-content: center; }
  .btn-ghost { width: 100%; justify-content: center; text-align: center; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }

  .scroll-indicator { display: none; }

  .visit-meta { grid-template-columns: 1fr; gap: 1.25rem; }
  .visit-info { text-align: center; align-items: center; }
  .visit-address, .visit-name, .visit-meta-label, .visit-meta-value { text-align: center; }
  .link-arrow { margin: 0 auto; }
  .visit-meta-item { text-align: center; }

  .footer { padding: 4rem var(--gutter) 1.5rem; }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
