/* =========================================================
   TheCarJournal — Soft Colorful Showcase
   Light · warm accents · no bold · no scrollbar
   ========================================================= */

:root {
  --bg: #f6f4f8;
  --panel: #ffffff;
  --ink: #14161c;
  --muted: #6a7180;
  --line: rgba(20,22,28,0.1);
  --line-soft: rgba(20,22,28,0.06);
  --graphite: #1c1f27;
  --saffron: #f0a010;
  --saffron-deep: #d4890a;
  --coral: #ff6b4a;
  --azure: #3b82f6;
  --mint: #2dd4a8;
  --violet: #8b5cf6;
  --rose: #f472b6;
  --ice: #e8f0ff;
  --steel: #4d5566;
  --radius: 6px;
  --font-d: "Space Grotesk", "Figtree", sans-serif;
  --font-b: "Figtree", sans-serif;
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
  --fw: 400;
  --fw-m: 500;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar { width: 0 !important; height: 0 !important; display: none !important; }

body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 0.95rem;
  font-weight: var(--fw);
  color: var(--ink);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(59,130,246,0.08), transparent 42%),
    radial-gradient(ellipse at 100% 8%, rgba(244,114,182,0.08), transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(45,212,168,0.07), transparent 45%),
    var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, strong, b, th, dt, cite, button, label {
  font-weight: var(--fw-m) !important;
}
h1, h2, h3, h4 {
  font-family: var(--font-d);
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}
h1 { font-size: 1.65rem; }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.05rem; }
p { margin: 0 0 0.85em; font-weight: var(--fw); }
button, input, select, textarea { font: inherit; font-weight: var(--fw); }

.tc-skip {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--saffron); color: var(--ink); padding: 0.6rem 1rem;
}
.tc-skip:focus { left: 1rem; top: 1rem; }

.tc-wrap { width: min(100% - 2.2rem, var(--max)); margin-inline: auto; }
.tc-wrap--n { width: min(100% - 2.2rem, 700px); }

.tc-display {
  font-family: var(--font-d);
  font-weight: var(--fw) !important;
  font-size: clamp(2.2rem, 6.2vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.tc-kicker {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: var(--fw) !important;
  margin-bottom: 0.85rem;
}
.tc-kicker--light { color: #ffd08a; }

.tc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.72rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: var(--fw-m) !important;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, filter 0.25s, box-shadow 0.25s;
}
.tc-btn:hover { transform: translateY(-3px); }
.tc-btn--saffron {
  background: linear-gradient(135deg, var(--saffron), var(--coral));
  color: #fff;
  box-shadow: 0 10px 28px rgba(255,107,74,0.28);
}
.tc-btn--saffron:hover { filter: brightness(1.05); color: #fff; }
.tc-btn--ink {
  background: linear-gradient(135deg, #1c1f27, #3b4a6b);
  color: #fff;
}
.tc-btn--ink:hover { filter: brightness(1.08); }
.tc-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.tc-btn--ghost:hover { background: #fff; color: var(--ink); }
.tc-btn--line { background: transparent; color: var(--ink); border-color: var(--ink); }
.tc-btn--line:hover { background: var(--ink); color: #fff; }
.tc-btn--lg { padding: 0.9rem 1.6rem; }
.tc-link { color: var(--azure); font-size: 0.88rem; }

.tc-sec { padding: clamp(3.4rem, 7vw, 5.8rem) 0; }
.tc-head { margin-bottom: 2rem; max-width: 34rem; }
.tc-head h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: var(--fw) !important; }
.tc-head p { color: var(--muted); }
.tc-head--light h2, .tc-head--light p { color: #fff; }
.tc-head--light p { opacity: 0.7; }

/* cursor + trail */
.tc-dot {
  position: fixed; width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--azure));
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%); opacity: 0; mix-blend-mode: multiply;
  transition: width 0.25s, height 0.25s, opacity 0.25s;
}
.tc-dot.is-on { opacity: 0.9; }
.tc-dot.is-big { width: 36px; height: 36px; background: transparent; border: 1.5px solid var(--violet); }
.tc-spark {
  position: fixed; left: 0; top: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, transparent, var(--azure), var(--coral), var(--saffron));
  pointer-events: none; z-index: 9997; opacity: 0;
}

/* header — pill nav (showcase style) */
.tc-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.tc-header.is-scrolled {
  background: rgba(255,255,255,0.97);
  border-color: rgba(0,0,0,0.05);
  box-shadow: 0 8px 28px rgba(20,22,28,0.05);
}
.tc-header__in {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 1rem;
  width: min(100% - 2rem, 1280px); margin-inline: auto;
}
.tc-logo { display: flex; align-items: center; gap: 0.55rem; color: var(--ink); }
.tc-logo__mark {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-d); font-size: 0.85rem;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  color: #fff; border: 0;
}
.tc-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.tc-logo__name { font-family: var(--font-d); font-size: 1.05rem; letter-spacing: -0.03em; }
.tc-logo__tag { font-size: 0.6rem; color: var(--muted); }
.tc-nav--d ul { display: flex; align-items: center; gap: 0.35rem; }
.tc-nav__a {
  display: block; padding: 0.55rem 1.05rem; font-size: 0.82rem; color: var(--ink);
  background: rgba(255,255,255,0.75); border-radius: 999px; position: relative;
  border: 1px solid rgba(59,130,246,0.12);
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.tc-nav__a::after { display: none; }
.tc-nav__a:hover {
  background: #fff;
  border-color: rgba(244,114,182,0.35);
  box-shadow: 0 4px 14px rgba(139,92,246,0.12);
}
.tc-nav__a.is-on {
  background: linear-gradient(135deg, #1c1f27, #3b4a6b);
  color: #fff;
  border-color: transparent;
}
.tc-nav__cta {
  margin-left: 0.2rem;
  background: linear-gradient(135deg, var(--coral), var(--saffron)) !important;
  color: #fff !important;
  border-radius: 999px;
  border: 0 !important;
  box-shadow: 0 6px 18px rgba(255,107,74,0.3);
}
.tc-nav__cta:hover { filter: brightness(1.06); }
.tc-prog { height: 2px; }
.tc-prog span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--azure), var(--violet), var(--coral), var(--saffron));
}

.tc-burger {
  display: none; width: 42px; height: 42px; border: 0; background: transparent;
  cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; padding: 10px;
}
.tc-burger span { display: block; height: 2px; background: var(--ink); transition: 0.3s; }
.tc-burger.is-on span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tc-burger.is-on span:nth-child(2) { opacity: 0; }
.tc-burger.is-on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.tc-back {
  position: fixed; inset: 0; background: rgba(20,22,28,0.45); z-index: 1090;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.tc-back.is-on { opacity: 1; pointer-events: auto; }
.tc-nav--m {
  position: fixed; top: 0; right: 0; width: min(88vw, 350px); height: 100%;
  background: var(--panel); z-index: 1100; transform: translateX(105%);
  transition: transform 0.45s var(--ease); padding: 1.2rem 1.4rem 2rem;
  display: flex; flex-direction: column; gap: 1.4rem;
  border-left: 1px solid var(--line);
}
.tc-nav--m.is-open { transform: translateX(0); }
.tc-nav__mh { display: flex; justify-content: space-between; align-items: center; }
.tc-nav__x { background: none; border: 0; font-size: 1.8rem; cursor: pointer; color: var(--ink); }
.tc-nav--m a {
  display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem;
}
.tc-nav--m .tc-nav__cta {
  margin-top: 1rem; text-align: center; background: var(--graphite); color: #fff !important; border: 0;
}
.tc-nav__ph { margin-top: auto; color: var(--muted); }

@media (max-width: 900px) {
  .tc-nav--d { display: none; }
  .tc-burger { display: flex; }
}

/* ===== scroll animations ===== */
.tc-in, .tc-in--d, .tc-stag > * {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease);
  filter: blur(4px);
}
.tc-in.is-show, .tc-in--d.is-show, .tc-stag.is-show > * {
  opacity: 1; transform: none; filter: none;
}
.tc-in--d { transition-delay: 0.16s; }
.tc-stag.is-show > *:nth-child(2) { transition-delay: 0.08s; }
.tc-stag.is-show > *:nth-child(3) { transition-delay: 0.16s; }
.tc-stag.is-show > *:nth-child(4) { transition-delay: 0.24s; }
.tc-stag.is-show > *:nth-child(5) { transition-delay: 0.32s; }
.tc-stag.is-show > *:nth-child(6) { transition-delay: 0.4s; }
.tc-stag.is-show > *:nth-child(7) { transition-delay: 0.48s; }
.tc-stag.is-show > *:nth-child(8) { transition-delay: 0.56s; }

