/* ============================================================
   TRC design system
   Colors: cream #faf9f5 / warm gray #f6f4ee / ink #2b2c22
           body #54533f / muted #6b6a5e / label #8a8975
           green #454632 / gold #b7a97c / hairline #e3e0d6 / fill #e9e6da
   Type:   Archivo (display), Public Sans (body). No border-radius.
   Breakpoint: 900px.
   ============================================================ */

:root {
  --cream: #faf9f5;
  --warm: #f6f4ee;
  --ink: #2b2c22;
  --body: #54533f;
  --muted: #6b6a5e;
  --label: #8a8975;
  --green: #454632;
  --gold: #b7a97c;
  --line: #e3e0d6;
  --fill: #e9e6da;
  --side-pad: 48px;
  --section-pad: 140px;
}
@media (max-width: 899px) {
  :root { --side-pad: 20px; --section-pad: 110px; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Public Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
h1, h2, h3, .trc-display { font-family: 'Archivo', sans-serif; }

/* ---- shared building blocks ---- */
.trc-section { padding: var(--section-pad) var(--side-pad); }
.trc-eyebrow {
  font-size: 12px; letter-spacing: .12em; color: var(--label);
  font-weight: 500; display: block; margin-bottom: 8px;
  text-transform: uppercase;
}
.trc-eyebrow--gold { color: var(--gold); }
.trc-h1 { font-weight: 800; font-size: clamp(2.6rem, 6.4vw, 5.6rem); line-height: 1; margin: 20px 0 0; }
.trc-h2 { font-weight: 800; font-size: clamp(2rem, 3.6vw, 3rem); margin: 0 0 20px; }
.trc-h2-sm { font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin: 0 0 20px; }
.trc-intro { max-width: 640px; font-size: 17px; line-height: 1.7; color: var(--body); margin: 24px 0 0; }
.trc-body { font-size: 16px; line-height: 1.7; color: var(--body); margin: 0; }
.trc-body-sm { font-size: 15px; line-height: 1.75; color: var(--muted); margin: 0 0 20px; }

.trc-btn, .trc-btn-outline, .trc-btn-light, .trc-btn-outline-light {
  display: inline-block; font-size: 13px; letter-spacing: .06em; font-weight: 600;
  padding: 17px 28px; transition: transform .3s, box-shadow .3s, background .3s, color .3s;
  text-transform: uppercase; cursor: pointer; border: 0; font-family: 'Public Sans', sans-serif;
}
.trc-btn { color: var(--cream); background: var(--green); border: 1px solid var(--green); }
.trc-btn:hover { color: var(--cream); transform: translateY(-3px); box-shadow: 0 14px 24px -10px rgba(69,70,50,.5); }
.trc-btn-outline { color: var(--ink); background: transparent; border: 1px solid var(--ink); }
.trc-btn-outline:hover { background: var(--ink); color: var(--cream); }
.trc-btn-light { color: var(--green); background: var(--cream); border: 1px solid var(--cream); }
.trc-btn-light:hover { color: var(--green); transform: translateY(-3px); }
.trc-btn-outline-light { color: var(--cream); background: transparent; border: 1px solid var(--cream); }
.trc-btn-outline-light:hover { background: var(--cream); color: var(--green); }

.trc-underline-link {
  font-size: 13px; letter-spacing: .06em; font-weight: 600; color: var(--green);
  border-bottom: 1px solid var(--green); padding-bottom: 4px; width: fit-content;
  text-transform: uppercase;
}

.trc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.trc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trc-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 899px) {
  .trc-grid-2, .trc-grid-3 { grid-template-columns: 1fr; }
  .trc-grid-4 { grid-template-columns: 1fr 1fr; }
}

/* watermark word behind hero */
.trc-watermark {
  position: absolute; top: 10px; right: -20px; font-family: 'Archivo', sans-serif;
  font-weight: 900; font-size: clamp(6rem, 20vw, 18rem); line-height: 1;
  color: rgba(69,70,50,.045); white-space: nowrap; pointer-events: none;
}
@media (max-width: 899px) { .trc-watermark { display: none; } }

/* scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* ---- header / nav ---- */
.trc-nav {
  position: sticky; top: 0; z-index: 200; display: flex; align-items: center;
  justify-content: space-between; padding: 20px var(--side-pad);
  background: rgba(250,249,245,.94); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.trc-nav--overlayed { /* home: fixed transparent over hero, solidifies on scroll */
  position: fixed; left: 0; right: 0; background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none; border-bottom-color: transparent;
  padding: 26px var(--side-pad);
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
}
.trc-nav--overlayed.is-scrolled {
  background: rgba(250,249,245,.94);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line); padding: 14px var(--side-pad);
}
.trc-nav__logo { display: flex; align-items: center; height: 44px; }
.trc-nav--overlayed .trc-nav__logo { height: 56px; }
.trc-nav--overlayed.is-scrolled .trc-nav__logo { height: 44px; }
.trc-nav__logo img { height: 100%; width: auto; display: block; transition: transform .3s ease; }
.trc-nav__logo:hover img { transform: scale(1.05); }
.trc-burger {
  display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border: 1px solid var(--green); background: transparent; cursor: pointer;
  transition: border-color .25s, background .25s;
}
.trc-burger:hover { border-color: var(--gold); background: rgba(183,169,124,.08); }
.trc-burger span { display: flex; flex-direction: column; gap: 5px; }
.trc-burger i { width: 20px; height: 1.5px; background: var(--ink); display: block; }
.trc-burger i:last-child { width: 14px; }

.trc-progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--gold); z-index: 210; width: 0; transition: width .1s linear; }

