*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: system-ui, 'Segoe UI', sans-serif;
  background-color: #f5ece0;
  color: #3e4b54;
  overflow-x: hidden;
}

/* ── Grain overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 1;
}

/* ── Nav ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
#nav.at-top {
  background: transparent;
}
#nav.scrolled {
  background: rgba(245, 236, 224, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(62,75,84,0.1), 0 4px 24px rgba(62,75,84,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-light { display: block; }
.nav-logo-dark  { display: none; }
#nav.scrolled .nav-logo-light { display: none; }
#nav.scrolled .nav-logo-dark  { display: block; }

.nav-link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(237,221,202,0.9);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
#nav.scrolled .nav-link { color: #3e4b54; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: #9fa694;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: #9fa694 !important; }

.nav-cta {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  border: 1.5px solid rgba(237,221,202,0.6);
  color: #edddca;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}
#nav.scrolled .nav-cta {
  background: #3e4b54;
  border-color: #3e4b54;
  color: #edddca;
}
.nav-cta:hover {
  background: #edddca !important;
  border-color: #edddca !important;
  color: #3e4b54 !important;
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('brand_assets/Grand%20Opening%20Photography/Grand%20Opening_1.jpg');
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.06);
  transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(62,75,84,0.55) 0%,
    rgba(62,75,84,0.72) 60%,
    rgba(30,38,44,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
}
.hero-logo {
  width: clamp(380px, 58vw, 580px);
  max-width: 88vw;
  margin: 0 auto 2.75rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s ease 0.2s forwards;
}
.hero-script {
  font-family: 'NellaSue', cursive;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  color: #edddca;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(237,221,202,0.7), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.hero-scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237,221,202,0.55);
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* ── Buttons ── */
.btn-ivory {
  display: inline-block;
  padding: 14px 30px;
  background: #edddca;
  color: #3e4b54;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.1);
}
.btn-ivory:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
.btn-ivory:active { transform: translateY(0); }

.btn-ghost {
  display: inline-block;
  padding: 13px 30px;
  background: transparent;
  color: #edddca;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(237,221,202,0.55);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.btn-ghost:hover {
  background: rgba(237,221,202,0.1);
  border-color: rgba(237,221,202,0.85);
  transform: translateY(-2px);
}

.btn-navy {
  display: inline-block;
  padding: 14px 30px;
  background: #3e4b54;
  color: #edddca;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-navy:hover {
  background: #2d3840;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(62,75,84,0.25);
}

.btn-navy-outline {
  display: inline-block;
  padding: 13px 30px;
  background: transparent;
  color: #3e4b54;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(62,75,84,0.35);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-navy-outline:hover {
  background: #3e4b54;
  border-color: #3e4b54;
  color: #edddca;
  transform: translateY(-2px);
}

/* ── Section labels ── */
.label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9fa694;
  margin-bottom: 14px;
}
.heading {
  font-family: 'Schneidler BT', serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #3e4b54;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Mission band ── */
.mission-band {
  background: #3e4b54;
  padding: 88px 32px;
  position: relative;
  overflow: hidden;
}
.mission-band::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159,166,148,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.mission-band::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,221,202,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── About grid ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Shop cards ── */
.shop-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.shop-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop-card:hover img { transform: scale(1.06); }
.shop-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(62,75,84,0.88) 0%, rgba(62,75,84,0.25) 55%, transparent 100%);
  transition: background 0.35s ease;
}
.shop-card:hover .shop-card-overlay {
  background: linear-gradient(to top, rgba(62,75,84,0.94) 0%, rgba(62,75,84,0.45) 60%, rgba(62,75,84,0.1) 100%);
}
.shop-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  transform: translateY(6px);
  transition: transform 0.35s ease;
}
.shop-card:hover .shop-card-body { transform: translateY(0); }

