/* ============================================
   MYINFO — Beatrix E. Groves-McDaniel
   Black & Gold Slide Presentation
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Raleway:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --gold: #D4A017;
  --gold-light: #F0C94D;
  --gold-pale: #F5E6A3;
  --black: #0A0A0A;
  --black-soft: #141414;
  --black-card: #1A1A1A;
  --black-border: #2A2A2A;
  --white: #F5F5F0;
  --grey: #888888;
  --grey-light: #BBBBBB;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- SLIDE SYSTEM ---- */
.slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.slide-inner {
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ---- GOLD DIVIDER LINE ---- */
.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px 0;
}

/* ---- NAV DOTS ---- */
.nav-dots {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black-border);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot:hover,
.nav-dot.active {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

/* ---- SLIDE NUMBER ---- */
.slide-number {
  position: absolute;
  bottom: 30px;
  right: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* ---- SECTION LABEL ---- */
.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* ============================================
   SLIDE 1 — HERO
   ============================================ */
#slide-1 {
  text-align: center;
  background: radial-gradient(ellipse at 50% 60%, #1a1200 0%, var(--black) 70%);
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-portrait {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(212,160,23,0.25), 0 0 80px rgba(212,160,23,0.1);
  margin-bottom: 36px;
  display: inline-block;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-name span {
  color: var(--gold);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--grey-light);
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '———';
  color: var(--gold);
  margin: 0 12px;
  font-style: normal;
}

.hero-quick-facts {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero-fact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.hero-scroll-hint {
  margin-top: 60px;
  color: var(--grey);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================
   SLIDE 2 — WHO I AM
   ============================================ */
#slide-2 {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}

.slide-2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.who-i-am-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.who-i-am-text h2 .accent { color: var(--gold); }

.who-i-am-text p {
  font-size: 1rem;
  color: var(--grey-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.contact-card {
  background: var(--black-card);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--grey-light);
}

.contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item a {
  color: var(--gold-pale);
  text-decoration: none;
  transition: color 0.2s;
}

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

.key-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.key-fact {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
  transition: border-color 0.3s;
}

.key-fact:hover {
  border-color: var(--gold);
}

.key-fact-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.key-fact-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
}

/* ============================================
   SLIDE 3 — CAREER PHILOSOPHY
   ============================================ */
#slide-3 {
  background: var(--black-soft);
}

.quote-block {
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  margin: 32px 0;
  background: rgba(212,160,23,0.04);
  border-radius: 0 8px 8px 0;
}

.quote-block blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 12px;
}

.quote-block cite {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.phil-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
}

.phil-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.phil-card-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.phil-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.phil-card p {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ============================================
   SLIDE 4 — KEY ACHIEVEMENTS
   ============================================ */
#slide-4 {
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
}

.achievements-intro {
  max-width: 680px;
}

.achievements-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}

.achievements-intro h2 .accent { color: var(--gold); }

.achievements-intro p {
  color: var(--grey-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 48px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.achievement-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.achievement-card:hover {
  border-color: var(--gold);
}

.achievement-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.ach-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.ach-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 10px;
}

.ach-org {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.ach-desc {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ============================================
   SLIDE 5 — CURRENT ROLES
   ============================================ */
#slide-5 {
  background: var(--black);
}

.roles-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}

.roles-intro h2 .accent { color: var(--gold); }

.roles-intro p {
  color: var(--grey-light);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 48px;
}

.roles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.role-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--black-border);
}

.role-item:last-child { border-bottom: none; }

.role-period {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.role-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
}

.role-org {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.role-desc {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ============================================
   SLIDE 6 — EDUCATION & QUALIFICATIONS
   ============================================ */
#slide-6 {
  background: var(--black-soft);
}

.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.edu-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
}

.edu-left h2 .accent { color: var(--gold); }

.degree-card {
  background: var(--black-card);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.degree-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.degree-card .section-label {
  margin-bottom: 8px;
}

.degree-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.degree-meta {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.degree-desc {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.7;
}

.memberships-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 10px;
  padding: 28px;
  margin-top: 24px;
}

.memberships-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

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

.membership-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--grey-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--black-border);
}

.membership-list li:last-child { border-bottom: none; }

.membership-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.quals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.qual-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 18px;
  transition: border-color 0.3s;
}

.qual-item:hover { border-color: var(--gold); }

.qual-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.qual-meta {
  font-size: 0.75rem;
  color: var(--grey);
}

/* ============================================
   SLIDE 7 — SKILLS & INTERESTS
   ============================================ */
#slide-7 {
  background: var(--black);
}

.skills-interests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.side-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}

.side-heading .accent { color: var(--gold); }

.side-sub {
  color: var(--grey);
  font-size: 0.88rem;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 16px 20px;
  transition: border-color 0.3s;
}

.skill-item:hover { border-color: var(--gold); }

