/* ===================== Design Tokens ===================== */
:root {
  --bg-0: #080c16;      /* darkest background */
  --bg-1: #0b111f;      /* primary section bg */
  --bg-2: #111a2c;      /* alt panel bg */
  --bg-3: #16213a;      /* card bg */
  --bg-4: #1b2740;      /* elevated card / input bg */
  --border: rgba(255, 255, 255, 0.09);
  --border-light: rgba(255, 255, 255, 0.14);

  --text-primary: #f5f7fb;
  --text-secondary: #93a1bd;
  --text-muted: #6d7b99;

  --blue: #229ce8;
  --blue-light: #3fb2f7;
  --blue-dark: #157dc2;
  --blue-tint: rgba(34, 156, 232, 0.12);

  --gold: #d4af6a;
  --gold-light: #ecd6a3;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --container: 1180px;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-1);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 16px;
  color: var(--text-primary);
}

p { margin: 0 0 16px; color: var(--text-secondary); }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 64px 0; }

.section--bg1 { background: var(--bg-1); }
.section--bg2 { background: var(--bg-2); }

.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--blue-tint);
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

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

.eyebrow-wrap { text-align: center; }

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-heading h2 { font-size: 34px; margin-bottom: 12px; }
.section-heading p { margin: 0; font-size: 16px; }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
  color: #051625;
  box-shadow: 0 8px 22px rgba(34, 156, 232, 0.35);
}
.btn--primary:hover { opacity: 0.92; }

.btn--dark {
  background: #0c1524;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn--dark:hover { background: #131f34; }

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn--outline:hover { background: rgba(255,255,255,0.05); }

.btn--link {
  background: transparent;
  color: var(--blue-light);
  padding: 0;
  font-weight: 600;
}
.btn--link:hover { text-decoration: underline; }

.btn--full { width: 100%; }
.btn--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
.btn--disabled:hover { transform: none; }

.btn--sm { padding: 9px 18px; font-size: 14px; }

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 22, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 54px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 2px;
  transition: color 0.15s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--text-primary); }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  color: var(--text-primary);
}

/* ===================== Hero ===================== */
.hero-photo {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6,10,18,0.55) 0%, rgba(6,10,18,0.75) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(212,175,106,0.25), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(34,156,232,0.25), transparent 55%),
    linear-gradient(135deg, #1c2947, #0a0f1c 70%);
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 2px, transparent 2px, transparent 60px);
  opacity: 0.5;
}
.hero-photo .hero-inner { position: relative; max-width: 720px; padding: 0 24px; }
.hero-photo h1 { font-size: 52px; margin-bottom: 18px; }
.hero-photo p { font-size: 18px; color: #dbe3f0; }

.hero-banner {
  padding: 64px 0;
  text-align: center;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.hero-banner h1 { font-size: 44px; margin-bottom: 14px; }
.hero-banner p { max-width: 620px; margin: 0 auto; font-size: 17px; }

.hero-banner--blue {
  background: linear-gradient(135deg, #2aa9f0, #1c8ee0);
}
.hero-banner--blue h1,
.hero-banner--blue p { color: #ffffff; }
.hero-banner--blue p { color: rgba(255,255,255,0.9); }

/* ===================== Cards ===================== */
.card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg { width: 24px; height: 24px; }

/* ===================== Home: Welcome ===================== */
.welcome-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  background: var(--bg-0);
  border-bottom: 1px solid var(--border);
}
.welcome-strip .container { display: contents; }

.event-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-art img {
  width: 100%;
  max-width: 420px;
  height: auto;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  transform-origin: center;
  will-change: transform;
  filter: drop-shadow(0 0 0 rgba(212, 175, 106, 0));
}
.event-art a { display: block; outline: none; }
.event-art a:hover img,
.event-art a:focus-visible img {
  transform: scale(1.08) rotate(-1.5deg);
  filter: drop-shadow(0 0 24px rgba(212, 175, 106, 0.55)) brightness(1.05) saturate(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .event-art img { transition: none; }
}

.event-copy h2 { font-size: 30px; }
.event-copy p { font-size: 16px; max-width: 460px; }

/* ===================== Sunday panel ===================== */
.sunday-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
.sunday-list-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}
.sunday-list-item h4 { margin: 0 0 6px; font-size: 17px; }
.sunday-list-item p { margin: 0; font-size: 15px; }
.sunday-list-item p + p { margin-top: 2px; }

.expect-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-secondary);
}
.expect-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  margin-top: 9px;
  flex-shrink: 0;
}
.expect-list b { color: var(--text-primary); }

