/* ============================================================
   tr.css - Tony Robbins Design Architecture for MMPAV
   Pure black · Massive type · Cinematic · Systems-driven
   ============================================================ */

/* ── Body ── */
.tr-body {
  background: #0a0a0a;
  color: #c8c8c8;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Tokens ── */
:root {
  --tr-black:    #0a0a0a;
  --tr-black2:   #111111;
  --tr-black3:   #161616;
  --tr-black4:   #1c1c1c;
  --tr-white:    #ffffff;
  --tr-gray:     #888888;
  --tr-gray2:    #555555;
  --tr-gray3:    #333333;
  --tr-gold:     #c9a227;
  --tr-gold2:    #e8c050;
  --tr-blue:     #2463eb;
  --tr-ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --tr-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Eyebrow ── */
.tr-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tr-gray);
  margin-bottom: 1.25rem;
}
.tr-eyebrow--center { text-align: center; }

/* ── Gold ── */
.tr-gold { color: var(--tr-gold); }

/* ── Buttons ── */
.tr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 9999px;
  transition: all 0.25s var(--tr-ease);
  white-space: nowrap;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  position: relative;
  overflow: hidden;
}
.tr-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.tr-btn:hover::after { opacity: 1; }

.tr-btn--gold {
  background: var(--tr-gold);
  color: #000;
  box-shadow: 0 0 32px rgba(201,162,39,0.25);
}
.tr-btn--gold:hover {
  background: var(--tr-gold2);
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(201,162,39,0.35);
  color: #000;
}

.tr-btn--outline {
  background: transparent;
  color: var(--tr-white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.tr-btn--outline:hover {
  border-color: var(--tr-gold);
  color: var(--tr-gold);
  transform: translateY(-2px);
}

.tr-btn--outline-sm {
  background: transparent;
  color: var(--tr-white);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  border-radius: 9999px;
}
.tr-btn--outline-sm:hover {
  border-color: var(--tr-gold);
  color: var(--tr-gold);
}

.tr-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.tr-btn--ghost:hover { color: var(--tr-white); }
.tr-btn--ghost::after { display: none; }

.tr-btn--lg { padding: 1.0625rem 2.5rem; font-size: 1.0625rem; }
.tr-btn--xl { padding: 1.25rem 3rem; font-size: 1.125rem; }

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.tr-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s var(--tr-ease);
}
.tr-nav--scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tr-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.tr-nav__logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--tr-white);
  text-decoration: none;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.tr-nav__logo span { color: var(--tr-gold); }
.tr-nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-right: auto;
}
.tr-nav__link {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.15s;
  position: relative;
}
.tr-nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--tr-gold);
  transition: width 0.25s var(--tr-ease);
}
.tr-nav__link:hover { color: var(--tr-white); }
.tr-nav__link:hover::after { width: 100%; }

.tr-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
  margin-left: auto;
}
.tr-nav__hamburger span {
  width: 22px; height: 1.5px;
  background: var(--tr-white);
  transition: all 0.3s var(--tr-ease);
  transform-origin: center;
  display: block;
}
.tr-nav__hamburger--open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.tr-nav__hamburger--open span:nth-child(2) { opacity: 0; }
.tr-nav__hamburger--open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

@media (max-width: 768px) {
  .tr-nav__links {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: 80%; max-width: 320px;
    background: #0d0d0d;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s var(--tr-ease);
    border-left: 1px solid rgba(255,255,255,0.05);
  }
  .tr-nav__links--open { right: 0; }
  .tr-nav__link { font-size: 1.25rem; }
  .tr-nav__hamburger { display: flex; }
  .tr-nav__inner { gap: 1rem; }
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.tr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 7rem;
  overflow: hidden;
}
.tr-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tr-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.8);
}
.tr-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.5) 50%,
    rgba(10,10,10,0.75) 100%
  );
}
.tr-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.tr-hero__h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--tr-white);
  margin-bottom: 1.75rem;
  max-width: 820px;
}
.tr-hero__h1 em {
  font-style: normal;
  color: var(--tr-gold);
}
.tr-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.tr-hero__actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ─────────────────────────────────────────────
   LOGO STRIP
───────────────────────────────────────────── */
.tr-logo-strip {
  background: var(--tr-black2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 2.5rem 0 1.75rem;
  overflow: hidden;
}
.tr-logo-strip__label {
  text-align: center;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tr-gray2);
  margin-bottom: 1.5rem;
}
.tr-logo-strip__track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}
.tr-logo-strip__logos {
  display: flex;
  gap: 5rem;
  width: max-content;
  animation: logoScroll 20s linear infinite;
}
@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tr-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}