/* overlay menu */
@keyframes menuFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes menuLinkIn { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: translateX(0); } }
.trc-menu {
  position: fixed; inset: 0; z-index: 300; background: var(--cream); display: none;
  flex-direction: column; padding: 28px 28px 40px; overflow-y: auto;
}
.trc-menu.is-open { display: flex; animation: menuFadeIn .35s ease; }
.trc-menu__links { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.trc-menu__links a {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(20px, 3vw, 34px);
  line-height: 1; color: var(--ink); opacity: 0;
}
.trc-menu.is-open .trc-menu__links a { animation: menuLinkIn .5s ease forwards; }
.trc-menu__links a.is-active { color: var(--gold); }
.trc-menu__close { width: 44px; height: 44px; border: 1px solid var(--green); background: transparent; position: relative; cursor: pointer; }
.trc-menu__close i { position: absolute; top: 50%; left: 50%; width: 18px; height: 1.5px; background: var(--ink); }
.trc-menu__close i:first-child { transform: translate(-50%,-50%) rotate(45deg); }
.trc-menu__close i:last-child { transform: translate(-50%,-50%) rotate(-45deg); }
.trc-menu__ctas { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---- hero (3D) ---- */
.trc-hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 120px var(--side-pad) 80px; overflow: hidden; }
.trc-hero__scene { position: absolute; top: 0; right: 0; width: 46%; height: 100%; pointer-events: none; z-index: 1; }
.trc-hero__kicker { position: relative; z-index: 2; display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.trc-hero__kicker i { width: 26px; height: 1px; background: var(--green); display: inline-block; }
.trc-hero__kicker span { font-size: 12px; letter-spacing: .14em; color: var(--muted); font-weight: 500; }
.trc-hero h1 {
  position: relative; z-index: 2; max-width: 620px; font-weight: 800;
  font-size: clamp(2.7rem, 5.6vw, 5.4rem); line-height: .96; letter-spacing: -.01em; margin: 0;
}
.trc-hero__intro { position: relative; z-index: 2; max-width: 520px; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; color: var(--body); margin: 32px 0 0; }
.trc-hero__ctas { position: relative; z-index: 2; display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.trc-hero__scroll { position: absolute; bottom: 36px; left: var(--side-pad); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trc-hero__scroll small { font-size: 11px; letter-spacing: .14em; color: var(--label); }
.trc-hero__scroll i { width: 1px; height: 34px; background: #c9c5b4; display: block; position: relative; overflow: hidden; }
.trc-hero__scroll i::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 8px; background: var(--green); animation: bounceDown 2.2s ease-in-out infinite; }
@keyframes bounceDown { 0%,100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(10px); opacity: 1; } }
@media (max-width: 899px) {
  .trc-hero { min-height: 88vh; padding: 310px 24px 60px; }
  .trc-hero__scene { top: -70px; right: auto; left: 50%; transform: translateX(-50%); width: 230%; height: 440px; opacity: .95; }
  .trc-hero h1 { max-width: 100%; font-size: clamp(1.9rem, 9.5vw, 2.7rem); }
  .trc-hero__scroll { display: none; }
}

/* ---- trust marquee ---- */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trc-marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 36px 0; }
.trc-marquee__label { padding: 0 var(--side-pad); margin-bottom: 22px; font-size: 12px; letter-spacing: .12em; color: var(--label); font-weight: 500; text-transform: uppercase; }
.trc-marquee__track-wrap { overflow: hidden; width: 100%; }
.trc-marquee__track { display: flex; align-items: center; gap: 72px; width: max-content; animation: marquee 34s linear infinite; }
.trc-marquee__track img { height: 65px; width: auto; max-width: 238px; object-fit: contain; filter: grayscale(1) opacity(.55); flex-shrink: 0; }

/* ---- sectors list rows ---- */
.trc-sector-row {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 30px 4px; border-top: 1px solid var(--line); color: var(--ink);
}
.trc-sector-row:hover { color: var(--ink); }
.trc-sector-row__num { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; color: var(--gold); flex-shrink: 0; }
.trc-sector-row__name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(22px, 3vw, 34px); letter-spacing: -.01em; display: inline-block; transition: font-size .35s ease; }
.trc-sector-row:hover .trc-sector-row__name { font-size: clamp(44px, 6vw, 68px); }
.trc-sector-row__arrow { font-size: 22px; color: var(--label); flex-shrink: 0; transform: rotate(-45deg); transition: transform .35s ease; }
.trc-sector-row:hover .trc-sector-row__arrow { transform: rotate(0deg); }

/* ---- flight strip ---- */
.trc-flight-strip { position: relative; height: 90px; overflow: hidden; border-top: 1px solid var(--line); background: var(--warm); }
.trc-flight-strip > div { position: absolute; inset: 0; }

/* ---- services grid ---- */
.trc-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 899px) { .trc-services-grid { grid-template-columns: 1fr; } }
.trc-svc-card {
  position: relative; overflow: hidden; background: var(--cream); border: 1px solid var(--line);
  padding: 36px 32px; min-height: 320px; display: flex; flex-direction: column;
  justify-content: space-between; color: var(--ink);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.trc-svc-card:hover { color: var(--ink); transform: translateY(-8px); box-shadow: 0 28px 44px -20px rgba(43,44,34,.3); border-color: var(--gold); }
.trc-svc-card--wide { grid-column: span 2; min-height: 260px; }
@media (max-width: 899px) { .trc-svc-card--wide { grid-column: span 1; min-height: 260px; } }
.trc-svc-card__num { position: absolute; top: 8px; right: 16px; font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 96px; line-height: 1; color: rgba(69,70,50,.13); pointer-events: none; transition: transform .5s ease; }
.trc-svc-card:hover .trc-svc-card__num { transform: scale(1.08); }
.trc-svc-card__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .4s ease, background .4s ease; position: relative; z-index: 1; }
.trc-svc-card:hover .trc-svc-card__icon { transform: rotate(-8deg) scale(1.08); background: var(--gold); }
.trc-svc-card__title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(19px, 2vw, 23px); line-height: 1.2; margin-bottom: 12px; position: relative; z-index: 1; }
.trc-svc-card__desc { margin: 0 0 20px; font-size: 14px; line-height: 1.7; color: var(--muted); }
.trc-svc-card__more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green); }

