/* ==========================================================================
   NERIS' COLLEGE — Design System
   Modern & Vibrant | Maroon × Gold | Editorial Energy
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,800;9..144,900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --maroon-900: #4a0e1a;
  --maroon-800: #6b1f2a;
  --maroon-700: #8b2435;
  --maroon-600: #a52a3f;
  --gold-500: #f5c518;
  --gold-400: #ffd84d;
  --gold-300: #ffe680;

  /* Neutrals */
  --cream: #fff8e7;
  --bone: #faf6ec;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --ink-muted: #6b6b6b;
  --line: #e8e2d0;
  --white: #ffffff;

  /* Semantic */
  --success: #2d8659;
  --danger: #c73030;
  --warning: #e8a317;
  --info: #2a6fdb;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --container: min(1280px, 92vw);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(74, 14, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(74, 14, 26, 0.12);
  --shadow-lg: 0 20px 60px rgba(74, 14, 26, 0.18);
  --shadow-glow: 0 0 0 4px rgba(245, 197, 24, 0.25);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 248, 231, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}
.nav.scrolled { background: rgba(255, 248, 231, 0.96); box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--maroon-800);
  display: grid; place-items: center;
  color: var(--gold-500); font-family: var(--font-display); font-weight: 900; font-size: 18px;
  border: 2px solid var(--gold-500);
}
.nav-brand-text { line-height: 1; }
.nav-brand-name { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--maroon-900); letter-spacing: -0.02em; }
.nav-brand-tag { font-size: 10px; color: var(--ink-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--ink); position: relative; transition: color 0.2s; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  height: 2px; width: 0; background: var(--maroon-800);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--maroon-800); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--maroon-800); font-weight: 600; }

.nav-cta {
  background: var(--maroon-800); color: var(--white);
  padding: 11px 22px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; border: 2px solid var(--maroon-800);
}
.nav-cta:hover { background: var(--maroon-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}
.nav-dropdown-trigger::after {
  content: '⌄'; font-size: 14px; opacity: 0.6; margin-top: -4px;
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bone);
  min-width: 220px; padding: 8px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  opacity: 0; pointer-events: none;
  transition: all 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--ink);
  transition: background 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--maroon-800); }
.nav-dropdown-menu a::after { display: none; }

.nav-toggle {
  display: none; width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bone); padding: 20px 0;
    border-top: 1px solid var(--line);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: 0.3s;
    max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { padding: 14px 24px; width: 100%; text-align: center; }
  .nav-cta { display: none; }
  .nav-dropdown-menu {
    position: static; opacity: 1; pointer-events: all;
    transform: none; box-shadow: none; border: none;
    background: rgba(107, 31, 42, 0.04); padding: 4px 0;
    min-width: 0; width: 100%; border-radius: 0;
  }
  .nav-dropdown-menu a { padding: 10px 24px; font-size: 13px; }
  .nav-dropdown-trigger::after { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--bone);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, var(--maroon-900) 0%, var(--maroon-800) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: var(--gold-500); color: var(--maroon-900);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
  animation: slideUp 0.6s ease-out;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--maroon-800);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--maroon-900);
  margin-bottom: 24px;
  animation: slideUp 0.7s ease-out 0.1s both;
}
.hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--maroon-700);
  position: relative;
}
.hero h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 14px;
  background: var(--gold-500); z-index: -1; opacity: 0.6;
}
.hero p.lede {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-soft); max-width: 540px;
  margin-bottom: 36px; line-height: 1.65;
  animation: slideUp 0.7s ease-out 0.2s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: slideUp 0.7s ease-out 0.3s both;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  transition: all 0.25s; border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--maroon-800); color: var(--white); border-color: var(--maroon-800); }
.btn-primary:hover { background: var(--maroon-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-500); color: var(--maroon-900); border-color: var(--gold-500); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--maroon-800); border-color: var(--maroon-800); }
.btn-outline:hover { background: var(--maroon-800); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1ea352; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px; max-width: 540px;
  animation: slideUp 0.7s ease-out 0.4s both;
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 900;
  color: var(--maroon-900); line-height: 1;
}
.hero-stat-label {
  font-size: 12px; color: var(--ink-muted);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px;
}

