/* ============================================================
   SURAIYA ISLAM RIA — style.css
   Colour system: Peacock Feather (Teal / Peacock Blue / Emerald /
   Indigo / Feather Gold) — drawn from the eye of a peacock feather,
   the classical iconography of kathak and the Krishna mor-pankh motif.
   Typography: Marcellus (headings, inscriptional/classical) · Inter (body)
   ============================================================ */

/* Fonts are loaded via <link> in header.php for performance (no @import,
   which blocks rendering). Ensure header.php loads:
   family=Marcellus&family=Inter:wght@400;500;600 */

/* === Design Tokens === */
:root {
  /* Primary palette — peacock feather */
  --color-deep-teal:     #0B3D3A;  /* feather barb base — dark anchor */
  --color-peacock-blue:  #0F5C5C;  /* eye-ring outer blue-green */
  --color-emerald:       #1F7A5C;  /* inner eye green */
  --color-peacock-indigo:#1B3A5C;  /* iridescent violet-blue at eye centre */
  --color-feather-gold:  #C9A227;  /* bronze-gold eye halo */
  --color-pale-gold:     #E3CD8A;
  --color-cream:         #FBF8EF;
  --color-white:         #FFFFFF;

  /* Accent palette */
  --color-maroon:        #8B1C2E;
  --color-bronze-text:   #2F4A40;

  /* Semantic tokens */
  --color-bg:            var(--color-cream);
  --color-surface:       var(--color-white);
  --color-nav-bg:        var(--color-deep-teal);
  --color-text-primary:  var(--color-deep-teal);
  --color-text-body:     var(--color-bronze-text);
  --color-text-muted:    #5C7A6E;
  --color-text-subtle:   #8AA89A;
  --color-accent:        var(--color-peacock-blue);
  --color-accent-bright: var(--color-feather-gold);
  --color-border:        #D8C98A;
  --color-border-light:  #ECE3C2;

  /* Typography */
  --font-display: 'Marcellus', Georgia, serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing / radius */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-pill: 100px;
}

/* === CSS Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  line-height: 1.65;
  color: var(--color-text-body);
  background: var(--color-bg);
}
a { color: var(--color-peacock-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* === Layout Container === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === Navigation (centred, stacked identity) === */
.navbar {
  background: var(--color-nav-bg);
  border-bottom: 1px solid rgba(201,162,39,0.18);
  padding: 22px 0 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Identity row: headshot + wordmark, inline as one unit */
.navbar .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.navbar .brand-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-feather-gold);
  flex-shrink: 0;
}
.navbar .logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-pale-gold);
}
.navbar .logo:hover { text-decoration: none; }

/* Tagline beneath the wordmark */
.navbar .tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-feather-gold);
  margin-top: 6px;
  text-align: center;
}

/* Hairline divider between identity and nav */
.navbar .divider {
  width: 100%;
  max-width: 480px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201,162,39,0.4) 20%,
    rgba(201,162,39,0.4) 80%,
    transparent
  );
  margin: 18px 0 14px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 16px;
}
.nav-links a {
  color: var(--color-pale-gold);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 0;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-feather-gold);
  text-decoration: none;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1.5px;
  background: var(--color-feather-gold);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-feather-gold);
  position: absolute;
  top: 22px;
  right: 20px;
}

/* === Breadcrumbs === */
.breadcrumbs { padding: 10px 0; font-size: 0.85rem; color: var(--color-text-muted); }
.breadcrumbs a { color: var(--color-peacock-blue); }
.breadcrumbs span { margin: 0 5px; }

/* === Flash Messages / Toast === */
.flash-toast {
  position: fixed; top: 80px; right: 20px;
  padding: 15px 25px; border-radius: var(--radius-md);
  color: var(--color-white); font-weight: 500;
  z-index: 2000; animation: slideIn 0.3s ease;
}
.flash-toast.success { background: var(--color-emerald); }
.flash-toast.error   { background: var(--color-maroon); }
.flash-toast .close-toast { background: none; border: none; color: var(--color-white); margin-left: 15px; cursor: pointer; font-size: 1.1rem; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* === Hero Section === */
.hero {
  background: linear-gradient(135deg, var(--color-deep-teal) 0%, var(--color-peacock-indigo) 55%, var(--color-peacock-blue) 100%);
  padding: 90px 0;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 12px;
}
.hero .tagline {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-feather-gold);
  margin-bottom: 22px;
}
.hero .artist-statement {
  max-width: 680px;
  margin: 0 auto 32px;
  color: var(--color-pale-gold);
  font-size: 1rem;
  line-height: 1.8;
}
.hero .artist-statement em { font-family: var(--font-display); font-style: normal; color: var(--color-white); }
.hero-image { max-width: 400px; margin: 30px auto 0; border-radius: var(--radius-lg); border: 1px solid rgba(201,162,39,0.3); }
.hero-buttons { display: flex; gap: 14px; justify-content: center; margin-top: 28px; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: var(--color-feather-gold);
  color: var(--color-deep-teal);
}
.btn-primary:hover { background: var(--color-pale-gold); text-decoration: none; }
.btn-secondary {
  background: transparent;
  color: var(--color-feather-gold);
  border: 1.5px solid rgba(201,162,39,0.5);
}
.btn-secondary:hover { background: rgba(201,162,39,0.12); color: var(--color-feather-gold); text-decoration: none; }
.btn-danger  { background: var(--color-maroon); color: var(--color-white); }
.btn-danger:hover  { background: #6d1423; }
.btn-small   { padding: 6px 16px; font-size: 0.8rem; }

/* === Section Headings === */
section { padding: 64px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--color-deep-teal);
  margin-bottom: 10px;
  text-align: center;
}
.section-subtitle { text-align: center; color: var(--color-text-muted); margin-bottom: 44px; font-size: 0.9rem; }