/* ---- stats ---- */
.trc-stat { border-top: 2px solid var(--ink); padding-top: 20px; }
.trc-stat__big { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(3rem, 7vw, 5.5rem); line-height: .95; color: var(--ink); }
.trc-stat__unit { font-size: 13px; letter-spacing: .08em; color: var(--gold); font-weight: 600; margin-top: 8px; }
.trc-stat__label { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* ---- why trc (dark pillars) ---- */
.trc-dark { background: var(--green); color: var(--cream); }
.trc-darkest { background: var(--ink); color: var(--cream); }
.trc-pillar { position: relative; overflow: hidden; border: 1px solid rgba(250,249,245,.18); padding: 36px 28px; min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; transition: border-color .3s, background .3s; }
.trc-pillar:hover { border-color: var(--gold); background: rgba(250,249,245,.04); }
.trc-pillar__num { position: absolute; top: 8px; right: 16px; font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 120px; line-height: 1; color: rgba(250,249,245,.14); transition: color .4s; }
.trc-pillar:hover .trc-pillar__num { color: rgba(183,169,124,.3); }
.trc-pillar__kicker { font-size: 11px; letter-spacing: .14em; color: var(--gold); font-weight: 600; display: block; margin-bottom: 16px; }
.trc-pillar__title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 21px; margin-bottom: 12px; }
.trc-pillar p { margin: 0; font-size: 14px; line-height: 1.7; color: rgba(250,249,245,.7); }

/* ---- regions accordion + globe ---- */
.trc-region { border-top: 1px solid var(--line); padding: 24px 0; cursor: pointer; transition: padding-left .25s ease, background .25s ease; background: transparent; border-left: 0; border-right: 0; border-bottom: 0; width: 100%; text-align: left; font-family: inherit; }
.trc-region.is-active { padding-left: 12px; background: var(--cream); }
.trc-region__head { display: flex; align-items: center; justify-content: space-between; }
.trc-region__name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 19px; color: var(--ink); transition: color .25s; }
.trc-region.is-active .trc-region__name { color: var(--gold); }
.trc-region__chev { font-size: 20px; font-weight: 300; color: var(--label); transition: transform .25s; display: inline-block; }
.trc-region.is-active .trc-region__chev { transform: rotate(45deg); }
.trc-region__desc { margin: 14px 0 0; font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 460px; display: none; }
.trc-region.is-active .trc-region__desc { display: block; }
.trc-globe-wrap { position: relative; height: 420px; }
.trc-globe-wrap canvas { width: 100%; height: 100%; display: block; cursor: pointer; }
@media (max-width: 899px) { .trc-globe-wrap { height: 320px; } }

/* ---- testimonials cards ---- */
.trc-test-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.trc-arrow-btn { width: 40px; height: 40px; border: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 16px; transition: background .25s, color .25s; color: var(--ink); }
.trc-arrow-btn:hover { background: var(--ink); color: var(--cream); }
.trc-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; transition: opacity .28s ease, transform .28s ease; }
.trc-test-grid.is-fading { opacity: 0; transform: translateY(10px); }
@media (max-width: 899px) { .trc-test-grid { grid-template-columns: 1fr; } }
.trc-test-card { border-top: 2px solid var(--ink); padding-top: 24px; display: flex; flex-direction: column; gap: 20px; min-height: 240px; }
.trc-test-type { align-self: flex-start; font-size: 10px; letter-spacing: .1em; font-weight: 700; color: var(--green); background: var(--fill); padding: 5px 10px; text-transform: uppercase; }
.trc-test-quote { font-size: 16px; line-height: 1.55; color: var(--ink); margin: 0; flex: 1; }
.trc-test-name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15px; color: var(--ink); }
.trc-test-role { font-size: 13px; color: var(--label); margin-top: 2px; }
.trc-test-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.trc-test-logo { height: 34px; width: auto; max-width: 125px; object-fit: contain; flex-shrink: 0; filter: grayscale(1) opacity(.65); transition: filter .3s ease; }
.trc-test-card:hover .trc-test-logo, .trc-quote .trc-test-logo { filter: none; }
.trc-quote .trc-test-logo { height: 36px; max-width: 150px; margin-top: 18px; }

/* ---- quote carousel (testimonials page) ---- */
.trc-quote { max-width: 840px; margin: 0 auto; text-align: center; transition: opacity .3s ease; }
.trc-quote.is-fading { opacity: 0; }
.trc-quote__text { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: clamp(1.4rem, 3vw, 2.3rem); line-height: 1.4; color: var(--ink); margin: 0 0 36px; }
.trc-quote__dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; flex-wrap: wrap; }
.trc-quote__dots button { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: var(--line); transition: background .25s; }
.trc-quote__dots button.is-active { background: var(--green); }