/* ─────────────────────────────────────────────
   CONTRAST FRAME
───────────────────────────────────────────── */
.tr-contrast {
  background: var(--tr-black);
  padding: 7rem 0;
}
.tr-contrast__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tr-contrast__h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--tr-white);
  margin-bottom: 1.5rem;
}
.tr-contrast__body {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.tr-contrast__stat-block {
  background: var(--tr-black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 3rem;
}
.tr-contrast__stat { padding: 1.5rem 0; }
.tr-contrast__number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  color: var(--tr-white);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.tr-contrast__stat-label {
  font-size: 0.875rem;
  color: var(--tr-gray);
  line-height: 1.5;
}
.tr-contrast__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
}
@media (max-width: 900px) {
  .tr-contrast__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─────────────────────────────────────────────
   TESTIMONIAL
───────────────────────────────────────────── */
.tr-testimonial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--tr-black2);
}
.tr-testimonial__photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.tr-testimonial__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.tr-testimonial__content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--tr-black3);
}
.tr-testimonial__quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--tr-white);
  font-style: normal;
  border: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  position: relative;
}
.tr-testimonial__quote::before {
  content: '\201C';
  position: absolute;
  top: -1.5rem;
  left: -0.25rem;
  font-size: 5rem;
  color: rgba(201,162,39,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.tr-testimonial__attribution {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.tr-testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.05));
  border: 1px solid rgba(201,162,39,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--tr-gold);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.tr-testimonial__name { color: var(--tr-white); font-weight: 600; font-size: 0.9375rem; }
.tr-testimonial__title { color: var(--tr-gray); font-size: 0.8125rem; margin-top: 0.2rem; }
.tr-testimonial__nav { display: flex; gap: 0.5rem; }
.tr-testimonial__dot {
  width: 28px; height: 3px;
  background: var(--tr-gray3);
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  padding: 0;
}
.tr-testimonial__dot--active {
  background: var(--tr-gold);
  width: 40px;
}
@media (max-width: 900px) {
  .tr-testimonial { grid-template-columns: 1fr; }
  .tr-testimonial__photo { min-height: 280px; }
  .tr-testimonial__content { padding: 3rem 2rem; }
}

/* ─────────────────────────────────────────────
   PILLARS
───────────────────────────────────────────── */
.tr-pillars {
  background: var(--tr-black);
  padding: 7rem 0;
}
.tr-pillars__header {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 4rem;
}
.tr-pillars__h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--tr-white);
}
.tr-pillars__layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}
.tr-pillars__nav {
  background: var(--tr-black3);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}
.tr-pillar-tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  color: var(--tr-gray);
}
.tr-pillar-tab:last-child { border-bottom: none; }
.tr-pillar-tab:hover { background: rgba(255,255,255,0.03); color: var(--tr-white); }
.tr-pillar-tab--active {
  background: var(--tr-black4);
  color: var(--tr-white);
  border-left: 3px solid var(--tr-gold);
}
.tr-pillar-tab__num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tr-gold);
  opacity: 0.7;
  flex-shrink: 0;
}
.tr-pillar-tab--active .tr-pillar-tab__num { opacity: 1; }
.tr-pillar-tab__name {
  font-weight: 600;
  font-size: 0.875rem;
}
.tr-pillars__panels { background: var(--tr-black2); }
.tr-pillar-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.tr-pillar-panel--active { display: grid; }
.tr-pillar-panel__text {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.tr-pillar-panel__text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--tr-white);
  line-height: 1.2;
}
.tr-pillar-panel__text p {
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-size: 0.9375rem;
}
.tr-pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.tr-pillar-list li {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  padding-left: 1.25rem;
  position: relative;
}
.tr-pillar-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  color: var(--tr-gold);
  top: 0.3rem;
}
.tr-pillar-panel__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  border-left: 1px solid rgba(255,255,255,0.04);
}
.tr-pillar-panel__icon { font-size: 5rem; opacity: 0.6; }
.tr-pillar-panel__visual--gold { border-left-color: rgba(201,162,39,0.1); }

