/* ============================================
   MY DISTRICT FOR CHRIST – Main Stylesheet
   Campaign brand: #F07B10 (SDA Orange), #1A1A1A, #FFFFFF
   ============================================ */

:root {
  --orange: #F07B10;
  --orange-dark: #C25F00;
  --orange-light: #FFF0DE;
  --black: #1A1A1A;
  --dark-2: #2C2C2C;
  --dark-3: #3D3D3D;
  --gray-mid: #888;
  --gray-light: #F5F5F0;
  --white: #FFFFFF;
  --text-body: #333333;
  --border: #E0DDD8;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1160px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============ CONTAINER ============ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
  border-bottom: 2px solid var(--orange);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }

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

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 56px; width: auto; }

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-social {
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
  flex-shrink: 0;
}
.btn-social:hover { color: var(--white); background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--orange);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,255,255,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #F07B10 0%, #C25F00 100%);
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px 36px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  background: rgba(0,0,0,0.2);
  padding: 5px 14px;
  border-radius: 100px;
}

.hero-campaign-logo {
  max-width: 480px;
  width: 80%;
  margin: 0 auto 16px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-title em { font-style: italic; font-weight: 700; }
.hero-title strong { display: block; font-size: 1.4em; font-style: normal; }

.hero-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-bottom: 12px;
}

.hero-mission {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--white);
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover { background: var(--dark-2); border-color: var(--dark-2); text-decoration: none; color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); text-decoration: none; color: var(--white); }

.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

.hero-dates {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.date-badge {
  background: rgba(0,0,0,0.25);
  padding: 4px 14px;
  border-radius: 100px;
  font-weight: 600;
}
.date-sep { opacity: 0.5; }

.hero-scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block; width: 20px; height: 32px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 80% { opacity: 0; transform: translateX(-50%) translateY(12px); } 100% { opacity: 0; } }

/* ============ STATS BAND ============ */
.stats-band {
  background: var(--black);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.1;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-align: center;
}

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-light); }

.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-intro {
  font-size: 17px;
  color: #555;
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text p { color: #444; margin-bottom: 16px; line-height: 1.8; }
.about-text strong { color: var(--black); }
.about-vision {
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  margin-top: 28px;
  background: var(--orange-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-vision p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--orange-dark);
  margin-bottom: 8px !important;
}
.about-vision cite { font-size: 13px; color: #666; font-style: normal; }

.about-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--orange);
  min-height: 300px;
  display: flex; align-items: flex-end;
}
.banner-img { width: 100%; display: block; }
.banner-overlay-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, rgba(240,123,16,0.7), rgba(194,95,0,0.9));
  padding: 24px;
}
.banner-overlay-text span {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
}
.banner-fallback .banner-overlay-text { position: static; }

/* ============ SCHEDULE ============ */
.schedule-filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.schedule-filter, .schedule-search {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  color: var(--text-body);
  outline: none;
  transition: border-color var(--transition);
}
.schedule-filter { min-width: 180px; }
.schedule-search { flex: 1; min-width: 240px; }
.schedule-filter:focus, .schedule-search:focus { border-color: var(--orange); }

.schedule-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
}
.schedule-table thead {
  background: var(--black);
  color: var(--white);
}
.schedule-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.schedule-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:hover { background: var(--orange-light); }

.live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #DC2626; color: white;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.live-badge::before { content: ''; display: block; width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.stream-link { color: var(--orange-dark); font-weight: 600; font-size: 13px; }

.schedule-note { font-size: 13px; color: var(--gray-mid); margin-top: 16px; }
.schedule-note a { color: var(--orange-dark); }
.loading-row td { text-align: center; padding: 40px; color: var(--gray-mid); }

/* ============ LIVESTREAM ============ */
.live-indicator {
  background: #DC2626;
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.live-dot {
  width: 10px; height: 10px;
  background: white;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stream-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.stream-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange); }

.stream-card-thumb {
  background: var(--black);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.stream-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
}
.play-overlay svg { color: white; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.stream-card-info { padding: 14px 16px; }
.stream-card-title { font-weight: 600; font-size: 14px; color: var(--black); margin-bottom: 4px; }
.stream-card-meta { font-size: 12px; color: var(--gray-mid); }

.stream-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-mid);
}
.stream-thumb {
  width: 80px; height: 80px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #bbb;
}
.stream-thumb span { display: none; }
.stream-placeholder p { max-width: 400px; margin: 0 auto; font-size: 15px; }
.stream-placeholder p a { color: var(--orange-dark); }