.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.skill-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-light);
  letter-spacing: 0.03em;
}

.skill-level {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.skill-bar-track {
  height: 3px;
  background: var(--black-border);
  border-radius: 2px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 1s ease;
}

.interests-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.interest-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 18px 20px;
  transition: border-color 0.3s;
}

.interest-item:hover { border-color: var(--gold); }

.interest-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.interest-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.interest-content p {
  font-size: 0.83rem;
  color: var(--grey-light);
  line-height: 1.6;
}

/* ============================================
   SLIDE 8 — CLOSING / CONTACT
   ============================================ */
#slide-8 {
  background: radial-gradient(ellipse at 50% 40%, #1a1200 0%, var(--black) 70%);
  text-align: center;
}

.closing-portrait {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(212,160,23,0.2);
  margin-bottom: 32px;
  display: inline-block;
}

#slide-8 h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}

#slide-8 h2 .accent { color: var(--gold); }

.closing-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--grey-light);
  margin-bottom: 40px;
}

.closing-cta {
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.closing-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.closing-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: 40px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.closing-link:hover {
  background: var(--gold);
  color: var(--black);
}

.closing-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
  color: var(--grey);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.closing-divider::before,
.closing-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-note {
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 48px;
  line-height: 1.6;
}

.footer-note a {
  color: var(--gold);
  text-decoration: none;
}

/* ============================================
   FOOTER BAR
   ============================================ */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.08em;
}

.site-footer .gold { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .slide { padding: 50px 24px; }
  .slide-2-grid,
  .edu-grid,
  .skills-interests-grid { grid-template-columns: 1fr; gap: 32px; }
  .achievements-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .role-item { grid-template-columns: 1fr; gap: 8px; }
  .nav-dots { display: none; }
  .hero-portrait { width: 160px; height: 160px; }
  .key-facts-grid { grid-template-columns: 1fr 1fr; }
  .quals-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .hero-quick-facts { gap: 20px; }
  .key-facts-grid { grid-template-columns: 1fr; }
  .closing-links { flex-direction: column; align-items: center; }
}

/* =============================================
   BIG QUESTIONS — Additional Styles
   ============================================= */

/* ---- SITE HEADER ---- */
.site-header {
  text-align: center;
  padding: 60px 40px 48px;
  background: radial-gradient(ellipse at 50% 60%, #1a1200 0%, #0A0A0A 70%);
  position: relative;
}

.logo-wrap {
  margin-bottom: 24px;
}

.site-logo {
  max-width: 480px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.site-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: #F0C94D;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.site-meta {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888888;
}

.back-link {
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4A017;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #D4A017;
  transition: all 0.3s ease;
}

.back-link:hover {
  background: #D4A017;
  color: #0A0A0A;
}

/* ---- PAGE SECTIONS ---- */
.page-section {
  padding: 72px 40px;
  max-width: 100%;
}

.page-section.alt-bg {
  background: #141414;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: #F5F0E8;
  margin: 16px 0;
}

.section-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4A017, transparent);
  border: none;
  max-width: 300px;
  margin: 0 auto;
}

.section-body {
  max-width: 760px;
  margin: 0 auto;
}

.section-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: #BBBBBB;
  margin-bottom: 16px;
}

.section-body p:last-child {
  margin-bottom: 0;
}

/* ---- ABOUT ME ---- */
.about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}

.about-photo {
  width: 100%;
  max-width: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #D4A017;
  box-shadow: 0 0 40px rgba(212,160,23,0.25), 0 0 80px rgba(212,160,23,0.1);
}

.about-text-col p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: #BBBBBB;
  margin-bottom: 16px;
}

.about-text-col p:last-child {
  margin-bottom: 0;
}

.qual-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid #D4A017;
  color: #D4A017;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(212,160,23,0.05);
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 12px;
}

.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #D4A017;
  margin-bottom: 10px;
}

.faq-a {
  font-size: 0.93rem;
  line-height: 1.8;
  color: #BBBBBB;
}

.faq-a a {
  color: #F5E6A3;
  text-decoration: none;
  border-bottom: 1px solid #D4A017;
}

.faq-a a:hover {
  color: #D4A017;
}

/* ---- NEXT PAGES / NAV CARDS ---- */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.nav-card {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.3s;
}

.nav-card:hover {
  border-color: #D4A017;
}

.nav-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #F5F0E8;
  margin-bottom: 12px;
}

.nav-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #888888;
  margin-bottom: 20px;
}

.card-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #D4A017;
  color: #D4A017;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background: #D4A017;
  color: #0A0A0A;
}

/* ---- TIMETABLE ---- */
.timetable {
  border-top: 1px solid #2A2A2A;
}

.timetable-row {
  display: grid;
  grid-template-columns: 100px 1fr 160px;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid #2A2A2A;
}

.timetable-row.half-term {
  opacity: 0.5;
}

