:root{
  --white:#fff;
  --black:#000;
  --orange:#fea500;
  --purple:#7030a0;

  --bg:#ffffff;
  --text:#0b0b0b;
  --muted:rgba(0,0,0,.70);
  --line:rgba(0,0,0,.10);

  --radius:22px;
  --shadow: 0 16px 40px rgba(0,0,0,.10);

  /* Layout helpers */
  --stickyTop: 120px; /* match JS + stacking */
  --stackGap: clamp(90px, 22vh, 180px);

}

*{box-sizing:border-box}
html,body{height:100%}
html{
  background:#fff;
  transition: background-color 900ms ease;
}

html.is-purple{
  background:#9b3de1;
}

body{
  margin:0;
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: transparent;
    transition: background-color 900ms ease; /* smooth change */

  overflow-x:hidden;
}
/* do NOT paint white behind the purple zone */
body.is-purple .sector-showcase{
  background: transparent !important;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit}

.container{
  width:min(1100px, 92%);
  margin-inline:auto;
}

.h2{
  font-family:"League Spartan", system-ui, sans-serif;
  font-size:clamp(26px, 3vw, 36px);
  letter-spacing:-.02em;
  margin:0 0 10px;
}
.muted{color:var(--muted); margin:0; line-height:1.7}

/* =========================================================
   FULL-BLEED helper (forces 100vw even if wrapped by container)
   ========================================================= */
.full-bleed{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand__logo{height:34px; width:auto}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav__link{
  font-size:14px;
  opacity:.88;
  padding:10px 10px;
  border-radius:999px;
}
.nav__link:hover{opacity:1; background:rgba(112,48,160,.08)}
.nav__link.active{
  background:rgba(254,165,0,.16);
  opacity:1;
}

.header__right{display:flex; align-items:center; gap:10px}
.icon-btn{
  width:42px;height:42px;
  border:1px solid var(--line);
  background:var(--white);
  border-radius:999px;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.icon-dot{
  width:12px;height:12px;
  border-radius:999px;
  background:var(--purple);
  box-shadow:0 0 0 6px rgba(112,48,160,.12);
}

/* Hamburger */
.hamburger{
  display:none;
  width:42px;height:42px;
  border:1px solid var(--line);
  background:var(--white);
  border-radius:999px;
  cursor:pointer;
  padding:10px;
}
.hamburger span{
  display:block;
  height:2px;
  background:var(--black);
  margin:5px 0;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 18px;
  font-weight:600;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{
  background:var(--orange);
  color:var(--black);
}
.btn--ghost{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,.35);
}
.btn--outline{
  background:transparent;
  border-color:rgba(0,0,0,.18);
}
.btn--sm{padding:9px 14px; font-size:13px}

/* =========================================================
   HERO (FORCE FULL WIDTH + 100vh)
   ========================================================= */
.hero{
  position:relative;
  height:100vh;              /* requested */
  min-height:100vh;
  background:var(--black);
  overflow:hidden;

  /* force full width even if something wraps it */
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}
.hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:var(--black);
  opacity:.48;
}
.hero__content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:72px 0 56px;
  color:var(--white);
}
.hero__tag{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-size:13px;
  width:fit-content;
}
.hero__title{
  font-family:"League Spartan", system-ui, sans-serif;
  font-size:clamp(42px, 6vw, 72px);
  line-height:1.02;
  letter-spacing:-.03em;
  margin:18px 0 14px;
  max-width:16ch;
}
.hero__desc{
  margin:0;
  max-width:62ch;
  opacity:.92;
  line-height:1.8;
}
.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.hero__stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
.stat{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  border-radius:16px;
  padding:12px 14px;
  min-width:160px;
}
.stat__num{
  font-family:"League Spartan", system-ui, sans-serif;
  font-weight:700;
  font-size:18px;
}
.stat__label{
  font-size:13px;
  opacity:.9;
  margin-top:4px;
}

/* Page shell */
.page{
  margin-top:10px;
  padding-bottom:48px;
}
.page__shell{
  background:transparent;
  border:none;
  box-shadow:none;
  border-radius:0;
  overflow:visible;
}

