/* home.css — Homepage only */

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* ── Slideshow ───────────────────────────────────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
  background-color: #000;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.2s ease;
  will-change: transform, opacity;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide.leaving {
  opacity: 0;
  z-index: 2;
  transition: opacity 1.2s ease;
}

/* Ken Burns keyframes — min scale 1.1 ensures no background bleed */
@keyframes kb-1 { from { transform: scale(1.1)  translate(  0,    0); } to { transform: scale(1.3)  translate(  0,   -4%); } }
@keyframes kb-2 { from { transform: scale(1.1)  translate(  0,   -3%);} to { transform: scale(1.3)  translate(  0,    4%); } }
@keyframes kb-3 { from { transform: scale(1.1)  translate(-4%,    0); } to { transform: scale(1.3)  translate( 4%,   -3%); } }
@keyframes kb-4 { from { transform: scale(1.1)  translate( 4%,    0); } to { transform: scale(1.3)  translate(-4%,   -3%); } }
@keyframes kb-5 { from { transform: scale(1.3)  translate(-3%,  -3%); } to { transform: scale(1.1)  translate( 3%,    3%); } }
@keyframes kb-6 { from { transform: scale(1.3)  translate( 3%,   3%); } to { transform: scale(1.1)  translate(-3%,   -3%); } }
@keyframes kb-7 { from { transform: scale(1.1)  translate(-3%,   4%); } to { transform: scale(1.3)  translate( 3%,   -4%); } }
@keyframes kb-8 { from { transform: scale(1.3)  translate( 3%,  -4%); } to { transform: scale(1.1)  translate(-3%,    4%); } }
/* Mobile Ken Burns — pan left/right + slight zoom */
@keyframes kb-m-ltr  { from { transform: scale(1.12) translateX(-5%); } to { transform: scale(1.18) translateX(5%);  } }
@keyframes kb-m-rtl  { from { transform: scale(1.18) translateX(5%);  } to { transform: scale(1.12) translateX(-5%); } }
@keyframes kb-m-zin  { from { transform: scale(1.05) translateX(-2%); } to { transform: scale(1.22) translateX(2%);  } }
@keyframes kb-m-zout { from { transform: scale(1.22) translateX(2%);  } to { transform: scale(1.05) translateX(-2%); } }
/* Dark gradient overlay */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.25) 40%,
    rgba(0,0,0,.65) 100%
  );
}

/* ── Watermark — top left ────────────────────────────────────────────────────── */
.hero-watermark {
  position: relative;
  z-index: 3;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 7vw, 7rem);
  font-weight: 700;
  color: white;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.65);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: .1em;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  font-optical-sizing: none;
  font-feature-settings: 'ss01' 0, 'ss02' 0, 'calt' 0, 'liga' 0;
  font-variant: normal;
}
@media (min-width: 577px) {
  .hero-watermark {
    -webkit-text-fill-color: unset;
    -webkit-text-stroke: unset;
    filter: url(#wm-filter);
  }
}

/* ── Content — bottom ────────────────────────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(2rem, 5vh, 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-eyebrow {
  font-size: clamp(.7rem, 1.2vw, .82rem);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: .4rem;
}
.hero-title {
  font-size: clamp(2.4rem, 7vw, 7rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.02em;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
  width: 100%;
}
.hero-bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  align-self: center;
}
.hero-link {
  color: #fff;
  font-size: clamp(.88rem, 1.4vw, 1rem);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  padding-top: .15rem;
  flex-shrink: 0;
  transition: opacity .2s;
}
.hero-link:hover { color: #fff; opacity: .75; }
.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  opacity: .82;
  margin: 0;
  max-width: 820px;
  text-align: justify;
  hyphens: none;
  overflow-wrap: break-word;
  word-break: normal;
}

/* ── Sections ───────────────────────────────────────────────────────────────── */
section { padding: 5rem 0; }
.esg-section,
.policies-section { padding: 0; }

/* ── About Section — scroll reveal animation ────────────────────────────────── */
.about-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* stagger children */
.about-reveal .section-label   { transition-delay: 0ms; }
.about-reveal .section-title   { transition-delay: 80ms; }
.about-reveal .text-muted      { transition-delay: 160ms; }
.about-reveal .btn-dark        { transition-delay: 240ms; }

/* ── About Section — scoped, does not affect other sections ─────────────────── */
.about-section .container-xxl {
  padding-left: 0;
  margin-left: 9%;
}
.about-section .section-label {
  font-size: clamp(.85rem, 1.4vw, 1rem);
}
.about-section .section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 720px;
}
.about-section .text-muted {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.8;
}
.about-section .btn-dark {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  padding: .75rem 2.25rem;
}