.hero-visual { position: relative; animation: slideUp 0.8s ease-out 0.2s both; }
.hero-image-frame {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  border: 4px solid var(--gold-500);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge-float {
  position: absolute; bottom: -20px; left: -30px;
  background: var(--cream); padding: 18px 24px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 2px solid var(--maroon-800);
  transform: rotate(-3deg);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-8px); } }
.hero-badge-float strong { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--maroon-900); }
.hero-badge-float span { font-size: 12px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-badge-top {
  position: absolute; top: -24px; right: -20px;
  background: var(--gold-500); color: var(--maroon-900);
  width: 100px; height: 100px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 14px;
  text-align: center; line-height: 1.2;
  box-shadow: var(--shadow-md);
  animation: spin 20s linear infinite;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

@media (max-width: 920px) {
  .hero { padding-top: 110px; }
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-stat-num { font-size: 1.8rem; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: var(--maroon-900); color: var(--gold-500);
  padding: 18px 0; overflow: hidden; border-top: 3px solid var(--gold-500);
  border-bottom: 3px solid var(--gold-500);
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 60px;
}
.marquee-track span::after { content: '✦'; color: var(--gold-500); font-size: 1rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section { padding: 100px 0; position: relative; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--maroon-100, rgba(107, 31, 42, 0.08)); color: var(--maroon-800);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--maroon-900); margin-bottom: 18px;
}
.section-title em { color: var(--maroon-700); font-style: italic; font-weight: 400; }
.section-lede {
  font-size: 1.1rem; color: var(--ink-soft); max-width: 600px; line-height: 1.7;
}

/* About */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}
.about-image-stack { position: relative; }
.about-image-stack img {
  width: 100%; aspect-ratio: 1/1.1; object-fit: cover;
  border-radius: var(--radius-lg); border: 3px solid var(--maroon-800);
}
.about-image-stack::before {
  content: ''; position: absolute; top: 24px; left: 24px;
  width: 100%; height: 100%; border: 3px solid var(--gold-500);
  border-radius: var(--radius-lg); z-index: -1;
}
.about-text p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.75; }
.about-mvm { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
.about-mvm-item {
  padding: 22px 24px; background: var(--white); border-radius: var(--radius-md);
  border-left: 4px solid var(--gold-500);
  display: flex; gap: 18px; align-items: flex-start;
}
.about-mvm-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--maroon-800); color: var(--gold-500);
  display: grid; place-items: center; font-size: 20px;
  flex-shrink: 0;
}
.about-mvm-item h4 { font-size: 1rem; color: var(--maroon-900); margin-bottom: 4px; font-family: var(--font-body); font-weight: 700; }
.about-mvm-item p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* Programs */
.programs { background: var(--bone); }
.programs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.program-card {
  position: relative; padding: 32px 28px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  overflow: hidden;
}
.program-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%;
  background: var(--maroon-800); transition: width 0.4s ease; z-index: 0;
}
.program-card > * { position: relative; z-index: 1; }
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card:hover::before { width: 6px; }
.program-card:hover .program-num { color: var(--gold-500); }

.program-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 900;
  color: var(--maroon-100, rgba(107, 31, 42, 0.12));
  line-height: 1; margin-bottom: 20px; transition: color 0.3s;
}
.program-card h3 { font-size: 1.4rem; color: var(--maroon-900); margin-bottom: 12px; }
.program-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.65; }
.program-card .program-tag {
  display: inline-block; margin-top: 16px;
  padding: 4px 12px; background: var(--gold-500); color: var(--maroon-900);
  border-radius: var(--radius-pill); font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* Why us */
.why { background: var(--maroon-900); color: var(--white); }
.why .section-title { color: var(--white); }
.why .section-eyebrow { background: rgba(245, 197, 24, 0.15); color: var(--gold-400); }
.why .section-lede { color: rgba(255, 255, 255, 0.75); }

.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px; margin-top: 50px;
}
.why-item {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.why-item:hover { background: rgba(245, 197, 24, 0.08); border-color: var(--gold-500); }
.why-item-num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 900;
  color: var(--gold-500); line-height: 1; margin-bottom: 18px;
}
.why-item h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.why-item p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; line-height: 1.65; }

