/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #7413BD;
  --purple-dark: #5a0f96;
  --purple-light: #f3e8ff;
  --green: #23A950;
  --green-dark: #1a7f3d;
  --navy: #1a1a2e;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --grey-light: #e9ecef;
  --grey: #6c757d;
  --grey-dark: #343a40;
  --text: #2d2d2d;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--purple-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p {
  margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--purple-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--green);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cta-white {
  background: var(--white);
  color: var(--purple);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.btn-cta-white:hover {
  background: var(--off-white);
  color: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== HEADER & NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--purple);
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--grey-dark);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.4rem !important;
  font-size: 0.9rem;
  color: var(--white) !important;
}

.nav-cta:hover {
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--white) 50%, #e8f5e9 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.25rem;
}

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

.hero-text .subtitle {
  font-size: 1.2rem;
  color: var(--grey);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-image .placeholder-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--purple), var(--green));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 2rem;
}

/* ===== INFO BAR ===== */
.info-bar {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 0;
}

.info-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.info-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--off-white);
}

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

.section-header h2 {
  margin-bottom: 0.75rem;
}

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

/* ===== ACTIVITY CARDS ===== */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-align: center;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.activity-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.activity-card:hover .activity-photo {
  transform: scale(1.05);
}

.activity-card {
  overflow: hidden;
}

.activity-card h3 {
  margin: 1rem 1.5rem 0.5rem;
}

.activity-card p {
  color: var(--grey);
  font-size: 0.95rem;
  padding: 0 1.5rem 1.5rem;
}

/* ===== PHOTO GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== DofE LEVEL CARDS ===== */
.dofe-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.dofe-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}

.dofe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dofe-card-header {
  text-align: center;
  padding: 2rem 1.5rem 1rem;
}