.tt-date {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #D4A017;
  padding-top: 4px;
}

.tt-session {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 4px;
}

.tt-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #F5F0E8;
  margin-bottom: 4px;
}

.tt-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  font-style: italic;
  color: #888888;
}

.tt-perspectives {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D4A017;
  text-align: right;
  padding-top: 4px;
}

/* ---- RESOURCE CARDS ---- */
.resource-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.resource-feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #F5F0E8;
  margin-bottom: 10px;
}

.resource-feature-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #BBBBBB;
  margin-bottom: 16px;
}

.rfc-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.resource-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.resource-card:last-child {
  margin-bottom: 0;
}

.rc-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.resource-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #F5F0E8;
  margin-bottom: 6px;
}

.resource-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #888888;
  margin-bottom: 8px;
}

.resource-card a {
  font-size: 0.8rem;
  color: #D4A017;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.resource-card a:hover {
  color: #F0C94D;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #141414;
  border-top: 1px solid #2A2A2A;
  padding: 24px 40px;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  color: #888888;
  letter-spacing: 0.05em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .page-section { padding: 48px 24px; }
  .site-header { padding: 48px 24px 40px; }
  .site-logo { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 180px; margin: 0 auto; }
  .two-col-grid { grid-template-columns: 1fr; }
  .timetable-row { grid-template-columns: 1fr; gap: 8px; }
  .tt-perspectives { text-align: left; }
  .resource-feature-card { flex-direction: column; gap: 16px; }
  .back-link { position: static; display: inline-block; margin-bottom: 16px; }
  .site-header { text-align: center; }
}

/* ---- FAQ TWO COLUMN ---- */
.faq-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

/* ---- SESSION CARDS ---- */
.session-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.session-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #2A2A2A;
}

.session-card:first-child {
  border-top: 1px solid #2A2A2A;
}

.session-card.half-term {
  opacity: 0.5;
}

.session-meta {
  padding-top: 4px;
}

.session-num {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 4px;
}

.session-date {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  color: #888888;
}

.session-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F5F0E8;
  margin-bottom: 4px;
}

.session-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #D4A017;
  margin-bottom: 12px;
}

.session-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #BBBBBB;
  margin-bottom: 12px;
}

.session-perspectives {
  font-size: 0.78rem;
  line-height: 1.6;
  color: #888888;
}

.session-perspectives strong {
  color: #D4A017;
  font-weight: 600;
}

/* ---- CREDITS PANEL ---- */
.credits-panel {
  background: #1A1A1A;
  border: 1px solid #D4A017;
  border-radius: 12px;
  padding: 36px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.credits-panel p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #BBBBBB;
  margin-bottom: 12px;
}

.credits-panel p:last-child {
  margin-bottom: 0;
  margin-top: 16px;
}

.credits-panel a {
  color: #D4A017;
  text-decoration: none;
  border-bottom: 1px solid #D4A017;
  font-weight: 600;
}

.credits-panel a:hover {
  color: #F0C94D;
}

.credits-panel strong {
  color: #F5F0E8;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .faq-two-col { grid-template-columns: 1fr; }
  .session-card { grid-template-columns: 1fr; gap: 8px; }
  .session-meta { display: flex; gap: 12px; align-items: center; }
}

/* ---- IMPORTANT INFO GRID ---- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 32px;
}

.info-card {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 20px 24px;
}

.info-card:hover {
  border-color: rgba(212,160,23,0.4);
}

.info-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 8px;
}

.info-value {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: #BBBBBB;
  line-height: 1.6;
}

.info-value a {
  color: #F5E6A3;
  text-decoration: none;
  font-weight: 500;
}

.info-value a:hover {
  color: #D4A017;
}

/* ---- TIMETABLE ---- */
.timetable-intro {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 36px;
}

.sessions-list {
  border-top: 1px solid #2A2A2A;
}

.session-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #2A2A2A;
}

.session-card.half-term {
  opacity: 0.45;
}

.session-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}

.session-num {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A017;
}

.session-date {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #888;
}

.session-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F5F0E8;
  margin-bottom: 6px;
}

.session-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  font-style: italic;
  color: #D4A017;
  margin-bottom: 12px;
}

.session-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #BBBBBB;
  margin-bottom: 12px;
}

.session-perspectives {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  padding-top: 10px;
  border-top: 1px solid #2A2A2A;
}

/* ---- COURSE PHILOSOPHY BLOCKQUOTE ---- */
.course-philosophy {
  background: rgba(212,160,23,0.05);
  border-left: 3px solid #D4A017;
  padding: 24px 32px;
  border-radius: 0 8px 8px 0;
  max-width: 700px;
  margin: 0 auto;
}

.course-philosophy p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #F5F0E8 !important;
  font-style: italic;
  margin-bottom: 12px !important;
}

.course-philosophy cite {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  color: #D4A017;
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 700px) {
  .session-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .session-meta {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