/* Clip the child, not the host — otherwise IntersectionObserver never fires (0 intersection). */
.tc-wipe > * {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.1s var(--ease);
}
.tc-wipe.is-show > * { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

.tc-spin {
  opacity: 0;
  transform: rotate(-6deg) translateY(40px) scale(0.96);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.tc-spin.is-show { opacity: 1; transform: none; }

.tc-mask {
  clip-path: inset(40% 20% 40% 20% round 8px);
  transition: clip-path 1.2s var(--ease);
}
.tc-mask.is-show { clip-path: inset(0 0 0 0); }

.tc-slide-l {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.tc-slide-r {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.tc-slide-l.is-show, .tc-slide-r.is-show { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .tc-in, .tc-in--d, .tc-stag > *, .tc-wipe > *, .tc-spin, .tc-mask, .tc-slide-l, .tc-slide-r,
  .tc-ticker__t, .tc-mq__t, .tc-zip__bar, .tc-launch__scan, .tc-verse__media img {
    animation: none !important; transition: none !important;
  }
  .tc-in, .tc-in--d, .tc-stag > *, .tc-wipe > *, .tc-spin, .tc-mask, .tc-slide-l, .tc-slide-r {
    opacity: 1; transform: none; filter: none; clip-path: none;
  }
  .tc-dot { display: none; }
}

/* ===== SHOWCASE HERO (colorful soft) ===== */
.tc-show {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 1.25rem) 0 2rem;
  background: #f3f0f8;
  overflow: hidden;
}
.tc-show__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.tc-show__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 2;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.04);
}
.tc-show::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(ellipse at 12% 20%, rgba(59,130,246,0.18), transparent 42%),
    radial-gradient(ellipse at 88% 18%, rgba(244,114,182,0.14), transparent 40%),
    radial-gradient(ellipse at 50% 85%, rgba(45,212,168,0.12), transparent 48%),
    linear-gradient(180deg, rgba(251,250,254,0.55) 0%, rgba(243,240,248,0.72) 100%);
}
.tc-show__inner {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  position: relative; z-index: 2;
}
.tc-show__mast {
  display: none;
  opacity: 0;
  animation: tcShowIn 0.9s var(--ease) 0.08s forwards;
}
.tc-show__kicker {
  margin: 0 0 0.45rem;
  font-family: var(--font-d);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--saffron-deep);
}
.tc-show__headline {
  margin: 0;
  font-family: var(--font-d);
  font-size: clamp(1.7rem, 7.2vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: var(--fw) !important;
  color: var(--ink);
}
.tc-show__lead {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 28rem;
}
.tc-show__cta {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  margin-top: 1.05rem;
}
.tc-show__title {
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: tcShowIn 0.9s var(--ease) 0.1s forwards;
}
.tc-show__title h1 {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: var(--fw) !important;
  letter-spacing: -0.03em;
  margin: 0 0 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(120deg, #14161c 20%, #3b4a6b 50%, #c45c8a 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tc-show__title h1 i {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--azure); display: inline-grid; place-items: center;
  font-style: normal; font-size: 0.65rem; color: var(--azure); cursor: help;
  background: rgba(59,130,246,0.08);
  -webkit-text-fill-color: var(--azure);
}
.tc-show__title p {
  margin: 0; color: var(--muted); font-size: 0.95rem;
}
.tc-show__stage {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: clamp(320px, 48vh, 520px);
  margin-top: 0.5rem;
}
.tc-show__cats {
  display: flex; flex-direction: column; gap: 0.55rem;
  z-index: 3;
  opacity: 0;
  animation: tcShowIn 0.8s var(--ease) 0.25s forwards;
}
.tc-show__cat {
  border: 0; cursor: pointer;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 4px 18px rgba(59,130,246,0.08);
  color: var(--ink); font-size: 0.82rem;
  text-align: left; white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.9);
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.tc-show__cat:hover { transform: translateX(4px); box-shadow: 0 6px 20px rgba(244,114,182,0.15); }
.tc-show__cat.is-on {
  background: linear-gradient(135deg, var(--azure), var(--violet));
  color: #fff;
  box-shadow: 0 10px 28px rgba(59,130,246,0.35);
  border-color: transparent;
}
.tc-show__cat[data-tab="performance"].is-on {
  background: linear-gradient(135deg, var(--coral), var(--saffron));
  box-shadow: 0 10px 28px rgba(255,107,74,0.35);
}
.tc-show__cat[data-tab="safety"].is-on {
  background: linear-gradient(135deg, var(--mint), #22c55e);
  box-shadow: 0 10px 28px rgba(45,212,168,0.35);
}
.tc-show__cat[data-tab="luxury"].is-on {
  background: linear-gradient(135deg, var(--rose), var(--violet));
  box-shadow: 0 10px 28px rgba(244,114,182,0.35);
}
.tc-show__cat[data-tab="multimedia"].is-on {
  background: linear-gradient(135deg, #06b6d4, var(--azure));
  box-shadow: 0 10px 28px rgba(6,182,212,0.35);
}
.tc-show__car {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: clamp(260px, 42vh, 460px);
  opacity: 0;
  animation: tcCarIn 1.1s var(--ease) 0.2s forwards;
}
.tc-show__mark {
  position: absolute;
  width: min(72%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(59,130,246,0.12) 0%, rgba(244,114,182,0.08) 40%, transparent 68%);
  display: grid; place-items: center;
  pointer-events: none;
  z-index: 0;
}
.tc-show__mark svg {
  width: 70%; height: 70%; opacity: 0.08;
}
.tc-show__img {
  position: relative; z-index: 1;
  width: min(100%, 720px);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease), opacity 0.5s;
}
.tc-show__img img {
  width: 100%; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(59,130,246,0.18)) drop-shadow(0 16px 30px rgba(255,107,74,0.12));
  transition: filter 0.5s, opacity 0.45s;
}
.tc-show__img.is-swap img { opacity: 0.35; transform: scale(0.98); }

.tc-hot {
  position: absolute; z-index: 4;
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--azure), var(--violet));
  box-shadow: 0 0 0 6px rgba(59,130,246,0.15);
  cursor: pointer; padding: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  animation: tcPulseDot 2.4s ease-in-out infinite;
}
.tc-hot:hover, .tc-hot.is-on {
  background: linear-gradient(135deg, var(--coral), var(--saffron));
  box-shadow: 0 0 0 10px rgba(255,107,74,0.18);
  transform: translate(-50%, -50%) scale(1.15);
  animation: none;
}
.tc-hot__tip {
  position: absolute;
  left: 50%; bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  background: linear-gradient(135deg, #1c1f27, #3b4a6b);
  color: #fff; font-size: 0.72rem;
  padding: 0.4rem 0.7rem; border-radius: 999px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.3s, transform 0.3s;
}
.tc-hot:hover .tc-hot__tip,
.tc-hot.is-on .tc-hot__tip {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
@keyframes tcPulseDot {
  0%, 100% { box-shadow: 0 0 0 6px rgba(59,130,246,0.15); }
  50% { box-shadow: 0 0 0 12px rgba(139,92,246,0.12); }
}
@keyframes tcShowIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes tcCarIn {
  from { opacity: 0; transform: translateX(40px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

.tc-show__note {
  position: absolute;
  left: 8%; top: 18%;
  z-index: 3;
  max-width: 200px;
  background: linear-gradient(160deg, #fff, #f0f7ff);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  box-shadow: 0 12px 36px rgba(59,130,246,0.14);
  border: 1px solid rgba(59,130,246,0.12);
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0;
  animation: tcShowIn 0.8s var(--ease) 0.55s forwards;
}
.tc-show__note::after {
  content: "";
  position: absolute; left: 1.2rem; bottom: -8px;
  border: 8px solid transparent; border-top-color: #f0f7ff; border-bottom: 0;
}

.tc-show__panel {
  width: min(240px, 28vw);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, #1c1f27 0%, #2a3560 55%, #5a3a6e 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(59,130,246,0.25);
  z-index: 3;
  opacity: 0;
  animation: tcShowIn 0.9s var(--ease) 0.4s forwards;
  align-self: center;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.tc-show__panel:hover { transform: translateY(-4px); }
.tc-show__panel-top { padding: 1.25rem 1.2rem 1rem; }
.tc-show__panel-top h3 {
  font-size: 1.05rem; margin: 0 0 0.55rem;
  display: flex; align-items: center; gap: 0.4rem;
  font-weight: var(--fw) !important;
}
.tc-show__panel-top h3 span {
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--coral));
  display: inline-block;
  box-shadow: 0 0 10px rgba(255,107,74,0.5);
}
.tc-show__panel-top p { margin: 0; font-size: 0.78rem; opacity: 0.78; line-height: 1.5; }
.tc-show__panel-bot {
  background: linear-gradient(90deg, #fff, #f3f0ff);
  color: var(--ink);
  padding: 0.85rem 1.1rem;
  font-size: 0.78rem;
  display: flex; align-items: center; justify-content: space-between;
}
.tc-show__panel-bot a { color: var(--azure); }

.tc-feats {
  margin-top: 1.75rem;
  opacity: 0;
  animation: tcShowIn 0.9s var(--ease) 0.5s forwards;
}
.tc-feats__bar {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem; margin-bottom: 1rem;
}
.tc-feats__bar h2 {
  font-size: 1.15rem; margin: 0; font-weight: var(--fw) !important;
}
.tc-feats__colors {
  display: flex; align-items: center; gap: 0.65rem;
  background: rgba(255,255,255,0.7);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(139,92,246,0.12);
}
.tc-feats__colors > span { font-size: 0.8rem; color: var(--muted); margin-right: 0.25rem; }
.tc-swatch {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12); cursor: pointer; padding: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.tc-swatch:hover, .tc-swatch.is-on {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--azure);
}

.tc-feats__rail-wrap { position: relative; }
.tc-feats__rail {
  display: flex; gap: 0.85rem; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.tc-feats__rail::-webkit-scrollbar { display: none; }
.tc-feat {
  flex: 0 0 min(200px, 42vw);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  min-height: 120px;
  box-shadow: 0 8px 28px rgba(59,130,246,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  border-top: 3px solid var(--azure);
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.tc-feat:nth-child(2) { border-top-color: var(--coral); }
.tc-feat:nth-child(3) { border-top-color: var(--saffron); }
.tc-feat:nth-child(4) { border-top-color: var(--mint); }
.tc-feat:nth-child(5) { border-top-color: var(--violet); }
.tc-feat:nth-child(6) { border-top-color: var(--rose); }
.tc-feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(139,92,246,0.12);
}
.tc-feat__label { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.4rem; }
.tc-feat__val {
  font-family: var(--font-d); font-size: 1.55rem; line-height: 1.1;
  margin: 0 0 0.35rem; font-weight: var(--fw) !important;
  color: #1c2440;
}
.tc-feat__sub { font-size: 0.75rem; color: var(--muted); margin: 0; }
.tc-feat--img::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.08), transparent 60%);
  pointer-events: none;
}
.tc-feats__nav {
  display: flex; gap: 0.45rem; margin-top: 0.85rem;
}
.tc-feats__nav button {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.2); background: #fff;
  cursor: pointer; font-size: 0.95rem; color: var(--azure);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.tc-feats__nav button:hover {
  background: linear-gradient(135deg, var(--azure), var(--violet));
  color: #fff; border-color: transparent;
}

@media (max-width: 1000px) {
  .tc-show__stage { grid-template-columns: 1fr; gap: 1.25rem; }
  .tc-show__cats {
    flex-direction: row; flex-wrap: wrap; justify-content: center;
  }
  .tc-show__panel { width: 100%; max-width: 360px; margin-inline: auto; }
  .tc-show__note { display: none; }
  .tc-hot { display: none; }
}

/* ===== MOBILE HERO — unique composition ===== */
@media (max-width: 720px) {
  .tc-show {
    min-height: 100svh;
    padding: calc(var(--header-h) + 0.6rem) 0 1.4rem;
    background: #10131a;
  }
  .tc-show__bg img {
    opacity: 1;
    filter: brightness(0.42) saturate(0.85) contrast(1.08);
    object-position: 35% center;
    transform: scale(1.08);
  }
  .tc-show::before {
    background:
      linear-gradient(180deg, rgba(16,19,26,0.55) 0%, rgba(16,19,26,0.15) 28%, rgba(16,19,26,0.25) 55%, rgba(16,19,26,0.92) 100%),
      radial-gradient(ellipse at 70% 35%, rgba(240,160,16,0.18), transparent 45%);
  }
  .tc-show__inner {
    width: min(100% - 1.35rem, 1280px);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  /* Brand-first masthead — mobile only */
  .tc-show__mast {
    display: block;
    order: 1;
    color: #fff;
    padding: 0.2rem 0.15rem 0.35rem;
  }
  .tc-show__kicker { color: var(--saffron); }
  .tc-show__headline { color: #fff; }
  .tc-show__lead { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
  .tc-show__cta .tc-btn--line {
    color: #fff;
    border-color: rgba(255,255,255,0.35);
  }
  .tc-show__cta .tc-btn--line:hover {
    background: #fff;
    color: var(--ink);
  }

  .tc-show__stage {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    margin-top: 0;
    position: relative;
  }

  /* Horizontal chip rail */
  .tc-show__cats {
    order: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.45rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0.15rem 0.1rem 0.75rem;
    -webkit-overflow-scrolling: touch;
  }
  .tc-show__cats::-webkit-scrollbar { display: none; }
  .tc-show__cat {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0.55rem 0.95rem;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: none;
    backdrop-filter: blur(8px);
  }
  .tc-show__cat:hover { transform: none; box-shadow: none; }
  .tc-show__cat.is-on {
    background: var(--saffron);
    color: #14161c;
    box-shadow: 0 8px 22px rgba(240,160,16,0.35);
  }
  .tc-show__cat[data-tab="performance"].is-on,
  .tc-show__cat[data-tab="safety"].is-on,
  .tc-show__cat[data-tab="luxury"].is-on,
  .tc-show__cat[data-tab="multimedia"].is-on {
    background: var(--saffron);
    color: #14161c;
    box-shadow: 0 8px 22px rgba(240,160,16,0.35);
  }

  /* Car as cinematic centerpiece */
  .tc-show__car {
    order: 2;
    min-height: clamp(220px, 38svh, 340px);
    margin: 0 -0.35rem;
    animation: tcCarInMobile 1s var(--ease) 0.15s forwards;
  }
  .tc-show__mark {
    width: min(92%, 420px);
    background:
      radial-gradient(circle, rgba(240,160,16,0.18) 0%, rgba(59,130,246,0.08) 42%, transparent 70%);
  }
  .tc-show__mark svg { opacity: 0.14; filter: invert(1); }
  .tc-show__img {
    width: min(108%, 520px);
    margin-left: -4%;
  }
  .tc-show__img img {
    filter: drop-shadow(0 18px 36px rgba(0,0,0,0.55)) drop-shadow(0 0 40px rgba(240,160,16,0.12));
  }

  /* Spec sheet docks under the car */
  .tc-show__panel {
    order: 3;
    width: 100%;
    max-width: none;
    margin: -1.1rem 0 0;
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    color: var(--ink);
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
    backdrop-filter: blur(12px);
    animation: tcShowIn 0.85s var(--ease) 0.28s forwards;
  }
  .tc-show__panel-top {
    padding: 1.05rem 1.1rem 0.85rem;
  }
  .tc-show__panel-top h3 {
    font-size: 1rem;
    color: var(--ink);
  }
  .tc-show__panel-top p {
    opacity: 1;
    color: var(--muted);
    font-size: 0.8rem;
  }
  .tc-show__panel-bot {
    background: linear-gradient(90deg, #f7f4ef, #fff);
    border-top: 1px solid var(--line-soft);
    padding: 0.75rem 1.1rem;
  }
  .tc-show__panel-bot a {
    color: var(--saffron-deep);
    font-size: 1.1rem;
  }

  /* Features strip — dark dock */
  .tc-feats {
    order: 3;
    margin-top: 0.35rem;
    padding: 0.85rem 0.15rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .tc-feats__bar {
    margin-bottom: 0.75rem;
    gap: 0.7rem;
  }
  .tc-feats__bar h2 {
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
  }
  .tc-feats__colors {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.12);
    padding: 0.4rem 0.65rem;
  }
  .tc-feats__colors > span { color: rgba(255,255,255,0.55); font-size: 0.72rem; }
  .tc-feat {
    flex: 0 0 68vw;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-top-width: 3px;
    border-radius: 14px;
    box-shadow: none;
    min-height: 104px;
  }
  .tc-feat__label { color: rgba(255,255,255,0.5); }
  .tc-feat__val { color: #fff; font-size: 1.35rem; }
  .tc-feat__sub { color: rgba(255,255,255,0.45); }
  .tc-feat--img::before {
    background: linear-gradient(135deg, rgba(240,160,16,0.16), transparent 60%);
  }
  .tc-feats__nav { display: none; }

  @keyframes tcCarInMobile {
    from { opacity: 0; transform: translateY(28px) scale(0.94); }
    to { opacity: 1; transform: none; }
  }
}

@media (max-width: 640px) {
  .tc-show__headline { font-size: clamp(1.65rem, 8vw, 2.1rem); }
  .tc-show__cta { width: 100%; }
  .tc-show__cta .tc-btn { flex: 1 1 auto; text-align: center; justify-content: center; }
  .tc-feat { flex: 0 0 72vw; }
}

.tc-ticker {
  background: linear-gradient(90deg, var(--azure), var(--violet), var(--coral), var(--saffron));
  color: #fff; overflow: hidden; white-space: nowrap;
  padding: 0.8rem 0;
}
.tc-ticker__t {
  display: inline-flex; gap: 1.5rem; align-items: center;
  animation: tcMq 30s linear infinite; font-size: 0.85rem; letter-spacing: 0.08em;
}
.tc-ticker em { font-style: normal; opacity: 0.55; color: #fff; }
@keyframes tcMq { to { transform: translateX(-50%); } }

.tc-book { background: var(--bg); }
.tc-book__lay {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 1.2rem; align-items: stretch;
}
.tc-book__media {
  position: relative; min-height: 280px; overflow: hidden; background: var(--graphite);
}
.tc-book__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.tc-book__box {
  background: var(--panel); border: 1px solid var(--line); padding: clamp(1.4rem, 3vw, 2rem);
  display: grid; gap: 1.1rem; align-content: start;
}
.tc-book__box h2 { font-size: 1.15rem; margin: 0; }
.tc-book__g { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); }
.tc-book label { display: grid; gap: 0.3rem; font-size: 0.78rem; color: var(--muted); }
.tc-book input, .tc-book select,
.tc-form input, .tc-form textarea, .tc-sub input, .tc-nl input, .tc-mail input {
  width: 100%; padding: 0.7rem 0.85rem; border: 1px solid var(--line);
  background: var(--bg); border-radius: 2px;
}
.tc-book input:focus, .tc-book select:focus, .tc-form input:focus, .tc-form textarea:focus {
  outline: 2px solid var(--saffron); border-color: transparent;
}

.tc-focus { background: var(--panel); }
.tc-focus__g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tc-focus__i {
  padding: 0; border: 1px solid var(--line); position: relative; overflow: hidden;
  background: linear-gradient(160deg, #fff, #f7f9ff);
  border-top: 3px solid var(--azure);
  transition: transform 0.45s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.tc-focus__i:nth-child(2) { border-top-color: var(--coral); }
.tc-focus__i:nth-child(3) { border-top-color: var(--mint); }
.tc-focus__i:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(59,130,246,0.12);
}
.tc-focus__m { aspect-ratio: 16/10; overflow: hidden; background: var(--graphite); }
.tc-focus__m img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s var(--ease);
}
.tc-focus__i:hover .tc-focus__m img { transform: scale(1.06); }
.tc-focus__b { padding: 1.2rem 1.15rem 1.4rem; }
.tc-focus__i b {
  font-family: var(--font-d); font-size: 2rem; color: var(--azure);
  display: block; margin-bottom: 0.45rem; font-weight: var(--fw) !important;
}
.tc-focus__i:nth-child(2) b { color: var(--coral); }
.tc-focus__i:nth-child(3) b { color: var(--mint); }

.tc-lineup { background: var(--bg); }
.tc-cards { display: grid; gap: 1.5rem; }
.tc-card {
  display: grid; grid-template-columns: 1.15fr 0.85fr; background: var(--panel);
  border: 1px solid var(--line); overflow: hidden;
  transition: box-shadow 0.4s;
}
.tc-card:nth-child(even) { direction: rtl; }
.tc-card:nth-child(even) > * { direction: ltr; }
.tc-card:hover { box-shadow: 0 20px 50px rgba(20,22,28,0.08); }
.tc-card__m { position: relative; min-height: 280px; overflow: hidden; }
.tc-card__m img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease); filter: saturate(0.88);
}
.tc-card:hover .tc-card__m img { transform: scale(1.06); }
.tc-card__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--graphite); color: var(--saffron);
  font-size: 0.68rem; letter-spacing: 0.14em; padding: 0.3rem 0.65rem;
}
.tc-card__b { padding: clamp(1.4rem, 3vw, 2.2rem); display: flex; flex-direction: column; justify-content: center; }
.tc-card__meta { color: var(--saffron-deep); font-size: 0.82rem; margin-bottom: 0.6rem; }
.tc-card__sp {
  display: flex; gap: 1.3rem; margin: 1rem 0 1.2rem; padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft);
}
.tc-card__sp span { display: flex; flex-direction: column; font-size: 0.62rem; letter-spacing: 0.1em; color: var(--muted); }
.tc-card__sp i {
  font-style: normal; font-family: var(--font-d); font-size: 1.4rem; color: var(--ink);
}

.tc-zip {
  position: relative; padding: clamp(5rem, 10vw, 7rem) 0;
  background: var(--graphite); color: #fff; overflow: hidden;
}
.tc-zip__bg {
  position: absolute; inset: 0;
}
.tc-zip__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.28; filter: brightness(0.45) saturate(0.7);
}
.tc-zip__bar {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(224,161,18,0.28), transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(223,230,239,0.08), transparent 45%);
  animation: tcPulse 8s ease-in-out infinite alternate;
}
@keyframes tcPulse { to { transform: scale(1.08); } }
.tc-zip .tc-wrap { position: relative; z-index: 1; }
.tc-zip__g {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 2rem;
}
.tc-zip__i {
  text-align: center; padding: 1.4rem 1rem; border: 1px solid rgba(255,255,255,0.1);
}
.tc-zip__n {
  display: block; font-family: var(--font-d); font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--saffron); line-height: 1; margin-bottom: 0.4rem;
}
.tc-zip__l { font-size: 0.78rem; opacity: 0.65; }

.tc-band {
  position: relative; min-height: 64vh; display: flex; align-items: center;
  overflow: hidden; color: #fff;
}
.tc-band__img { position: absolute; inset: -8%; }
.tc-band__img img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35) saturate(0.75);
}
.tc-band__veil {
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(28,31,39,0.92) 30%, transparent 75%);
}
.tc-band__c { position: relative; z-index: 2; max-width: 30rem; }

