
/* =====================================================
   SECTION HEADLINES 
   ===================================================== */

.section-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-title span {
  background: linear-gradient(90deg, #ffc107, #f57c00);
  -webkit-background-clip: text;
  color: transparent;
}

/* Eyebrow consistency */
.section-eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #972a2a;
  margin-bottom: 12px;
  display: inline-block;
}

/* Subtext consistency */
.section-subtext {
  font-size: 18px;
  max-width: 640px;
  opacity: 0.85;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 38px;
  }
}


/* =====================================================
   CDS HERO SECTION
   ===================================================== */

/* HERO BACKGROUND VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


/* Overlay for readability */
.hero-cds::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 1;
}

/* Content Layer */
.hero-cds .container {
  position: relative;
  z-index: 2;
}

/* Hero Text */
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffc107;
  margin-bottom: 14px;
  display: inline-block;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 22px;
}

.hero-title span {
  background: linear-gradient(90deg, #ffc107, #f57c00);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtext {
  font-size: 18px;
  max-width: 560px;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* Trust Strip */
.hero-trust {
  display: flex;
  gap: 28px;
}

.hero-trust div {
  border-left: 3px solid #ffc107;
  padding-left: 14px;
}

.hero-trust strong {
  display: block;
  font-size: 18px;
}

.hero-trust span {
  font-size: 13px;
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 18px;
  }

  .hero-cds::before {
    filter: blur(9px);
    background-position: center top;
  }
}

/* Mobile: show full video frame (no crop) */
@media (max-width: 768px) {
  .hero-video {
    object-fit: cover;
	filter: blur(2.5px);
    background: #000; /* fills empty space cleanly */
  }
}


/* Mobile spacing between hero text & form */
@media (max-width: 768px) {
  .hero-cds .col-lg-7 {
    margin-bottom: 50px;
  }
}

/* Hide desktop sticky button on mobile */
@media (max-width: 768px) {
  .enquire_btn {
    display: none !important;
  }
}


/* =====================================================
   HERO
   ===================================================== */

.hero-cds {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px; /* header height */
  padding-bottom: 60px;
}

.hero-cds .container {
  width: 100%;
}

.hero-row {
  align-items: center;
}

/* Left content */
.hero-cds .col-lg-7 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* Mobile */
@media (max-width: 991px) {
  .hero-cds {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}




           
/* ===== ABOUT CDS ===== */

.about-cds-section {
  padding: 140px 0;
  background: #ffffff;
  color: #1a1a1a;
}

/* ===== HEADLINE SYSTEM ===== */

.about-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 18px;
  display: inline-block;
  font-weight: 600;
}

.about-main-title {
  font-size: clamp(42px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 26px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.about-main-title span {
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  -webkit-background-clip: text;
  color: transparent;
}

/* Intro */

.about-intro {
  font-size: 19px;
  line-height: 1.8;
  max-width: 640px;
  color: #555;
  margin-bottom: 60px;
}

/* ===== IMAGE BLOCK ===== */

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.08);
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Experience Badge */

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #111111;
  padding: 22px 26px;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.experience-badge strong {
  font-size: 34px;
  display: block;
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.experience-badge span {
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 1px;
}

/* ===== PRINCIPLES ===== */

.about-principles {
  padding-left: 60px;
}

.principle-card {
  position: relative;
  margin-bottom: 45px;
  padding-left: 50px;
}

.principle-number {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.principle-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #1a1a1a;
}

.principle-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* subtle divider between principles */

.principle-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50px;
  bottom: -22px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  opacity: 0.4;
}

/* =====================================================
   ABOUT CTA
   ===================================================== */

.about-cta {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* Helpline Block */

.about-call {
  display: flex;
  flex-direction: column;
}

.about-call span {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}

.about-call a {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-call a:hover {
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  -webkit-background-clip: text;
  color: transparent;
}

/* Responsive */

@media (max-width: 768px) {
  .about-cta {
    gap: 30px;
  }

  .about-cta .theme-btn {
    height: 52px;
    padding: 0 30px;
  }

  .about-call a {
    font-size: 18px;
  }
}
/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {

  .about-cds-section {
    padding: 100px 0;
  }

  .about-main-title {
    font-size: 36px;
  }

  .about-principles {
    padding-left: 0;
    margin-top: 60px;
  }

  .principle-card {
    padding-left: 40px;
  }

}




/* =====================================================
   PROGRAMS 
   ===================================================== */

.programs-editorial {
  padding: 180px 0;
  background: #ffffff;
  position: relative;
}

/* Intro */

.programs-intro {
  max-width: 820px;
  margin-bottom: 120px;
}

.programs-intro .section-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 18px;
  display: inline-block;
}

.programs-intro .section-title {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.programs-intro .section-title span {
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.programs-intro .section-subtext {
  font-size: 19px;
  line-height: 1.8;
  color: #555;
  max-width: 680px;
}

/* =========================================
   PROGRAM PANEL
========================================= */

.program-panel {
  display: grid;
  grid-template-columns: 100px 1fr 520px;
  align-items: center;
  gap: 60px;
  margin-bottom: 140px;
  position: relative;
}

.program-panel.reverse {
  grid-template-columns: 100px 520px 1fr;
}

/* Big number */

.program-number {
  font-size: 72px;
  font-weight: 800;
  color: #f1f1f1;
  line-height: 1;
  user-select: none;
}

/* Content */

.program-content {
  max-width: 520px;
}

.program-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  display: inline-block;
  margin-bottom: 16px;
}

.program-content h3 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #1a1a1a;
}

.program-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 28px;
}

/* Tags */

.program-tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.program-tags span {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255, 193, 7, 0.08);
  color: #b36b00;
  font-weight: 500;
}

/* Program Link */

.program-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: 0.3s ease;
}