/* Sections */
.section{
  padding:44px 28px;
}
.section--tight{padding:22px 28px}
.section__head{margin-bottom:20px}
.section__foot{margin-top:18px; display:flex; justify-content:flex-end}

/* Chips */
.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.chip{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.15);
  background:var(--white);
  cursor:pointer;
  font-size:13px;

  /* remove weird browser outline look */
  outline:none;
}
.chip:focus-visible{
  outline:2px solid rgba(112,48,160,.28);
  outline-offset:2px;
}
.chip.is-active{
  border-color:rgba(112,48,160,.35);
  background:rgba(112,48,160,.08);
}

/* =========================================================
   ORANGE STACK (FIXED: no see-through gap, reverse stacking, spacing)
   ========================================================= */
.orange-stack{
  padding:32px 0 36px; /* smaller bottom gap (fix huge whitespace) */
}
.orange-stack__card{
  width:min(1100px, 92%);
  margin:0 auto 18px;
}
.orange-stack__track{
  width:min(1100px, 92%);
  margin:0 auto;

  /* IMPORTANT: give room so last sticky card can "release"
     without crashing into the next section */
  padding-bottom: calc(var(--stackGap) * 0.55);
}

.orange-card{
  --lift: 0;
  --bg: #fff6e6;

  position: sticky;
  top: var(--stickyTop);

  background: var(--bg);              /* opaque (no see-through) */
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  padding: 18px 18px 16px;

  /* reverse stacking: later cards higher z-index */
  z-index: calc(10 + var(--i));

  /* cover each other cleanly */
  transform:
    translateY(calc(var(--lift) * -6px))
    scale(calc(1 - var(--lift) * 0.006));

  will-change: transform;
}

/* Scroll distance between cards (controls how long each card stays) */
.orange-card + .orange-card{
  margin-top: var(--stackGap);
}

/* card header */
.orange-card__head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.orange-card__num{
  width:30px;height:30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.10);
  font-weight:700;
  font-size:13px;
}
.orange-card h3{
  margin:0;
  font-family:"League Spartan", system-ui, sans-serif;
  font-size:22px;
  letter-spacing:-.02em;
}
.orange-card p{
  margin:0 0 10px;
  line-height:1.75;
  color:rgba(0,0,0,.78);
  font-size:14px;
}
.orange-card ul{
  margin:0;
  padding-left:18px;
  line-height:1.7;
  font-size:13px;
  color:rgba(0,0,0,.82);
}
.orange-card li{margin:6px 0}

/* =========================================================
   Testimonials marquee (FULL WIDTH)
   ========================================================= */
.testi-marquee{
  padding:38px 0 26px;
}

/* full-bleed section */
.testi-marquee.full-bleed{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

.marquee{
  position:relative;
  overflow:hidden;
  padding:18px 0;
}
.marquee__track{
  display:flex;
  gap:14px;
  width:max-content;
  animation: marquee-left 28s linear infinite;
}
.marquee--reverse .marquee__track{
  animation: marquee-right 30s linear infinite;
}

@keyframes marquee-left{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
@keyframes marquee-right{
  0%{ transform: translateX(-50%); }
  100%{ transform: translateX(0); }
}

.tcard{
  width: 240px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
  overflow:hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,.10);
}
.tcard__img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}
.tcard__body{
  padding:12px;
}
.tcard__text{
  margin:0 0 10px;
  font-size:13px;
  line-height:1.55;
  color:rgba(0,0,0,.78);
  min-height: 42px;
}
.tcard__btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:8px 12px;
  border:1px solid rgba(112,48,160,.22);
  background:rgba(112,48,160,.08);
  font-weight:600;
  font-size:13px;
}
.tcard__dot{
  width:10px;height:10px;border-radius:999px;
  background:var(--purple);
  box-shadow: 0 0 0 5px rgba(112,48,160,.12);
}