/* === Highlights Strip === */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 0;
}
.highlight-card {
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.highlight-card:hover { box-shadow: 0 6px 24px rgba(11,61,58,0.1); }
.highlight-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-deep-teal);
  margin-bottom: 5px;
}
.highlight-card p { color: var(--color-text-muted); font-size: 0.875rem; }

/* === Blog Cards Grid === */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(11,61,58,0.12); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-content { padding: 20px; }
.blog-card .category-badge {
  display: inline-block;
  background: rgba(15,92,92,0.1);
  color: var(--color-peacock-blue);
  border: 0.5px solid rgba(15,92,92,0.3);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.blog-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: var(--color-deep-teal); margin-bottom: 8px; }
.blog-card h3 a { color: var(--color-deep-teal); }
.blog-card h3 a:hover { color: var(--color-peacock-blue); text-decoration: none; }
.blog-card .excerpt { color: var(--color-text-muted); font-size: 0.875rem; margin-bottom: 12px; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--color-text-subtle); }

/* === Single Blog Post === */
.post-header { padding: 44px 0 22px; }
.post-header .category-badge { margin-bottom: 16px; }
.post-header h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-deep-teal);
  margin-bottom: 16px;
  line-height: 1.25;
}
.post-meta { color: var(--color-text-muted); font-size: 0.875rem; display: flex; gap: 20px; }
.post-body { max-width: 800px; padding: 22px 0 44px; font-size: 1rem; line-height: 1.85; color: var(--color-text-body); }
.post-body p { margin-bottom: 16px; }
.post-body em { font-family: var(--font-display); font-style: normal; color: var(--color-deep-teal); }
.post-featured-image { width: 100%; max-height: 450px; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 32px; }

/* === Social Sharing === */
.share-section { padding: 20px 0; border-top: 1px solid var(--color-border-light); margin-top: 30px; }
.share-section h3 { font-size: 0.9rem; font-weight: 500; color: var(--color-text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.share-buttons { display: flex; gap: 10px; }
.share-btn {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: 0.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-body);
  transition: all 0.2s;
}
.share-btn:hover { background: var(--color-cream); border-color: var(--color-pale-gold); }

/* === Gallery === */
.gallery-filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.filter-btn {
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  border: 0.5px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--color-feather-gold);
  color: var(--color-deep-teal);
  border-color: var(--color-feather-gold);
  text-decoration: none;
}
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,61,58,0.85));
  color: var(--color-cream);
  padding: 16px;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* === Lightbox === */
.lightbox {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11,61,58,0.95);
  z-index: 3000; justify-content: center; align-items: center; flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 80vh; border-radius: var(--radius-md); }
.lightbox-caption { color: var(--color-pale-gold); margin-top: 15px; font-size: 0.9rem; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: var(--color-feather-gold); font-size: 2rem; cursor: pointer; background: none; border: none; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; color: var(--color-feather-gold); font-size: 2.5rem; cursor: pointer; background: none; border: none; padding: 10px; }
.lightbox-prev { left: 20px; transform: translateY(-50%); }
.lightbox-next { right: 20px; transform: translateY(-50%); }

/* === Timeline === */
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: var(--color-border-light);
}
.timeline-item { padding-left: 52px; margin-bottom: 32px; position: relative; }
.timeline-item::before {
  content: '';
  position: absolute; left: 13px; top: 5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--color-feather-gold);
  border: 3px solid var(--color-cream);
  box-shadow: 0 0 0 1px var(--color-pale-gold);
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-deep-teal);
  margin-bottom: 4px;
}
.timeline-item .timeline-date { color: var(--color-peacock-blue); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.04em; }
.timeline-item p { color: var(--color-text-muted); font-size: 0.875rem; margin-top: 4px; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 11px 14px;
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-text-body);
  margin-bottom: 14px;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--color-feather-gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.14); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form label { display: block; font-weight: 500; margin-bottom: 5px; font-size: 0.85rem; color: var(--color-deep-teal); }