/* ── SDG badges ─────────────────────────────────────────────────────────────── */
.sdg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 8px;
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

/* ── News cards ─────────────────────────────────────────────────────────────── */
.news-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.18);
}
.news-card img {
  width: 100%; height: 220px; object-fit: cover; object-position: center top;
  transition: transform .38s ease;
}
.news-card:hover img { transform: scale(1.06); }
.news-card-body { padding: 1.25rem; }
.news-card-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-watermark { font-size: clamp(4rem, 18vw, 8rem); }
  .hero-title     { font-size: clamp(2.5rem, 12vw, 6rem); }
  .hero-bottom    { flex-direction: column; gap: 1rem; }
  .hero-content   { padding-bottom: 2.5rem; }
}
@media (max-width: 576px) {
  .hero-watermark {
    font-size: clamp(2.4rem, 14vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: .5rem;
    filter: none;
    color: white;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,.65);
  }
  .hero-title   { line-height: 1.05; }
  .hero-content { padding: 0 1.25rem 2.5rem; }
}

/* ── Hero Dots (slide indicators) ───────────────────────────────────────── */
.hero-dots {
  position: absolute;
  bottom: clamp(.875rem, 2.5vh, 1.5rem);
  right: clamp(1.25rem, 4vw, 3rem);
  z-index: 4;
  display: flex;
  gap: .45rem;
  align-items: center;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.hero-dot.active { background: #fff; transform: scale(1.4); }
.hero-dot:hover:not(.active) { background: rgba(255,255,255,.6); }

/* ── Laptop breakpoint (992–1440px, e.g. 1920×1200 @ 150% scaling = 1280px) ── */
@media (min-width: 992px) and (max-width: 1440px) {
  .hero-title     { font-size: clamp(3.2rem, 7vw, 6.5rem); }
  .hero-watermark { font-size: clamp(5rem, 11vw, 11rem); }
  .five-p-title   { font-size: clamp(3rem, 6vw, 5rem); }
  .campus-indicator-title { font-size: clamp(2.64rem, 5.28vw, 3.96rem); }
  .campus-hero-content { max-width: 850px; }
  .campus-hero-wrap, .five-p-hero-wrap { height: 80dvh; }
  section { padding: 3.5rem 0; }
  .esg-section, .policies-section { padding: 0; }
}

/* ── Campus Section ─────────────────────────────────────────────────────────── */
.campus-section { background: #111; padding: 0; }

/* Campus hero slides */
.campus-hero-wrap {
  position: relative;
  height: 95dvh;
  min-height: 560px;
  overflow: hidden;
}
.campus-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #1a3d2b;
  opacity: 0;
  transition: opacity .8s ease;
  z-index: 0;
}
.campus-slide-bg.active { opacity: 1; z-index: 1; }
.campus-slide-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.1) 100%
  );
}
.campus-hero-wrap::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 18%;
  background: linear-gradient(to bottom, transparent, #fff);
  z-index: 4;
  pointer-events: none;
}
.campus-hero-content {
  position: absolute; left: 2%; bottom: 2%; z-index: 3;
  padding: 2.5rem 3rem 3rem;
  max-width: 850px;
}
.campus-eyebrow {
  font-size: 1.03rem; font-weight: 400; letter-spacing: .18em;
  color: #fff; text-transform: uppercase; margin-bottom: .5rem;
}
.campus-indicator-title {
  font-size: clamp(2.64rem, 6.6vw, 4.62rem); font-weight: 600;
  letter-spacing: -.02em; color: #fff; line-height: 1.05;
  margin-bottom: 1rem; text-transform: uppercase;
}
.campus-indicator-desc {
  font-size: 1.305rem; color: rgba(255,255,255,.85); line-height: 1.55;
  max-width: 820px; margin-bottom: 0; overflow-wrap: break-word;
  text-align: justify; hyphens: none;
}
.campus-hero-controls {
  position: absolute; right: 2.5rem; bottom: 2rem; z-index: 3;
  display: flex; align-items: center; gap: 1.25rem;
}
.campus-counter {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: .975rem; font-weight: 700; letter-spacing: .15em;
  color: rgba(255,255,255,.6); text-transform: uppercase;
  pointer-events: none;
}
.campus-nav { display: flex; align-items: center; gap: .4rem; }
.campus-nav-sep { color: rgba(255,255,255,.35); font-size: .975rem; }
.campus-nav-btn {
  background: none; border: none; padding: 0;
  font-size: .905rem; font-weight: 700; letter-spacing: .12em;
  color: #fff; cursor: pointer; text-transform: uppercase;
  transition: color .15s;
}
.campus-nav-btn:hover { color: #10b981; }

/* news-card-pub inside campus strip */
.campus-strip-scroll .news-card-pub {
  flex-shrink: 0; width: 420px; scroll-snap-align: start;
}

/* Campus news strip */
.campus-news-strip {
  position: relative;
  background: #fff;
  padding: .75rem 0;
  display: flex; align-items: stretch;
}
.campus-strip-scroll {
  display: flex; gap: .75rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding: .75rem 1rem;
  flex: 1;
}
.campus-strip-scroll::-webkit-scrollbar { display: none; }
.campus-strip-arrow {
  flex-shrink: 0; width: 52px;
  background: transparent; border: none;
  color: #333; font-size: 2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color .15s;
}
.campus-strip-arrow:hover { color: #059669; }
.campus-news-card {
  flex-shrink: 0; width: 420px; scroll-snap-align: start;
  background: #fff; border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  border: 1px solid #e8e7e2;
  box-shadow: 0 1px 4px rgba(26,26,22,.05);
  transition: transform .28s ease, box-shadow .28s ease;
}
.campus-news-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,26,22,.16); text-decoration: none; color: inherit; }
.campus-news-img {
  width: 100%; aspect-ratio: 16/9;
  background-image: linear-gradient(135deg, #1a3d2b 0%, #10b981 100%);
  background-size: 105%;
  background-position: center;
  flex-shrink: 0;
  transition: background-size .38s ease;
}
.campus-news-card:hover .campus-news-img { background-size: 113%; }
.campus-news-body { padding: 1rem 1.15rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.campus-news-tag {
  display: inline-block; padding: .2rem .65rem; border-radius: 99px;
  font-size: .7rem; font-weight: 700;
  background: #d1fae5; color: #065f46;
  margin-bottom: .55rem; width: fit-content;
}
.campus-news-title {
  font-size: .95rem; font-weight: 700; color: #1a1a16; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1; margin-bottom: .4rem;
}
.campus-news-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: .7rem;
  border-top: 1px solid #f0efe9; gap: .25rem;
}
.campus-news-sdgs { display: flex; gap: .25rem; flex-wrap: wrap; align-items: center; }
.campus-news-sdgs img { border-radius: 4px; display: block; flex-shrink: 0; }
.campus-news-date { font-size: .74rem; color: #a8a8a0; white-space: nowrap; }

@media (max-width: 767px) {
  .campus-hero-content { padding: 1.5rem 1.25rem 2rem; bottom: 4.5rem; }
  .campus-hero-controls { right: 1.25rem; bottom: 1rem; }
  .campus-indicator-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .campus-news-card { width: calc(100vw - 100px); }
.campus-strip-scroll .news-card-pub { width: calc(100vw - 100px); }
}

/* ── 5P Section ─────────────────────────────────────────────────────────────── */
.five-p-section { background: #0d0d0d; padding: 0; }

/* ── Scroll-in animations ───────────────────────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="left"]  { transform: translateX(-70px); }
[data-anim="right"] { transform: translateX(70px); }
[data-anim="up"]    { transform: translateY(50px); }
[data-anim="down"]  { transform: translateY(-50px); }
[data-anim].anim-visible {
  opacity: 1;
  transform: none;
}

/* Intro header bar */
.five-p-intro {
  background: #fff;
  padding: 2% 0;
}
.five-p-intro-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8rem;
}
.five-p-intro-heading h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.15;
  color: #111827; margin: 0;
}
.five-p-gold { color: #DCA83A; }

.five-p-intro-list {
  display: flex; flex-direction: column;
  padding-left: 0;
  gap: 0;
}
.five-p-intro-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: .6rem 0 0;
  border-bottom: none;
  text-decoration: none;
  transition: opacity .2s;
}
.five-p-intro-item:hover { opacity: .7; }
.five-p-intro-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: .2rem;
}
.five-p-intro-item > div {
  display: flex; flex-direction: column; gap: 0;
  width: 100%;
}
.five-p-intro-label {
  display: block;
  font-size: 1.9rem; font-weight: 800;
  letter-spacing: .08em; color: #111827;
  text-transform: uppercase;
  line-height: 1.1;
}
.five-p-intro-sub {
  display: block;
  font-size: 1.2rem; color: #4b5563;
  font-weight: 400;
  line-height: 1.3;
  padding-bottom: .7rem;
  border-bottom: 1.5px solid #DCA83A;
  width: 100%;
}
.five-p-intro-item:last-child .five-p-intro-sub {
  border-bottom: none;
}