/* Jobs grid (if you still keep elsewhere) */
.jobs{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.job{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  transform:translateZ(0);
}
.job img{
  width:100%;
  height:160px;
  object-fit:cover;
}
.job__body{padding:14px}
.job h3{
  margin:0 0 6px;
  font-family:"League Spartan", system-ui, sans-serif;
  font-size:18px;
}
.job__meta{margin:0;color:var(--muted);font-size:13px}
.job__actions{display:flex; gap:10px; margin-top:12px}

/* Testimonials preview (old grid if you still use it) */
.testis{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.testi{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}
.testi img{
  width:100%;
  height:190px;
  object-fit:cover;
}
.testi__body{padding:14px}
.testi__quote{
  margin:0;
  font-size:13px;
  line-height:1.7;
  color:rgba(0,0,0,.82);
}
.testi__name{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
}

/* CTA block */
.cta{
  padding:0 28px 28px;
}
.cta__inner{
  border-radius:20px;
  border:1px solid rgba(112,48,160,.20);
  background: linear-gradient(135deg, rgba(112,48,160,.10), rgba(254,165,0,.10));
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cta__title{
  font-family:"League Spartan", system-ui, sans-serif;
  margin:0 0 6px;
  font-size:26px;
}
.cta__text{margin:0; color:var(--muted); line-height:1.7}
.cta__actions{display:flex; gap:10px; flex-wrap:wrap}

/* Footer */
.footer{
  background:var(--black);
  color:var(--white);
  padding:26px 0;
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:18px;
  align-items:start;
}
.footer__logo{height:32px; width:auto}
.footer__text{margin:10px 0 0; opacity:.9; line-height:1.7; font-size:13px}
.footer__links{
  display:grid;
  gap:10px;
  font-size:13px;
  opacity:.92;
}
.footer__cta{display:flex; flex-direction:column; gap:10px; align-items:flex-start}
.footer__small{opacity:.75}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .hamburger{display:block}
  .jobs{grid-template-columns:1fr}
  .testis{grid-template-columns:1fr}
  .footer__inner{grid-template-columns:1fr}

  /* Disable sticky stacking on mobile (smooth UX) */
  .orange-card{
    position:relative;
    top:auto;
    transform:none !important;
  }
  .orange-card + .orange-card{ margin-top: 14px; }
  .orange-stack__track{ padding-bottom: 0; }

  .hero{ height:100vh; min-height:100vh; }
}

@media (max-width: 520px){
  .section{padding:36px 18px}
  .section--tight{padding:18px}
  .hero__content{padding:62px 0 46px}
  .hero__title{max-width:18ch}
}

/* Mobile menu open state */
body.nav-open .nav{
  display:grid;
  position:fixed;
  inset:64px 12px auto 12px;
  background:rgba(255,255,255,.96);
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  gap:8px;
  z-index:80;
  box-shadow:var(--shadow);
}
body.nav-open .nav__link{
  padding:12px 12px;
  border-radius:14px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation:none !important; }
  .orange-card{ transition:none !important; }
}
/* ===== FULL-WIDTH TESTIMONI MARQUEE ===== */
.testi-marquee{
  margin-top: 8px;               /* keep close after stack section */
  padding: 28px 0 34px;
  background: #fff;
}

.testi-marquee__head{
  margin-bottom: 14px;
}

.marquee{
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}

.marquee__track{
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marqueeLeft 26s linear infinite;
  padding-left: 14px;
  padding-right: 14px;
}

.marquee--slow .marquee__track{ animation-duration: 34s; }
.marquee--left .marquee__track{ animation-name: marqueeLeft; }

@keyframes marqueeLeft{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); } /* because we duplicate items */
}

.marquee:hover .marquee__track{ animation-play-state: paused; }

/* Card */
.tm-card{
  width: 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  flex: 0 0 auto;
}

.tm-card img{
  width: 100%;
  aspect-ratio: 1 / 1;     /* square */
  object-fit: cover;
  display: block;
}

.tm-quote{
  margin: 10px 12px 10px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(0,0,0,.78);
  min-height: 38px;
}

.tm-audio{
  margin: 0 12px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(112,48,160,.22);
  background: rgba(112,48,160,.06);
  color: rgba(0,0,0,.82);
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
}

.tm-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 0 5px rgba(112,48,160,.14);
}

/* Mobile: slightly smaller cards */
@media (max-width: 520px){
  .tm-card{ width: 190px; }
  .testi-marquee{ padding: 22px 0 26px; }
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation: none; }
}
/* ===== Senarai Kerja (full-width 2-up grid like reference) ===== */
.sector-showcase{
  padding: 40px 0 54px;
  background: #fff;
}