.contact-info-card {
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
}
.contact-info-item { display: flex; gap: 12px; margin-bottom: 20px; align-items: flex-start; }
.contact-info-item .icon { font-size: 1.2rem; color: var(--color-peacock-blue); }
.contact-info-item h4 { font-size: 0.875rem; font-weight: 500; color: var(--color-deep-teal); margin-bottom: 2px; }
.contact-info-item p { color: var(--color-text-muted); font-size: 0.875rem; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(15,92,92,0.1);
  color: var(--color-peacock-blue);
  font-size: 1rem;
  border: 0.5px solid rgba(15,92,92,0.25);
  transition: all 0.2s;
}
.social-links a:hover { background: var(--color-feather-gold); color: var(--color-deep-teal); }

/* === Newsletter / Subscribe === */
.subscribe-section {
  background: var(--color-deep-teal);
  padding: 56px 0;
  text-align: center;
}
.subscribe-section h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 10px;
}
.subscribe-section p { color: var(--color-pale-gold); margin-bottom: 24px; font-size: 0.925rem; }
.subscribe-form { display: flex; gap: 10px; justify-content: center; max-width: 450px; margin: 0 auto; }
.subscribe-form input[type='email'] {
  flex: 1;
  padding: 11px 16px;
  border: 0.5px solid rgba(201,162,39,0.35);
  border-radius: var(--radius-pill);
  font-size: 0.925rem;
  background: rgba(255,255,255,0.07);
  color: var(--color-white);
}
.subscribe-form input[type='email']::placeholder { color: rgba(227,205,138,0.65); }
.subscribe-form input[type='email']:focus { outline: none; border-color: var(--color-feather-gold); }
.subscribe-form button { padding: 11px 26px; }
.subscribe-inline {
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  margin: 30px 0;
}

/* === Testimonials === */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testimonial-card {
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-pale-gold);
  line-height: 1;
  position: absolute;
  top: 12px; left: 20px;
  opacity: 0.6;
}
.testimonial-card .quote {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.05rem;
  color: var(--color-bronze-text);
  margin-bottom: 18px;
  line-height: 1.75;
  padding-top: 20px;
}
.testimonial-card .author { font-weight: 500; font-size: 0.875rem; color: var(--color-deep-teal); }
.testimonial-card .role { color: var(--color-text-muted); font-size: 0.8rem; }

/* === Admin === */
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
}
.stat-card .stat-number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 400; color: var(--color-peacock-blue); }
.stat-card .stat-label { color: var(--color-text-muted); font-size: 0.875rem; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.admin-table {
  width: 100%; border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 0.5px solid var(--color-border);
}
.admin-table th {
  background: var(--color-cream);
  text-align: left;
  padding: 12px 16px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.admin-table td { padding: 12px 16px; border-top: 0.5px solid var(--color-border-light); font-size: 0.875rem; color: var(--color-text-body); }
.admin-table tr:hover { background: var(--color-cream); }
.table-actions { display: flex; gap: 8px; }

/* === Login === */
.login-container {
  max-width: 400px;
  margin: 80px auto;
  padding: 40px;
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.login-container h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-deep-teal);
  text-align: center;
  margin-bottom: 28px;
}
.login-container .error-msg {
  background: rgba(139,28,46,0.08);
  color: var(--color-maroon);
  border: 0.5px solid rgba(139,28,46,0.2);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.875rem;
}

/* === 404 === */
.error-page { text-align: center; padding: 100px 20px; }
.error-page h1 { font-family: var(--font-display); font-size: 6rem; color: var(--color-border); font-weight: 400; }
.error-page h2 { font-size: 1.5rem; color: var(--color-deep-teal); margin-bottom: 14px; }
.error-page p { color: var(--color-text-muted); margin-bottom: 30px; }

/* === Cookie Consent === */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--color-deep-teal);
  border-top: 1px solid rgba(201,162,39,0.18);
  color: var(--color-pale-gold);
  padding: 16px 24px;
  z-index: 2500;
  font-size: 0.875rem;
}
.cookie-banner.show { display: flex; justify-content: space-between; align-items: center; }
.cookie-banner button {
  background: var(--color-feather-gold);
  color: var(--color-deep-teal);
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  cursor: pointer;
}