.stream-embed-wrap {
  margin-bottom: 32px;
  text-align: center;
}
.stream-embed-container {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black);
  margin-bottom: 12px;
}
.stream-embed-container iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.social-stream-links {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.social-link-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-body);
  flex: 1; min-width: 220px;
  transition: all var(--transition);
}
.social-link-card:hover { border-color: var(--orange); background: var(--orange-light); text-decoration: none; }
.social-link-card svg { color: var(--orange); flex-shrink: 0; }
.social-link-card strong { display: block; color: var(--black); font-size: 15px; }
.social-link-card span { font-size: 13px; color: var(--gray-mid); }

/* ============ PREACHERS ============ */
.preachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.preacher-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow var(--transition);
}
.preacher-card:hover { box-shadow: var(--shadow-md); }
.preacher-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.preacher-initials {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 12px;
}
.preacher-name { font-weight: 600; font-size: 15px; color: var(--black); margin-bottom: 4px; }
.preacher-origin { font-size: 12px; color: var(--gray-mid); margin-bottom: 8px; }
.preacher-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tag-intl { background: #EFF6FF; color: #1D4ED8; }
.tag-local { background: var(--orange-light); color: var(--orange-dark); }

.preacher-loading { grid-column: 1/-1; text-align: center; color: var(--gray-mid); padding: 40px; }

/* ============ FORMS ============ */
.two-col-forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.campaign-form { margin-top: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
}
.optional { color: var(--gray-mid); font-weight: 400; }
.required { color: #DC2626; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--orange); }
.form-check label { font-size: 14px; color: #555; font-weight: 400; }

.btn-primary.btn-form {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.btn-primary.btn-form:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-full.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
}
.btn-full.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.form-success {
  margin-top: 12px;
  color: #15803D;
  font-size: 14px;
  font-weight: 500;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-details { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--black); }
.contact-item span, .contact-item a { font-size: 14px; color: #555; }
.contact-item a:hover { color: var(--orange-dark); }

.about-logo-col {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 40px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
}
.footer-logo { max-width: 200px; margin: 0 auto 20px; }
.church-tagline { font-size: 13px; color: var(--gray-mid); margin-top: 8px; }

/* ============ SITE FOOTER ============ */
.site-footer {
  background: var(--black);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo-mono { max-height: 40px; width: auto; }
.footer-links {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-vision { font-size: 13px; color: rgba(255,255,255,0.5); font-style: italic; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .about-grid, .two-col-forms, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--black); padding: 20px 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 4px;
    z-index: 99;
  }
  .nav-links.open a { padding: 12px 14px; font-size: 16px; border-radius: var(--radius); }
}

@media (max-width: 600px) {
  /* Nav */
  .nav-inner { height: 64px; gap: 12px; }
  .logo-img { height: 48px; }
  .btn-social { width: 32px; height: 32px; }

  /* Hero — fits phone screen without scrolling */
  .hero { min-height: calc(100vh - 64px); }
  .hero-content { padding: 28px 20px 24px; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 12px; padding: 4px 12px; }
  .hero-title { font-size: clamp(2rem, 11vw, 3rem); margin-bottom: 10px; }
  .hero-tagline { font-size: 13px; margin-bottom: 10px; }
  .hero-mission { font-size: 1rem; margin-bottom: 20px; }
  .hero-cta-group { flex-direction: column; align-items: center; margin-bottom: 16px; }
  .btn { width: 100%; justify-content: center; max-width: 300px; padding: 13px 20px; }
  .hero-dates { font-size: 13px; flex-wrap: wrap; gap: 6px; }
  .hero-scroll-indicator { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(5) { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.1); border-right: none; }
  .stat-num { font-size: 1.6rem; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-title { font-size: 1.7rem; }
  .section-intro { font-size: 15px; }
  .container { padding: 0 16px; }

  /* Social links */
  .social-stream-links { flex-direction: column; }

  /* Schedule */
  .schedule-filter-bar { flex-direction: column; }
  .schedule-filter, .schedule-search { width: 100%; }

  /* Forms */
  .form-group input, .form-group textarea { font-size: 16px; } /* prevents iOS zoom */
}

@media (max-width: 380px) {
  .hero-title { font-size: 1.9rem; }
  .logo-img { height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
}