/* ---- CTA band ---- */
.trc-cta-band { text-align: center; }
.trc-cta-band h2 { font-weight: 800; font-size: clamp(2rem, 4vw, 3.4rem); margin: 0 0 20px; }
.trc-cta-band p { max-width: 520px; margin: 0 auto 36px; font-size: 16px; line-height: 1.7; color: rgba(250,249,245,.8); }
.trc-cta-band__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- footer ---- */
.trc-footer { padding: 64px var(--side-pad) 40px; }
.trc-footer a { color: rgba(250,249,245,.8); font-size: 14px; }
.trc-footer a:hover { color: var(--gold); }
.trc-footer__logos { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(250,249,245,.15); }
.trc-footer__logos img { height: 42px; width: auto; max-width: 170px; flex: 1 1 0; object-fit: contain; filter: grayscale(1) invert(1) opacity(.7); }
.trc-footer__brand img { height: 80px; width: auto; margin-bottom: 20px; }
.trc-footer__social { display: flex; gap: 12px; }
.trc-footer__social a { width: 38px; height: 38px; border: 1px solid rgba(250,249,245,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color .25s, background .25s; }
.trc-footer__social a:hover { border-color: var(--gold); background: rgba(183,169,124,.1); }
.trc-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; border-top: 1px solid rgba(250,249,245,.15); padding-top: 40px; }
@media (max-width: 899px) { .trc-footer__cols { grid-template-columns: 1fr 1fr; } }
.trc-footer__col-title { font-size: 12px; letter-spacing: .1em; color: var(--gold); margin-bottom: 16px; text-transform: uppercase; }
.trc-footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.trc-footer__col-links li { list-style: none; margin: 0; padding: 0; }
.trc-footer__legal { display: flex; justify-content: space-between; margin-top: 56px; flex-wrap: wrap; gap: 12px; }
.trc-footer__legal, .trc-footer__legal a { font-size: 12px; color: rgba(250,249,245,.4); }

/* ---- sector explorer (tabs) ---- */
.trc-explorer { display: grid; grid-template-columns: .8fr 1.2fr; border: 1px solid var(--line); }
@media (max-width: 899px) { .trc-explorer { grid-template-columns: 1fr; } }
.trc-explorer__tabs { border-right: 1px solid var(--line); }
@media (max-width: 899px) { .trc-explorer__tabs { border-right: none; } }
.trc-explorer__tab { display: flex; align-items: baseline; gap: 18px; width: 100%; text-align: left; padding: 24px 28px; border: none; border-bottom: 1px solid var(--line); background: var(--cream); color: var(--ink); cursor: pointer; transition: background .3s, color .3s; font-family: inherit; }
.trc-explorer__tab .n { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12px; color: var(--label); flex-shrink: 0; }
.trc-explorer__tab .t { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(17px, 1.8vw, 20px); }
.trc-explorer__tab.is-active { background: var(--green); color: var(--cream); }
.trc-explorer__tab.is-active .n { color: var(--gold); }
.trc-explorer__panel { position: relative; min-height: 480px; overflow: hidden; transition: opacity .3s ease; }
@media (max-width: 899px) { .trc-explorer__panel { min-height: 420px; } }
.trc-explorer__panel.is-fading { opacity: 0; transition: opacity .18s ease; }
.trc-explorer__panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.trc-explorer__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,15,10,0) 10%, rgba(15,15,10,.55) 45%, rgba(15,15,10,.94) 100%); }
.trc-explorer__overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 44px; color: var(--cream); }
@media (max-width: 899px) { .trc-explorer__overlay { padding: 28px 24px; } }
.trc-explorer__overlay .idx { font-family: 'Archivo', sans-serif; font-size: 12px; color: #e7e2c9; display: block; margin-bottom: 12px; }
.trc-explorer__overlay h2 { font-weight: 800; font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 0 0 16px; }
.trc-explorer__overlay p { font-size: 14px; line-height: 1.7; color: rgba(250,249,245,.85); margin: 0; max-width: 520px; }
.trc-roles { border-top: 1px solid var(--line); padding-top: 40px; transition: opacity .3s ease; }
.trc-roles.is-fading { opacity: 0; transition: opacity .18s ease; }
.trc-roles__label { font-size: 11px; letter-spacing: .1em; font-weight: 700; color: var(--label); display: block; margin-bottom: 20px; text-transform: uppercase; }
.trc-roles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 32px; }
@media (max-width: 899px) { .trc-roles__grid { grid-template-columns: 1fr; } }
.trc-roles__grid > div { font-size: 14px; color: var(--green); padding: 12px 0; border-top: 1px solid var(--line); }