.tc-axes { background: var(--panel); }
.tc-axes__g { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.tc-ax {
  padding: 0; border-top: 3px solid var(--saffron); background: var(--bg);
  overflow: hidden;
  transition: transform 0.4s var(--ease);
  will-change: transform;
}
.tc-ax:hover { transform: translateY(-5px); }
.tc-ax__m {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--graphite);
}
.tc-ax__m img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.tc-ax:hover .tc-ax__m img { transform: scale(1.06); }
.tc-ax__b { padding: 1.2rem 1.1rem 1.4rem; }
.tc-ax__ic {
  font-family: var(--font-d); font-size: 1.4rem; color: var(--graphite);
  margin-bottom: 0.55rem; display: block;
}

.tc-voices { background: var(--bg); overflow: hidden; }
.tc-snap {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.4rem max(1.1rem, calc((100vw - var(--max)) / 2)) 1.4rem;
  scrollbar-width: none;
}
.tc-snap::-webkit-scrollbar { display: none; }
.tc-voice {
  flex: 0 0 min(80vw, 380px); scroll-snap-align: start;
  background: var(--panel); border: 1px solid var(--line); padding: 1.8rem;
}
.tc-voice footer { display: flex; gap: 0.8rem; align-items: center; margin-top: 1.1rem; }
.tc-voice footer img {
  width: 48px; height: 48px; object-fit: cover; border-radius: 50%;
  border: 2px solid var(--saffron);
}
.tc-voice cite { display: block; font-style: normal; }
.tc-voice span { font-size: 0.78rem; color: var(--muted); }

