/* ══════════════════════════════════════
   TECHNIQUES PAGE
══════════════════════════════════════ */

/* ── HERO ── */
.tq-hero {
  background: #111;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 175px 120px;
  overflow: hidden;
}
.tq-hero-inner { max-width: 860px; }
.tq-hero-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
}
.tq-hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tq-line {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s cubic-bezier(.16,1,.3,1), opacity 0.8s ease;
}
.tq-line-2 {
  color: var(--yellow);
  transition-delay: 0.15s;
}
.tq-hero.visible .tq-line {
  transform: translateY(0);
  opacity: 1;
}
.tq-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 560px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.9s ease 0.4s, opacity 0.9s ease 0.4s;
}
.tq-hero.visible .tq-hero-sub {
  transform: translateY(0);
  opacity: 1;
}

/* ── INDEX NAV ── */
.tq-index {
  background: #111;
  padding: 0 175px 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.tq-index-grid {
  display: flex;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.tq-index-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}
.tq-index-item:hover {
  background: rgba(255,255,255,0.04);
}
.tq-index-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--yellow);
}
.tq-index-name {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  transition: color 0.3s;
}
.tq-index-item:hover .tq-index-name {
  color: #fff;
}

/* ── TECHNIQUE SECTIONS ── */
.tq-technique {
  padding: 120px 175px;
  overflow: hidden;
}
.tq-light { background: #fff; }
.tq-dark  { background: #111; }

.tq-technique-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.16,1,.3,1);
}
.tq-technique-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image */
.tq-technique-image-wrap {
  position: sticky;
  top: 100px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #1a1a1a;
}
.tq-technique-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(.23,1,.32,1);
}
.tq-technique-image-wrap:hover .tq-technique-image {
  transform: scale(1.04);
}

/* Placeholder for missing image */
.tq-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border: 1px solid #222;
}
.tq-placeholder {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}

/* Content */
.tq-technique-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 12px;
}
.tq-technique-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tq-light .tq-technique-title { color: #111; }
.tq-dark  .tq-technique-title { color: #fff; }

.tq-technique-divider {
  width: 40px;
  height: 2px;
  background: var(--yellow);
  margin-bottom: 36px;
}

.tq-block-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 32px;
  display: block;
}
.tq-technique-right > .tq-block-label:first-of-type { margin-top: 0; }
.tq-light .tq-block-label { color: #999; }
.tq-dark  .tq-block-label { color: #555; }

.tq-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 16px;
}
.tq-light .tq-body { color: #444; }
.tq-dark  .tq-body  { color: rgba(255,255,255,0.65); }

.tq-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.tq-bullets li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tq-bullets li::before {
  content: '›';
  font-size: 16px;
  color: var(--yellow);
  flex-shrink: 0;
  line-height: 1.4;
}
.tq-light .tq-bullets li { color: #333; }
.tq-dark  .tq-bullets li { color: rgba(255,255,255,0.75); }

/* Methods grid */
.tq-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.tq-method {
  padding: 18px 20px;
  border-radius: 8px;
  transition: background 0.25s;
}
.tq-light .tq-method {
  background: #f5f5f5;
}
.tq-light .tq-method:hover {
  background: #ede5d0;
}
.tq-dark .tq-method {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.tq-dark .tq-method:hover {
  background: rgba(255,255,255,0.08);
}
.tq-method-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}
.tq-light .tq-method-title { color: #111; }
.tq-dark  .tq-method-title { color: #fff; }
.tq-method-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}
.tq-light .tq-method-desc { color: #666; }
.tq-dark  .tq-method-desc { color: rgba(255,255,255,0.45); }

/* Note box */
.tq-note {
  margin-top: 32px;
  margin-bottom: 36px;
  padding: 20px 24px;
  border-left: 2px solid var(--yellow);
}
.tq-light .tq-note { background: #fafafa; }
.tq-dark  .tq-note { background: rgba(255,189,89,0.04); }
.tq-note .tq-block-label { margin-top: 0; }

/* CTA link */
.tq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--yellow);
  letter-spacing: 0.04em;
  transition: gap 0.25s ease;
}
.tq-cta::after {
  content: '→';
  transition: transform 0.25s ease;
}
.tq-cta:hover { gap: 14px; }
.tq-cta:hover::after { transform: translateX(4px); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .tq-hero       { padding: 0 24px 80px; }
  .tq-index      { padding: 0 24px 60px; }
  .tq-index-grid { flex-direction: column; border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .tq-index-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
  .tq-technique  { padding: 80px 24px; }
  .tq-technique-inner { grid-template-columns: 1fr; gap: 48px; }
  .tq-technique-image-wrap { position: static; aspect-ratio: 3/2; }
  .tq-methods    { grid-template-columns: 1fr; }
}