.sector-showcase__head{
  margin-bottom: 18px;
}

.sector-grid{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;

  padding: 0 max(24px, 4vw);
}

.sector-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: visible;              /* allow image to stay sharp */
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  padding-bottom: 16px;
}

.sector-card img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;

  border-radius: 0;               /* sharp corners */
  transform: scale(1);
  transition: transform .25s ease;
}
.sector-card:hover img{
  transform: scale(1.04);
}


.sector-card h3{
  margin: 14px 16px 6px;
  font-family: "League Spartan", system-ui, sans-serif;
  font-size: 22px;
  letter-spacing: -.02em;
}

.sector-card p{
  margin: 0 16px 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13.5px;
}

.sector-card .btn{
  margin: 0 16px;
}

@media (max-width: 980px){
  .sector-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.bg-sentinel{
  height: 1px;
}

/* everything after becomes purple */
.keluarga-zone{
  background: transparent; /* let BODY color show */
  padding: 54px 0 70px;
}
/* ===== AKTIVITI KELUARGA: VIDEO STACK ===== */
.keluarga-head{ margin-bottom: 18px; }

.keluarga-stack{
  padding-top: 10px;
  padding-bottom: calc(var(--stackGap) * 0.55); /* same idea as orange track */
}

/* sticky stack card */
.video-card{
  --lift: 0;

  position: sticky;
  top: var(--stickyTop);

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  overflow: hidden;

  z-index: calc(10 + var(--i));

  transform:
    translateY(calc(var(--lift) * -6px))
    scale(calc(1 - var(--lift) * 0.006));
  will-change: transform;
}

/* distance between sticky cards */
.video-card + .video-card{
  margin-top: var(--stackGap);
}

.video-card__top{
  padding: 16px 18px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.video-card__top h3{
  margin:0;
  color:#fff;
  font-family:"League Spartan", system-ui, sans-serif;
  font-size: 22px;
  letter-spacing:-.02em;
}

.video-pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  color:#fff;
  font-weight:600;
  font-size: 13px;
}

/* video fills container */
.video-wrap{
  width:100%;
  height: 420px; /* adjust height */
  background: rgba(0,0,0,.25);
}

/* IMPORTANT: sharp edges (no border radius on video) */
.video-wrap video{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  border-radius: 0;
}

/* mobile: disable sticky stack like your orange-card */
@media (max-width: 980px){
  .video-card{
    position: relative;
    top: auto;
    transform: none !important;
  }
  .video-card + .video-card{ margin-top: 14px; }
  .keluarga-stack{ padding-bottom: 0; }
  .video-wrap{ height: 260px; }
}

/* ===================== TESTIMONIAL PAGE ===================== */
/* Page scope */
.page--testimoni {
  padding-top: 0;
}

/* HERO (full-bleed YouTube carousel) */
.t-hero {
  position: relative;
  background: #0f0f14;
  color: #fff;
}
.t-hero.full-bleed {
  margin-top: 0;
}
.t-hero__wrap {
  width: 100%;
}
.t-hero__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.t-hero__slides {
  display: flex;
  width: 100%;
  transition: transform 450ms ease;
  will-change: transform;
}
.t-hero__slide {
  min-width: 100%;
  position: relative;
}
.t-hero__media {
  position: relative;
  width: 100%;
height: min(90vh, 860px);
}
.t-hero__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
  background: #000;
}
.t-hero__poster {
  position: absolute;
  inset: 0;
  background-image: var(--thumb);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.t-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.05) 100%);
}
.t-hero__overlay {
  position: absolute;
  left: clamp(18px, 5vw, 64px);
  bottom: clamp(18px, 6vh, 56px);
  max-width: min(720px, 88vw);
}
.t-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2px;
  margin-bottom: 12px;
}
.t-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 12px;
  text-wrap: balance;
}
.t-hero__desc {
  margin: 0 0 18px;
  opacity: .92;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
}
.t-hero__play.btn {
  border-radius: 14px;
}
.t-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}
.t-hero__nav:hover {
  background: rgba(0,0,0,.5);
}
.t-hero__prev { left: 14px; }
.t-hero__next { right: 14px; }