.tc-launch {
  position: relative; padding: clamp(4.2rem, 9vw, 6.5rem) 0;
  background: var(--ink); color: #fff; text-align: center; overflow: hidden;
}
.tc-launch__bg {
  position: absolute; inset: 0;
}
.tc-launch__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.32; filter: brightness(0.4) saturate(0.75);
}
.tc-launch__scan {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 36px, rgba(224,161,18,0.06) 36px, rgba(224,161,18,0.06) 37px
  );
  animation: tcScan 3.5s linear infinite;
}
@keyframes tcScan { to { transform: translateY(37px); } }
.tc-launch .tc-wrap { position: relative; z-index: 1; }
.tc-launch h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: var(--fw) !important; }
.tc-launch__a { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 1.4rem; }

.tc-logs { background: var(--panel); }
.tc-logs__g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tc-log {
  border: 1px solid var(--line); overflow: hidden; background: var(--bg);
  transition: transform 0.4s var(--ease);
}
.tc-log:hover { transform: translateY(-7px); }
.tc-log__img { aspect-ratio: 16/10; overflow: hidden; }
.tc-log__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.tc-log:hover img { transform: scale(1.07); }
.tc-log__b { padding: 1.1rem; }
.tc-log time { font-size: 0.72rem; color: var(--muted); }

/* ===== ABOUT ===== */
.tc-sticky-hero {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 90svh;
  padding-top: var(--header-h); background: var(--bg);
}
.tc-sticky-hero__img {
  position: sticky; top: var(--header-h); height: calc(100svh - var(--header-h));
  overflow: hidden;
}
.tc-sticky-hero__img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.tc-sticky-hero__txt {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.tc-origins { background: var(--panel); }
.tc-origins__l { margin-top: 1.8rem; display: grid; gap: 1rem; }
.tc-origins__i {
  display: grid; grid-template-columns: 200px 1fr; gap: 1.3rem;
  padding: 0; border: 1px solid var(--line); background: var(--bg); overflow: hidden;
  align-items: center;
}
.tc-origins__m { aspect-ratio: 4/3; overflow: hidden; background: var(--graphite); }
.tc-origins__m img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-origins__i > div:last-child { padding: 1.2rem 1.3rem 1.2rem 0; }
.tc-origins__i span {
  font-family: var(--font-d); font-size: 2.2rem; color: var(--saffron); line-height: 1;
  display: block; margin-bottom: 0.45rem;
}
.tc-origins__i p { margin: 0; font-size: 1.02rem; }

.tc-years { background: var(--bg); }
.tc-years__r { display: grid; gap: 1.2rem; }
.tc-year-row {
  display: grid; grid-template-columns: 180px 7rem 1fr; gap: 1.2rem;
  padding: 0; background: var(--panel); border-left: 3px solid var(--saffron);
  overflow: hidden; align-items: center;
}
.tc-year-row__m { aspect-ratio: 4/3; overflow: hidden; background: var(--graphite); }
.tc-year-row__m img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-year-row__y {
  font-family: var(--font-d); font-size: 1.6rem; color: var(--graphite); line-height: 1;
  padding-left: 0.4rem;
}
.tc-year-row > div:last-child { padding: 1.2rem 1.2rem 1.2rem 0; }

.tc-meters { background: var(--graphite); color: #fff; }
.tc-meters .tc-head h2 { color: #fff; }
.tc-meters__g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.tc-meter { text-align: center; }
.tc-meter__m {
  aspect-ratio: 16/10; overflow: hidden; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,0.12);
}
.tc-meter__m img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.85); }
.tc-meter__r { position: relative; width: 120px; height: 120px; margin: 0 auto 1rem; }
.tc-meter__r svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.tc-meter__bg { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 7; }
.tc-meter__fg {
  fill: none; stroke: var(--saffron); stroke-width: 7; stroke-linecap: round;
  stroke-dasharray: 264; stroke-dashoffset: 264;
}
.tc-meter__v {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-d); font-size: 1.8rem; color: #fff;
}

.tc-crew { background: var(--panel); }
.tc-crew__g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tc-crew-c { background: var(--bg); overflow: hidden; border: 1px solid var(--line); }
.tc-crew-c__i { aspect-ratio: 4/5; overflow: hidden; }
.tc-crew-c__i img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.3); transition: 0.7s var(--ease);
}
.tc-crew-c:hover img { filter: none; transform: scale(1.04); }
.tc-crew-c h3, .tc-crew-c p { padding: 0 1.1rem; }
.tc-crew-c h3 { margin-top: 0.9rem; }
.tc-crew-c p { color: var(--muted); padding-bottom: 1.1rem; }