@media (max-width: 767px) {
  .five-p-intro-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .five-p-intro-list { border-left: none; padding-left: 0; border-top: 1px solid rgba(220,168,58,.25); padding-top: 1.25rem; }
  .five-p-intro-heading h2 { font-size: clamp(1.75rem, 6.5vw, 3rem); }
  .five-p-intro-label { font-size: clamp(1.1rem, 5vw, 1.9rem); }
  .five-p-intro-sub   { font-size: clamp(.85rem, 3.5vw, 1.2rem); }
}

.five-p-hero-wrap {
  position: relative;
  height: 95dvh;
  min-height: 560px;
  overflow: hidden;
}
.five-p-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #1a1a2e;
  opacity: 0;
  transition: opacity .8s ease;
  z-index: 0;
}
.five-p-slide-bg.active { opacity: 1; z-index: 1; }
.five-p-slide-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.45) 45%,
    rgba(0,0,0,.78) 100%
  );
}

/* Content — bottom-left */
.five-p-hero-content {
  position: absolute; left: 2%; bottom: 2%; z-index: 3;
  padding: 2.5rem 3rem 3rem;
  max-width: 850px;
}
.five-p-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .22em;
  color: #a78bfa; text-transform: uppercase; margin-bottom: .4rem;
}
.five-p-title {
  font-size: clamp(2.64rem, 6.6vw, 4.62rem); font-weight: 600;
  letter-spacing: -.02em; color: #fff; line-height: 1.05;
  margin-bottom: 1rem; text-transform: uppercase;
}
.five-p-subtitle {
  font-size: 1.305rem; color: rgba(255,255,255,.85); line-height: 1.55;
  max-width: 820px; margin-bottom: 1.5rem;
  text-align: justify; hyphens: none;
}
.five-p-sdg-row {
  display: flex; gap: .35rem; flex-wrap: wrap;
}
.five-p-sdg-row img { border-radius: 5px; width: 70px; height: 70px; object-fit: cover; }