/* ---- approach steps (pinned) ---- */
.trc-approach { display: grid; grid-template-columns: .7fr 1.3fr; gap: 48px; }
@media (max-width: 899px) { .trc-approach { grid-template-columns: 1fr; } }
.trc-approach__visual-col { position: relative; }
.trc-approach__visual { position: sticky; top: 140px; height: 360px; background: var(--green); color: var(--cream); overflow: hidden; }
@media (max-width: 899px) { .trc-approach__visual { position: static; height: 260px; } }
.trc-approach__slide { position: absolute; inset: 0; padding: 48px; display: flex; flex-direction: column; justify-content: center; opacity: 0; transition: opacity .5s ease; }
@media (max-width: 899px) { .trc-approach__slide { padding: 32px 24px; } }
.trc-approach__slide.is-active { opacity: 1; }
.trc-approach__slide .big { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(3.5rem, 5vw, 5.5rem); line-height: 1; color: rgba(250,249,245,.18); margin-bottom: 20px; }
.trc-approach__slide .ttl { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(22px, 2.2vw, 28px); }
.trc-approach__card { min-height: 380px; display: flex; flex-direction: column; justify-content: center; border-top: 1px solid var(--line); padding: 36px 4px; opacity: .4; transition: opacity .4s ease; }
@media (max-width: 899px) { .trc-approach__card { min-height: auto; } }
.trc-approach__card.is-active { opacity: 1; }
.trc-approach__card .k { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; color: var(--gold); margin-bottom: 14px; text-transform: uppercase; }
.trc-approach__card .tag { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 12px; }
.trc-approach__card p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 440px; }

/* ---- service explorer (hub) ---- */
.trc-sx { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 899px) { .trc-sx { grid-template-columns: 1fr; } }
.trc-sx__item { text-align: left; background: transparent; border: none; border-top: 1px solid var(--line); padding: 24px 0; cursor: pointer; display: flex; align-items: baseline; gap: 18px; width: 100%; font-family: inherit; }
.trc-sx__item .n { font-family: 'Archivo', sans-serif; font-size: 13px; color: var(--label); flex-shrink: 0; transition: color .25s; }
.trc-sx__item .t { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(18px, 2vw, 22px); color: var(--ink); line-height: 1.25; transition: color .25s, transform .3s ease; display: inline-block; transform-origin: left center; }
.trc-sx__item:hover .t { transform: scale(1.06); color: var(--green); }
.trc-sx__item:hover .n { color: var(--gold); }
.trc-sx__item.is-active .n { color: var(--gold); }
.trc-sx__item.is-active .t { color: var(--green); }
.trc-sx__panel { position: sticky; top: 120px; border: 1px solid var(--line); padding: 44px 40px; min-height: 380px; transition: opacity .3s ease; }
@media (max-width: 899px) { .trc-sx__panel { position: static; padding: 32px 24px; } }
.trc-sx__panel.is-fading { opacity: 0; transition: opacity .18s ease; }
.trc-sx__panel .icon { width: 48px; height: 48px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; }
.trc-sx__panel .num { font-family: 'Archivo', sans-serif; font-size: 13px; color: var(--gold); display: block; margin-bottom: 10px; }
.trc-sx__panel h3 { font-weight: 800; font-size: 26px; margin: 0 0 18px; line-height: 1.15; }
.trc-sx__panel .desc { font-size: 15px; line-height: 1.75; color: var(--body); margin: 0 0 24px; }
.trc-sx__panel ul { margin: 0 0 30px; padding-left: 18px; }
.trc-sx__panel li { font-size: 14px; line-height: 1.8; color: var(--muted); }

/* ---- service detail ---- */
.trc-svc-hero { position: relative; overflow: hidden; padding: var(--section-pad) var(--side-pad) 88px; }
.trc-svc-hero__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 60% at 88% 0%, rgba(183,169,124,.16), transparent 65%); pointer-events: none; }
.trc-svc-hero__num { position: absolute; top: -6%; right: -2%; font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(10rem, 22vw, 20rem); line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(250,249,245,.08); pointer-events: none; }
.trc-svc-hero__back { position: relative; z-index: 1; font-size: 12px; letter-spacing: .1em; font-weight: 600; color: rgba(250,249,245,.6); margin-bottom: 44px; display: inline-flex; align-items: center; gap: 8px; }
.trc-svc-hero h1 { font-weight: 800; font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: 1.02; margin: 20px 0 0; max-width: 900px; position: relative; z-index: 1; }
.trc-svc-hero__intro { max-width: 600px; font-size: 17px; line-height: 1.7; color: rgba(250,249,245,.75); margin: 24px 0 32px; position: relative; z-index: 1; }
.trc-chip { font-size: 11px; letter-spacing: .08em; font-weight: 600; color: #e7e2c9; border: 1px solid rgba(231,226,201,.35); padding: 8px 16px; display: inline-block; }
.trc-svc-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 899px) { .trc-svc-intro { grid-template-columns: 1fr; gap: 40px; } }
.trc-svc-intro__lead { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.4; color: var(--ink); margin: 0 0 32px; }
.trc-svc-intro__imgwrap { position: relative; }
.trc-svc-intro__imgwrap::before { content: ''; position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px; border: 1px solid var(--line); z-index: 0; }
.trc-svc-intro__img { position: relative; z-index: 1; aspect-ratio: 4/3; overflow: hidden; }
.trc-svc-intro__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.trc-deliv-row { position: relative; overflow: hidden; border-top: 1px solid var(--line); padding: 26px 8px; display: grid; grid-template-columns: 40px 320px 1fr; gap: 24px; align-items: baseline; transition: padding-left .3s ease, background .3s ease; }
@media (max-width: 899px) { .trc-deliv-row { grid-template-columns: 32px 1fr; } .trc-deliv-row p { grid-column: 2; } }
.trc-deliv-row:hover { padding-left: 16px; background: var(--warm); }
.trc-deliv-row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transition: transform .3s ease; transform-origin: top; }
.trc-deliv-row:hover::before { transform: scaleY(1); }
.trc-deliv-row .n { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; color: var(--gold); }
.trc-deliv-row .t { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); }
.trc-deliv-row p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--muted); max-width: 560px; }
.trc-svc-why { text-align: center; }
.trc-svc-why p { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.35; max-width: 820px; margin: 0 auto; }