/* ── Deals section ── */
.deals-section {
  background: #3e4b54;
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}
.deals-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(159,166,148,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.deals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Donate section ── */
.donate-section {
  background: #9fa694;
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}
.donate-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26 0v52M0 26h52' stroke='%23ffffff' stroke-width='0.5' opacity='0.12'/%3E%3C/svg%3E");
  pointer-events: none;
}
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Gallery strip ── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 200px;
}
.gallery-strip > div {
  overflow: hidden;
}
.gallery-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
  filter: saturate(0.85);
}
.gallery-strip > div:hover img {
  transform: scale(1.08);
  filter: saturate(1);
}

/* ── Contact section ── */
.contact-section {
  background: #f5ece0;
  padding: 96px 32px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Form inputs ── */
.field {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(62,75,84,0.15);
  font-family: system-ui, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: #3e4b54;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}
.field:focus {
  border-color: #9fa694;
  box-shadow: 0 0 0 3px rgba(159,166,148,0.18);
}
.field::placeholder { color: rgba(62,75,84,0.38); }

/* ── Hours table ── */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(62,75,84,0.07);
  font-size: 0.85rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; }
.hours-row .time { color: rgba(62,75,84,0.6); }
.hours-row .closed { color: rgba(62,75,84,0.35); font-style: italic; }

/* ── Faith quote ── */
.faith-section {
  background: #edddca;
  padding: 88px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.faith-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(159,166,148,0.22) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Footer ── */
footer {
  background: #3e4b54;
  color: #edddca;
  padding: 88px 32px 28px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.footer-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9fa694;
  margin-bottom: 16px;
  display: block;
}
.footer-link {
  display: block;
  font-size: 0.85rem;
  color: rgba(237,221,202,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-link:hover { color: #edddca; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(237,221,202,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* ── Deal pill ── */
.deal-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(237,221,202,0.06);
  border: 1px solid rgba(237,221,202,0.12);
  margin-bottom: 14px;
  transition: background 0.25s, border-color 0.25s;
}
.deal-pill:hover {
  background: rgba(237,221,202,0.1);
  border-color: rgba(237,221,202,0.22);
}
.deal-pill-icon {
  width: 38px; height: 38px;
  background: #9fa694;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

/* ── Accept grid ── */
.accept-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  background: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  color: #3e4b54;
  font-weight: 500;
  transition: background 0.2s;
}
.accept-item:hover { background: rgba(255,255,255,0.65); }

/* ── Stat boxes ── */
.stat-box {
  padding: 22px;
  background: white;
  border-left: 3px solid #9fa694;
  box-shadow: 0 2px 16px rgba(62,75,84,0.05);
}

/* ── Mobile hamburger ── */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
#hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: #edddca;
  transition: background 0.3s;
}
#nav.scrolled #hamburger span { background: #3e4b54; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #3e4b54;
  z-index: 600;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  font-family: 'Schneidler BT', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: #edddca;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: #9fa694; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid, .deals-grid, .donate-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .shop-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 768px) {
  .shop-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr) !important; }
  .gallery-strip > div:nth-child(4),
  .gallery-strip > div:nth-child(5) { display: none; }
  .desktop-nav { display: none !important; }
  #hamburger { display: flex !important; }
}

/* ═══ VIDEO SECTION ═══ */
.video-section {
  background: #f5ece0;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(159,166,148,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 30%, rgba(62,75,84,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.video-section-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.video-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9fa694;
  margin-bottom: 16px;
}

.video-rule {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(159,166,148,0.6);
}

.video-heading {
  font-family: 'Schneidler BT', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #3e4b54;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 36px;
}

.video-frame {
  position: relative;
  background: #000;
  box-shadow:
    0 2px 4px rgba(62,75,84,0.08),
    0 8px 24px rgba(62,75,84,0.12),
    0 24px 64px rgba(62,75,84,0.10),
    0 0 0 1px rgba(62,75,84,0.08);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

@media (max-width: 640px) {
  .video-section { padding: 60px 20px; }
  .video-heading { margin-bottom: 24px; }
}