/* === Scroll to Top === */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-feather-gold);
  color: var(--color-deep-teal);
  border: none; font-size: 1.2rem; cursor: pointer;
  display: none; z-index: 1500;
  transition: opacity 0.3s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(201,162,39,0.4);
}
.scroll-top:hover { transform: translateY(-2px); }
.scroll-top.show { display: block; }

/* === Dance Expertise Grid === */
.expertise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.expertise-card {
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.expertise-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-peacock-blue);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid var(--color-border-light);
}
.expertise-card ul { list-style: none; }
.expertise-card li {
  padding: 7px 0;
  color: var(--color-text-body);
  font-size: 0.925rem;
  border-bottom: 0.5px solid var(--color-border-light);
}
.expertise-card li:last-child { border-bottom: none; }

/* === Affiliations === */
.affiliations-list { max-width: 700px; margin: 0 auto; }
.affiliation-item { display: flex; gap: 14px; padding: 15px 0; border-bottom: 0.5px solid var(--color-border-light); align-items: center; }
.affiliation-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-feather-gold); flex-shrink: 0; }
.affiliation-item p { color: var(--color-text-body); font-size: 0.925rem; }

/* === Performance Cards === */
.performance-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 20px; }
.performance-card {
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.performance-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-deep-teal);
  margin-bottom: 5px;
}
.performance-card .perf-date {
  color: var(--color-peacock-blue);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.performance-card p { color: var(--color-text-muted); font-size: 0.875rem; margin-top: 8px; }

/* === Awards Grid === */
.awards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.award-card {
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.award-card .award-icon { font-size: 1.8rem; margin-bottom: 12px; }
.award-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--color-deep-teal); margin-bottom: 5px; }
.award-card p { color: var(--color-text-muted); font-size: 0.82rem; }

/* === Search === */
.search-form { display: flex; gap: 10px; margin-bottom: 26px; }
.search-form input {
  flex: 1;
  padding: 10px 16px;
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.925rem;
  background: var(--color-white);
  color: var(--color-text-body);
}
.search-form input:focus { outline: none; border-color: var(--color-feather-gold); }
.search-form button { padding: 10px 22px; }

/* === Category Pills === */
.category-pills { display: flex; gap: 8px; margin-bottom: 26px; flex-wrap: wrap; }
.category-pill {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  border: 0.5px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-white);
  transition: all 0.2s;
}
.category-pill:hover,
.category-pill.active {
  background: var(--color-feather-gold);
  color: var(--color-deep-teal);
  border-color: var(--color-feather-gold);
  text-decoration: none;
}

/* === No Results === */
.no-results { text-align: center; padding: 64px 20px; color: var(--color-text-muted); }
.no-results h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 10px; color: var(--color-deep-teal); }

/* === Blog Sidebar Subscribe === */
.sidebar-subscribe {
  background: var(--color-cream);
  border: 0.5px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-top: 30px;
}
.sidebar-subscribe h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--color-deep-teal); margin-bottom: 8px; }
.sidebar-subscribe p { color: var(--color-text-muted); font-size: 0.85rem; margin-bottom: 14px; }

/* === Paper Presentations === */
.presentations-list { max-width: 800px; margin: 0 auto; }
.presentation-item {
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-left: 3px solid var(--color-feather-gold);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 14px;
}
.presentation-item h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--color-deep-teal); margin-bottom: 5px; }
.presentation-item p { color: var(--color-text-muted); font-size: 0.875rem; }

/* === Footer === */
.site-footer {
  background: var(--color-deep-teal);
  color: var(--color-pale-gold);
  padding: 56px 0 24px;
  margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; margin-bottom: 36px; }
.footer-col h3 { font-family: var(--font-display); color: var(--color-white); font-size: 1rem; font-weight: 400; margin-bottom: 16px; }
.footer-col p { font-size: 0.875rem; line-height: 1.7; color: var(--color-pale-gold); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--color-pale-gold); font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--color-feather-gold); text-decoration: none; }
.footer-bottom {
  border-top: 0.5px solid rgba(201,162,39,0.18);
  padding-top: 22px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

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

/* === Responsive === */
@media (max-width: 768px) {
  .navbar { padding: 18px 0 0; }
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-deep-teal);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(201,162,39,0.18);
  }
  .nav-links.open { display: flex; }
  .navbar .logo { font-size: 1.25rem; }
  .navbar .divider { max-width: 90%; }
  .hero h1          { font-size: 2.2rem; }
  .contact-grid     { grid-template-columns: 1fr; }
  .blog-grid        { grid-template-columns: 1fr; }
  .gallery-grid     { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .subscribe-form   { flex-direction: column; }
  .hero-buttons     { flex-direction: column; align-items: center; }
  .post-header h1   { font-size: 1.9rem; }
  .performance-grid { grid-template-columns: 1fr; }
}

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