/* ---- photo slider ---- */
.trc-pslider-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.trc-pslider {
  display: flex; gap: 2px; overflow-x: auto; overscroll-behavior-x: contain;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.trc-pslider::-webkit-scrollbar { display: none; }
.trc-pslide {
  position: relative; flex: 0 0 auto; height: 520px; margin: 0;
  overflow: hidden; background: var(--fill);
}
.trc-pslide img { height: 100%; width: auto; display: block; transition: transform .6s ease; }
.trc-pslide:hover img { transform: scale(1.02); }
.trc-pslide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 72px 24px 22px;
  background: linear-gradient(180deg, rgba(15,15,10,0) 0%, rgba(15,15,10,.72) 70%);
  color: var(--cream); display: flex; flex-direction: column; gap: 4px;
}
.trc-pslide figcaption .d { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .1em; color: var(--gold); text-transform: uppercase; }
.trc-pslide figcaption .t { font-size: 14px; line-height: 1.5; max-width: 420px; }
@media (max-width: 899px) {
  .trc-pslide { height: 400px; max-width: 92vw; }
  .trc-pslide img { height: 100%; max-width: 92vw; object-fit: cover; }
}

/* ---- about ---- */
.trc-life-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
@media (max-width: 899px) { .trc-life-grid { grid-template-columns: 1fr 1fr; } }
.trc-life-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform .5s ease; }
.trc-life-grid img:hover { transform: scale(1.03); }
.trc-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 899px) { .trc-values-grid { grid-template-columns: 1fr; } }
.trc-value { background: var(--cream); padding: 40px 32px; position: relative; overflow: hidden; transition: background .35s ease; }
.trc-value:hover { background: var(--warm); }
.trc-value__num { position: absolute; top: 16px; right: 20px; font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 72px; line-height: 1; color: rgba(69,70,50,.12); pointer-events: none; }
.trc-value__bar { width: 36px; height: 2px; background: var(--gold); margin-bottom: 24px; transition: width .35s ease; }
.trc-value:hover .trc-value__bar { width: 56px; }
.trc-value__title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(20px, 2.2vw, 24px); color: var(--ink); margin-bottom: 16px; }
.trc-value p { margin: 0; font-size: 14px; line-height: 1.75; color: var(--muted); }
.trc-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 24px; }
@media (max-width: 1100px) { .trc-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 899px) { .trc-team-grid { grid-template-columns: 1fr 1fr; } }
.trc-team-card { cursor: pointer; transition: transform .3s; background: transparent; border: 0; padding: 0; text-align: left; font-family: inherit; color: var(--ink); display: block; width: 100%; }
.trc-team-card:hover { transform: translateY(-6px); }
.trc-team-card__photo { aspect-ratio: 3/4; overflow: hidden; background: var(--fill); margin-bottom: 16px; position: relative; display: flex; align-items: center; justify-content: center; }
.trc-team-card__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.02); }
.trc-team-card__name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); }
.trc-team-card__role { font-size: 13px; color: var(--gold); font-weight: 600; margin-top: 2px; margin-bottom: 10px; }
.trc-team-card__cta { font-size: 12px; font-weight: 600; color: var(--green); }
/* "This could be you" join card: radar search visual */
@keyframes joinPing { 0% { transform: scale(.35); opacity: .55; } 70% { opacity: .12; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes joinOrbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes joinBreathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.trc-join-visual {
  background: var(--green) !important;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.trc-join-rings { position: absolute; inset: 0; }
.trc-join-rings i {
  position: absolute; top: 50%; left: 50%; width: 190px; height: 190px; margin: -95px 0 0 -95px;
  border: 1px solid rgba(250,249,245,.5); border-radius: 50%;
  animation: joinPing 3.6s ease-out infinite;
}
.trc-join-rings i:nth-child(2) { animation-delay: 1.2s; }
.trc-join-rings i:nth-child(3) { animation-delay: 2.4s; }
.trc-join-orbit { position: absolute; top: 50%; left: 50%; width: 132px; height: 132px; margin: -66px 0 0 -66px; animation: joinOrbit 26s linear infinite; }
.trc-join-orbit svg { width: 100%; height: 100%; display: block; }
.trc-team-card:hover .trc-join-orbit { animation-duration: 7s; }
.trc-join-person { position: relative; z-index: 1; width: 58px; height: 58px; animation: joinBreathe 4.5s ease-in-out infinite; }
.trc-join-plus {
  position: absolute; z-index: 2; top: calc(50% + 34px); left: calc(50% + 34px);
  width: 30px; height: 30px; background: var(--gold); color: var(--ink);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s ease, background .35s ease;
}
.trc-team-card:hover .trc-join-plus { transform: rotate(90deg) scale(1.1); background: var(--cream); }

.trc-modal { position: fixed; inset: 0; z-index: 400; background: rgba(43,44,34,.78); display: none; align-items: center; justify-content: center; padding: 24px; }
.trc-modal.is-open { display: flex; animation: menuFadeIn .25s ease; }
.trc-modal__box { background: var(--cream); max-width: 680px; width: 100%; display: grid; grid-template-columns: 260px 1fr; position: relative; max-height: 88vh; overflow-y: auto; }
@media (max-width: 899px) { .trc-modal__box { grid-template-columns: 1fr; } }
.trc-modal__close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border: 1px solid var(--ink); background: var(--cream); cursor: pointer; z-index: 2; font-size: 18px; line-height: 1; }
.trc-modal__photo { aspect-ratio: 3/4; overflow: hidden; background: var(--fill); }
.trc-modal__photo img { width: 100%; height: 100%; object-fit: cover; }
.trc-modal__body { padding: 44px 38px; display: flex; flex-direction: column; justify-content: center; }
.trc-modal__name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 26px; color: var(--ink); }
.trc-modal__role { font-size: 14px; color: var(--gold); font-weight: 600; margin-top: 8px; margin-bottom: 22px; }
.trc-modal__bio { margin: 0; font-size: 15px; line-height: 1.75; color: var(--body); }

/* ---- case studies ---- */
.trc-cs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 899px) { .trc-cs-grid { grid-template-columns: 1fr; } }
.trc-cs-card { position: relative; overflow: hidden; padding: 32px; min-height: 240px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; color: var(--cream); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.trc-cs-card:hover { color: var(--cream); transform: translateY(-6px); }
.trc-cs-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.trc-cs-card__tag { display: inline-block; font-size: 10px; letter-spacing: .1em; font-weight: 700; padding: 6px 12px; }
.trc-cs-card__client { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(20px, 2.2vw, 26px); letter-spacing: -.01em; }
.trc-cs-card__stat { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(17px, 1.8vw, 20px); line-height: 1.2; margin-bottom: 20px; max-width: 360px; }
.trc-cs-card__more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; }
.trc-cs-hero { min-height: 78vh; display: flex; flex-direction: column; justify-content: center; padding: var(--section-pad) var(--side-pad) 80px; position: relative; overflow: hidden; }
.trc-cs-hero__glow { position: absolute; inset: 0; pointer-events: none; }
.trc-cs-hero__back { position: relative; z-index: 1; font-size: 12px; letter-spacing: .1em; font-weight: 600; color: rgba(250,249,245,.6); margin-bottom: 40px; display: inline-flex; align-items: center; gap: 8px; width: fit-content; }
.trc-cs-hero h1 { font-weight: 800; font-size: clamp(2.4rem, 5.6vw, 4.6rem); line-height: 1.04; margin: 0; max-width: 820px; position: relative; z-index: 1; }
.trc-cs-hero__sub { position: relative; z-index: 1; max-width: 560px; font-size: 17px; line-height: 1.7; color: rgba(250,249,245,.75); margin: 28px 0 0; }
.trc-cs-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
@media (max-width: 899px) { .trc-cs-split { grid-template-columns: 1fr; gap: 24px; } }
.trc-cs-k { font-size: 11px; letter-spacing: .1em; font-weight: 700; color: var(--gold); display: block; margin-bottom: 20px; text-transform: uppercase; }
.trc-cs-h { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.3; margin: 0; max-width: 480px; }
.trc-cs-result-big { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.05; max-width: 800px; margin: 0 auto 28px; }

