/* ============================================================
   RCCG Trinity Tabernacle — Main Stylesheet
   Theme: Navy + Gold (matches attendance system)
   Fonts: Cinzel (headings) + DM Sans (body)
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9993A;
  --gold-lt:     #E8C46A;
  --gold-dk:     #8B6820;
  --gold-pale:   rgba(201,153,58,.08);
  --navy:        #0D1B2A;
  --navy-lt:     #162840;
  --navy-mid:    #1E3A5F;
  --white:       #FAFAF8;
  --off-white:   #F2EFE8;
  --muted:       #8A96A8;
  --text:        #2C3E50;
  --error:       #E05A5A;
  --success:     #4CAF7D;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 8px 40px rgba(0,0,0,.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.18);
  --transition:  .25s ease;
  --max-w:       1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
.cinzel { font-family: 'Cinzel', serif; }

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  line-height: 1.25;
  color: var(--navy);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

.section-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,153,58,.3);
}
.btn-gold:hover { box-shadow: 0 8px 30px rgba(201,153,58,.45); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13,27,42,.25);
}
.btn-navy:hover { background: var(--navy-lt); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold-pale); }

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 18px 0;
}

.nav.scrolled {
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-mark svg { width: 24px; height: 24px; }

.nav-logo-text { line-height: 1.2; }
.nav-logo-text .main { font-family: 'Cinzel', serif; font-size: 15px; color: var(--white); letter-spacing: .04em; }
.nav-logo-text .sub  { font-size: 10px; color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }

.nav-cta { margin-left: 8px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
}

.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 11px 14px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.nav-mobile a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav-mobile.open { display: flex; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(201,153,58,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(30,58,95,.6) 0%, transparent 60%),
    linear-gradient(160deg, #0D1B2A 0%, #091420 100%);
}

/* Decorative cross pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,153,58,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,153,58,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-image {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  object-fit: cover;
  opacity: .30;
  mask-image: linear-gradient(to left, rgba(0,0,0,.6) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.6) 0%, transparent 100%);
}

@media screen and (max-width: 767px) {
.hero-image {
    width: 100%;
}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .hero-image {
    width: 100%;
}
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1.5px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 6vw, 68px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span { color: var(--gold-lt); }

.hero-desc {
  /*font-size: 17px;*/
  font-size: 20px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s infinite;
}

.hero-scroll svg { width: 20px; height: 20px; opacity: .5; }

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

/* ── About strip (homepage) ── */
.about-strip { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-image-badge .num {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  color: var(--gold-lt);
  line-height: 1;
}

.about-image-badge .lbl { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 4px; }

.about-text .section-subtitle { max-width: none; }
.about-text .vision-box {
  margin-top: 28px;
  padding: 20px;
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about-text .vision-box p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
}

.about-text .vision-box strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 8px;
}

/* ── Services section ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(201,153,58,.3);
}

.service-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,153,58,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 18px;
  font-family: 'Cinzel', serif;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.service-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dk);
  background: var(--gold-pale);
  padding: 5px 10px;
  border-radius: 20px;
}

/* ── Weekly schedule ── */
.schedule { background: var(--navy); }

.schedule .section-title,
.schedule .section-label { color: var(--white); }
.schedule .section-subtitle { color: rgba(255,255,255,.5); }
.schedule .section-title { color: var(--gold-lt); }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.schedule-day {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,153,58,.15);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: background var(--transition), border-color var(--transition);
}

.schedule-day:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,153,58,.35);
}

.schedule-day .day-name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.schedule-item { margin-bottom: 12px; }
.schedule-item:last-child { margin-bottom: 0; }

.schedule-item .prog-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.schedule-item .prog-time {
  font-size: 14px;
  color: rgba(255,255,255,.45);
}

/* ── YouTube section ── */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-mid);
}

.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  transition: background var(--transition);
}

.video-card:hover .video-play { background: rgba(0,0,0,.15); }

.video-play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: transform var(--transition);
}

.video-card:hover .video-play-btn { transform: scale(1.1); }
.video-play-btn svg { width: 20px; height: 20px; fill: var(--navy); margin-left: 3px; }

.video-info { padding: 16px; }
.video-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-info .video-date { font-size: 14px; color: rgba(255,255,255,.4); }

.youtube-cta { text-align: center; }

/* ── Check-in CTA band ── */
.checkin-band {
  background: linear-gradient(135deg, var(--navy-lt) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.checkin-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(201,153,58,.12) 0%, transparent 70%);
}

.checkin-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.checkin-band h2 { color: var(--white); margin-bottom: 8px; }
.checkin-band p  { color: rgba(255,255,255,.55); font-size: 15px; max-width: 440px; }

/* ── Contact strip on homepage ── */
.contact-strip { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: 0;
}

.contact-item p, .contact-item a {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-item a:hover { color: var(--gold-dk); }

/* ── Socials ── */
.social-links { display: flex; gap: 10px; margin-top: 12px; }

.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--navy);
  border: 1px solid rgba(201,153,58,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}

.social-link:hover { background: var(--navy-lt); border-color: var(--gold); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

/* ── Footer ── */
.footer { background: var(--navy); padding: 56px 0 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p { font-size: 16px; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 14px; }
.footer-col h5 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 16px; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,153,58,.1) 0%, transparent 65%),
    linear-gradient(160deg, #0D1B2A 0%, #091420 100%);
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(28px, 5vw, 48px); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.5); font-size: 15px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Gallery page ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

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

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,.5);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
}

.gallery-item:hover .overlay { opacity: 1; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }

/* ── Giving page ── */
.giving-hero { background: var(--navy); }
.giving-accounts { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.account-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.account-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}

.account-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: var(--gold-pale);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.account-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}

.account-card .account-desc { font-size: 16px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }

.account-detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 16px;
}

.account-detail:last-child { border-bottom: none; }
.account-detail .lbl { color: var(--muted); }
.account-detail .val { font-weight: 600; color: var(--navy); text-align: right; }

.giving-verse {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 0;
}

.giving-verse blockquote {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 12px;
}

.giving-verse cite { font-size: 16px; color: var(--gold-dk); font-style: normal; font-weight: 600; }

/* ── Membership form page ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
}

.form-section-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.form-section-title:first-child { margin-top: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group select {
  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 d='M1 1l5 5 5-5' stroke='%238A96A8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-group input::placeholder { color: rgba(0,0,0,.3); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-note { font-size: 14px; color: var(--muted); margin-top: 4px; }

.form-optional {
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.form-alert {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  display: none;
}

.form-alert.error   { background: rgba(224,90,90,.1); border: 1px solid rgba(224,90,90,.3); color: #c0392b; }
.form-alert.success { background: rgba(76,175,125,.1); border: 1px solid rgba(76,175,125,.3); color: #27ae60; }
.form-alert.show    { display: block; }

.form-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(13,27,42,.2);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Fade-in animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid    { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; }
  .about-image-wrap img { height: 280px; }
  .about-image-badge { bottom: -14px; right: 16px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .giving-accounts { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
}

@media (max-width: 700px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .form-row      { grid-template-columns: 1fr; }
  .form-card     { padding: 24px 20px; }
  .checkin-band-inner { flex-direction: column; text-align: center; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