.program-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}

.program-link:hover::after {
  transform: scaleX(1);
}

/* Image */

.program-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.program-image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.program-image:hover img {
  transform: scale(1.05);
}

/* Divider */

.program-divider {
  height: 1px;
  width: 100%;
  margin: -60px 0 100px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,0,0,0.08),
    transparent
  );
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

  .program-panel,
  .program-panel.reverse {
    grid-template-columns: 80px 1fr;
  }

  .program-image {
    margin-top: 40px;
  }

}

@media (max-width: 768px) {

  .programs-editorial {
    padding: 120px 0;
  }

  .program-panel {
    display: block;
    margin-bottom: 100px;
  }

  .program-number {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .program-content h3 {
    font-size: 28px;
  }

}




/* =====================================================
   GLOBAL ADVISORY COUNCIL
   ===================================================== */

.home-board-section {
  padding: 180px 0;
  background: #ffffff;
  position: relative;
}

/* Header */

.board-header {
  max-width: 820px;
  margin-bottom: 120px;
}

.board-header .section-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 18px;
  display: inline-block;
}

.board-header .section-title {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.board-header .section-title span {
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.board-header .section-subtext {
  font-size: 19px;
  line-height: 1.8;
  color: #555;
  max-width: 680px;
}

/* =========================================
   GRID STRUCTURE
========================================= */

.board-grid {
  display: grid;
  gap: 80px;
}

.board-top {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 140px;
}

.board-bottom {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto 120px auto;
}

/* =========================================
   MEMBER CARD
========================================= */

.board-member {
  text-align: left;
  transition: 0.4s ease;
}

/* Portrait */

.board-member img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 28px;
  filter: grayscale(100%);
  transition: 0.5s ease;
}

.board-member:hover img {
  filter: grayscale(0%);
}

/* Info */

.board-info h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.board-info span {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b36b00;
  display: block;
  margin-bottom: 14px;
}

.board-info p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 90%;
}

/* Subtle underline separator */

.board-member::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 25px;
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  opacity: 0.3;
}

/* =========================================
   CTA
========================================= */

.board-cta {
  text-align: center;
}

.board-cta .program-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.board-cta .program-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}

.board-cta .program-link:hover::after {
  transform: scaleX(1);
}

/* =========================================
   RESPONSIVE
========================================= */

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

@media (max-width: 768px) {

  .home-board-section {
    padding: 120px 0;
  }

  .board-top,
  .board-bottom {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 100px;
  }

}



/* =====================================================
   LEARNING AT CDS
   ===================================================== */

.learning-philosophy-section {
  padding: 200px 0;
  background: #ffffff;
  position: relative;
}

/* =========================================
   HEADER
========================================= */