.tc-mq {
  background: linear-gradient(90deg, var(--violet), var(--rose), var(--coral));
  color: #fff; overflow: hidden; padding: 0.8rem 0;
}
.tc-mq__t {
  display: inline-flex; gap: 2rem; white-space: nowrap;
  animation: tcMq 22s linear infinite;
  font-family: var(--font-d); font-size: clamp(1rem, 2vw, 1.35rem);
}
.tc-mq em { font-style: normal; opacity: 0.4; }

.tc-cuts { background: var(--bg); }
.tc-cuts__g {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: minmax(200px, 28vw) minmax(200px, 28vw);
  gap: 0.75rem;
}
.tc-cut {
  overflow: hidden;
  position: relative;
  min-height: 200px;
  border-radius: 12px;
  background: #e8ecf4;
}
.tc-cut--big {
  grid-row: span 2;
  min-height: 100%;
}
.tc-cut img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}
.tc-cut--big img { min-height: 420px; }
.tc-cut:hover img { transform: scale(1.06); }

.tc-letter { background: var(--panel); }
.tc-letter__lay {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: stretch;
}
.tc-letter__m {
  position: relative; min-height: 280px; overflow: hidden; background: var(--graphite);
}
.tc-letter__m img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.tc-letter__b {
  max-width: none; margin: 0; padding: 2.2rem;
  border: 1px solid var(--line); border-top: 4px solid var(--saffron); background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
}

.tc-partners { background: var(--ice); text-align: center; }
.tc-partners__r { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin-top: 1.8rem; }
.tc-partner {
  padding: 0; background: var(--panel); border: 1px solid var(--line); font-size: 0.88rem;
  overflow: hidden;
}
.tc-partner__m { aspect-ratio: 16/10; overflow: hidden; background: var(--graphite); }
.tc-partner__m img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-partner span { display: block; padding: 0.9rem 0.7rem 1.1rem; }

.tc-invite {
  position: relative; padding: clamp(4rem, 8vw, 5.5rem) 0;
  background: var(--graphite); color: #fff; text-align: center; overflow: hidden;
}
.tc-invite__bg { position: absolute; inset: 0; }
.tc-invite__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.3; filter: brightness(0.4) saturate(0.7);
}
.tc-invite .tc-wrap { position: relative; z-index: 1; }
.tc-invite h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: var(--fw) !important; }
.tc-invite p { max-width: 32rem; margin: 0 auto 1.4rem; opacity: 0.75; }

/* ===== SERVICES ===== */
.tc-edge {
  display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 75svh;
  padding-top: var(--header-h); background: var(--bg); overflow: hidden;
}
.tc-edge__p {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem); background: var(--graphite); color: #fff;
}
.tc-edge__m { position: relative; overflow: hidden; min-height: 280px; }
.tc-edge__m img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(0.85);
}

.tc-menu { background: var(--panel); padding-bottom: 2rem; }
.tc-hsc {
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 0.8rem;
}
.tc-hsc::-webkit-scrollbar { display: none; }
.tc-hsc__t {
  display: flex; gap: 1rem; width: max-content;
  padding: 0 max(1.1rem, calc((100vw - var(--max)) / 2));
}
.tc-mc {
  flex: 0 0 min(76vw, 300px); scroll-snap-align: start;
  background: var(--bg); border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.tc-mc:hover { transform: translateY(-5px); border-color: var(--saffron); }
.tc-mc__i { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.tc-mc__i img { width: 100%; height: 100%; object-fit: cover; }
.tc-mc__n {
  position: absolute; bottom: 0.6rem; left: 0.6rem;
  font-family: var(--font-d); background: var(--graphite); color: var(--saffron);
  padding: 0.2rem 0.5rem; font-size: 0.8rem;
}
.tc-mc__b { padding: 1.1rem; }
.tc-mc__p { display: block; margin-top: 0.6rem; font-family: var(--font-d); font-size: 1.3rem; color: var(--saffron-deep); }

.tc-tiers { background: var(--bg); }
.tc-tiers__g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tc-tier {
  background: var(--panel); padding: 0; border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden;
}
.tc-tier__m { aspect-ratio: 16/10; overflow: hidden; background: var(--graphite); }
.tc-tier__m img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s var(--ease);
}
.tc-tier:hover .tc-tier__m img { transform: scale(1.05); }
.tc-tier__b {
  padding: 1.4rem 1.3rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1;
}
.tc-tier--h {
  background: var(--graphite); color: #fff; border-color: var(--saffron);
  transform: translateY(-8px);
}
.tc-tier--h .tc-btn--line { color: #fff; border-color: #fff; }
.tc-tier--h .tc-btn--line:hover { background: #fff; color: var(--ink); }
.tc-tier__p { font-family: var(--font-d); font-size: 1.9rem; color: var(--saffron-deep); margin: 0.3rem 0; }
.tc-tier--h .tc-tier__p { color: var(--saffron); }
.tc-tier ul { margin: 0.3rem 0 0.9rem; flex: 1; }
.tc-tier li { padding: 0.4rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.9rem; }
.tc-tier--h li { border-color: rgba(255,255,255,0.1); }

.tc-flow { background: var(--panel); }
.tc-flow__s { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.tc-fs__m { position: relative; margin-bottom: 0.8rem; aspect-ratio: 4/3; overflow: hidden; }
.tc-fs__m img { width: 100%; height: 100%; object-fit: cover; }
.tc-fs__m span {
  position: absolute; top: 0.6rem; left: 0.6rem;
  font-family: var(--font-d); font-size: 1.6rem; color: var(--saffron);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.tc-season { background: var(--bg); }
.tc-season__g { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.tc-sc {
  background: var(--panel); padding: 0; border-top: 3px solid var(--graphite); overflow: hidden;
}
.tc-sc__m { aspect-ratio: 16/10; overflow: hidden; background: var(--graphite); }
.tc-sc__m img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-sc__b { padding: 1.2rem 1.15rem 1.35rem; }
.tc-sc__s { font-family: var(--font-d); font-size: 1.5rem; color: var(--saffron); display: block; margin-bottom: 0.5rem; }

.tc-tools { background: var(--panel); }
.tc-tools__g { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.tc-tool {
  text-align: left; padding: 0; border: 1px solid var(--line); overflow: hidden;
  background: var(--bg); transition: border-color 0.3s, transform 0.4s;
}
.tc-tool:hover { border-color: var(--saffron); transform: translateY(-4px); }
.tc-tool__m { aspect-ratio: 16/10; overflow: hidden; background: var(--graphite); }
.tc-tool__m img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-tool span {
  display: block; font-family: var(--font-d); font-size: 1.6rem; color: var(--saffron);
  margin: 0.85rem 1rem 0.35rem;
}
.tc-tool p { margin: 0 1rem 1.1rem; font-size: 0.92rem; }

.tc-faq { background: var(--bg); }
.tc-acc { border-top: 1px solid var(--line); }
.tc-acc__i { border-bottom: 1px solid var(--line); }
.tc-acc__b {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; background: none; border: 0; cursor: pointer;
  font-size: 1rem; text-align: left; gap: 1rem; color: var(--ink);
}
.tc-acc__b span { font-size: 1.3rem; color: var(--saffron-deep); transition: transform 0.3s; }
.tc-acc__i.is-open .tc-acc__b span { transform: rotate(45deg); }
.tc-acc__p { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.tc-acc__i.is-open .tc-acc__p { max-height: 220px; }
.tc-acc__p p { padding-bottom: 1.1rem; color: var(--muted); }

.tc-matrix {
  position: relative; padding: 3rem 0 4.5rem; background: var(--graphite); color: #fff; overflow: hidden;
}
.tc-matrix__bg { position: absolute; inset: 0; }
.tc-matrix__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.22; filter: brightness(0.4) saturate(0.7);
}
.tc-matrix .tc-wrap { position: relative; z-index: 1; }
.tc-matrix__t { display: grid; gap: 0; border: 1px solid rgba(255,255,255,0.12); background: rgba(20,22,28,0.55); }
.tc-matrix__r {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tc-matrix__r > * { padding: 0.95rem 0.7rem; }
.tc-matrix__r--h { background: rgba(224,161,18,0.15); letter-spacing: 0.05em; }
.tc-matrix__r > *:first-child { text-align: left; }

/* ===== BLOG — telemetry journal (bj-) ===== */
.bj-hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2.8rem) 0 3.4rem;
  overflow: hidden;
  color: #fff;
  background: #10141c;
}
.bj-hero__bg {
  position: absolute; inset: -10% -6%;
  will-change: transform;
}
.bj-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.48) saturate(1.15) contrast(1.05);
  transform: scale(1.08);
}
.bj-hero__wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(118deg, rgba(12,16,28,0.92) 0%, rgba(20,28,48,0.45) 42%, rgba(255,107,74,0.18) 72%, rgba(12,16,28,0.75) 100%),
    linear-gradient(transparent 30%, rgba(10,12,18,0.9));
  pointer-events: none;
}
.bj-hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1.5rem;
  align-items: end;
  width: 100%;
}
.bj-hero__copy .tc-display { color: #fff; }
.bj-hero__copy > p { margin: 0.55rem 0 0; max-width: 28rem; color: rgba(255,255,255,0.72); }
.bj-hero__meter {
  justify-self: end;
  text-align: right;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  animation: bjPulse 3.6s var(--ease) infinite;
}
.bj-hero__vol {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(255,208,138,0.9);
}
.bj-hero__meter em {
  display: block;
  font-style: normal;
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1;
  margin: 0.15rem 0;
  background: linear-gradient(135deg, #fff 20%, #ffd08a 55%, #ff6b4a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: var(--fw) !important;
}
.bj-hero__meter > span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
}
@keyframes bjPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,160,16,0.15); }
  50% { box-shadow: 0 0 0 10px rgba(240,160,16,0); }
}