/* Locations */
.locations { background: var(--bone); }
.locations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  padding: 32px 28px; background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.location-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.location-flag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; background: var(--gold-500); color: var(--maroon-900);
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 18px;
}
.location-card h4 { font-size: 1.4rem; color: var(--maroon-900); margin-bottom: 10px; }
.location-card .location-addr { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; margin-bottom: 18px; }
.location-card .location-phones { display: flex; flex-direction: column; gap: 6px; }
.location-card .location-phones a { font-size: 0.95rem; color: var(--maroon-800); font-weight: 600; }
.location-card .location-phones a:hover { color: var(--maroon-900); text-decoration: underline; }

@media (max-width: 920px) {
  .locations-grid { grid-template-columns: 1fr; }
}

/* Gallery */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md); cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(0.98); }
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(74, 14, 26, 0.9), transparent 50%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.gallery-item.video-item::after {
  content: '▶'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(245, 197, 24, 0.95); color: var(--maroon-900);
  display: grid; place-items: center; font-size: 22px;
  pointer-events: none;
}

@media (max-width: 920px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--maroon-900), var(--maroon-700));
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.2) 0%, transparent 70%);
}
.cta-banner-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  position: relative; z-index: 2;
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); line-height: 1.1;
}
.cta-banner h2 em { color: var(--gold-500); font-style: italic; font-weight: 400; }
.cta-banner p { color: rgba(255, 255, 255, 0.8); margin-top: 14px; font-size: 1.05rem; }

@media (max-width: 920px) {
  .cta-banner-inner { grid-template-columns: 1fr; text-align: center; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink); color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 30px;
}
.footer-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand-mark {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--maroon-800); display: grid; place-items: center;
  color: var(--gold-500); font-family: var(--font-display); font-weight: 900;
  border: 2px solid var(--gold-500);
}
.footer-brand-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--white); }
.footer-tag { font-size: 0.9rem; opacity: 0.7; margin-top: 4px; font-style: italic; }
.footer-about { font-size: 0.92rem; line-height: 1.65; opacity: 0.7; margin-bottom: 24px; max-width: 360px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); color: var(--white);
  display: grid; place-items: center;
  transition: all 0.2s;
}
.footer-social:hover { background: var(--gold-500); color: var(--maroon-900); }

.footer h5 {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--white);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.92rem; opacity: 0.7; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; color: var(--gold-400); }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.9rem; }
.footer-contact-item .ico { color: var(--gold-500); flex-shrink: 0; }
.footer-contact-item a { opacity: 0.85; }
.footer-contact-item a:hover { color: var(--gold-400); }

.footer-bottom {
  max-width: var(--container); margin: 0 auto;
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; opacity: 0.6;
}

@media (max-width: 920px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s; font-size: 28px;
}
.wa-float::before {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%; border: 2px solid #25D366;
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.wa-float:hover { transform: scale(1.1); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   PAGE HEADER (for sub pages)
   ========================================================================== */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--maroon-900), var(--maroon-700));
  color: var(--white);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; bottom: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.15), transparent 70%);
}
.page-header-inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 2; }
.page-crumbs {
  display: flex; gap: 10px; align-items: center; font-size: 0.85rem;
  opacity: 0.7; margin-bottom: 16px;
}
.page-crumbs a { color: var(--gold-400); }
.page-header h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 14px; }
.page-header h1 em { color: var(--gold-500); font-style: italic; font-weight: 400; }
.page-header p { font-size: 1.1rem; opacity: 0.85; max-width: 600px; }

/* ==========================================================================
   FORM
   ========================================================================== */