/* Buttons — bottom-right (above nav controls) */
.five-p-hero-buttons {
  position: absolute; right: 2.5rem; bottom: 2rem; z-index: 3;
  display: flex; gap: .75rem; align-items: center;
}
.five-p-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.2rem;
  border: 1.5px solid rgba(255,255,255,.7);
  color: #fff; background: transparent;
  font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  text-decoration: none; border-radius: 2px;
  transition: background .18s, border-color .18s;
  white-space: nowrap;
}
.five-p-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

/* Prev/Next controls — sits above action buttons */
.five-p-hero-controls {
  position: absolute; right: 2.5rem; bottom: 5.75rem; z-index: 3;
  display: flex; align-items: center; gap: 1.25rem;
}
.five-p-counter {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: .975rem; font-weight: 700; letter-spacing: .15em;
  color: rgba(255,255,255,.6); text-transform: uppercase;
  pointer-events: none;
}
.five-p-nav { display: flex; align-items: center; gap: .4rem; }
.five-p-nav-sep { color: rgba(255,255,255,.35); font-size: .975rem; }
.five-p-nav-btn {
  background: none; border: none; padding: 0;
  font-size: .905rem; font-weight: 700; letter-spacing: .12em;
  color: #fff; cursor: pointer; text-transform: uppercase;
  transition: color .15s;
}
.five-p-nav-btn:hover { color: #a78bfa; }

@media (max-width: 767px) {
  .five-p-hero-content { padding: 1.5rem 1.25rem 8.5rem; }
  .five-p-title { font-size: clamp(2rem, 8vw, 3rem); }
  .five-p-subtitle { font-size: 1.1rem; }
  .five-p-sdg-row img { width: 52px; height: 52px; }
  .five-p-hero-buttons { right: 1.25rem; bottom: 1rem; flex-direction: column; align-items: flex-end; gap: .5rem; }
  .five-p-hero-controls { right: 1.25rem; bottom: 5rem; }
}

/* ── ESG Section ─────────────────────────────────────────────────────────────── */
.esg-section {
  background: #fff;
}

/* Header text area */
.esg-header {
  padding: 3rem 0 2rem;
  background: #fff;
}
.esg-header .container-xxl {
  padding-left: 0;
  padding-right: 0;
}
.esg-eyebrow {
  font-size: 1.4rem;
  color: #374151;
  margin-bottom: .5rem;
}
.esg-main-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: .75rem;
  line-height: 1.1;
}
.esg-divider {
  border: none;
  border-top: 2px solid #111827;
  margin: .85rem 0 1.25rem;
}
.esg-description {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.75;
  max-width: 100%;
  margin: 0;
}