@media (max-width: 900px) {
  .tr-pillars__layout { grid-template-columns: 1fr; }
  .tr-pillars__nav { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .tr-pillar-tab { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.04); white-space: nowrap; flex-shrink: 0; }
  .tr-pillar-tab--active { border-left: none; border-bottom: 3px solid var(--tr-gold); }
  .tr-pillar-panel--active { display: flex; flex-direction: column; }
  .tr-pillar-panel__visual { min-height: 180px; }
  .tr-pillar-panel__visual--gold { border-left: none; border-top: 1px solid rgba(201,162,39,0.1); }
}
@media (max-width: 600px) {
  .tr-pillar-panel__text { padding: 2rem; }
}

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.tr-stats {
  background: var(--tr-black2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 0;
}
.tr-stats__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.tr-stat { text-align: center; padding: 1rem 2rem; }
.tr-stat__number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--tr-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.tr-stat__label {
  font-size: 0.75rem;
  color: var(--tr-gray);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tr-stat__sep {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.06);
}
@media (max-width: 900px) {
  .tr-stats__inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .tr-stat__sep { display: none; }
  .tr-stat { border-bottom: 1px solid rgba(255,255,255,0.05); }
}
@media (max-width: 480px) {
  .tr-stats__inner { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────
   ABOUT STRIP
───────────────────────────────────────────── */
.tr-about {
  background: var(--tr-black);
  padding: 7rem 0;
}
.tr-about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tr-about__h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--tr-white);
  margin-bottom: 2rem;
}
.tr-about__body {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.tr-about__visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.tr-about__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: brightness(0.8);
}
.tr-about__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.tr-about__badge-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--tr-gold);
  line-height: 1;
  letter-spacing: -0.04em;
}
.tr-about__badge-text {
  font-size: 0.75rem;
  color: var(--tr-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 0.25rem;
  display: block;
}
@media (max-width: 900px) {
  .tr-about__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─────────────────────────────────────────────
   SPRING CTA FULL-BLEED
───────────────────────────────────────────── */
.tr-spring-cta {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
}
.tr-spring-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tr-spring-cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.6);
}
.tr-spring-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.85) 100%);
}
.tr-spring-cta__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.tr-spring-cta__h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--tr-white);
  margin-bottom: 1.5rem;
}
.tr-spring-cta__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.tr-spring-cta__fine {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--tr-gray2);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.tr-footer {
  background: var(--tr-black2);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 5rem 0 2.5rem;
}
.tr-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.tr-footer__brand p {
  color: var(--tr-gray2);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 260px;
}
.tr-footer__brand a { display: block; margin-bottom: 0; }
.tr-footer__col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.tr-footer__col ul { list-style: none; }
.tr-footer__col li { margin-bottom: 0.75rem; }
.tr-footer__col a {
  color: var(--tr-gray2);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.15s;
}
.tr-footer__col a:hover { color: var(--tr-gold); }
.tr-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--tr-gray2);
}
.tr-footer__bottom div { display: flex; gap: 1.5rem; }
.tr-footer__bottom a { color: var(--tr-gray2); text-decoration: none; }
.tr-footer__bottom a:hover { color: var(--tr-gold); }

@media (max-width: 900px) {
  .tr-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .tr-footer__brand { grid-column: 1 / -1; }
  .tr-footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ─────────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal--visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

/* ─────────────────────────────────────────────
   INTERNAL PAGE HERO (tr-style)
───────────────────────────────────────────── */
.tr-page-hero {
  padding: 10rem 2rem 6rem;
  background: var(--tr-black);
  position: relative;
  overflow: hidden;
}
.tr-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tr-page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.6);
}
.tr-page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.97) 100%);
}
.tr-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.tr-page-hero__h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--tr-white);
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.tr-page-hero__h1 em {
  font-style: normal;
  color: var(--tr-gold);
}
.tr-page-hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 560px;
}

/* ─────────────────────────────────────────────
   SECTION WRAPPER (tr-style)
───────────────────────────────────────────── */
.tr-section {
  padding: 6rem 2rem;
  position: relative;
}
.tr-section--dark { background: var(--tr-black); }
.tr-section--mid { background: var(--tr-black2); }
.tr-section--border-top { border-top: 1px solid rgba(255,255,255,0.04); }

.tr-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.tr-section__inner--narrow {
  max-width: 860px;
  margin: 0 auto;
}
.tr-section__header { margin-bottom: 3.5rem; }
.tr-section__header--center { text-align: center; }
.tr-section__h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--tr-white);
  margin-bottom: 1rem;
}
.tr-section__h2 em { font-style: normal; color: var(--tr-gold); }
.tr-section__lead {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 580px;
}
.tr-section__lead--center { margin: 0 auto; }