/* ---- contact ---- */
.trc-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; }
@media (max-width: 899px) { .trc-contact-grid { grid-template-columns: 1fr; } }
.trc-contact-panel { background: var(--ink); color: var(--cream); padding: 52px 44px; display: flex; flex-direction: column; }
@media (max-width: 899px) { .trc-contact-panel { padding: 36px 24px; } }
.trc-contact-panel h2 { font-weight: 800; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.25; margin: 0 0 40px; }
.trc-contact-panel a { color: var(--cream); }
.trc-contact-panel a:hover { color: var(--gold); }
.trc-contact-form-wrap { background: var(--cream); border: 1px solid var(--line); padding: 52px 44px; }
@media (max-width: 899px) { .trc-contact-form-wrap { padding: 36px 24px; } }
.trc-form-tabs { display: inline-flex; padding: 4px; border: 1px solid var(--line); margin-bottom: 32px; }
.trc-form-tabs button { font-size: 13px; font-weight: 600; letter-spacing: .03em; padding: 10px 22px; background: transparent; border: none; color: var(--ink); cursor: pointer; transition: background .25s, color .25s; font-family: inherit; }
.trc-form-tabs button.is-active { background: var(--green); color: var(--cream); }
.trc-form-pane { display: none; }
.trc-form-pane.is-active { display: block; }
.trc-cf7 label { font-size: 11px; letter-spacing: .08em; color: var(--label); font-weight: 600; display: block; margin-bottom: 8px; text-transform: uppercase; }
.trc-cf7 .wpcf7-form-control-wrap { display: block; }
.trc-cf7 input[type=text], .trc-cf7 input[type=email], .trc-cf7 input[type=tel], .trc-cf7 textarea {
  width: 100%; box-sizing: border-box; border: 1px solid var(--line); background: #fff;
  padding: 13px 14px; font-size: 14px; color: var(--ink); outline: none; transition: border-color .25s;
  font-family: inherit; border-radius: 0; -webkit-appearance: none;
}
.trc-cf7 input:focus, .trc-cf7 textarea:focus { border-color: var(--gold); }
.trc-cf7 .trc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 899px) { .trc-cf7 .trc-form-row { grid-template-columns: 1fr; } }
.trc-cf7 .trc-form-field { margin-bottom: 18px; }
.trc-cf7 input[type=file] { font-size: 13px; color: var(--muted); padding: 24px 14px; border: 1.5px dashed var(--line); background: transparent; width: 100%; box-sizing: border-box; cursor: pointer; transition: border-color .25s; }
.trc-cf7 input[type=file]:hover { border-color: var(--gold); }
.trc-cf7 input[type=submit] { margin-top: 8px; }
.trc-cf7 .wpcf7-not-valid-tip { font-size: 12px; color: #a33; margin-top: 6px; display: block; }
.trc-cf7 .wpcf7-response-output { border: 1px solid var(--line); padding: 12px 16px; margin: 20px 0 0; font-size: 14px; }
.trc-cf7 .wpcf7-spinner { display: none; }

/* ---- intl phone input (contact forms) ---- */
.trc-cf7 .iti { width: 100%; --iti-border-color: var(--line); --iti-dialcode-color: var(--label); --iti-dropdown-bg: var(--cream); --iti-arrow-color: var(--label); --iti-hover-color: var(--fill); }
.trc-cf7 .iti__country-list { border: 1px solid var(--line); border-radius: 0; box-shadow: 0 18px 40px -18px rgba(43,44,34,.35); }
.trc-cf7 .iti input[type=tel] { border-radius: 0; }
.trc-form-field--error input, .trc-form-field--error .iti input[type=tel] { border-color: #a33 !important; }

/* ---- legal ---- */
.trc-legal { max-width: 800px; }
.trc-legal h2 { font-weight: 700; font-size: 19px; margin: 0 0 14px; }
.trc-legal .sec { margin-bottom: 44px; }
.trc-legal p, .trc-legal li { font-size: 15px; line-height: 1.75; color: var(--body); }
.trc-legal p { margin: 0 0 12px; }
.trc-legal ul { margin: 0 0 12px; padding-left: 20px; }

/* ---- 404 / thank you ---- */
@keyframes notFoundPlane { 0% { left: -40px; } 100% { left: 100%; } }
@keyframes thankYouPlane { 0% { transform: translate(-46vw, 32vh) scale(.8); opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translate(46vw, -32vh) scale(1.1); opacity: 0; } }
.trc-splash { min-height: 78vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; position: relative; overflow: hidden; }
.trc-splash__line { position: relative; width: 100%; max-width: 640px; height: 1px; background: var(--line); margin-bottom: 56px; }
.trc-splash__line svg { position: absolute; top: -11px; left: -40px; width: 22px; height: 22px; animation: notFoundPlane 5s linear infinite; }
.trc-splash__404 { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(4rem, 14vw, 10rem); line-height: .9; margin: 0; color: var(--ink); }
.trc-splash h2 { font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 24px 0 16px; }
.trc-splash__plane { position: absolute; width: 26px; height: 26px; animation: thankYouPlane 3.2s ease-in-out infinite; }
.trc-splash__quick { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; margin-top: 48px; }
.trc-splash__quick a { font-size: 13px; font-weight: 600; color: var(--green); }

/* ---- candidates cta (image band) ---- */
.trc-cand-cta { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.trc-cand-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .12; }
.trc-cand-cta h2 { font-weight: 800; font-size: clamp(2.2rem, 4.6vw, 4rem); line-height: 1.02; margin: 0; }

/* border helpers */
.bt { border-top: 1px solid var(--line); }
.bb { border-bottom: 1px solid var(--line); }
.bg-warm { background: var(--warm); }

/* ---- page loader (between pages) ---- */
@keyframes loaderPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.97); } }
@keyframes loaderBar { 0% { transform: scaleX(0); } 60% { transform: scaleX(.7); } 100% { transform: scaleX(.95); } }
.trc-loader {
  position: fixed; inset: 0; z-index: 600; background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  opacity: 1; visibility: visible; transition: opacity .45s ease, visibility 0s linear .45s;
}
.trc-loader img { height: 64px; width: auto; animation: loaderPulse 1.6s ease-in-out infinite; }
.trc-loader i { width: 120px; height: 2px; background: var(--line); display: block; overflow: hidden; position: relative; }
.trc-loader i::after { content: ''; position: absolute; inset: 0; background: var(--gold); transform-origin: left; transform: scaleX(0); animation: loaderBar 2.2s ease forwards; }
.trc-loader.is-done { opacity: 0; visibility: hidden; }
html.no-js .trc-loader { display: none; }
@media (prefers-reduced-motion: reduce) { .trc-loader { display: none; } }