.learning-header {
  max-width: 850px;
  margin-bottom: 120px;
}

.learning-header .section-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 18px;
  display: inline-block;
}

.learning-header .section-title {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.learning-header .section-title span {
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.learning-header .section-subtext {
  font-size: 19px;
  line-height: 1.8;
  color: #555;
  max-width: 680px;
}

/* =========================================
   MANIFESTO LINE
========================================= */

.learning-narrative {
  max-width: 900px;
  margin-bottom: 120px;
}

.lead-line {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.lead-line strong {
  font-weight: 800;
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  -webkit-background-clip: text;
  color: transparent;
}

/* =========================================
   PHILOSOPHY POINTS
========================================= */

.learning-points {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
}

.learning-points li {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 22px;
  padding-left: 28px;
  position: relative;
}

.learning-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
}

/* =========================================
   CONCEPT BLOCKS 
========================================= */

.learning-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.learning-card {
  transition: 0.4s ease;
}

/* Image */

.learning-card img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 28px;
  transition: 0.6s ease;
}

.learning-card:hover img {
  transform: scale(1.04);
}

/* Title */

.learning-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #1a1a1a;
}

/* Text */

.learning-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 90%;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

  .learning-cards {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .learning-philosophy-section {
    padding: 140px 0;
  }

  .learning-cards {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .lead-line {
    font-size: 26px;
  }

}



/* =====================================================
   CREATIVE STUDIO
   ===================================================== */

.creative-studio {
  padding: 200px 0;
  background: #111111;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle texture depth */

.creative-studio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 193, 7, 0.06),
    transparent 60%
  );
  pointer-events: none;
}

/* Grid */

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 650px;
  align-items: center;
  gap: 120px;
}

/* =========================================
   LEFT CONTENT
========================================= */

.studio-content {
  max-width: 560px;
}

.section-eyebrow.light {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaaaaa;
  margin-bottom: 20px;
  display: inline-block;
}

/* Title */

.studio-title {
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 30px;
  color: #ffffff;
}

.studio-title span {
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  -webkit-background-clip: text;
  color: transparent;
}

/* Description */

.studio-description {
  font-size: 19px;
  line-height: 1.9;
  color: #dddddd;
  margin-bottom: 50px;
}

/* Points */

.studio-points {
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
}

.studio-points li {
  font-size: 17px;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
  padding-left: 28px;
}

.studio-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: #ffc107;
}

/* CTA – Consistent with About Section */

.studio-cta {
  display: inline-block;
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111111;
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  border-radius: 6px;
  transition: 0.3s ease;
}

.studio-cta:hover {
  transform: translateY(-2px);
}

/* =========================================
   RIGHT VISUAL
========================================= */

.studio-visual {
  position: relative;
  height: 520px;
}

/* Main image */

.studio-image-main {
  position: absolute;
  width: 75%;
  top: 0;
  right: 0;
}

.studio-image-main img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

/* Secondary overlapping image */

.studio-image-secondary {
  position: absolute;
  width: 55%;
  bottom: 0;
  left: 0;
}

.studio-image-secondary img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

  .studio-grid {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .studio-visual {
    height: 480px;
  }

}

@media (max-width: 768px) {

  .creative-studio {
    padding: 150px 0;
  }

  .studio-title {
    font-size: 36px;
  }

  .studio-visual {
    position: relative;
    height: auto;
  }

  .studio-image-main,
  .studio-image-secondary {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
  }

}





/* =====================================================
   STUDENT WORK
   ===================================================== */

.work-editorial {
  padding: 200px 0;
  background: #ffffff;
  position: relative;
}

/* Header */

.work-intro {
  max-width: 850px;
  margin-bottom: 140px;
}

.work-intro .section-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 18px;
  display: inline-block;
}