.form-page { background: var(--bone); padding: 60px 0 100px; }
.form-wrap {
  max-width: 920px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 50px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.form-header {
  display: flex; gap: 24px; align-items: center;
  padding-bottom: 30px; margin-bottom: 30px;
  border-bottom: 2px solid var(--line);
}
.form-header-num {
  width: 60px; height: 60px; flex-shrink: 0; border-radius: 50%;
  background: var(--maroon-800); color: var(--gold-500);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
}
.form-section { margin-bottom: 36px; }
.form-section h3 {
  font-size: 1.3rem; color: var(--maroon-900); margin-bottom: 6px;
}
.form-section .form-section-desc { color: var(--ink-muted); font-size: 0.92rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 18px; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 720px) {
  .form-row, .form-row.three { grid-template-columns: 1fr; }
  .form-wrap { padding: 30px 22px; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 13px; font-weight: 600; color: var(--ink);
  letter-spacing: 0.02em;
}
.form-field label .req { color: var(--danger); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 16px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--bone);
  color: var(--ink); font-size: 15px;
  transition: all 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--maroon-800);
  background: var(--white); box-shadow: var(--shadow-glow);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field-error {
  font-size: 12px; color: var(--danger); margin-top: 2px; display: none;
}
.form-field.error input, .form-field.error select, .form-field.error textarea { border-color: var(--danger); }
.form-field.error .form-field-error { display: block; }

.form-checkboxes { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.form-check {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  background: var(--bone); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.2s;
}
.form-check:hover { border-color: var(--maroon-700); }
.form-check input { width: 18px; height: 18px; accent-color: var(--maroon-800); }
.form-check.checked { background: var(--gold-300); border-color: var(--maroon-800); }
.form-check.error { border-color: var(--danger) !important; background: #fff5f5; }
.form-check span { font-size: 14px; font-weight: 500; }
.form-field.error { outline: 2px solid var(--danger); outline-offset: 6px; border-radius: 8px; }

.form-actions {
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.form-actions .form-actions-note { font-size: 13px; color: var(--ink-muted); }

.form-success {
  background: linear-gradient(135deg, #2d8659, #1f6b44);
  color: var(--white); padding: 30px;
  border-radius: var(--radius-md); text-align: center;
  display: none; animation: slideUp 0.5s ease-out;
}
.form-success.visible { display: block; }
.form-success h3 { color: var(--white); margin-bottom: 8px; }
.form-success p { opacity: 0.9; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 60px; align-items: start;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-block {
  background: var(--white); padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.contact-info-block h3 { font-size: 1.6rem; color: var(--maroon-900); margin-bottom: 24px; }
.contact-method {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.contact-method:last-child { border-bottom: none; }
.contact-method-ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--maroon-100, rgba(107, 31, 42, 0.08));
  color: var(--maroon-800);
  display: grid; place-items: center; flex-shrink: 0;
  font-size: 18px;
}
.contact-method h5 { font-family: var(--font-body); font-size: 0.85rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; font-weight: 600; }
.contact-method p, .contact-method a { color: var(--ink); font-size: 1rem; font-weight: 500; }
.contact-method a:hover { color: var(--maroon-800); }

/* ==========================================================================
   ADMIN STYLES are in admin.css
   ========================================================================== */

/* ==========================================================================
   FACULTY / TEACHERS PAGE
   ========================================================================== */
.faculty-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.faculty-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line);
  transition: all 0.3s;
}
.faculty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.faculty-photo {
  aspect-ratio: 1/1.1; background: linear-gradient(135deg, var(--maroon-800), var(--maroon-700));
  position: relative; display: grid; place-items: center;
  color: var(--gold-500); font-family: var(--font-display);
  font-size: 4rem; font-weight: 900;
  border-bottom: 4px solid var(--gold-500);
}
.faculty-photo::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(245, 197, 24, 0.15), transparent 60%);
}
.faculty-info { padding: 22px 24px; }
.faculty-name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  color: var(--maroon-900); line-height: 1.1; margin-bottom: 4px;
}
.faculty-role {
  font-size: 0.78rem; color: var(--maroon-700); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px;
}
.faculty-subjects {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px;
}
.faculty-subjects span {
  font-size: 0.72rem; padding: 3px 10px;
  background: var(--cream); color: var(--maroon-800);
  border-radius: var(--radius-pill); font-weight: 600;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-md); margin-bottom: 14px;
  transition: all 0.2s;
  overflow: hidden;
}
.faq-item.open { border-color: var(--maroon-800); box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%; padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left; cursor: pointer;
  font-family: var(--font-body); font-weight: 600;
  font-size: 1.05rem; color: var(--ink); gap: 20px;
}
.faq-question:hover { color: var(--maroon-800); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); color: var(--maroon-800);
  display: grid; place-items: center; font-size: 18px; font-weight: 800;
  flex-shrink: 0; transition: 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--maroon-800); color: var(--gold-500);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--ink-soft); font-size: 0.98rem; line-height: 1.7;
}
.faq-categories {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 32px; justify-content: center;
}
.faq-cat {
  padding: 10px 18px; border-radius: var(--radius-pill);
  background: var(--white); border: 1.5px solid var(--line);
  font-weight: 600; font-size: 0.85rem; color: var(--ink-soft);
  cursor: pointer; transition: 0.2s;
}
.faq-cat:hover { border-color: var(--maroon-800); }
.faq-cat.active { background: var(--maroon-800); color: var(--white); border-color: var(--maroon-800); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white); padding: 32px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative; transition: 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card.featured {
  background: linear-gradient(135deg, var(--maroon-900), var(--maroon-700));
  color: var(--white); border-color: var(--maroon-800);
}
.testimonial-card.featured .testimonial-name { color: var(--white); }
.testimonial-card.featured .testimonial-meta { color: rgba(255,255,255,0.7); }
.testimonial-quote {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--font-display); font-size: 4rem;
  color: var(--gold-500); line-height: 1; font-weight: 900;
  opacity: 0.4;
}
.testimonial-card.featured .testimonial-quote { opacity: 0.3; }
.testimonial-stars { color: var(--gold-500); margin-bottom: 16px; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 1rem; line-height: 1.7; margin-bottom: 22px;
  font-family: var(--font-display); font-weight: 400;
  font-style: italic;
}
.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,0.95); }
.testimonial-attr { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--maroon-800); color: var(--gold-500);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  flex-shrink: 0; border: 2px solid var(--gold-500);
}
.testimonial-card.featured .testimonial-avatar {
  background: var(--gold-500); color: var(--maroon-900);
}
.testimonial-name {
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  color: var(--ink); margin-bottom: 2px;
}
.testimonial-meta { font-size: 0.82rem; color: var(--ink-muted); }

