/* ============================================================
   PAGE: Tentang Kami
   Art direction: editorial / magazine — light bg, strong type,
   scroll-driven timeline, dark manifesto band.
============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.ttg-hero {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
}

/* Ghost watermark behind headline */
.hero-bg-text {
  position: absolute;
  font-family: var(--f-h);
  font-size: clamp(7rem, 22vw, 19rem);
  font-weight: 700;
  color: var(--b1);
  opacity: .045;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  letter-spacing: .06em;
}
[data-theme="dark"] .hero-bg-text { opacity: .07; }

.ttg-hero-in { position: relative; max-width: 700px; }

.ttg-hero .eyebrow { margin-bottom: 1.2rem; }

.ttg-h1 {
  font-family: var(--f-h);
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--ink2);
  margin: 0 0 1.4rem;
}

.ttg-lead {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.75;
  margin: 0 0 2.2rem;
}

/* scroll-cue bounce */
.ttg-hero .btn { position: relative; }

/* ── IDENTITY (3 chapters) ───────────────────────────────── */
.ttg-identity {
  padding-block: clamp(4.5rem, 9vw, 8rem); /* keep .container side gutters */
}
.ttg-identity > .eyebrow { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.ttg-chapters {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

.ttg-chapter {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 2.4rem;
  align-items: start;
}

/* big faded number */
.ch-num {
  font-family: var(--f-h);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 700;
  color: var(--b1);
  opacity: .13;
  line-height: 1;
  letter-spacing: -.03em;
  padding-top: .05em;
  flex-shrink: 0;
}
[data-theme="dark"] .ch-num { opacity: .22; }

.ch-body h3 {
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-weight: 700;
  color: var(--ink2);
  margin: 0 0 .85rem;
  line-height: 1.3;
}
.ch-body p {
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  line-height: 1.82;
  color: var(--muted);
  max-width: 62ch;
  margin: 0;
}
.ch-body p + p { margin-top: 1.1em; }
.ch-body strong { font-weight: 700; color: var(--ink); }
.ch-body em { font-style: italic; color: var(--ink2); }

/* horizontal feature photo inside "Siapa Kami" */
.ttg-photo {
  margin: clamp(2.8rem, 5.5vw, 4.5rem) 0 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
@keyframes ttgKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.12) translate(-1.2%, 1%); }
  100% { transform: scale(1) translate(0, 0); }
}
.ttg-photo img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
  animation: ttgKenBurns 16s ease-in-out infinite;
  will-change: transform;
}
/* tetap bergerak walau di-hover */
@media (prefers-reduced-motion: reduce) {
  .ttg-photo img { animation: none; }
}
.ttg-photo figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.4rem 1.6rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: #fff;
  z-index: 1;
}
.ttg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,14,37,.62), transparent 42%);
  pointer-events: none;
}

/* ── STATS BAND ──────────────────────────────────────────── */
.ttg-stats-band {
  background: linear-gradient(135deg, var(--b1) 0%, var(--b2) 55%, var(--b3) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
/* tech grid overlay */
.ttg-stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.ttg-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.ttg-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
}

.st-num {
  font-family: var(--f-h);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}
.st-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}

/* ── TIMELINE ────────────────────────────────────────────── */
.ttg-timeline-sec {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  /* tinted panel so it reads as its own chapter, not the same cream */
  background: linear-gradient(180deg, var(--bg3) 0%, color-mix(in srgb, var(--b3) 7%, var(--bg3)) 100%);
}
[data-theme="dark"] .ttg-timeline-sec {
  background: linear-gradient(180deg, var(--bg2) 0%, color-mix(in srgb, var(--b1) 22%, var(--bg2)) 100%);
}
/* faint blueprint grid overlay */
.ttg-timeline-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(38,66,132,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,66,132,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000, transparent 88%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000, transparent 88%);
}
[data-theme="dark"] .ttg-timeline-sec::before {
  background-image:
    linear-gradient(rgba(120,170,230,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,170,230,.07) 1px, transparent 1px);
}
.ttg-timeline-sec > .container { position: relative; z-index: 1; }
.ttg-timeline-sec > .container > .eyebrow { margin-bottom: 1.2rem; }
.ttg-tl-h2 {
  font-family: var(--f-h);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--ink2);
  line-height: 1.15;
  margin: 0 0 clamp(3rem, 6vw, 5.5rem);
}

