/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Roboto', ui-sans-serif, system-ui, sans-serif; color: #1F2937; background: #fff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #8B1A21;
  --primary-dark: #6B1219;
  --gold: #D4AF37;
  --gold-light: #f5efc0;
  --white: #ffffff;
  --surface: #F8F9FA;
  --text: #1F2937;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px -12px rgba(139,26,33,0.25);
  --max-w: 1200px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--gold);
  color: var(--text);
  text-align: center;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announcement-bar a { color: var(--primary); text-decoration: underline; }
@media (max-width: 600px) {
  .announcement-bar { font-size: 0.68rem; padding: 6px 10px; letter-spacing: -0.01em; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}
.nav-brand img { width: 38px; height: 38px; object-fit: contain; border-radius: 4px; flex-shrink: 0; }
.nav-brand-text { min-width: 0; overflow: hidden; }
.nav-brand-text .school-name {
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  font-size: clamp(0.78rem, 3.5vw, 0.92rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.nav-brand-text .school-motto {
  font-size: clamp(0.55rem, 1.6vw, 0.65rem);
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.nav-links a {
  padding: 7px 11px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: #F3F4F6; color: var(--primary); }
.btn-apply {
  background: var(--primary);
  color: #fff;
  padding: 7px 14px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  transition: background 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-apply:hover { background: var(--primary-dark); color: #fff; }
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--primary);
  flex-shrink: 0;
  cursor: pointer;
}
.hamburger svg { width: 24px; height: 24px; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; width: 100%;
  background: #fff;
  z-index: 199;
  padding-top: 56px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  transform: translateY(-110%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151 !important;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  text-decoration: none;
}
.mobile-menu a:first-child { border-top: 1px solid var(--border); }
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(139,26,33,0.05); color: var(--primary) !important; }
.mobile-menu .btn-apply {
  margin: 14px 20px 20px !important;
  display: block !important;
  text-align: center;
  padding: 13px 20px !important;
  font-size: 0.95rem !important;
  border-radius: var(--radius);
  background: var(--primary) !important;
  color: #fff !important;
  font-weight: 700;
  border: none;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-links, .nav-inner > .btn-apply { display: none !important; }
  .hamburger { display: flex; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 8px 12px; }
  .nav-brand img { width: 30px; height: 30px; }
}

/* ===== PAGE SECTIONS (SPA) ===== */
.page {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.page.active {
  display: block;
  animation: pageIn 0.35s ease forwards;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }
.btn-gold { background: var(--gold); color: var(--text); }
.btn-gold:hover { background: #c09b28; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--surface); }
.section-primary { background: var(--primary); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header h2 { font-size: 2rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.section-header p { margin-top: 12px; color: var(--text-muted); font-size: 1rem; line-height: 1.6; }
.section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 8px; display: block; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 56px 24px;
  text-align: center;
}
.page-hero h1 { font-size: 2.25rem; font-weight: 800; color: #fff; }
.page-hero p { margin-top: 12px; color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== HERO (HOME) ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,18,25,0.95) 0%, rgba(139,26,33,0.85) 50%, rgba(139,26,33,0.6) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.2);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  max-width: 700px;
}
.hero-content .hero-motto {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 12px;
}
.hero-content p {
  margin-top: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ===== CARDS ===== */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-body { padding: 24px; }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(139,26,33,0.08);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ===== STEP CARDS (Admission Process) ===== */
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(139,26,33,0.08);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.step-icon svg { width: 24px; height: 24px; }
.step-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin: 0; }
.step-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ===== GRID LAYOUTS ===== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-2-auto { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* ===== PRINCIPAL SECTION ===== */
.principal-img-wrap { position: relative; padding-bottom: 40px; }
.principal-img-wrap img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  display: block;
}
.principal-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.principal-badge span { display: block; font-size: 0.75rem; font-weight: 400; opacity: 0.85; }
.quote-icon { color: var(--gold); margin-bottom: 12px; }
.quote-icon svg { width: 36px; height: 36px; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.slide-left  { transform: translateX(-40px); opacity: 0; }
.reveal.slide-right { transform: translateX(40px);  opacity: 0; }
.reveal.visible { opacity: 1 !important; transform: none !important; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ===== HIGHLIGHTS LIST ===== */
.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: box-shadow 0.2s;
}
.highlight-item:hover { box-shadow: var(--shadow-lg); }
.highlight-item i {
  font-size: 1.2rem;
  color: var(--primary);
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.highlight-item span { font-size: 0.875rem; font-weight: 500; }

/* ===== ACCORDION ===== */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.2s;
}
.accordion-trigger:hover { background: var(--surface); }
.accordion-trigger svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.25s; color: var(--primary); }
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content-inner { padding: 0 24px 18px; font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ===== GALLERY FILTER TABS ===== */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.filter-tab {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--primary); color: var(--primary); }
.filter-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== SLIDESHOW ===== */
.slideshow {
  position: relative;
  background: #111;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  height: 520px;
  user-select: none;
  contain: strict;
}
@media (max-width: 768px) { .slideshow { height: 260px; } }
@media (max-width: 480px) { .slideshow { height: 200px; } }
.slideshow-track { width: 100%; height: 100%; position: relative; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}
.slide.active { opacity: 1; z-index: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.slide-btn:hover { background: rgba(139,26,33,0.85); }
.slide-btn svg { width: 22px; height: 22px; }
.slide-prev { left: 12px; }
.slide-next { right: 12px; }
.slide-counter {
  position: absolute;
  bottom: 12px;
  right: 14px;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.slide-expand {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.slide-expand:hover { background: rgba(139,26,33,0.85); }
.slide-expand svg { width: 18px; height: 18px; }

/* ===== THUMBNAILS ===== */
.thumb-strip {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--border);
  height: 64px;
  align-items: center;
  flex-shrink: 0;
}
.thumb-strip::-webkit-scrollbar { height: 4px; }
.thumb-strip::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
.thumb {
  flex-shrink: 0;
  width: 80px;
  height: 56px;
  min-width: 80px;
  min-height: 56px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.6;
  background: #ddd;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb.active { border-color: var(--primary); opacity: 1; }
.thumb:hover { opacity: 1; }

.gallery-wrap {
  display: block;
  width: 100%;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 2rem; line-height: 1;
  cursor: pointer;
}

/* ===== VIDEO SECTION ===== */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== CONTACT ===== */
.contact-detail-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}
.contact-detail-card .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #FEF3C7;
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.contact-detail-card .icon-wrap svg { width: 20px; height: 20px; }
.contact-detail-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.contact-detail-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ===== FORM ===== */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(139,26,33,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.success-msg {
  display: none;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.875rem;
  color: #166534;
  margin-bottom: 16px;
  align-items: center;
  gap: 10px;
}
.success-msg.show { display: flex; }
.success-msg svg { width: 18px; height: 18px; flex-shrink: 0; }
.error-msg {
  display: none;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #991B1B;
  margin-bottom: 16px;
}
.error-msg.show { display: block; }

/* ===== MAP ===== */
.map-wrap { width: 100%; aspect-ratio: 16/6; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== ADMISSIONS TABLE ===== */
.dates-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.dates-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.dates-row:last-child { border-bottom: none; }
.dates-row:nth-child(even) { background: var(--surface); }
.dates-row .label { font-size: 0.875rem; font-weight: 600; }
.dates-row .date { font-size: 0.875rem; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--primary); padding: 72px 24px; text-align: center; }
.cta-section h2 { font-size: 2rem; font-weight: 700; color: #fff; }
.cta-section p { margin-top: 12px; color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-section .btn { margin-top: 28px; }

/* ===== BOSSE DISCLAIMER ===== */
.disclaimer-box {
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: var(--radius);
  padding: 32px;
  background: #fff;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text);
}
.disclaimer-box .highlight { color: var(--primary); }
.notice-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  background: #fff;
  margin-top: 24px;
}
.notice-box svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.notice-box p { font-size: 0.875rem; line-height: 1.7; }
.coordinator-card {
  border: 2px solid rgba(139,26,33,0.2);
  border-radius: var(--radius);
  padding: 40px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}
.coordinator-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: #FEF3C7;
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.coordinator-avatar svg { width: 44px; height: 44px; }
.coordinator-info h3 { font-size: 1.5rem; font-weight: 700; }
.coordinator-info p { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }
.coordinator-info .phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 14px;
  transition: background 0.2s;
}
.coordinator-info .phone-btn:hover { background: var(--primary-dark); }
.coordinator-info .phone-btn svg { width: 20px; height: 20px; }

/* ===== FOOTER ===== */
footer {
  background: #5a0f14;
  color: rgba(255,255,255,0.85);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col .brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-col .brand img { width: 40px; height: 40px; object-fit: contain; border-radius: 4px; }
.footer-col .brand-name { font-size: 0.95rem; font-weight: 700; color: #fff; line-height: 1.3; }
.footer-col .motto { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.footer-col p { font-size: 0.8rem; line-height: 1.7; color: rgba(255,255,255,0.7); }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li button { background: none; border: none; font-size: 0.85rem; color: rgba(255,255,255,0.75); cursor: pointer; padding: 0; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 18px 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-3, .grid-2, .grid-2-auto { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .coordinator-card { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 48px 0; }
  .page-hero h1 { font-size: 1.75rem; }
  .section-header h2 { font-size: 1.6rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 56px 20px; }
  .container { padding: 0 16px; }
  .form-card { padding: 20px; }
}