.results-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  background: var(--maroon-900); color: var(--white);
  padding: 50px 40px; border-radius: var(--radius-lg);
  margin-top: 60px;
}
.results-strip-item { text-align: center; }
.results-strip-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--gold-500); line-height: 1;
}
.results-strip-label { font-size: 0.82rem; opacity: 0.8; margin-top: 6px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ==========================================================================
   FEES & PAYMENT
   ========================================================================== */
.fees-tabs {
  display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap;
  background: var(--white); padding: 6px;
  border-radius: var(--radius-pill);
  max-width: max-content;
  border: 1px solid var(--line);
}
.fees-tab {
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.92rem;
  color: var(--ink-muted); transition: 0.2s; cursor: pointer;
}
.fees-tab:hover { color: var(--maroon-800); }
.fees-tab.active {
  background: var(--maroon-800); color: var(--white);
}

.fees-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.fee-card {
  background: var(--white); padding: 36px 32px;
  border-radius: var(--radius-lg); border: 2px solid var(--line);
  position: relative; transition: 0.3s;
}
.fee-card:hover { border-color: var(--maroon-800); transform: translateY(-4px); }
.fee-card.popular {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.15);
}
.fee-card.popular::before {
  content: '★ Most Popular';
  position: absolute; top: -12px; right: 24px;
  background: var(--gold-500); color: var(--maroon-900);
  padding: 5px 14px; border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.fee-card-name {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--maroon-900); margin-bottom: 6px;
}
.fee-card-tag { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 24px; }
.fee-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 6px;
}
.fee-currency { font-size: 1.2rem; font-weight: 700; color: var(--maroon-700); }
.fee-amount {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--maroon-900); line-height: 1;
}
.fee-period { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 24px; }
.fee-list { list-style: none; padding: 0; margin: 0 0 24px; }
.fee-list li {
  padding: 9px 0; font-size: 0.92rem; color: var(--ink-soft);
  display: flex; gap: 10px; align-items: flex-start;
  border-bottom: 1px dashed var(--line);
}
.fee-list li:last-child { border-bottom: none; }
.fee-list li::before {
  content: '✓'; color: var(--success); font-weight: 800; flex-shrink: 0;
}
.fee-list li.no::before { content: '✗'; color: var(--ink-muted); }
.fee-list li.no { color: var(--ink-muted); text-decoration: line-through; }

.payment-methods {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 50px;
}
.payment-method {
  background: var(--white); padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  display: flex; gap: 16px; align-items: flex-start;
}
.payment-method-ico {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--cream); color: var(--maroon-800);
  display: grid; place-items: center; font-size: 22px; flex-shrink: 0;
}
.payment-method h5 {
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  color: var(--ink); margin-bottom: 4px;
}
.payment-method p { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.5; }