.tl-track {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: .5rem 0 2rem;
}

/* the growing vertical line */
.tl-line {
  position: absolute;
  left: calc(50% - 1px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--b1) 0%, var(--cy) 100%);
  transform-origin: top center;
  transform: scaleY(0);
  border-radius: 2px;
  z-index: 0;
}

/* each row: [card | dot | card], 3-col grid */
.tl-item {
  display: grid;
  grid-template-columns: 1fr 2.8rem 1fr;
  align-items: center;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
}

/* dot sits in middle column */
.tl-dot {
  grid-column: 2;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--grad);
  justify-self: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--bg3), 0 0 0 6px rgba(33,152,206,.4), 0 0 14px rgba(31,195,243,.5);
  flex-shrink: 0;
}

/* card positioning */
.tl-left  .tl-card   { grid-column: 1; text-align: right; padding-right: 2rem; }
.tl-left  .tl-dot    { grid-column: 2; }
.tl-left  .tl-spacer { grid-column: 3; }
.tl-right .tl-spacer { grid-column: 1; }
.tl-right .tl-dot    { grid-column: 2; }
.tl-right .tl-card   { grid-column: 3; padding-left: 2rem; }

.tl-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(38,66,132,.07);
  transition: box-shadow .25s, transform .25s var(--ease);
}
.tl-card:hover {
  box-shadow: 0 14px 40px rgba(38,66,132,.16);
  transform: translateY(-3px);
}
/* full-height gradient accent on the edge facing the spine */
.tl-card::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--grad);
}
.tl-left  .tl-card::before { right: 0; }
.tl-right .tl-card::before { left: 0; }

.tl-year {
  display: inline-block;
  font-family: var(--f-h);
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  background: var(--grad);
  padding: .22rem .65rem;
  border-radius: 99px;
  letter-spacing: .1em;
  margin-bottom: .65rem;
}
.tl-card h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink2);
  margin: 0 0 .5rem;
}
.tl-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.68;
  margin: 0;
}

/* ── A. YEAR WATERMARK ───────────────────────────────────── */

/* ── B. DOT PULSE RIPPLE ─────────────────────────────────── */
@keyframes tl-ripple {
  0%   { box-shadow: 0 0 0 0 rgba(31,195,243,.5), 0 0 0 4px var(--bg3), 0 0 0 6px rgba(33,152,206,.4), 0 0 14px rgba(31,195,243,.5); }
  100% { box-shadow: 0 0 0 18px rgba(31,195,243,0), 0 0 0 4px var(--bg3), 0 0 0 6px rgba(33,152,206,.4), 0 0 14px rgba(31,195,243,.5); }
}
.tl-dot {
  animation: tl-ripple 1.6s ease-out 0.35s infinite;
}

/* ── D. GRADIENT SCROLL OVERLAY ──────────────────────────── */
.tl-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* warm amber wash dari tengah ke bawah — terlihat jelas saat scroll */
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(38,66,132,.0)  30%,
    rgba(38,66,132,.08) 65%,
    rgba(38,66,132,.14) 100%
  );
}