/* skip link for a11y */
.trc-skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--cream); padding: 12px 20px; z-index: 500; }
.trc-skip:focus { left: 0; color: var(--cream); }


/* ==== live sync 2026-09-08: footer logo marquee + flag sprite paths ==== */
.trc-footer__logos { display: block; overflow: hidden; }
.trc-footer__logos-track { display: flex; align-items: center; }
.trc-footer__logos-set { display: flex; align-items: center; justify-content: space-between; gap: 28px; width: 100%; }
.trc-footer__logos-set--dup { display: none; }
@media (max-width: 899px) {
  .trc-footer__logos-track { width: max-content; animation: marquee 32s linear infinite; }
  .trc-footer__logos-set, .trc-footer__logos-set--dup { display: flex; width: auto; gap: 56px; padding-right: 56px; }
  .trc-footer__logos img { height: 58px; max-width: 200px; }
}
.trc-cf7 .iti { --iti-path-flags-1x: url(https://trc.nabilkachlan.com/wp-content/themes/trc/assets/vendor/iti/img/flags.webp); --iti-path-flags-2x: url(https://trc.nabilkachlan.com/wp-content/themes/trc/assets/vendor/iti/img/flags@2x.webp); --iti-path-globe-1x: url(https://trc.nabilkachlan.com/wp-content/themes/trc/assets/vendor/iti/img/globe.webp); }