/* ===================== Grids ===================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.feature-card .icon-circle { margin: 0 auto 18px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; margin-bottom: 16px; }

/* ===================== Sermon strip ===================== */
.sermon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.video-placeholder {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--bg-4), var(--bg-2));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.video-embed {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.sermon-copy .kicker { color: var(--blue-light); font-weight: 600; margin-bottom: 8px; display:block; }

/* ===================== Footer ===================== */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
.footer-brand h3 { font-size: 19px; margin-bottom: 12px; }
.footer-brand p { font-size: 14.5px; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
}
.social-row a:hover { color: var(--text-primary); border-color: var(--text-secondary); }

.footer-col h4 { font-size: 15.5px; margin-bottom: 18px; color: var(--text-primary); }
.footer-col li { margin-bottom: 12px; font-size: 14.5px; }
.footer-col a { color: var(--text-secondary); }
.footer-col a:hover { color: var(--text-primary); }
.footer-col .accent { color: var(--blue-light); font-weight: 600; }

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-secondary);
}
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--blue-light); width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ===================== Page hero (inner pages) ===================== */
.page-hero {
  padding: 70px 0 60px;
  text-align: center;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: 42px; margin-bottom: 14px; }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 17px; }

/* ===================== About page ===================== */
.story-block h2 { font-size: 28px; }
.belief-item { margin-bottom: 26px; }
.belief-item h3 { font-size: 18px; margin-bottom: 6px; }
.belief-item p { margin: 0; font-size: 15px; }

.leader-card {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 28px;
}
.leader-photo {
  width: 108px; height: 108px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(145deg, #2b3a5c, #16213a);
  border: 2px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.leader-card h3 { margin-bottom: 4px; font-size: 19px; }
.leader-role { color: var(--blue-light); font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.leader-contact { font-size: 14px; color: var(--text-secondary); margin-bottom: 6px; display:flex; align-items:center; justify-content:center; gap:8px;}

/* ===================== New Here ===================== */
.when-where-icon { display:flex; gap:16px; margin-bottom: 32px; }
.when-where-icon h3 { font-size: 19px; margin-bottom: 10px; }
.when-where-icon p { font-size: 15px; margin: 0 0 4px; }
.when-where-icon b { color: var(--text-primary); }

.map-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
  position: relative;
  background: var(--bg-4);
  margin: 18px 0 12px;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: relative;
  z-index: 1;
}
.map-pill-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #fff;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: background 0.15s ease;
}
.map-pill-link:hover { background: #f2f2f2; }

.overview-card h4 { color: var(--blue-light); font-size: 17px; margin: 22px 0 8px; }
.overview-card h4:first-of-type { margin-top: 0; }
.overview-card ul { margin-top: 8px; }
.overview-card ul li {
  font-size: 14.5px;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}
.overview-card ul li::before {
  content: "•";
  position: absolute; left: 2px; color: var(--blue-light);
}

/* ===================== Ministries ===================== */
.ministry-card { text-align: center; padding: 36px 26px; }

/* ===================== Sermons ===================== */
.sermons-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.sermons-head h2 { margin: 0; font-size: 24px; }
.sermon-feature { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--bg-3); }
.sermon-feature .video-embed { border-radius: 0; border: none; aspect-ratio: auto; height: 420px; }
.sermon-feature .sermon-feature-body { padding: 28px 32px; }
.sermon-feature h3 { font-size: 20px; }
.sermon-feature p { margin: 0; font-size: 15px; }

.prev-messages { margin-top: 56px; }
.prev-messages h2 { font-size: 24px; margin-bottom: 24px; }
.prev-card { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); background: var(--bg-3); }
.prev-card .video-embed { border-radius: 0; border: none; }