/* ── MANIFESTO ───────────────────────────────────────────── */
.ttg-manifesto {
  background: linear-gradient(135deg, #080f22 0%, #0c1d47 52%, #122260 100%);
  padding: clamp(5rem, 11vw, 9.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ttg-manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.mf-inner { position: relative; max-width: 800px; }

.mf-quote-mark {
  font-family: var(--f-h);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: .65;
  color: var(--cy);
  opacity: .22;
  display: block;
  margin-bottom: 1.8rem;
  user-select: none;
}

.mf-text {
  font-family: var(--f-h);
  font-size: clamp(1.35rem, 2.9vw, 2.15rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.52;
  margin: 0 0 1.6rem;
  font-style: normal;
  letter-spacing: -.01em;
}

.mf-attr {
  font-size: .82rem;
  color: rgba(255,255,255,.42);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── VALUES ──────────────────────────────────────────────── */
.ttg-values-sec {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}
.ttg-values-sec > .eyebrow { margin-bottom: 1rem; }
.ttg-vals-h2 {
  font-family: var(--f-h);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--ink2);
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}

/* bento-ish: first card spans two columns for rhythm */
.ttg-vals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.ttg-val:first-child { grid-column: span 2; }

.ttg-val {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.9rem 1.9rem 1.7rem;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.ttg-val:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(38,66,132,.14);
  border-color: transparent;
}
/* big faded index in the corner */
.ttg-val .vnum {
  position: absolute;
  top: .6rem;
  right: 1.1rem;
  font-family: var(--f-h);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--b1);
  opacity: .07;
  transition: opacity .3s, transform .4s var(--ease);
}
.ttg-val:hover .vnum { opacity: .14; transform: translateY(-4px); }
[data-theme="dark"] .ttg-val .vnum { opacity: .16; }

/* gradient sheen sweeps in on hover */
.ttg-val::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38,66,132,.06), rgba(31,195,243,.05));
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.ttg-val:hover::before { opacity: 1; }

/* growing gradient bar along the bottom */
.ttg-val::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s var(--ease);
}
.ttg-val:hover::after { transform: scaleX(1); }

.ttg-val .vi {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(38,66,132,.08);
  color: var(--b2);
  margin-bottom: 1.2rem;
  transition: transform .4s var(--ease), background .35s, color .35s, border-radius .35s;
}
.ttg-val:hover .vi {
  background: var(--grad);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
  border-radius: 16px;
}
[data-theme="dark"] .ttg-val .vi { background: rgba(33,152,206,.14); color: var(--cy); }
.ttg-val .vi svg { width: 22px; height: 22px; }

.ttg-val h4 {
  position: relative;
  z-index: 1;
  font-family: var(--f-h);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink2);
  margin: 0 0 .55rem;
}
.ttg-val p {
  position: relative;
  z-index: 1;
  font-size: .88rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* ── FOUNDER ─────────────────────────────────────────────── */
.ttg-founder {
  padding-block: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}

.founder-img img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}

.founder-bio .eyebrow { margin-bottom: .9rem; }
.founder-bio h2 {
  font-family: var(--f-h);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--ink2);
  margin: 0 0 .35rem;
}
.founder-role {
  font-size: .85rem;
  color: var(--b3);
  font-weight: 600;
  letter-spacing: .04em;
  margin: 0 0 1.8rem;
}
.founder-bio blockquote {
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  font-style: italic;
  color: var(--ink);
  border-left: 3px solid var(--b3);
  padding-left: 1.3rem;
  margin: 0 0 1.5rem;
  line-height: 1.62;
}
.founder-bio blockquote p { margin: 0; }
.founder-bio blockquote p + p { margin-top: .9em; }
.founder-bio blockquote strong { font-weight: 700; font-style: normal; }
.founder-bio blockquote em { font-style: italic; }
.founder-desc {
  font-size: .94rem;
  line-height: 1.82;
  color: var(--muted);
  margin: 0;
}
.founder-desc p { margin: 0; }
.founder-desc p + p { margin-top: 1em; }
.founder-desc strong { font-weight: 700; color: var(--ink); }
.founder-desc em { font-style: italic; color: var(--ink2); }

/* CTA → komponen .cta-band di shared.css */

/* ── WARGA MARKAS (team wall) ────────────────────────────── */
.ttg-warga-sec {
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(2rem, 4vw, 3.5rem);
}
.ttg-warga-sec .eyebrow { margin-bottom: 1rem; }
.ttg-warga-h2 {
  font-family: var(--f-h);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--ink2);
  margin: 0 0 .5rem;
}
.ttg-warga-sub {
  font-size: clamp(.92rem, 1.4vw, 1.05rem);
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 50ch;
}