/* Full-width image area */
.esg-hero-wrap {
  position: relative;
  width: 100%;
  height: 95dvh;
  min-height: 500px;
  background: #1a3d2b;
  overflow: hidden;
}

.esg-slide {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
  z-index: 1;
}
.esg-slide.active {
  transform: translateX(0);
  z-index: 2;
}
.esg-slide.leaving {
  transform: translateX(-100%);
  z-index: 2;
}
.esg-slide.from-left {
  transform: translateX(-100%);
}


.esg-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.esg-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 30%, rgba(0,0,0,.52) 100%);
  z-index: 1;
}

.esg-slide-content {
  position: absolute;
  left: 2%;
  bottom: 2%;
  z-index: 2;
  padding: 2.5rem 3rem 3rem;
  max-width: 850px;
}
.esg-slide-label {
  font-size: 1.03rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.esg-slide-category {
  font-size: clamp(2.64rem, 6.6vw, 4.62rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.esg-slide-subtitle {
  color: rgba(255,255,255,.85);
  font-size: 1.305rem;
  margin-top: 0;
  line-height: 1.55;
  max-width: 820px;
  margin-bottom: 0;
  text-align: justify;
  hyphens: none;
}

/* Dot navigation */
.esg-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  gap: .45rem;
}
.esg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.esg-dot.active {
  background: #fff;
  transform: scale(1.3);
}


@media (max-width: 767px) {
  .esg-header { padding: 2rem 0 1.25rem; }
  .esg-hero-wrap { height: 95dvh; min-height: 500px; }
  .esg-slide-content {
    top: auto;
    bottom: 1.5rem;
    left: 1.25rem;
    right: 1.25rem;
    padding: 1.25rem 1rem 1.5rem;
    max-width: 100%;
  }
  .esg-slide-category { font-size: clamp(1.8rem, 7vw, 3rem); }
  .esg-slide-subtitle { font-size: 1.05rem; }
  .esg-dots { right: 1.25rem; bottom: 1rem; }
}

/* ── Sustainability Policies ─────────────────────────────────────────────────── */
.policies-section {
  background: #111827;
  padding: 2.5rem 0 2.25rem;
  overflow: hidden;
}

.policies-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.policies-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Fan stage */
.policies-fan-stage {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-fan-card {
  position: absolute;
  width: 386px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  display: block;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94),
              opacity .55s ease,
              box-shadow .55s ease;
  cursor: pointer;
}

/* Default hidden state */
.policy-fan-card { opacity: 0; transform: scale(.6); z-index: 0; pointer-events: none; }

.policy-fan-card[data-state="active"] {
  transform: translateX(0) rotate(0deg) scale(1);
  z-index: 3;
  opacity: 1;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  pointer-events: auto;
}
.policy-fan-card[data-state="prev"] {
  transform: translateX(-300px) rotate(-8deg) scale(.82);
  z-index: 2;
  opacity: .8;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  pointer-events: auto;
}
.policy-fan-card[data-state="next"] {
  transform: translateX(300px) rotate(8deg) scale(.82);
  z-index: 2;
  opacity: .8;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  pointer-events: auto;
}
.policy-fan-card[data-state="hidden"] {
  opacity: 0;
  transform: scale(.5);
  z-index: 0;
  pointer-events: none;
}

.policy-fan-img {
  width: 100%;
  height: 552px;
  object-fit: cover;
  display: block;
}
.policy-fan-placeholder {
  width: 100%;
  height: 552px;
  background: #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1.5rem 1.5rem;
  gap: 1rem;
  font-size: 2.5rem;
  color: #9ca3af;
}

/* Simulated text lines inside placeholder card */
.policy-fan-placeholder-lines {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  width: 100%;
}
.policy-fan-placeholder-lines span {
  display: block;
  height: 10px;
  border-radius: 4px;
  background: #d1d5db;
}
.policy-fan-placeholder-lines span:nth-child(1) { width: 90%; }
.policy-fan-placeholder-lines span:nth-child(2) { width: 80%; }
.policy-fan-placeholder-lines span:nth-child(3) { width: 95%; }
.policy-fan-placeholder-lines span:nth-child(4) { width: 70%; }
.policy-fan-placeholder-lines span:nth-child(5) { width: 85%; }

/* Title below active card */
.policies-active-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1.25rem;
  max-width: 320px;
  min-height: 2.5em;
  line-height: 1.4;
  transition: opacity .3s;
}

/* View All button */
.policies-view-all {
  margin-top: .875rem;
}
.policies-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.75rem;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 999px;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.policies-view-all-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 767px) {
  .policies-fan-stage { height: 440px; }
  .policy-fan-card { width: 290px; }
  .policy-fan-img, .policy-fan-placeholder { height: 412px; }
  .policy-fan-card[data-state="prev"] { transform: translateX(-207px) rotate(-7deg) scale(.8); }
  .policy-fan-card[data-state="next"] { transform: translateX(207px)  rotate(7deg)  scale(.8); }
}