.bj-filter {
  padding: 1.4rem 0;
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.86);
  border-bottom: 1px solid var(--line-soft);
}
.bj-filter__bar {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 0.9rem 1.2rem;
}
.bj-filter__bar h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: var(--fw) !important;
  letter-spacing: 0.04em;
}
.bj-filter__chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.bj-chip {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.85);
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  font-size: 0.78rem;
  border-radius: 999px;
  color: var(--ink);
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.bj-chip:hover {
  transform: translateY(-2px);
  border-color: var(--azure);
  box-shadow: 0 8px 18px rgba(59,130,246,0.12);
}
.bj-chip.is-on {
  background: linear-gradient(135deg, #ff6b4a, #f0a010 55%, #3b82f6);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(255,107,74,0.25);
}

.bj-spot {
  padding: clamp(2.6rem, 5.5vw, 4rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255,107,74,0.08), transparent 40%),
    radial-gradient(ellipse at 10% 80%, rgba(59,130,246,0.07), transparent 42%),
    var(--bg);
}
.bj-spot__card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  margin-top: 1rem;
  overflow: visible;
  position: relative;
}
.bj-spot__img {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 4px 0 0 4px;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  background: var(--graphite);
}
.bj-spot__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.bj-spot__card:hover .bj-spot__img img { transform: scale(1.05); }
.bj-spot__body {
  margin: 2.2rem 0 2.2rem -2.5rem;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: 0 28px 60px rgba(20,22,28,0.1);
  border-radius: 4px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.bj-spot__meta {
  display: flex; gap: 0.9rem; font-size: 0.78rem;
  color: var(--muted); margin-bottom: 0.65rem;
}
.bj-spot__meta span { color: var(--coral); letter-spacing: 0.08em; }
.bj-spot__body h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  font-weight: var(--fw) !important;
  margin: 0 0 0.7rem;
}
.bj-spot__body p { color: var(--muted); margin: 0 0 1.2rem; }

.bj-lanes {
  padding: clamp(2.8rem, 5.5vw, 4.2rem) 0;
  background: var(--panel);
}
.bj-lanes__head { margin-bottom: 1.5rem; max-width: 36rem; }
.bj-lanes__head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: var(--fw) !important;
}
.bj-lanes__head p { margin: 0; color: var(--muted); }
.bj-lanes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.4rem;
}
.bj-lane { display: grid; gap: 0.55rem; }
.bj-lane__item {
  display: grid;
  grid-template-columns: 40px 88px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease);
  background: transparent;
}
.bj-lane__item:hover {
  background: var(--bg);
  border-color: var(--line-soft);
  transform: translateX(4px);
}
.bj-lane__item > span {
  font-family: var(--font-d);
  font-size: 0.85rem;
  color: var(--azure);
  letter-spacing: 0.06em;
}
.bj-lane__thumb {
  width: 88px; height: 64px; border-radius: 8px; overflow: hidden; background: var(--graphite);
}
.bj-lane__thumb img,
.bj-lane__item > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.bj-lane__item > img {
  width: 88px; height: 64px; border-radius: 8px;
}
.bj-lane__item em {
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--saffron-deep);
}
.bj-lane__item h3 {
  font-size: 0.98rem;
  margin: 0.15rem 0 0.2rem;
  font-weight: var(--fw) !important;
}
.bj-lane__item time { font-size: 0.72rem; color: var(--muted); }

.bj-bento {
  padding: clamp(3rem, 6vw, 4.8rem) 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(16,185,129,0.06), transparent 40%),
    var(--bg);
}
.bj-bento__head { margin-bottom: 1.6rem; max-width: 36rem; }
.bj-bento__head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: var(--fw) !important;
}
.bj-bento__head p { margin: 0; color: var(--muted); }
.bj-bento__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 0.75rem;
}
.bj-bento__cell {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--graphite);
  min-height: 180px;
}
.bj-bento__cell--wide { grid-column: span 2; min-height: 260px; }
.bj-bento__cell--tall { grid-row: span 2; min-height: 380px; }
.bj-bento__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
  filter: brightness(0.72) saturate(1.05);
}
.bj-bento__cell:hover img { transform: scale(1.06); filter: brightness(0.8) saturate(1.1); }
.bj-bento__cap {
  position: absolute; inset: auto 0 0 0;
  padding: 1.1rem 1.15rem 1.2rem;
  background: linear-gradient(transparent, rgba(10,12,18,0.92));
  color: #fff;
}
.bj-bento__cap span {
  font-size: 0.66rem; letter-spacing: 0.12em; color: #ffd08a;
}
.bj-bento__cap h3 {
  margin: 0.25rem 0 0.35rem;
  font-size: 1.05rem;
  font-weight: var(--fw) !important;
}
.bj-bento__cap p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.bj-film {
  padding: clamp(2.8rem, 5.5vw, 4.2rem) 0 3.2rem;
  background: linear-gradient(160deg, #161922 0%, #1e2430 45%, #12151c 100%);
  color: #fff;
  overflow: hidden;
}
.bj-film__head { margin-bottom: 1.4rem; max-width: 34rem; }
.bj-film__head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: var(--fw) !important;
  color: #fff;
}
.bj-film__head p { margin: 0; color: rgba(255,255,255,0.6); }
.bj-film__track {
  display: flex; gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.4rem max(1.1rem, calc((100vw - var(--max)) / 2)) 1rem;
  scrollbar-width: none;
  cursor: grab;
}
.bj-film__track::-webkit-scrollbar { display: none; }
.bj-film__frame {
  flex: 0 0 min(58vw, 240px);
  margin: 0;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
}
.bj-film__frame:nth-child(even) { transform: translateY(14px); }
.bj-film__frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.72) saturate(1.08);
  transition: transform 0.9s var(--ease), filter 0.4s;
}
.bj-film__frame:hover img {
  transform: scale(1.07);
  filter: brightness(0.85) saturate(1.12);
}
.bj-film__frame figcaption {
  position: absolute; left: 0.85rem; bottom: 0.85rem;
  font-family: var(--font-d); letter-spacing: 0.14em; font-size: 0.85rem;
}

.bj-tip {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--bg);
}
.bj-tip__lay {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}
.bj-tip__media {
  min-height: 320px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--graphite);
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}
.bj-tip__media img {
  width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block;
  transition: transform 1.1s var(--ease);
}
.bj-tip:hover .bj-tip__media img { transform: scale(1.04); }
.bj-tip__copy { max-width: 28rem; }
.bj-tip__copy h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  font-weight: var(--fw) !important;
  margin: 0.4rem 0 0.7rem;
}
.bj-tip__copy > p { color: var(--muted); margin: 0 0 1rem; }
.bj-tip__copy > span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--saffron-deep);
}

.bj-quote {
  position: relative;
  min-height: min(70svh, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0a0c10;
  color: #fff;
}
.bj-quote__bg { position: absolute; inset: 0; }
.bj-quote__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.4) saturate(0.95);
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}
.bj-quote:hover .bj-quote__bg img { transform: scale(1.08); }
.bj-quote__inner {
  position: relative; z-index: 2;
  padding-top: clamp(4rem, 10vw, 6rem);
  padding-bottom: clamp(2.8rem, 6vw, 4rem);
  background: linear-gradient(transparent, rgba(8,10,14,0.88));
}
.bj-quote blockquote {
  margin: 0.6rem 0 0;
  max-width: 14em;
  font-family: var(--font-d);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  line-height: 1.3;
  font-weight: var(--fw) !important;
}

.bj-years {
  padding: clamp(2.6rem, 5vw, 3.8rem) 0;
  background: var(--panel);
}
.bj-years__head { margin-bottom: 1.3rem; }
.bj-years__head h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: var(--fw) !important;
}
.bj-years__head p { margin: 0; color: var(--muted); }
.bj-years__row { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.bj-year {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.2rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 14px;
  cursor: pointer;
  transition: 0.35s var(--ease);
  min-width: 7.5rem;
}
.bj-year .bj-year__y {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: var(--fw) !important;
}
.bj-year > span:last-child {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.bj-year:hover, .bj-year.is-on {
  background: linear-gradient(135deg, var(--saffron), var(--coral));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 24px rgba(255,107,74,0.22);
}
.bj-year:hover > span:last-child,
.bj-year.is-on > span:last-child { color: rgba(255,255,255,0.8); }

.bj-mail {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.1), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(255,107,74,0.08), transparent 45%),
    var(--ice);
}
.bj-mail__box {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.4rem;
  padding: clamp(1.6rem, 3.5vw, 2.2rem);
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(20,22,28,0.06);
}
.bj-mail__copy { max-width: 28rem; }
.bj-mail__copy h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: var(--fw) !important;
  margin: 0 0 0.4rem;
}
.bj-mail__copy p { color: var(--muted); margin: 0; }
.bj-mail__form {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  flex: 1 1 280px; max-width: 460px;
}
.bj-mail__form input {
  flex: 1 1 200px;
  border: 1px solid var(--line);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
}