/* ── filter pills ── */
.warga-filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem);
}
.warga-pill {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .38rem .9rem; border-radius: 100px;
  border: 1.5px solid var(--line);
  background: transparent; color: var(--muted);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.warga-pill:hover { border-color: var(--b1); color: var(--b1); }
.warga-pill.active {
  background: var(--b1); border-color: var(--b1); color: #fff;
}
[data-theme="dark"] .warga-pill.active { background: var(--cy); border-color: var(--cy); color: #04122a; }

/* hidden via JS filter (style.display = 'none') */

/* caption disembunyikan — nama/role sudah ada di foto */
.warga-caption { display: none; }

.warga-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.warga {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg3);
  box-shadow: 0 5px 18px rgba(38,66,132,.08);
  cursor: zoom-in;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.warga:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(38,66,132,.22);
}
.warga img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease), filter .35s;
  filter: grayscale(.55) brightness(.9);
}
.warga:hover img {
  transform: scale(1.07);
  filter: grayscale(0) brightness(1.02);
}
/* cyan ring glow on hover (effect only, no text) */
.warga::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(31,195,243,0);
  transition: box-shadow .3s var(--ease);
}
.warga:hover::after { box-shadow: inset 0 0 0 2.5px rgba(31,195,243,.85); }

/* ── LIGHTBOX (klik warga → membesar) ────────────────────── */
.warga-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 4rem);
  background: rgba(4, 9, 24, 0);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), background .35s, backdrop-filter .35s;
  cursor: zoom-out;
}
.warga-lightbox.open {
  opacity: 1;
  pointer-events: auto;
  background: rgba(4, 9, 24, .82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.warga-lightbox img {
  max-width: min(440px, 88vw);
  max-height: 84vh;
  width: auto;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
  transform: scale(.85);
  transition: transform .4s var(--ease);
}
.warga-lightbox.open img { transform: scale(1); }
.warga-lightbox .lb-close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  transition: .25s var(--ease);
}
.warga-lightbox .lb-close:hover { background: var(--cy); color: #04122a; transform: rotate(90deg); }
.warga-lightbox .lb-close svg { width: 22px; height: 22px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 920px) {
  .ttg-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .ttg-vals  { grid-template-columns: repeat(2, 1fr); }
  .ttg-founder { grid-template-columns: 280px 1fr; }
}

@media (max-width: 720px) {
  .ttg-founder {
    grid-template-columns: 1fr;
  }
  .founder-img img {
    max-width: 260px;
    border-radius: 50%;
    aspect-ratio: 1;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  /* chapter grid: tighter */
  .ttg-chapter {
    grid-template-columns: 52px 1fr;
    gap: 0 1rem;
  }
  .ch-num { font-size: clamp(2rem, 9vw, 3.5rem); }

  /* timeline: single left rail — robust (no grid-areas) */
  .tl-track { max-width: 100%; padding: .5rem 0 1rem; }
  .tl-line  { left: 9px; }
  .tl-item {
    display: block !important;
    position: relative;
    grid-template-columns: none !important;
    padding-left: 36px;
    margin-bottom: 1.6rem;
  }
  .tl-dot {
    position: absolute; left: 9px; top: 9px;
    transform: translateX(-50%);
    grid-column: auto !important;
    margin: 0 !important;
  }
  .tl-card {
    grid-column: auto !important;
    text-align: left !important;
    padding: 1.15rem 1.25rem !important;
  }
  .tl-card::before { left: 0 !important; right: auto !important; } /* accent on rail side */
  .tl-spacer { display: none; }

  /* values single column */
  .ttg-vals { grid-template-columns: 1fr; }
  .ttg-val:first-child { grid-column: auto; }

  /* warga: tighter tiles on phones */
  .warga-grid { grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 10px; }

  /* hero: no forced tall empty area on phones */
  .ttg-hero { min-height: auto; }

  /* 21:9 strip is too thin on a phone → use 3:2 */
  .ttg-photo img { aspect-ratio: 3 / 2; }
}

@media (max-width: 460px) {
  /* stats: 2×2 stays, just tighten so big numbers don't crowd */
  .ttg-stats { gap: 1.6rem 1rem; }
  .st-num { font-size: clamp(2.2rem, 11vw, 3rem); }
  /* chapter number column slimmer */
  .ttg-chapter { grid-template-columns: 40px 1fr; }
  /* warga even tighter so rows aren't too sparse */
  .warga-grid { grid-template-columns: repeat(3, 1fr); }
}