/* ── Clip Content ────────────────────────────────────────────────────────────── */
.clip-section {
  background: #fff;
  padding: 3rem 0 3.5rem;
}
.clip-section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.clip-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -.01em;
}
.clip-track-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 3rem;
}
.clip-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px 8px;
  flex: 1;
}
.clip-track::-webkit-scrollbar { display: none; }

.clip-card {
  flex: 0 0 auto;
  width: 200px;
}
.clip-card-inner {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease;
}
.clip-card-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.32);
}
.clip-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .3s;
}
.clip-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
}
.clip-card-inner:hover .clip-preview-video { opacity: 1; }
.clip-card-inner:hover .clip-thumb         { opacity: 0; }

/* Platform icon */
.clip-platform-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.clip-plat-tiktok   { background: #010101; color: #fff; }
.clip-plat-youtube  { background: #ff0000; color: #fff; }
.clip-plat-facebook { background: #1877f2; color: #fff; }

/* Play button */
.clip-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.clip-play-btn svg {
  width: 52px;
  height: 52px;
  fill: rgba(255,255,255,.9);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  transition: opacity .2s;
}
.clip-card-inner:hover .clip-play-btn svg { opacity: 0; }

/* Title overlay */
.clip-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .6rem .75rem;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.3;
  z-index: 3;
}

/* Nav arrows */
.clip-track-wrap {
  position: relative;
}
.clip-nav {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, opacity .2s;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.clip-nav:hover { background: #f3f0ff; color: #6d28d9; border-color: #c4b5fd; }
.clip-nav:disabled { opacity: .3; cursor: default; pointer-events: none; }
.clip-nav-prev  { margin-right: .75rem; }
.clip-nav-next  { margin-left: .75rem; }

@media (max-width: 767px) {
  .clip-track-wrap { padding: 0 .75rem; }
  .clip-card { width: 150px; }
  .clip-nav { display: none; }
}

/* ── Tablet (768–991px) ─────────────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-title     { font-size: clamp(3rem, 7vw, 5rem); }
  .hero-watermark { font-size: clamp(3rem, 9vw, 6rem); }

  .campus-hero-wrap,
  .five-p-hero-wrap { height: 85dvh; }
  .campus-indicator-title { font-size: clamp(2rem, 5.5vw, 3.2rem); }

  .five-p-intro-inner   { gap: 4rem; }
  .five-p-intro-heading h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); }

  .esg-hero-wrap { height: 85dvh; }
}

/* ── Small phone (≤ 479px) ──────────────────────────────────────────────── */
@media (max-width: 479px) {
  /* Hero */
  .hero-content   { padding: 0 1rem 1.75rem; }
  .hero-watermark { font-size: clamp(2rem, 12vw, 3rem); line-height: 1.2; margin-bottom: .75rem; filter: none; color: white; -webkit-text-fill-color: transparent; -webkit-text-stroke: 1.8px rgba(255,255,255,.65); }
  .hero-title     { font-size: clamp(1.9rem, 10.5vw, 2.6rem); line-height: 1.05; }
  .hero-subtitle  { font-size: .9rem; }

  /* Campus */
  .campus-hero-content    { padding: 1rem 1rem 1.5rem; bottom: 4rem; }
  .campus-indicator-title { font-size: clamp(1.35rem, 7vw, 2rem); }
  .campus-indicator-desc  { font-size: 1rem; }
  .campus-eyebrow         { font-size: .82rem; letter-spacing: .12em; }

  /* Five-P intro */
  .five-p-intro            { padding: 1.25rem 0 1rem; }
  .five-p-intro-inner      { gap: 1rem; }
  .five-p-intro-heading h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .five-p-intro-label      { font-size: clamp(1rem, 4.5vw, 1.4rem); }
  .five-p-intro-sub        { font-size: .82rem; }
  .five-p-intro-arrow svg  { width: 30px; height: 23px; }
  .five-p-intro-item       { gap: .85rem; }

  /* Five-P hero */
  .five-p-hero-content { padding: 1rem 1rem 7.5rem; }
  .five-p-title        { font-size: 2rem; }
  .five-p-subtitle     { font-size: 1rem; }
  .five-p-sdg-row img  { width: 44px; height: 44px; }
  .five-p-hero-controls { bottom: 4.5rem; }

  /* ESG */
  .esg-main-title     { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .esg-description    { font-size: .95rem; line-height: 1.65; }
  .esg-slide-category { font-size: clamp(1.5rem, 7.5vw, 2.2rem); }
  .esg-slide-subtitle { font-size: .95rem; }
  .esg-slide-content  { padding: 1rem .875rem 1.25rem; }

  /* Clip */
  .clip-section { padding: 2.25rem 0 2.75rem; }
  .clip-card { width: 130px; }
  .clip-section-title { font-size: 1.35rem; }
}