/* ==========================================================================
   NEWS / BLOG
   ========================================================================== */
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.news-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line);
  transition: all 0.3s; cursor: pointer;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card-img {
  aspect-ratio: 16/10; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-900));
}
.news-card-img img, .news-card-img video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-cat {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 12px; background: var(--gold-500); color: var(--maroon-900);
  border-radius: var(--radius-pill);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.news-card-body { padding: 22px 24px; }
.news-card-meta {
  display: flex; gap: 14px; font-size: 0.78rem; color: var(--ink-muted);
  margin-bottom: 10px;
}
.news-card h3 {
  font-size: 1.25rem; color: var(--maroon-900); margin-bottom: 10px;
  line-height: 1.25;
}
.news-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }
.news-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; color: var(--maroon-800);
  font-weight: 600; font-size: 0.9rem;
  transition: gap 0.2s;
}
.news-card:hover .news-card-link { gap: 10px; }

.news-featured {
  background: linear-gradient(135deg, var(--maroon-900), var(--maroon-700));
  color: var(--white); border-radius: var(--radius-lg);
  padding: 50px; margin-bottom: 50px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
  position: relative; overflow: hidden;
}
.news-featured::before {
  content: ''; position: absolute; bottom: -30%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.15), transparent 70%);
}
.news-featured-content { position: relative; z-index: 2; }
.news-featured-cat {
  display: inline-block; padding: 6px 14px;
  background: var(--gold-500); color: var(--maroon-900);
  border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.news-featured h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; }
.news-featured h2 em { color: var(--gold-500); font-style: italic; font-weight: 400; }
.news-featured p { opacity: 0.85; line-height: 1.7; margin-bottom: 24px; }
.news-featured-img {
  position: relative; z-index: 2;
  border-radius: var(--radius-md); overflow: hidden;
  border: 3px solid var(--gold-500);
  aspect-ratio: 4/3;
}
.news-featured-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 920px) {
  .news-featured { grid-template-columns: 1fr; padding: 32px; gap: 30px; }
}

/* ==========================================================================
   LEGAL PAGES (Privacy / Terms)
   ========================================================================== */
.legal-page { background: var(--bone); padding: 60px 0 100px; }
.legal-wrap {
  max-width: 820px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 60px; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.legal-wrap h2 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--maroon-900); margin: 36px 0 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--gold-500);
}
.legal-wrap h2:first-of-type { margin-top: 0; }
.legal-wrap h3 {
  font-family: var(--font-body); font-weight: 700; font-size: 1.1rem;
  color: var(--maroon-800); margin: 24px 0 10px;
}
.legal-wrap p, .legal-wrap li {
  color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px;
  font-size: 0.97rem;
}
.legal-wrap ul, .legal-wrap ol { padding-left: 24px; margin-bottom: 14px; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap strong { color: var(--ink); }
.legal-wrap a { color: var(--maroon-800); font-weight: 600; }
.legal-wrap a:hover { text-decoration: underline; }
.legal-meta {
  background: var(--cream); padding: 16px 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-500);
  font-size: 0.88rem; color: var(--ink-muted);
  margin-bottom: 36px;
}
@media (max-width: 720px) {
  .legal-wrap { padding: 32px 24px; }
}

/* ── Passport photo upload ──────────────────────────────────────────────────── */
.photo-upload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 2px dashed var(--stone-300, #d4cfc9);
  border-radius: var(--radius-sm, 8px);
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  background: var(--cream, #faf8f5);
}
.photo-upload:hover, .photo-upload.drag-over {
  border-color: var(--maroon-700, #8c1a1a);
  background: var(--stone-50, #fdf9f5);
}
.photo-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  color: var(--ink-muted, #666);
  text-align: center;
  pointer-events: none;
}
.photo-upload-placeholder svg {
  color: var(--stone-400, #b0a99f);
}
.photo-upload-preview {
  display: block;
  width: 120px;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--stone-200, #e5e0da);
}
.btn-remove-photo {
  font-size: 0.82rem;
  color: var(--maroon-700, #8c1a1a);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 0;
  text-decoration: underline;
}
.btn-remove-photo:hover { color: var(--maroon-900, #5c0f0f); }