/* ─────────────────────────────────────────────
   SERVICE CARDS (for services.html)
───────────────────────────────────────────── */
.tr-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
}
.tr-service-item {
  background: var(--tr-black2);
  padding: 3rem 2.5rem;
  transition: background 0.2s;
}
.tr-service-item:hover { background: var(--tr-black3); }
.tr-service-item__num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tr-gold);
  opacity: 0.7;
  margin-bottom: 1.25rem;
  display: block;
}
.tr-service-item__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--tr-white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.tr-service-item__body {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.tr-service-item__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tr-service-item__list li {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  padding-left: 1.125rem;
  position: relative;
}
.tr-service-item__list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.4375rem;
  color: var(--tr-gold);
  top: 0.3rem;
}
.tr-service-item--highlight {
  background: linear-gradient(135deg, rgba(201,162,39,0.06), rgba(201,162,39,0.02));
  border-top: 2px solid rgba(201,162,39,0.3);
}

@media (max-width: 900px) {
  .tr-service-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .tr-service-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   TEAM CARDS (for about.html)
───────────────────────────────────────────── */
.tr-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
}
.tr-team-card {
  background: var(--tr-black2);
  padding: 2.5rem;
  transition: background 0.2s;
}
.tr-team-card:hover { background: var(--tr-black3); }
.tr-team-card__head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.tr-team-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.04));
  border: 1px solid rgba(201,162,39,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tr-gold);
  flex-shrink: 0;
}
.tr-team-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--tr-white);
  letter-spacing: -0.01em;
}
.tr-team-card__role {
  font-size: 0.8125rem;
  color: var(--tr-gold);
  font-weight: 500;
  margin-top: 0.2rem;
}
.tr-team-card__bio {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.75;
}

@media (max-width: 600px) {
  .tr-team-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   PRINCIPLES (about.html)
───────────────────────────────────────────── */
.tr-principles {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
}
.tr-principle {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--tr-black2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.tr-principle:last-child { border-bottom: none; }
.tr-principle:hover { background: var(--tr-black3); }
.tr-principle__num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: rgba(201,162,39,0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  letter-spacing: -0.04em;
}
.tr-principle__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--tr-white);
  margin-bottom: 0.5rem;
}
.tr-principle__body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   FAQ (spring.html)
───────────────────────────────────────────── */
.tr-faq {
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
}
.tr-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: var(--tr-black2);
}
.tr-faq-item:last-child { border-bottom: none; }
.tr-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.625rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--tr-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.15s;
  gap: 1rem;
}
.tr-faq-question:hover { color: var(--tr-gold); }
.tr-faq-icon {
  font-size: 1.25rem;
  color: var(--tr-gold);
  transition: transform 0.3s var(--tr-ease);
  flex-shrink: 0;
  opacity: 0.7;
}
.tr-faq-item--open .tr-faq-icon { transform: rotate(45deg); }
.tr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--tr-ease);
}
.tr-faq-item--open .tr-faq-answer { max-height: 500px; }
.tr-faq-answer-inner {
  padding: 0 2rem 1.75rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ─────────────────────────────────────────────
   OFFER TABLE (spring.html)
───────────────────────────────────────────── */
.tr-offer-table {
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 16px;
  overflow: hidden;
  border-top: 3px solid var(--tr-gold);
}
.tr-offer-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.375rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: var(--tr-black2);
  transition: background 0.15s;
}
.tr-offer-row:last-child { border-bottom: none; }
.tr-offer-row:hover { background: var(--tr-black3); }
.tr-offer-check {
  color: #22c55e;
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.tr-offer-label {
  font-weight: 600;
  color: var(--tr-white);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}
.tr-offer-detail {
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   COMPARE TABLE (spring.html)
───────────────────────────────────────────── */
.tr-compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.tr-compare thead { background: rgba(255,255,255,0.03); }
.tr-compare th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.tr-compare th:last-child { color: var(--tr-gold); }
.tr-compare td {
  padding: 0.875rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.875rem;
  background: var(--tr-black2);
}
.tr-compare td:first-child { color: rgba(255,255,255,0.7); font-weight: 500; }
.tr-compare td:nth-child(2) { color: var(--tr-gray2); }
.tr-compare td:last-child { color: var(--tr-gold); font-weight: 600; }

/* ─────────────────────────────────────────────
   CTA BLOCK (reusable)
───────────────────────────────────────────── */
.tr-cta-block {
  text-align: center;
  padding: 6rem 2rem;
  background: var(--tr-black3);
  position: relative;
  overflow: hidden;
}
.tr-cta-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,162,39,0.04) 0%, transparent 70%);
}
.tr-cta-block__h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--tr-white);
  margin-bottom: 1.25rem;
  position: relative;
}
.tr-cta-block__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.tr-cta-block__fine {
  position: relative;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--tr-gray2);
}