.bj-film__hint {
  display: none;
}
.bj-reveal {
  overflow: hidden;
}
.bj-reveal img,
.bj-zoom {
  transform: scale(1.12);
  opacity: 0.55;
  transition: transform 1.15s var(--ease), opacity 0.9s var(--ease), filter 0.9s var(--ease);
  filter: saturate(0.85) brightness(0.92);
}
.bj-reveal.is-show img,
.is-show .bj-zoom,
.bj-bento__cell.is-show .bj-zoom,
.bj-film__frame.is-show .bj-zoom,
.bj-hero.is-ready .bj-zoom {
  transform: scale(1);
  opacity: 1;
  filter: none;
}
.bj-tap {
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.25s, background 0.25s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.bj-tap.is-press,
.bj-chip.is-press,
.bj-year.is-press,
.tc-btn.is-press {
  transform: scale(0.96) !important;
}
.bj-chip,
.bj-year,
.tc-btn {
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.bj-stag-more.is-show > *:nth-child(7) { transition-delay: 0.48s; }
.bj-stag-more.is-show > *:nth-child(8) { transition-delay: 0.56s; }

@media (max-width: 980px) {
  .bj-hero {
    min-height: 72svh;
    padding: calc(var(--header-h) + 1.6rem) 0 2.4rem;
  }
  .bj-hero__inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .bj-hero__meter {
    justify-self: start;
    text-align: left;
    animation: bjPulse 3.2s var(--ease) infinite;
  }
  .bj-filter {
    top: var(--header-h);
    padding: 0.85rem 0;
  }
  .bj-filter__bar { gap: 0.65rem; }
  .bj-filter__chips {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.4rem;
    width: 100%;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .bj-filter__chips::-webkit-scrollbar { display: none; }
  .bj-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    border-radius: 999px;
  }
  .bj-chip.is-on {
    transform: scale(1.04);
  }
  .bj-spot { padding-top: 1.6rem; }
  .bj-spot__card { grid-template-columns: 1fr; border-radius: 16px; }
  .bj-spot__img {
    clip-path: none;
    border-radius: 16px 16px 0 0;
    min-height: 240px;
    aspect-ratio: 16/11;
  }
  .bj-spot__body {
    margin: -1.35rem 0.9rem 0;
    padding: 1.25rem 1.15rem 1.4rem;
  }
  .bj-spot__body .tc-btn { width: 100%; }
  .bj-lanes__grid { grid-template-columns: 1fr; }
  .bj-lane__item {
    grid-template-columns: 36px 76px 1fr;
    gap: 0.7rem;
    padding: 0.75rem;
    background: var(--panel);
    border: 1px solid var(--line-soft);
  }
  .bj-lane__thumb { width: 76px; height: 56px; }
  .bj-bento__grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .bj-bento__cell--tall { grid-row: span 1; min-height: 220px; }
  .bj-film__track {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    gap: 0.75rem;
  }
  .bj-film__frame {
    flex: 0 0 min(58vw, 220px);
    border-radius: 14px;
  }
  .bj-film__frame:nth-child(even) { transform: none; }
  .bj-tip__lay { grid-template-columns: 1fr; gap: 1.2rem; }
  .bj-tip__media {
    clip-path: none;
    border-radius: 14px;
    min-height: 220px;
    aspect-ratio: 16/10;
  }
  .bj-years__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
  .bj-year { width: 100%; justify-content: center; text-align: center; padding: 0.85rem 1rem; }
  .bj-mail__box { flex-direction: column; align-items: stretch; gap: 1.1rem; }
  .bj-mail__form { max-width: none; }
  .bj-mail__form .tc-btn { width: 100%; }
}

@media (max-width: 640px) {
  .bj-hero { min-height: 68svh; }
  .bj-hero__copy .tc-display {
    font-size: clamp(1.85rem, 9.5vw, 2.45rem);
  }
  .bj-hero__meter {
    width: 100%;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }
  .bj-hero__meter em { font-size: 2.2rem; margin: 0; }
  .bj-hero__vol { margin-right: auto; }
  .bj-filter__bar h2 { font-size: 0.92rem; }
  .bj-spot__img { min-height: 210px; }
  .bj-spot__body h2 { font-size: 1.25rem; }
  .bj-bento__grid { grid-template-columns: 1fr; }
  .bj-bento__cell,
  .bj-bento__cell--wide,
  .bj-bento__cell--tall {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 240px;
  }
  .bj-bento__cap p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .bj-lane__item {
    grid-template-columns: 32px 64px 1fr;
  }
  .bj-lane__thumb { width: 64px; height: 48px; }
  .bj-film__frame { flex: 0 0 72vw; }
  .bj-quote { min-height: 56svh; padding: 3.2rem 0; }
  .bj-quote blockquote { font-size: clamp(1.25rem, 6.5vw, 1.7rem); }
  .bj-years__row { grid-template-columns: 1fr 1fr; }
  .bj-mail__form input { flex: 1 1 100%; min-height: 48px; }
  .bj-mail__form .tc-btn { min-height: 48px; }

  /* mobile entrance polish */
  .tc-in, .tc-in--d, .tc-stag > *, .tc-slide-l, .tc-slide-r, .tc-spin {
    transform: translateY(28px);
    filter: blur(2px);
  }
  .tc-slide-l { transform: translateX(-28px); }
  .tc-slide-r { transform: translateX(28px); }
  .tc-in.is-show, .tc-in--d.is-show, .tc-stag.is-show > *,
  .tc-slide-l.is-show, .tc-slide-r.is-show, .tc-spin.is-show {
    transform: none; filter: none;
  }
  .bj-chip {
    transition: transform 0.25s var(--ease), background 0.2s, color 0.2s, box-shadow 0.25s;
  }
  .bj-chip:active,
  .bj-year:active,
  .tc-btn:active,
  .bj-tap:active {
    transform: scale(0.96);
  }
  .bj-bento__cell:active img,
  .bj-film__frame:active img,
  .bj-spot__card:active .bj-spot__img img {
    transform: scale(1.04);
  }
  .bj-film__hint {
    display: block;
    margin: 0.75rem 1.1rem 0;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
    animation: bjHint 2.4s var(--ease) infinite;
  }
}

@keyframes bjHint {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .bj-hero__meter,
  .bj-film__hint { animation: none !important; }
  .bj-reveal img,
  .bj-zoom {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .bj-quote:hover .bj-quote__bg img,
  .bj-bento__cell:active img,
  .bj-film__frame:active img { transform: none !important; }
}


/* ===== CONTACT ===== */
.tc-sig {
  position: relative; min-height: 52svh; display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 2.5rem) 0 3rem; overflow: hidden;
  background: var(--graphite); color: #fff;
}
.tc-sig__bg { position: absolute; inset: 0; }
.tc-sig__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.45; filter: brightness(0.45) saturate(0.8);
}
.tc-sig__c { position: relative; z-index: 1; max-width: 34rem; }
.tc-sig__line {
  position: absolute; right: 8%; top: 30%; width: 180px; height: 180px; z-index: 1;
  border: 1px solid rgba(224,161,18,0.4); border-radius: 50%;
  animation: tcRing 2.8s ease-out infinite;
}
.tc-sig__line::before {
  content: ""; position: absolute; inset: 38%; border-radius: 50%; background: var(--saffron);
}
@keyframes tcRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.tc-ch { background: var(--panel); }
.tc-ch__g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.tc-ch__i {
  display: block; padding: 0; background: var(--bg); color: inherit; text-decoration: none;
  border: 1px solid var(--line); border-bottom: 3px solid var(--saffron);
  transition: transform 0.4s var(--ease); overflow: hidden;
}
.tc-ch__i:hover { transform: translateY(-5px); }
.tc-ch__m { aspect-ratio: 16/10; overflow: hidden; background: var(--graphite); }
.tc-ch__m img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-ch__b { padding: 1.3rem 1.25rem 1.5rem; }
.tc-ch__l {
  font-family: var(--font-d); font-size: 2rem; color: var(--ice); display: block; line-height: 1; margin-bottom: 0.6rem;
}

.tc-cm { background: var(--bg); }
.tc-cm__g { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.5rem; }
.tc-fp, .tc-of {
  background: var(--panel); padding: clamp(1.4rem, 3vw, 2rem); border: 1px solid var(--line);
}
.tc-of { padding: 0; overflow: hidden; }
.tc-of__m { aspect-ratio: 16/10; overflow: hidden; background: var(--graphite); }
.tc-of__m img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-of h2, .tc-of > p, .tc-of__dl { padding-left: clamp(1.4rem, 3vw, 2rem); padding-right: clamp(1.4rem, 3vw, 2rem); }
.tc-of h2 { margin-top: 1.2rem; }
.tc-of__dl { margin-top: 1rem; padding-bottom: 1.4rem; }
.tc-form { display: grid; gap: 0.9rem; margin-top: 0.9rem; }
.tc-form label { display: grid; gap: 0.3rem; font-size: 0.82rem; color: var(--muted); }
.tc-of__dl dt { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--muted); margin-top: 0.9rem; }
.tc-of__dl dd { margin: 0.2rem 0 0; }
.tc-note { padding: 0.9rem; margin: 0.9rem 0; font-size: 0.9rem; }
.tc-note--ok { background: #eef7e8; color: #2d5a1e; }
.tc-note--err { background: #fcecea; color: #7a2a20; }

.tc-hrs {
  position: relative; padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--graphite); color: #fff; overflow: hidden;
}
.tc-hrs__bg { position: absolute; inset: 0; }
.tc-hrs__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.25; filter: brightness(0.4) saturate(0.7);
}
.tc-hrs .tc-wrap { position: relative; z-index: 1; }
.tc-hrs__b { display: grid; gap: 1.1rem; margin-top: 1.4rem; max-width: 600px; }
.tc-hrs__i {
  display: grid; grid-template-columns: 65px 1fr 55px; align-items: center; gap: 0.9rem;
}
.tc-hrs__i i {
  display: block; height: 8px; width: 0;
  background: linear-gradient(90deg, var(--saffron), #fff);
  transition: width 1.2s var(--ease);
}
.tc-hrs.is-show .tc-hrs__i i { width: var(--w, 50%); }

.tc-accs { background: var(--panel); }
.tc-accs__g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.tc-accs__c {
  padding: 0; background: var(--bg); border-left: 3px solid var(--saffron); overflow: hidden;
}
.tc-accs__m { aspect-ratio: 16/10; overflow: hidden; background: var(--graphite); }
.tc-accs__m img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-accs__c h3, .tc-accs__c p { padding-left: 1.2rem; padding-right: 1.2rem; }
.tc-accs__c h3 { margin-top: 1.1rem; }
.tc-accs__c p { margin-bottom: 1.2rem; }

.tc-visit { background: var(--bg); }
.tc-visit__s { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.tc-vs { display: flex; flex-direction: column; gap: 0.85rem; }
.tc-vs__m {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--panel);
}
.tc-vs__m img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease); filter: saturate(0.9);
}
.tc-vs:hover .tc-vs__m img { transform: scale(1.06); }
.tc-vs__m span {
  position: absolute; top: 0.65rem; left: 0.65rem;
  font-family: var(--font-d); font-size: 1.55rem; color: var(--saffron);
  text-shadow: 0 2px 10px rgba(0,0,0,0.45); line-height: 1;
}
.tc-vs p {
  margin: 0; font-family: var(--font-d); font-size: 0.95rem;
  letter-spacing: -0.01em; line-height: 1.35;
}