.t-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.t-hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  cursor: pointer;
}
.t-hero__dot.is-active {
  background: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.88);
}

.t-hero__slide.is-playing .t-hero__poster { display: none; }
.t-hero__slide.is-playing .t-hero__iframe { display: block; }

/* ABOUT (Boundary-inspired layout) */
.t-about {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
}
.t-about__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 4vw, 56px);
  align-items: start;
}
.t-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.58);
  margin: 0 0 10px;
}
.t-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 12px;
}
.t-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0,0,0,.72);
  font-weight: 600;
  margin: 0 0 22px;
}
.t-about__heroImg {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  background: #f3f3f3;
}
.t-about__heroImg img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.t-about__mini {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  margin: 18px 0 22px;
}
.t-about__mini img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}
.t-mini__label {
  margin: 0 0 4px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
}
.t-mini__text {
  margin: 0;
  color: rgba(0,0,0,.70);
  font-weight: 600;
  line-height: 1.7;
}

.t-quote {
  border-left: 4px solid rgba(0,0,0,.12);
  padding-left: 16px;
  margin-top: 10px;
}
.t-quote__mark {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 6px;
  color: rgba(0,0,0,.25);
}
.t-quote__text {
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.7;
  color: rgba(0,0,0,.75);
}
.t-quote__by {
  margin: 0;
  font-weight: 700;
  color: rgba(0,0,0,.55);
}

/* WAVY MARQUEE */
.t-wave {
  padding: 26px 0 40px;
  background: #f7f7fb;
  border-top: 1px solid rgba(0,0,0,.06);
}
.t-wave__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 14px;
}
.t-wave__head .h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
}
.t-wave__head .muted {
  margin: 0;
  color: rgba(0,0,0,.55);
  font-weight: 600;
}
.t-wave__marquee {
  overflow: hidden;
  padding: 10px 0 0;
}
.t-wave__track {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  width: max-content;
  animation: tWaveMarquee 38s linear infinite;
  padding: 10px 18px 18px;
}
.t-wave__marquee:hover .t-wave__track {
  animation-play-state: paused;
}
.t-wave__item {
  width: 170px;
  transform: translateY(var(--y));
  will-change: transform;
}
.t-wave__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,.14);
  background: #e9e9ee;
  display: block;
}
.t-wave__cap {
  margin-top: 10px;
  display: grid;
  gap: 2px;
}
.t-wave__name {
  font-weight: 900;
  font-size: 13px;
  color: rgba(0,0,0,.78);
}
.t-wave__role {
  font-weight: 700;
  font-size: 12px;
  color: rgba(0,0,0,.55);
}

@keyframes tWaveMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .t-about__grid {
    grid-template-columns: 1fr;
  }
  .t-about__mini {
    grid-template-columns: 100px 1fr;
  }
  .t-wave__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .t-hero__nav {
    display: none;
  }
}
/* =========================
   TESTIMONIAL PAGE — WAVY PEOPLE STRIP (OVERRIDES)
   ========================= */

/* remove the note text */
.t-wave__head .muted{
  display:none !important;
}

/* spacing for the whole strip */
.t-wave{
  padding: 44px 0 58px;
}

/* make the cards bigger + more breathing space */
.t-wave__track{
  gap: 44px !important;
}

/* bigger card width */
.t-wave__item{
  width: clamp(240px, 20vw, 340px) !important;
}

/* bigger image area */
.t-wave__media{
  height: clamp(280px, 32vw, 440px) !important;
  border-radius: 0 !important;              /* sharp corners */
  overflow: hidden !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.18) !important;
  background: #fff;
}

/* ensure image itself is sharp too (in case global styles override) */
.t-wave__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;              /* sharp corners */
  display: block;
}

/* optional: make name text a bit clearer under larger cards */
.t-wave__meta h4{
  margin-top: 12px;
  font-weight: 700;
}

/* responsive: let cards be wider on small screens */
@media (max-width: 768px){
  .t-wave__item{
    width: 72vw !important;
  }
  .t-wave__media{
    height: 52vw !important;
  }
}
