/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #c0392b;
  --red-dk: #96281b;
  --gold:   #d4a017;
  --cream:  #fdf6ec;
  --text:   #2c2c2c;
  --muted:  #666;
  --white:  #ffffff;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --transition: 0.4s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
}

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

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2rem;
  height: 64px;
  background: linear-gradient(90deg, #0d2d3d 0%, #1a4a5e 30%, #ffffff 50%, #1a4a5e 70%, #0d2d3d 100%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(212, 160, 23, 0.3);
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  margin: 0 auto;
  mix-blend-mode: multiply;
}


.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; justify-content: center; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  font-family: 'Cinzel', Georgia, serif;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: #ffd200;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: #ffd200; }

.nav-donate {
  background: var(--red); color: var(--white);
  padding: 0.45rem 1.2rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  font-family: 'Cinzel', Georgia, serif;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 12px rgba(192,57,43,0.4);
}
.nav-donate:hover { background: var(--red-dk); box-shadow: 0 5px 18px rgba(192,57,43,0.6); }

.nav-right {
  display: flex; align-items: center; gap: 0.9rem; justify-content: flex-end;
}
.nav-right > a:not(.nav-donate) {
  color: rgba(255,255,255,0.7); font-size: 1rem;
  transition: color var(--transition);
}
.nav-right > a:not(.nav-donate):hover { color: #ffd200; }

.nav-hamburger {
  display: none; cursor: pointer; font-size: 1.4rem;
  color: rgba(255,255,255,0.85);
  background: none; border: none; padding: 0.2rem 0.4rem;
}

/* ===== HERO SLIDESHOW ===== */
.hero {
  position: relative; height: 100vh; min-height: 500px;
  margin-top: 64px;
  padding: 1.2rem;
  background: #0d2d3d;
}

.hero-slides {
  position: relative; width: 100%; height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
  border-radius: 20px;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(13, 45, 61, 0.45) 0%,
    rgba(192, 57, 43, 0.2) 40%,
    rgba(212, 160, 23, 0.15) 70%,
    rgba(13, 45, 61, 0.6) 100%
  );
}

.hero-content {
  position: absolute; bottom: calc(10% + 1.2rem); left: 50%; transform: translateX(-50%);
  width: 90%; max-width: 800px; text-align: center; color: var(--white);
  z-index: 5;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700;
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2; text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}
.hero-caption {
  font-size: 1rem; opacity: 0.9; text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  margin-bottom: 1.5rem;
}
.hero-btn {
  display: inline-block;
  background: var(--red); color: var(--white);
  padding: 0.75rem 2rem; border-radius: 50px;
  font-weight: 500; font-size: 0.82rem; letter-spacing: 0.1em;
  font-family: 'Cinzel', Georgia, serif;
  transition: background var(--transition), transform var(--transition);
}
.hero-btn:hover { background: var(--red-dk); transform: translateY(-2px); }

.hero-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.hero-dot.active { background: var(--white); transform: scale(1.3); }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.2); border: none; cursor: pointer;
  color: white; font-size: 1.6rem; width: 48px; height: 48px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.hero-arrow:hover { background: rgba(255,255,255,0.4); }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }

/* ===== HERO EVENT CARD (top-left overlay) ===== */
.hero-event-card {
  position: absolute;
  top: 2.5rem;
  left: 2rem;
  z-index: 10;
  background: linear-gradient(135deg, rgba(15,30,45,0.92) 0%, rgba(30,58,74,0.92) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  max-width: 280px;
  color: white;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-event-card .card-eyebrow {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.hero-event-card .card-pill {
  background: linear-gradient(90deg, #c0392b, #e74c3c);
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.22rem 0.7rem; border-radius: 50px;
  color: white; box-shadow: 0 2px 8px rgba(192,57,43,0.5);
}
.hero-event-card .card-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.hero-event-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem; font-weight: 700;
  line-height: 1.25; margin-bottom: 0.6rem;
  color: #ffd200;
}
.hero-event-card .card-date {
  font-size: 0.78rem; opacity: 0.7; margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.3rem;
}
.hero-event-card .card-desc {
  font-size: 0.8rem; opacity: 0.75; line-height: 1.55;
  margin-bottom: 1.1rem;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.hero-event-card .card-divider {
  height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 1rem;
}
.hero-event-card .card-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(90deg, #c0392b, #e74c3c);
  color: white;
  font-size: 0.78rem; font-weight: 700;
  padding: 0.5rem 1.2rem; border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 12px rgba(192,57,43,0.4);
}
.hero-event-card .card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.5);
}

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }

.section-title {
  text-align: center; margin-bottom: 3rem;
}
.section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700;
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 0.02em;
  color: var(--text); margin-bottom: 0.5rem;
}
.section-title .accent-line {
  width: 60px; height: 4px; background: var(--red);
  margin: 0 auto; border-radius: 2px;
}
.section-title p {
  color: var(--muted); margin-top: 0.75rem; max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(135deg, #0d3d52 0%, #1a6b8a 50%, #0d3d52 100%);
  padding: 5rem 2rem;
}
.about .about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4rem; align-items: center;
}