.tc-prom { padding: clamp(3.2rem, 6vw, 4.5rem) 0; background: var(--ice); }
.tc-prom > .tc-wrap > h2 { text-align: center; }
.tc-prom__g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.8rem; }
.tc-pi { display: grid; grid-template-rows: auto 1fr; gap: 0; }
.tc-pi__m {
  position: relative; aspect-ratio: 5/4; overflow: hidden; background: var(--panel);
}
.tc-pi__m img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease); filter: saturate(0.88) brightness(0.92);
}
.tc-pi:hover .tc-pi__m img { transform: scale(1.05); }
.tc-pi__t {
  padding: 1.25rem 0.2rem 0.2rem; text-align: center;
}
.tc-pi__t em {
  display: block; font-style: normal; font-family: var(--font-d);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem); color: var(--saffron-deep); line-height: 1; margin-bottom: 0.4rem;
}
.tc-pi__t span { color: var(--ink); font-size: 0.92rem; }

.tc-stills { background: var(--panel); }
.tc-stills__g { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 0.75rem; }
.tc-st { overflow: hidden; min-height: 190px; }
.tc-st img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.tc-st:hover img { transform: scale(1.05); }

.tc-map { padding: clamp(3rem, 6vw, 4.5rem) 0; background: var(--bg); }
.tc-map__f {
  aspect-ratio: 21/9; min-height: 260px; overflow: hidden; border: 1px solid var(--line);
}
.tc-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05); }
.tc-map__l { margin-top: 0.9rem; color: var(--saffron-deep); }

/* footer */
.tc-foot {
  background: var(--graphite); color: rgba(255,255,255,0.75); padding-top: 3.5rem;
}
.tc-foot__t {
  display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.15fr; gap: 1.8rem; padding-bottom: 2.5rem;
}
.tc-foot__logo { display: flex; flex-direction: column; color: #fff; margin-bottom: 0.9rem; }
.tc-foot__name { font-family: var(--font-d); font-size: 1.1rem; }
.tc-foot__logo span:last-child { font-size: 0.78rem; opacity: 0.55; }
.tc-foot address { font-style: normal; font-size: 0.88rem; opacity: 0.7; margin-top: 0.9rem; }
.tc-foot__c h3 {
  color: #fff; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 0.9rem; font-weight: var(--fw-m) !important;
}
.tc-foot__c li { margin-bottom: 0.45rem; }
.tc-foot__c a:hover { color: var(--saffron); }
.tc-foot__st { font-size: 0.88rem; opacity: 0.7; margin-bottom: 0.7rem; }
.tc-sub { display: flex; border: 1px solid rgba(255,255,255,0.15); }
.tc-sub input { flex: 1; border: 0; background: transparent; color: #fff; padding: 0.7rem 0.9rem; }
.tc-sub button {
  background: var(--saffron); color: var(--ink); border: 0; padding: 0 1rem; cursor: pointer;
}
.tc-soc { display: flex; gap: 0.45rem; margin-top: 1.1rem; }
.tc-soc a {
  display: grid; place-items: center; width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15); color: #fff; transition: 0.25s;
}
.tc-soc a:hover { background: var(--saffron); border-color: var(--saffron); color: var(--ink); }
.tc-foot__b {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.82rem;
}
.tc-foot__leg { display: flex; gap: 1rem; }
.tc-top {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: #fff; cursor: pointer; transition: 0.25s;
}
.tc-top:hover { background: var(--saffron); border-color: var(--saffron); color: var(--ink); }

/* responsive */
@media (max-width: 1000px) {
  .tc-card, .tc-sticky-hero, .tc-edge, .tc-feature, .tc-cm__g, .tc-foot__t {
    grid-template-columns: 1fr;
  }
  .tc-index__row {
    grid-template-columns: 40px 72px 1fr;
  }
  .tc-index__row time { display: none; }
  .tc-strip__row { grid-template-columns: 1fr 1fr; }
  .tc-strip__shot:nth-child(even) { transform: none; }
  .tc-card:nth-child(even) { direction: ltr; }
  .tc-sticky-hero__img { position: relative; top: 0; height: 280px; }
  .tc-edge__m { min-height: 240px; }
  .tc-zip__g, .tc-axes__g, .tc-tiers__g, .tc-flow__s, .tc-season__g,
  .tc-ch__g, .tc-accs__g, .tc-prom__g, .tc-logs__g, .tc-crew__g, .tc-meters__g,
  .tc-tools__g, .tc-partners__r, .tc-visit__s, .tc-focus__g {
    grid-template-columns: 1fr 1fr;
  }
  .tc-book__g { grid-template-columns: 1fr 1fr; }
  .tc-cuts__g {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .tc-cut--big {
    grid-column: span 2;
    grid-row: auto;
    min-height: 260px;
  }
  .tc-cut--big img { min-height: 260px; }
  .tc-cut { min-height: 180px; }
  .tc-cut img { min-height: 180px; }
  .tc-stills__g { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .tc-book__lay, .tc-letter__lay, .tc-mail__lay { grid-template-columns: 1fr; }
  .tc-book__media, .tc-letter__m { min-height: 220px; }
  .tc-tip__grid { grid-template-columns: 1fr; min-height: 0; }
  .tc-tip__shot { min-height: 280px; aspect-ratio: 16/10; }
  .tc-tip__note { border-left: 0; border-top: 3px solid var(--saffron); }
  .tc-origins__i { grid-template-columns: 140px 1fr; }
  .tc-year-row { grid-template-columns: 120px 5rem 1fr; }
}

@media (max-width: 640px) {
  .tc-wrap { width: min(100% - 1.5rem, var(--max)); }
  .tc-sec { padding: clamp(2.4rem, 8vw, 3.6rem) 0; }
  .tc-btn {
    min-height: 48px;
    padding: 0.8rem 1.3rem;
  }
  .tc-btn:active { transform: scale(0.97); }
  .tc-verse { min-height: 70svh; }
  .tc-verse__quote { max-width: none; }
  .tc-zip__g, .tc-axes__g, .tc-tiers__g, .tc-flow__s, .tc-season__g,
  .tc-ch__g, .tc-accs__g, .tc-prom__g, .tc-logs__g, .tc-crew__g, .tc-meters__g,
  .tc-tools__g, .tc-partners__r, .tc-visit__s, .tc-focus__g,
  .tc-book__g, .tc-strip__row { grid-template-columns: 1fr; }
  .tc-origins__i { grid-template-columns: 1fr; }
  .tc-origins__i > div:last-child { padding: 1rem 1.1rem 1.2rem; }
  .tc-year-row { grid-template-columns: 1fr; }
  .tc-year-row__y, .tc-year-row > div:last-child { padding: 0.9rem 1.1rem; }
  .tc-display { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .tc-tier--h { transform: none; }
  .tc-logo__tag { display: none; }
  .tc-matrix__r { font-size: 0.78rem; }
  .tc-foot__t { grid-template-columns: 1fr; gap: 1.4rem; }
  .tc-foot__b { flex-direction: column; align-items: flex-start; }
  .tc-nav--m a {
    padding: 1rem 0;
    transition: color 0.25s, transform 0.25s var(--ease);
  }
  .tc-nav--m a:active { transform: translateX(4px); color: var(--saffron-deep); }
  .tc-ch__i:active,
  .tc-tool:active,
  .tc-mc:active { transform: scale(0.98); }
  .tc-show { min-height: auto; padding-bottom: 1.5rem; }
  .tc-feats__rail { gap: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  .tc-loghero__scan, .tc-feature__orbit { animation: none !important; }
  .tc-verse:hover .tc-verse__media img { transform: none; }
}