.work-intro .section-title {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.work-intro .section-title span {
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.work-intro .section-subtext {
  font-size: 19px;
  line-height: 1.8;
  color: #555;
}

/* =========================================
   EXHIBITION GRID 
========================================= */

.work-exhibition {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Base Item */

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

/* Image Control Using Aspect Ratio */

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: 0.6s ease;
}

/* Larger Variations */

.work-item.large img {
  aspect-ratio: 1 / 1;
}

.work-item.tall img {
  aspect-ratio: 3 / 4;
}

.work-item.wide img {
  aspect-ratio: 16 / 9;
}

/* Column Variations Only */

.work-item.large {
  grid-column: span 2;
}

.work-item.wide {
  grid-column: span 2;
}

/* Overlay */

.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.25),
    transparent
  );
  color: #ffffff;
  opacity: 0;
  transition: 0.4s ease;
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.work-overlay span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.work-overlay h4 {
  font-size: 18px;
  margin-top: 6px;
  font-weight: 700;
color: #ffffff;
}

.work-item:hover img {
  transform: scale(1.08);
}

/* Responsive */

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

@media (max-width: 768px) {
  .work-exhibition {
    grid-template-columns: 1fr;
  }

  .work-item.large,
  .work-item.wide {
    grid-column: span 1;
  }
}


/* =============================================
   LEGACY SECTION
============================================= */

.legacy-section {
  padding: 200px 0;
  background: #ffffff;
}

/* Header */

.legacy-header {
  max-width: 900px;
  margin-bottom: 100px;
}

.section-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 18px;
  display: inline-block;
}

.section-title {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.section-title span {
  background: linear-gradient(90deg, #ffc107, #f57c00);
  -webkit-background-clip: text;
  color: transparent;
}

.section-subtext {
  font-size: 19px;
  line-height: 1.8;
  color: #555;
}

.legacy-divider {
  width: 120px;
  height: 4px;
  margin-top: 30px;
  background: linear-gradient(90deg, #ffc107, #f57c00);
}

/* Timeline */

.legacy-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
  margin: 120px 0;
  position: relative;
}

.legacy-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

.timeline-item {
  position: relative;
  padding-top: 60px;
}

.timeline-year {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
}

.timeline-year::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  width: 12px;
  height: 12px;
  background: linear-gradient(90deg, #ffc107, #f57c00);
  border-radius: 50%;
}

.timeline-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.timeline-item.highlight .timeline-year {
  color: #f57c00;
}

.timeline-item.highlight p {
  font-weight: 500;
  color: #1a1a1a;
}

/* Statement */

.legacy-statement {
  max-width: 850px;
  margin-bottom: 140px;
}

.legacy-statement p {
  font-size: 22px;
  line-height: 1.8;
  font-weight: 500;
  color: #1a1a1a;
}

/* Leadership */

.legacy-subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.leader {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
}

.leader-image img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
}

.leader-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.leader-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 16px;
}

.leader-info p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* Responsive */

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

  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .legacy-section {
    padding: 160px 0;
  }

  .legacy-timeline {
    grid-template-columns: 1fr;
  }
}


/* =============================================
   CAMPUS SNAPSHOT – IMMERSIVE + STRUCTURED
============================================= */

.campus-section {
  padding: 200px 0;
  background: #ffffff;
}

/* Header */

.campus-header {
  max-width: 900px;
  margin-bottom: 120px;
}

/* Grid */

.campus-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 28px;
  margin-bottom: 160px;
}

.campus-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px; /* match Student Work */
  cursor: pointer;
}

.campus-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.campus-item:hover img {
  transform: scale(1.08);
}

/* Layout Variations */

.campus-item.large {
  grid-column: span 7;
  grid-row: span 2;
}

.campus-item.tall {
  grid-column: span 5;
  grid-row: span 2;
}

.campus-item.wide {
  grid-column: span 6;
}

.campus-item:not(.large):not(.tall):not(.wide) {
  grid-column: span 3;
}

/* Capabilities Section */