.prev-card-link { display: block; }
.prev-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-4);
}
.prev-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.prev-card-link:hover .prev-card-thumb img { transform: scale(1.06); }
.prev-card-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.prev-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(8, 12, 22, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.prev-card-link:hover .prev-play { background: rgba(34, 156, 232, 0.85); }
.prev-card-body { padding: 16px 18px; }
.prev-card-body h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prev-card-date { font-size: 13px; color: var(--text-muted); }
.prev-card-fallback .prev-card-body h4 { color: var(--blue-light); }

.prev-card-skeleton .prev-card-body { padding: 16px 18px; }
.skeleton-line { height: 10px; border-radius: 6px; background: var(--bg-4); margin-bottom: 8px; }
.skeleton-line.w60 { width: 60%; }
.skeleton-line.w90 { width: 90%; }

/* ===================== Events ===================== */
.event-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px;
  margin-bottom: 28px;
}
.event-date-box {
  background: var(--bg-4);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
}
.event-date-box .icon-circle { margin: 0 auto 14px; background: transparent; color: var(--blue-light); }
.event-date-box .date-label { color: var(--blue-light); font-weight: 700; font-size: 16px; }
.event-body h3 { font-size: 22px; margin-bottom: 8px; }
.event-meta { display: flex; gap: 22px; margin: 12px 0 18px; color: var(--text-secondary); font-size: 14.5px; }
.event-meta span { display: flex; align-items: center; gap: 6px; }

/* ===================== Rental ===================== */
.rental-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.feature-checklist li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-secondary);
}
.feature-checklist li:last-child { border-bottom: none; }
.feature-checklist svg { color: var(--blue-light); flex-shrink: 0; }

.notice-box {
  border: 1px solid rgba(34,156,232,0.4);
  background: rgba(34,156,232,0.08);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 26px;
}
.notice-box .notice-label {
  display: flex; align-items: center; gap: 8px;
  color: var(--blue-light); font-weight: 700; font-size: 13px;
  letter-spacing: 0.03em; margin-bottom: 8px;
}
.notice-box p { margin: 0 0 6px; font-size: 14.5px; color: var(--text-secondary); }
.notice-box p:last-child { margin-bottom: 0; }
.notice-box strong { color: var(--text-primary); }
.notice-box a { color: var(--blue-light); font-weight: 600; }

.info-box { background: var(--bg-4); border-radius: var(--radius-md); padding: 22px; margin-top: 24px; display:flex; gap: 14px; }
.info-box p { margin: 0 0 8px; font-size: 14.5px; }
.info-box a { color: var(--blue-light); font-weight: 600; font-size: 14px; }

.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--bg-4), var(--bg-2));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

/* ===================== Forms ===================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg-4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14.5px;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.field-link { float: right; font-size: 13px; color: var(--blue-light); font-weight: 500; }

.checkbox-row { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 14px; color: var(--text-secondary); }
.checkbox-row input { width: 16px; height: 16px; }

/* ===================== Member login ===================== */
.login-wrap { display: flex; justify-content: center; padding: 90px 24px; }
.login-card {
  width: 100%; max-width: 480px;
  padding: 44px 40px;
  text-align: center;
}
.login-card .icon-circle { width: 60px; height: 60px; margin: 0 auto 22px; }
.login-card h1 { font-size: 28px; }
.login-card > p { font-size: 15px; margin-bottom: 26px; }
.login-card .form-field { text-align: left; }
.login-card .foot-note { margin-top: 20px; font-size: 14px; color: var(--text-secondary); }
.login-card .foot-note a { color: var(--blue-light); font-weight: 600; }

/* ===================== Contact ===================== */
.contact-info-row { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-info-row h4 { margin: 0 0 4px; font-size: 16px; }
.contact-info-row p { margin: 0; font-size: 14.5px; }

.map-box--wide { height: 260px; margin-bottom: 56px; }

.connect-card { max-width: 760px; margin: 0 auto; padding: 40px; }
.connect-card h2 { font-size: 24px; }
.connect-card > p { font-size: 15px; margin-bottom: 26px; }

/* ===================== Mission ===================== */
.mission-block { text-align: center; max-width: 720px; margin: 0 auto; }
.mission-block h2 { font-size: 28px; }
.mission-block p { font-size: 17px; color: #cdd6e6; }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .site-header .container { position: relative; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--bg-1);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: inline-flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2, .sunday-grid, .sermon-grid, .rental-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .event-date-box { max-width: 220px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero-photo h1 { font-size: 38px; }
  .page-hero h1 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .header-actions .btn--dark { display: none; }
}