.dofe-medal {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dofe-medal svg {
  width: 40px;
  height: 40px;
}

.dofe-bronze .dofe-medal { color: #CD7F32; }
.dofe-silver .dofe-medal { color: #A0A0A0; }
.dofe-gold .dofe-medal { color: #D4AF37; }

.dofe-bronze .dofe-card-header { border-top: 5px solid #CD7F32; }
.dofe-silver .dofe-card-header { border-top: 5px solid #C0C0C0; }
.dofe-gold .dofe-card-header { border-top: 5px solid #D4AF37; }

.dofe-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.dofe-bronze h3 { color: #CD7F32; }
.dofe-silver h3 { color: #808080; }
.dofe-gold h3 { color: #D4AF37; }

.dofe-age {
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 500;
}

.dofe-card-body {
  padding: 0 1.5rem;
  flex: 1;
}

.dofe-duration {
  text-align: center;
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.dofe-expedition {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  margin-bottom: 1rem;
}

.dofe-expedition-label {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--grey);
}

.dofe-expedition-detail {
  font-weight: 700;
  color: var(--navy);
}

.dofe-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.dofe-stats li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
}

.dofe-stats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dofe-bronze .dofe-stats li::before { background: #CD7F32; }
.dofe-silver .dofe-stats li::before { background: #C0C0C0; }
.dofe-gold .dofe-stats li::before { background: #D4AF37; }

.dofe-desc {
  font-size: 0.9rem;
  color: var(--grey);
  font-style: italic;
  line-height: 1.6;
}

.dofe-card-footer {
  padding: 1rem 1.5rem 1.5rem;
}

.dofe-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.dofe-price-note {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey);
  margin-top: 0.2rem;
}

.dofe-popular {
  position: absolute;
  top: 12px;
  right: -30px;
  background: #D4AF37;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 2.5rem;
  transform: rotate(35deg);
  z-index: 1;
}

.dofe-gold {
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

@media (max-width: 968px) {
  .dofe-levels {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ===== ABOUT / TWO-COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col-text h2 {
  margin-bottom: 1rem;
}

.two-col-text p {
  color: var(--grey);
}

.two-col-image img,
.two-col-image .placeholder-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ===== FEATURE LIST (DofE page) ===== */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 1.02rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

/* ===== COMPARISON TABLE (DofE) ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table thead {
  background: var(--purple);
  color: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
}

.comparison-table th {
  font-weight: 600;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--grey-light);
}

.comparison-table tbody tr:hover {
  background: var(--purple-light);
}

.comparison-table .check {
  color: var(--green);
  font-weight: 700;
  font-size: 1.2rem;
}

.comparison-table .cross {
  color: #dc3545;
  font-weight: 700;
  font-size: 1.2rem;
}

/* ===== PROGRAMME LIST ===== */
.programme-list {
  max-width: 800px;
  margin: 0 auto;
}

.programme-event {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.programme-event:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.programme-event.is-next {
  border-left: 4px solid var(--purple);
  background: var(--purple-light);
}

.programme-date {
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}

.programme-date .day {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}

.programme-date .month {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey);
  font-weight: 600;
}

.programme-details h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: var(--navy);
}

.programme-details .programme-time {
  font-size: 0.85rem;
  color: var(--grey);
}

.programme-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--purple);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .programme-event {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .programme-badge {
    margin-left: 0;
  }
}

/* ===== LATEST NEWS FEATURED ===== */
.latest-news-featured .two-col-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ===== SOCIAL FEED ===== */
.social-feed {
  text-align: center;
}

.social-feed-embed {
  max-width: 800px;
  margin: 0 auto;
  min-height: 400px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-style: italic;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-secondary {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-about p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  display: block;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.social-links a:hover {
  background: var(--purple);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== DofE HERO ===== */
.hero-dofe {
  background: linear-gradient(135deg, #fff8e1 0%, var(--white) 50%, var(--purple-light) 100%);
}

.dofe-badge {
  display: inline-block;
  background: #D4AF37;
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

/* ===== PRICING HIGHLIGHT ===== */
.price-highlight {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  margin: 2rem auto;
}

.price-highlight .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
}

.price-highlight .price-note {
  color: var(--grey);
  font-size: 0.9rem;
}

/* ===== TESTIMONIAL / QUOTE ===== */
.quote-block {
  background: var(--purple-light);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
}

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

.faq-item {
  border-bottom: 1px solid var(--grey-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--purple);
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 1.25rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ===== LEADER AVATARS ===== */
.leader-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--purple), #9b59b6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(116, 19, 189, 0.3);
}

/* ===== EASTER EGG CLUES ===== */
.easter-clue {
  text-align: center;
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0 0;
  margin: 0;
  user-select: text;
  transition: color 0.3s ease;
}

.easter-clue:hover {
  color: rgba(0, 0, 0, 0.25);
}

.easter-clue-dark {
  color: rgba(255, 255, 255, 0.06);
}

.easter-clue-dark:hover {
  color: rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-content,
  .two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .info-bar-content {
    flex-direction: column;
    gap: 0.75rem;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6.5rem 0 3rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== PROGRAMME MIN HEIGHT ===== */
.programme-list {
  min-height: 300px;
}

/* ===== SECTION DIVIDERS ===== */
.section + .section-alt,
.section-alt + .section {
  border-top: 1px solid var(--grey-light);
}

/* ===== HERO IMAGE POLISH ===== */
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

/* ===== CTA SECTION POLISH ===== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== INFO BAR POLISH ===== */
.info-bar {
  letter-spacing: 0.2px;
}

.info-bar-content {
  gap: 2.5rem;
}

/* ===== QUOTE BLOCK POLISH ===== */
.quote-block {
  position: relative;
}

.quote-block::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 4rem;
  color: var(--purple);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

/* ===== TESTIMONIALS PLACEHOLDER ===== */
#testimonials .activity-card {
  border-left: 4px solid var(--purple);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== DOFE PRICE EXTRA POLISH ===== */
.dofe-price {
  position: relative;
}

.dofe-price::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--grey-light);
  margin: 0 auto 0.75rem;
}

/* ===== LINK UNDERLINE ANIMATION ===== */
.two-col-text a:not(.btn),
.faq-answer-inner a {
  text-decoration: none;
  background-image: linear-gradient(var(--purple), var(--purple));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.3s ease;
}

.two-col-text a:not(.btn):hover,
.faq-answer-inner a:hover {
  background-size: 100% 2px;
}