.campus-capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.capability {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.capability span {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffc107, #f57c00);
  -webkit-background-clip: text;
  color: transparent;
}

.capability h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.capability p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* Responsive */

@media (max-width: 1200px) {
  .campus-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .campus-item.large,
  .campus-item.tall,
  .campus-item.wide {
    grid-column: span 6;
  }

  .campus-item:not(.large):not(.tall):not(.wide) {
    grid-column: span 3;
  }

  .campus-capabilities {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .campus-section {
    padding: 160px 0;
  }

  .campus-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .campus-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* =============================================
   FINAL CTA – ARCHITECTURAL CLOSE
============================================= */

.final-cta {
  padding: 200px 0;
  background: #ffffff;
}

/* Contained Panel */

.cta-panel {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 80px;
  border-radius: 20px;
  background: #f9f9f9;
  position: relative;
}

/* Subtle structured edge line */

.cta-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, #ffc107, #f57c00);
}

/* Eyebrow */

.cta-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  display: inline-block;
  margin-bottom: 24px;
}

/* Title */

.cta-title {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.cta-title span {
  background: linear-gradient(90deg, #ffc107, #f57c00);
  -webkit-background-clip: text;
  color: transparent;
}

/* Description */

.cta-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 720px;
  margin: 0 auto 60px;
}

/* Actions */

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Primary Button */

.cta-primary {
  padding: 16px 42px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(90deg, #ffc107, #f57c00);
  color: #ffffff;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

/* Secondary Button */

.cta-secondary {
  padding: 16px 42px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: #1a1a1a;
  color: #ffffff;
}

/* Responsive */

@media (max-width: 768px) {

  .final-cta {
    padding: 160px 0;
  }

  .cta-panel {
    padding: 70px 30px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 20px;
  }

}



/* =====================================================
   MOBILE APPLY CTA (SCROLL-BASED)
   ===================================================== */

.mobile-apply-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(90deg, #972a2a, #f7a726);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 9999;
}

/* Visible state */
.mobile-apply-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Desktop: never show */
@media (min-width: 769px) {
  .mobile-apply-cta {
    display: none !important;
  }
}



/* =====================================================
   INNER PAGE HERO
   ===================================================== */

.inner-hero {
  padding: 140px 0 90px;
  background: linear-gradient(180deg, #faf7f3 0%, #ffffff 100%);
}

.inner-hero .section-title {
  margin-bottom: 15px;
}

.page-content {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .inner-hero {
    padding: 120px 0 70px;
  }
}




/* =============================================
   GLOBAL SECTION SPACING
============================================= */

/* ===== SECTION OUTER SPACING ===== */

.about-cds-section,
.programs-editorial,
.home-board-section,
.learning-philosophy-section,
.work-editorial,
.legacy-section,
.campus-section,
.final-cta {
  padding: 80px 0 !important;
}

/* Dark section slightly larger for balance */
.creative-studio {
  padding: 100px 0 !important;
}

/* ===== HEADER SPACING INSIDE SECTIONS ===== */

.programs-intro,
.board-header,
.learning-header,
.work-intro,
.legacy-header,
.campus-header {
  margin-bottom: 60px !important;
}

/* ===== INTERNAL CONTENT SPACING ===== */

.program-panel {
  margin-bottom: 80px !important;
}

.program-divider {
  margin: -30px 0 60px !important;
}

.board-top {
  margin-bottom: 80px !important;
}

.board-bottom {
  margin-bottom: 80px !important;
}

.learning-narrative {
  margin-bottom: 70px !important;
}

.legacy-timeline {
  margin: 70px 0 !important;
}

.legacy-statement {
  margin-bottom: 80px !important;
}

.campus-grid {
  margin-bottom: 80px !important;
}

/* CTA inner */
.cta-panel {
  padding: 70px 50px !important;
}

/* Inner page adjustments */
.inner-hero {
  padding: 110px 0 70px !important;
}

.page-content {
  padding: 60px 0 !important;
}



.theme-btn,
button.theme-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 36px;
background:linear-gradient(90deg,#ffc107,#f57c00);
color:#ffffff;
font-size:16px;
font-weight:600;
border-radius:40px;
text-decoration:none;
border:none;
cursor:pointer;
transition:all .3s ease;
box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

.theme-btn:hover,
button.theme-btn:hover{
transform:translateY(-3px);
box-shadow:0 14px 32px rgba(0,0,0,0.18);
}

/* ===== MOBILE CLEAN SPACING ===== */

@media (max-width: 768px) {

  .about-cds-section,
  .programs-editorial,
  .home-board-section,
  .learning-philosophy-section,
  .work-editorial,
  .legacy-section,
  .campus-section,
  .final-cta {
    padding: 80px 0 !important;
  }

  .creative-studio {
    padding: 100px 0 !important;
  }

  .programs-intro,
  .board-header,
  .learning-header,
  .work-intro,
  .legacy-header,
  .campus-header {
    margin-bottom: 40px !important;
  }

}