@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --orange: #F56600;
  --regalia: #522D80;
  --diploma: #2E1A47;
  --deeper-bg: #1A0F2E;
  --mid-bg: #231440;
  --white: #FFFFFF;
  --muted-text: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.10);
  --stadium-grey: #CBC4BC;
  --shadow: rgba(0, 0, 0, 0.4);
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background-color: var(--deeper-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--regalia);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
}

.navbar-brand .dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--orange);
  border-radius: 50%;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: var(--orange);
}

.navbar-links a.active {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}

.hero {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, var(--deeper-bg) 0%, var(--diploma) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(245, 102, 0, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(245, 102, 0, 0.15);
  color: var(--orange);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--orange);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero h1 .highlight {
  color: var(--orange);
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--muted-text);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}

.btn-gold {
  background-color: var(--orange);
  color: #1A1A1A;
}

.btn-gold:hover {
  background-color: #e55000;
  box-shadow: 0 8px 24px var(--shadow);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--orange);
  color: var(--orange);
}

.stats-bar {
  background-color: var(--mid-bg);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  border-bottom: 3px solid var(--orange);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.stat-number .unit {
  font-size: 0.6em;
  color: var(--muted-text);
  margin-left: 0.25rem;
}

.stat-label {
  color: var(--muted-text);
  font-size: 0.95rem;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-sm {
  padding: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tag {
  display: inline-block;
  background-color: rgba(245, 102, 0, 0.15);
  color: var(--orange);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--orange);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--muted-text);
  max-width: 600px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--diploma);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.card:hover {
  border-top-color: var(--orange);
  box-shadow: 0 12px 32px var(--shadow);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  height: 3rem;
  display: flex;
  align-items: center;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.card p {
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background-color: var(--diploma);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.news-card:hover {
  border-top-color: var(--orange);
  box-shadow: 0 12px 32px var(--shadow);
  transform: translateY(-4px);
}

.news-date {
  display: block;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1.5rem 1.5rem 0;
}

.news-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  padding: 0 1.5rem;
  margin: 0.75rem 0;
}

.news-card p {
  color: var(--muted-text);
  font-size: 0.95rem;
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}

.news-card a {
  display: inline-block;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  padding: 0 1.5rem 1.5rem;
  transition: color 0.3s ease;
}

.news-card a:hover {
  color: #e55000;
}

.cta-band {
  background-color: var(--regalia);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(245, 102, 0, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: 0 auto;
}

.cta-band h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: var(--muted-text);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--deeper-bg) 0%, var(--diploma) 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(245, 102, 0, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.page-hero h1 {
  position: relative;
  z-index: 10;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  position: relative;
  z-index: 10;
  color: var(--muted-text);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.pub-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pub-section-header h2 {
  font-size: 1.75rem;
  color: var(--white);
}

.pub-count {
  background-color: var(--orange);
  color: #1A1A1A;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.pub-list {
  list-style: none;
}

.pub-item {
  background-color: var(--diploma);
  border-left: 3px solid transparent;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.pub-item:hover {
  border-left-color: var(--orange);
  box-shadow: 0 8px 24px var(--shadow);
}

.pub-num {
  color: var(--orange);
  font-weight: 700;
  margin-right: 0.75rem;
}

.pub-item p {
  color: var(--muted-text);
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.pub-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.5rem;
  transition: color 0.3s ease;
}

.pub-link:hover {
  color: #e55000;
}

.grants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grant-item {
  background-color: var(--diploma);
  border-radius: 0.75rem;
  padding: 2rem;
  border-top: 3px solid transparent;
  transition: all 0.3s ease;
}

.grant-item:hover {
  border-top-color: var(--orange);
  box-shadow: 0 12px 32px var(--shadow);
  transform: translateY(-4px);
}

.grant-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.grant-amount {
  background-color: var(--regalia);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.grant-role {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
}

.grant-text {
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.grant-text em {
  color: var(--white);
  font-style: normal;
  font-weight: 600;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  background-color: var(--diploma);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.team-card:hover {
  border-top-color: var(--orange);
  box-shadow: 0 12px 32px var(--shadow);
  transform: translateY(-4px);
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--regalia) 0%, var(--orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  font-weight: 700;
}

.team-card h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card p {
  color: var(--muted-text);
  font-size: 0.9rem;
}

.course-item {
  background-color: var(--diploma);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.course-item:hover {
  border-left-color: var(--orange);
  box-shadow: 0 8px 24px var(--shadow);
  transform: translateX(4px);
}

.course-code {
  display: inline-block;
  background-color: var(--regalia);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.course-item h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.course-item p {
  color: var(--muted-text);
  font-size: 0.95rem;
}

.contact-card {
  background-color: var(--diploma);
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

.contact-photo img {
  width: 150px;
  height: 150px;
  border-radius: 0.5rem;
  object-fit: cover;
  background: linear-gradient(135deg, var(--regalia) 0%, var(--orange) 100%);
}

.contact-info h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.contact-info .title {
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-row .icon {
  color: var(--orange);
  font-size: 1.1rem;
}

.contact-row a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-row a:hover {
  color: var(--orange);
}

.scholar-banner {
  background-color: var(--regalia);
  border-radius: 0.75rem;
  padding: 2rem;
  margin: 2rem 0;
}

.scholar-banner h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.scholar-banner p {
  color: var(--muted-text);
}

.philosophy-box {
  background-color: var(--diploma);
  border-left: 4px solid var(--orange);
  padding: 2rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.philosophy-box strong {
  color: var(--white);
}

.divider {
  height: 1px;
  background-color: var(--border);
  margin: 3rem 0;
}

footer {
  background-color: var(--deeper-bg);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .dot {
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--orange);
  border-radius: 50%;
}

.footer-tagline {
  color: var(--muted-text);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: var(--muted-text);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  color: var(--muted-text);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.pi-profile-card {
  background-color: var(--diploma);
  border-radius: 0.75rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

img.pi-photo {
  width: 300px;
  height: 300px;
  border-radius: 0.75rem;
  object-fit: cover;
  object-position: center top;
  background: linear-gradient(135deg, var(--regalia) 0%, var(--orange) 100%);
  display: block;
}

.pi-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.pi-subtitle {
  font-size: 0.82rem;
  color: var(--muted-text);
  letter-spacing: 0.02em;
}

.pi-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.pi-link-btn {
  background-color: var(--regalia);
  color: var(--white);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pi-link-btn:hover {
  background-color: var(--orange);
  color: #1A1A1A;
}

.pi-title {
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0;
  font-size: 1rem;
  text-align: center;
}

.pi-bio {
  color: var(--muted-text);
  line-height: 1.8;
  margin-bottom: 0;
  text-align: left;
  max-width: 600px;
}

.pi-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  width: 100%;
  text-align: left;
}

.pi-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pi-contact-icon {
  color: var(--orange);
  font-size: 1.2rem;
}

.pi-contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
}

.pi-contact-item a:hover {
  color: var(--orange);
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .navbar-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: 400px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .tagline {
    font-size: 1rem;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2rem 1rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .cards-grid,
  .news-grid,
  .grants-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 3rem 1rem;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-row {
    justify-content: center;
  }

  .pi-profile-card {
    padding: 1.5rem 1rem;
  }

  img.pi-photo {
    width: 220px;
    height: 220px;
  }

  .pi-contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-links {
    gap: 0.75rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero .tagline {
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .cta-band {
    padding: 2rem 1rem;
  }

  .cta-band h2 {
    font-size: 1.5rem;
  }

  .cta-band p {
    font-size: 0.95rem;
  }

  .hero-cta {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .contact-photo img {
    width: 120px;
    height: 120px;
  }

  .pub-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

/* ═══════════════════════════════════════════════════════
   HOME PAGE — TWO-COLUMN LAYOUT
═══════════════════════════════════════════════════════ */

.home-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

/* Left column */
.home-left {
  color: var(--muted-text);
}

.home-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted-text);
  margin-bottom: 1rem;
}

.home-thrust-label {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.home-research-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.home-research-list li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--muted-text);
  line-height: 1.6;
}

.home-research-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
}

.home-research-list li strong {
  color: var(--white);
}

.home-divider {
  height: 1px;
  background-color: var(--border);
  margin: 2rem 0;
}

.home-section-title {
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.home-text {
  color: var(--muted-text);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.home-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}

.home-link:hover {
  text-decoration: underline;
}

.apply-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.apply-checklist li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--muted-text);
  line-height: 1.6;
  font-size: 0.93rem;
}

.apply-checklist li::before {
  content: '☐';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 1rem;
  line-height: 1.55;
}

/* Right column — news sidebar */
.home-right {
  background-color: var(--diploma);
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: sticky;
  top: 5rem;
  border: 1px solid var(--border);
}

.sidebar-title {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--orange);
}

.news-feed {
  display: flex;
  flex-direction: column;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}

.news-feed::-webkit-scrollbar {
  width: 4px;
}

.news-feed::-webkit-scrollbar-track {
  background: transparent;
}

.news-feed::-webkit-scrollbar-thumb {
  background-color: var(--orange);
  border-radius: 2px;
}

.news-feed-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-text);
  line-height: 1.55;
}

.news-feed-item:first-child {
  padding-top: 0;
}

.news-feed-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-feed-item strong {
  color: var(--white);
}

.news-tag {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════
   DIRECTOR SECTION
═══════════════════════════════════════════════════════ */

.director-section {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 2.5rem;
  background-color: var(--diploma);
  border-radius: 0.75rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.director-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.director-img {
  width: 170px;
  height: 170px;
  border-radius: 0.625rem;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 0.5rem;
  border: 2px solid var(--border);
}

.director-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
}

.director-role {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 500;
}

.director-email {
  color: var(--muted-text);
  font-size: 0.8rem;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.3s ease;
}

.director-email:hover {
  color: var(--orange);
}

.director-bio-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.director-heading {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.director-bio-text {
  color: var(--muted-text);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.director-bio-text strong {
  color: var(--white);
}

.director-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.dir-link-btn {
  background-color: var(--regalia);
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 0.375rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dir-link-btn:hover {
  background-color: var(--orange);
  color: #1A1A1A;
}

.director-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--muted-text);
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════════
   SERVICE PAGE
═══════════════════════════════════════════════════════ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2rem;
  max-width: 1120px;
  margin: 0 auto;
}

.service-block {
  background-color: var(--diploma);
  border-radius: 0.75rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.service-block-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--orange);
}

.service-icon {
  font-size: 1.4rem;
}

.service-block-title {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}

.service-list::-webkit-scrollbar {
  width: 4px;
}

.service-list::-webkit-scrollbar-track {
  background: transparent;
}

.service-list::-webkit-scrollbar-thumb {
  background-color: var(--orange);
  border-radius: 2px;
}

.service-item {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}

.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-venue {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.service-abbr {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — HOME & DIRECTOR
═══════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .home-grid {
    grid-template-columns: 1fr;
  }
  .home-right {
    position: static;
  }
  .director-section {
    grid-template-columns: 1fr;
  }
  .director-photo-col {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1rem;
  }
  .director-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .home-wrapper {
    padding: 1.5rem 1rem 3rem;
  }
  .director-section {
    padding: 1.5rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .director-photo-col {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