/* Left visual panel */
.about-visual {
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
.about-mandala {
  font-size: 8rem; line-height: 1;
  color: rgba(255, 210, 0, 0.35);
  animation: spin-slow 30s linear infinite;
  user-select: none;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.about-stat {
  text-align: center;
}
.about-stat span {
  display: block; font-size: 2.8rem; font-weight: 700;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #ffd200; line-height: 1;
}
.about-stat small {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}
.about-visual { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem; }
.about-mandala { width: 100%; text-align: center; flex-basis: 100%; }

/* Right content panel */
.about-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: white; margin-bottom: 0.5rem;
}
.about-content .accent-line { margin: 0 0 1.5rem; }
.about-content p {
  color: rgba(255,255,255,0.8); font-size: 1rem;
  line-height: 1.8; margin-bottom: 1rem;
}
.about-content em { color: #ffd200; font-style: italic; }

.about-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.badge {
  padding: 0.45rem 1.1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.03em;
  border: none;
}
.badge-red    { background: #c0392b; color: white; }
.badge-teal   { background: #0e7490; color: white; }
.badge-gold   { background: #d4a017; color: #1a1a1a; }
.badge-purple { background: #7c3aed; color: white; }

@media (max-width: 768px) {
  .testimonial-photo { width: 120px; height: 120px; }
  .testimonial-photo-placeholder { width: 120px; height: 120px; font-size: 2rem; }
  .event-card { width: 100%; min-width: unset; flex: 1 1 280px; }
  .about .about-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-visual { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .about-mandala { display: none; }
}

/* ===== MISSION & VISION ===== */
.mission { background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.mission > .section-title h2 { color: white; }
.mission > .section-title p { color: rgba(255,255,255,0.65); }
.mission > .section-title .accent-line { background: #ffd200; }
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; max-width: 1000px; margin: 0 auto;
}
.mission-card {
  border-radius: var(--radius);
  padding: 2.5rem 2rem; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  color: white;
}
.mission-card.mission { background: linear-gradient(135deg, #c0392b 0%, #8e1b0e 60%, #a07010 100%); }
.mission-card.vision  { background: linear-gradient(135deg, #1a6b8a 0%, #0d3d52 60%, #8e1b0e 100%); }

/* decorative circle top-right */
.mission-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.mission-card::after {
  content: ''; position: absolute; bottom: -30px; left: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.mission-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mission-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem; font-weight: 700; color: white;
  margin-bottom: 1rem;
}
.mission-card p { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 0.8rem; }
@media (max-width: 768px) {
  .mission-grid { grid-template-columns: 1fr; }
}

/* ===== EVENTS ===== */
.events { background: linear-gradient(160deg, #fdf0e0 0%, #fce8cc 50%, #f9ddb8 100%); }
.events-filter {
  display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.4rem 1.1rem; border-radius: 50px; border: 2px solid var(--red);
  background: transparent; color: var(--red); font-size: 0.75rem; font-weight: 500;
  font-family: 'Cinzel', Georgia, serif; letter-spacing: 0.06em;
  cursor: pointer; transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--red); color: white; }

.events-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.8rem; max-width: 1200px; margin: 0 auto;
}

.event-card { width: calc(33.333% - 1.8rem); min-width: 280px; flex: 0 1 320px; }

.event-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.14); }

.event-card img {
  width: 100%; height: 200px; object-fit: cover;
}
.event-card-body { padding: 1.2rem 1.4rem 1.5rem; }
.event-card-category {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem;
}
.event-card h3 { font-weight: 700; margin-bottom: 0.4rem; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.2rem; }
.event-card .event-date-tag {
  font-size: 0.8rem; color: var(--muted); margin-bottom: 0.6rem;
}
.event-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.65; font-family: 'EB Garamond', Georgia, serif; }
.upcoming-tag {
  display: inline-block; background: var(--gold); color: #000;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 0.15rem 0.6rem; border-radius: 50px; text-transform: uppercase;
  margin-left: 0.5rem; vertical-align: middle;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: linear-gradient(160deg, #1e3a4a 0%, #0d2d3d 50%, #1a4a5e 100%); }
.testimonials .section-title h2 { color: white; }
.testimonials .section-title .accent-line { background: #ffd200; }
.testimonial-slide blockquote::before { color: #ffd200; opacity: 0.5; }
.testimonial-author { color: #ffd200; }
.testimonial-location { color: rgba(255,255,255,0.6); }
.read-more-btn { color: #ffd200; }
.t-dot { background: rgba(255,255,255,0.3); }
.t-dot.active { background: #ffd200; }
.testimonial-carousel { max-width: 700px; margin: 0 auto; position: relative; min-height: 200px; }
.testimonial-slide {
  display: none; text-align: center; padding: 1rem;
  animation: fadeIn 0.5s ease;
}
.testimonial-slide.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.testimonial-photo {
  width: 180px; height: 180px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 1rem;
  border: 3px solid var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.testimonial-photo-placeholder {
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--cream); border: 3px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 2.5rem; color: var(--red);
}

.testimonial-slide blockquote {
  font-size: 1.05rem; line-height: 1.85; color: white;
  font-style: italic; margin-bottom: 1.2rem;
  position: relative;
  font-family: 'EB Garamond', Georgia, serif;
}
.testimonial-slide blockquote::before {
  content: '\201C'; font-size: 4rem; color: #ffd200;
  opacity: 0.7; position: absolute; top: -1.5rem; left: -0.5rem;
  font-style: normal; line-height: 1;
}
.testimonial-author { font-weight: 700; color: #ffd200; font-size: 1rem; }
.testimonial-location { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 0.15rem; }

.testimonial-nav {
  display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.5rem;
}
.t-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: background var(--transition);
}
.t-dot.active { background: #ffd200; }

.read-more-btn {
  background: none; border: none; color: #ffd200;
  font-size: 0.82rem; font-weight: 700; cursor: pointer;
  padding: 0.3rem 0; margin-top: 0.4rem;
  font-family: 'Montserrat', sans-serif;
}
.read-more-btn:hover { text-decoration: underline; }

/* ===== SPONSORS ===== */
.sponsors { background: linear-gradient(160deg, #7a4100 0%, #b36200 40%, #d4800a 100%); }
.sponsors .section-title h2 { color: white; }
.sponsors .section-title p { color: rgba(255,255,255,0.65); }
.sponsors .section-title .accent-line { background: #ffd200; }
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.sponsor-card {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.sponsor-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
a.sponsor-card { text-decoration: none; color: inherit; cursor: pointer; }
.sponsor-logo-wrap {
  width: 100%; height: 140px;
  display: flex; align-items: center; justify-content: center;
  background: #f8f8f8; border-bottom: 1px solid #eee; overflow: hidden;
}
.sponsor-logo-wrap img { max-width: 90%; max-height: 120px; object-fit: contain; }
.sponsor-logo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #c0392b 0%, #96281b 100%);
  font-size: 1.1rem; font-weight: 800; color: white;
  text-align: center; padding: 1rem; letter-spacing: 0.03em;
}
.sponsor-card-body { padding: 1rem 1.2rem 1.4rem; flex: 1; }
.sponsor-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--text); }
.sponsor-card-body p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ===== FOOTER ===== */
footer {
  background: #1e3a4a; color: rgba(255,255,255,0.8);
  padding: 3.5rem 2rem 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto 2rem;
  align-items: start;
}
.footer-col h4 {
  font-size: 1.1rem; font-weight: 700; color: white;
  margin-bottom: 0.75rem;
}
.footer-col p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 0.5rem; }
.footer-col-center { text-align: center; }
.footer-col-center .social-links { justify-content: center; }

.footer-subscribe { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-subscribe input {
  padding: 0.75rem 1rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: white; font-size: 0.85rem; outline: none;
}
.footer-subscribe input::placeholder { color: rgba(255,255,255,0.45); }
.footer-subscribe input:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.12); }
.footer-subscribe button {
  padding: 0.75rem 1rem; border-radius: 8px; border: none;
  background: #3a8fc4; color: white; font-size: 0.78rem; font-weight: 500;
  font-family: 'Cinzel', Georgia, serif; letter-spacing: 0.06em;
  cursor: pointer; transition: background var(--transition);
}
.footer-subscribe button:hover { background: #2d7aaa; }
.footer-subscribe button:disabled { opacity: 0.7; cursor: default; }

footer .social-links { display: flex; gap: 0.8rem; margin-top: 1rem; }
footer .social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,0.75);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
footer .social-links a:hover { border-color: var(--red); color: var(--white); background: var(--red); }
footer .social-links a.fb:hover  { background: #1877f2; border-color: #1877f2; }
footer .social-links a.ig:hover  { background: #e1306c; border-color: #e1306c; }
footer .social-links a.wa:hover  { background: #25d366; border-color: #25d366; }
footer .social-links a.li:hover  { background: #0a66c2; border-color: #0a66c2; }
footer .copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-align: center; margin-top: 1rem; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-col-center { text-align: left; }
  .footer-col-center .social-links { justify-content: flex-start; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    grid-template-columns: auto 1fr auto;
    background: linear-gradient(90deg, #0d2d3d 0%, #1a4a5e 100%);
  }
  .nav-links { display: none; }
  .nav-logo-img { height: 36px; mix-blend-mode: normal; filter: none; border-radius: 6px; }
  .nav-hamburger { display: block; }
  /* reorder: logo first, links hidden middle, right actions last */
  nav .nav-logo  { order: -1; }
  nav .nav-links { order: 0; }
  nav .nav-right { order: 1; }
  .hero { height: 60vh; min-height: 380px; padding: 0.6rem; }
  .hero-arrow { display: none; }
  .hero-content { bottom: 3rem; }
  .hero-dots { bottom: 0.8rem; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 64px; left: 0; right: 0;
    background: #0d2d3d; padding: 1.5rem 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    gap: 1rem;
  }
  .hero-slides { border-radius: 14px; }
  .hero-slide { border-radius: 14px; }
  .hero-overlay { border-radius: 14px; }
  .hero-event-card {
    top: 1rem;
    bottom: auto;
    left: 1rem; right: 1rem;
    max-width: calc(100% - 2rem);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex; align-items: center; gap: 0.75rem;
    flex-wrap: nowrap;
  }
  .hero-event-card .card-eyebrow { margin-bottom: 0; flex-shrink: 0; }
  .hero-event-card h3 { font-size: 0.85rem; margin-bottom: 0; flex: 1; }
  .hero-event-card .card-date { display: none; }
  .hero-event-card .card-desc { display: none; }
  .hero-event-card .card-divider { display: none; }
  .hero-event-card .card-btn { padding: 0.35rem 0.8rem; font-size: 0.68rem; white-space: nowrap; flex-shrink: 0; }
  section { padding: 3rem 1.2rem; }
}
