@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600&display=swap");

:root {
  /* Editorial palette: ivory paper · walnut ink · muted brass · sage */
  --paper: #f5f1ea;
  --paper-2: #efe9df;
  --paper-3: #e6dfd2;
  --ink: #1a1612;
  --ink-2: #2a2520;
  --ink-3: #3d362e;
  --muted: #6b6258;
  --muted-2: #8a8174;
  --rule: rgba(26, 22, 18, 0.12);
  --rule-soft: rgba(26, 22, 18, 0.06);
  --rule-strong: rgba(26, 22, 18, 0.22);
  --rule-dark: rgba(245, 241, 234, 0.16);
  --rule-dark-soft: rgba(245, 241, 234, 0.08);

  --brass: #9c7a3c;
  --brass-2: #7a5d2a;
  --brass-soft: #c4a672;
  --sage: #4a5d4a;

  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

/* ---------- Layout ---------- */

.trg-site {
  min-height: 100vh;
}

.trg-wrap {
  width: min(1240px, calc(100vw - 56px));
  margin: 0 auto;
}

.trg-section {
  padding: 140px 0;
  position: relative;
}

@media (max-width: 820px) {
  .trg-wrap {
    width: calc(100vw - 32px);
  }
  .trg-section {
    padding: 88px 0;
  }
}

/* ---------- Editorial label ---------- */

.trg-eyebrow {
  display: inline-block;
  margin: 0 0 28px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.trg-eyebrow.on-dark {
  color: var(--brass-soft);
}

.trg-section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 18ch;
}

.trg-section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
}

.trg-section-sub {
  margin: 26px 0 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
}

/* ---------- Top nav ---------- */

.trg-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(245, 241, 234, 0.86);
  color: var(--ink);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule-soft);
}

.trg-nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 76px;
}

.trg-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.trg-brand-mark {
  width: 1px;
  height: 22px;
  background: var(--ink);
  display: inline-block;
  transform: translateY(4px);
}

.trg-brand-mark span { display: none; }

.trg-nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 13.5px;
  font-weight: 400;
}

.trg-nav-links a {
  color: var(--muted);
  transition: color 200ms ease;
  position: relative;
}

.trg-nav-links a:hover {
  color: var(--ink);
}

.trg-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 200ms ease, border-color 200ms ease;
}

.trg-nav-cta:hover {
  color: var(--brass-2);
  border-color: var(--brass-2);
}

@media (max-width: 980px) {
  .trg-nav-links {
    display: none;
  }
}

/* ---------- Buttons ---------- */

.trg-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  font-family: inherit;
}

.trg-btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.trg-btn-primary:hover {
  background: var(--brass-2);
}

.trg-btn-secondary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.trg-btn-secondary:hover {
  background: currentColor;
}

.trg-btn-secondary:hover {
  color: var(--paper);
}

.trg-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}

.trg-btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

/* ---------- Hero ---------- */

.trg-hero {
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.trg-hero::before { display: none; }

.trg-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  padding: 110px 0 96px;
  position: relative;
  z-index: 1;
}

.trg-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 6.2vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.trg-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
}

.trg-hero-sub {
  margin: 32px 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.trg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.trg-hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.trg-hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trg-hero-proof strong {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.trg-hero-proof span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
  max-width: 16ch;
}

/* Hero image plate (replaces dashboard panel) */

.trg-hero-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-3);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.trg-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/runtime-assets/retailing-group/hero-network.jpeg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) contrast(1.02);
}

.trg-hero-panel-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.trg-hero-panel-caption em {
  font-style: italic;
  font-family: var(--font-display);
  text-transform: none;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 300;
  color: var(--paper);
}

/* hide the old chart bits cleanly */

.trg-panel-head,
.trg-panel-grid,
.trg-panel-bars,
.trg-panel-foot,
.trg-panel-cell,
.trg-panel-dot {
  display: none !important;
}

@media (max-width: 980px) {
  .trg-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 72px 0 64px;
  }
  .trg-hero-proof {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .trg-hero-panel {
    aspect-ratio: 4 / 3;
  }
}

/* ---------- Channel Network ---------- */

.trg-channel-section {
  background: var(--paper);
  border-top: 1px solid var(--rule);
}

.trg-channel-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 80px;
  row-gap: 0;
  border-top: 1px solid var(--rule);
}

.trg-channel-tile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 28px;
  padding: 32px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  transition: padding-left 0.3s ease;
  position: relative;
}

.trg-channel-tile::before { display: none; }

.trg-channel-tile:hover {
  transform: none;
  padding-left: 12px;
  box-shadow: none;
  border-color: var(--rule);
}

.trg-channel-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--brass-2);
  border-radius: 0;
  margin-top: 6px;
}

.trg-channel-tile h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.trg-channel-tile p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 38ch;
}

.trg-channel-tile .trg-channel-meta {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brass-2);
  text-align: right;
  white-space: nowrap;
  margin-top: 6px;
}

.trg-channel-note {
  margin-top: 64px;
  padding: 32px 0 0;
  border-top: 1px solid var(--rule);
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-style: solid;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 14.5px;
  color: var(--muted);
  border-radius: 0;
}

.trg-channel-note strong {
  color: var(--ink);
  font-weight: 500;
}

.trg-channel-note a {
  color: var(--ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 200ms ease, border-color 200ms ease;
}

.trg-channel-note a:hover {
  color: var(--brass-2);
  border-color: var(--brass-2);
}

/* ---------- Toolkit ---------- */

.trg-toolkit-section {
  background: var(--ink);
  color: var(--paper);
}

.trg-toolkit-section .trg-section-title,
.trg-toolkit-section .trg-section-title em {
  color: var(--paper);
}

.trg-toolkit-section .trg-section-sub {
  color: rgba(245, 241, 234, 0.7);
}

.trg-toolkit-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 80px;
  row-gap: 0;
  border-top: 1px solid var(--rule-dark-soft);
}

.trg-tool-card {
  position: relative;
  padding: 28px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-dark-soft);
  border-radius: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 28px;
  transition: padding-left 0.3s ease;
  min-height: 0;
}

.trg-tool-card:hover {
  transform: none;
  border-color: var(--rule-dark-soft);
  background: transparent;
  padding-left: 12px;
}

.trg-tool-card .trg-tool-id {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brass-soft);
}

.trg-tool-card h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.015em;
}

.trg-tool-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.62);
  grid-column: 1 / -1;
  padding-left: 0;
  max-width: 60ch;
}

.trg-tool-icon { display: none; }

@media (max-width: 1100px) {
  .trg-toolkit-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

@media (max-width: 820px) {
  .trg-channel-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

/* ---------- Manufacturing ---------- */

.trg-mfg-section {
  background: var(--paper);
}

.trg-mfg-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: center;
}

.trg-mfg-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--paper-3);
  aspect-ratio: 4/5;
}

.trg-mfg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.trg-mfg-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 0;
  background: transparent;
  color: var(--paper);
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.trg-mfg-overlay strong {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 500;
}

.trg-mfg-overlay span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--paper);
}

.trg-flow {
  margin-top: 44px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.trg-flow-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  font-size: 15px;
  transition: padding-left 0.3s ease;
}

.trg-flow-row:hover {
  border-color: var(--rule);
  transform: none;
  padding-left: 12px;
}

.trg-flow-row .trg-flow-step {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--brass-2);
  font-weight: 400;
  min-width: 28px;
  text-transform: none;
}

.trg-flow-row strong {
  color: var(--ink);
  font-weight: 400;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.012em;
}

.trg-flow-row span {
  color: var(--muted);
  margin-left: auto;
  font-size: 13.5px;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
}

@media (max-width: 980px) {
  .trg-mfg-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* ---------- Labs ---------- */

.trg-labs-section {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.trg-labs-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 0;
}

.trg-lab-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 28px 36px 0;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--rule);
  border-radius: 0;
  transition: background 0.25s ease;
  overflow: hidden;
}

.trg-lab-card:nth-child(4n) {
  border-right: 0;
}

.trg-lab-card:nth-child(n + 5) {
  border-top: 1px solid var(--rule);
}

.trg-lab-card:hover {
  transform: none;
  box-shadow: none;
  background: var(--paper-3);
}

.trg-lab-card::before { display: none; }

.trg-lab-icon {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--brass-2);
  border-radius: 0;
  padding-left: 28px;
}

.trg-lab-card.gold .trg-lab-icon { color: var(--brass-2); background: transparent; }

.trg-lab-card.steel .trg-lab-icon { color: var(--sage); background: transparent; }

.trg-lab-card.navy .trg-lab-icon { color: var(--ink); background: transparent; }

.trg-lab-card h4 {
  margin: 0;
  padding-left: 28px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.trg-lab-card p {
  margin: 0;
  padding-left: 28px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .trg-labs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trg-lab-card:nth-child(4n) { border-right: 1px solid var(--rule); }
  .trg-lab-card:nth-child(2n) { border-right: 0; }
  .trg-lab-card:nth-child(n + 3) { border-top: 1px solid var(--rule); }
  .trg-lab-card:nth-child(n + 5) { border-top: 1px solid var(--rule); }
}

@media (max-width: 640px) {
  .trg-labs-grid { grid-template-columns: 1fr; }
  .trg-lab-card { border-right: 0 !important; }
  .trg-lab-card:not(:first-child) { border-top: 1px solid var(--rule); }
}

/* ---------- Matchmaking preview ---------- */

.trg-match-section {
  background: var(--ink);
  color: var(--paper);
}

.trg-match-section .trg-section-title,
.trg-match-section .trg-section-title em {
  color: var(--paper);
}

.trg-match-section .trg-section-sub {
  color: rgba(245, 241, 234, 0.7);
}

.trg-match-card {
  margin-top: 72px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.trg-match-pipe {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-dark-soft);
}

.trg-match-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 20px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-dark-soft);
  border-radius: 0;
  font-size: 14px;
  color: rgba(245, 241, 234, 0.7);
}

.trg-match-row .label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 400;
}

.trg-match-row strong {
  color: var(--paper);
  font-weight: 400;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.trg-match-row .score {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  padding: 0;
  background: transparent;
  color: var(--brass-soft);
  border-radius: 0;
  letter-spacing: 0;
}

.trg-match-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trg-match-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  color: var(--brass-soft);
  border: 0;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  width: fit-content;
  font-weight: 500;
}

.trg-match-pill svg { display: none; }

.trg-match-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.1;
  color: var(--paper);
  letter-spacing: -0.02em;
  max-width: 24ch;
}

.trg-match-meta p {
  margin: 0;
  color: rgba(245, 241, 234, 0.68);
  font-size: 15px;
  line-height: 1.65;
  max-width: 56ch;
}

.trg-match-list {
  display: grid;
  gap: 14px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.trg-match-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 14.5px;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
}

.trg-match-list li::before {
  content: "—";
  color: var(--brass-soft);
  font-style: normal;
  font-size: 14px;
}

.trg-match-list svg { display: none; }

@media (max-width: 980px) {
  .trg-match-card {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 48px;
  }
}

/* ---------- State / regional ---------- */

.trg-region-section {
  background: var(--paper);
}

.trg-region-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}

.trg-region-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 24px 32px 0;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  border-left: 0;
  border-radius: 0;
  transition: background 0.25s ease;
}

.trg-region-card:nth-child(5n) { border-right: 0; }

.trg-region-card.gold,
.trg-region-card.steel,
.trg-region-card.navy {
  border-left: 0;
}

.trg-region-card:hover {
  transform: none;
  box-shadow: none;
  background: var(--paper-2);
}

.trg-region-card h4 {
  margin: 0;
  padding-left: 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.trg-region-card p {
  margin: 0;
  padding-left: 24px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

.trg-region-card .trg-region-meta {
  margin-top: auto;
  padding-left: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brass-2);
}

@media (max-width: 1100px) {
  .trg-region-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trg-region-card:nth-child(5n) { border-right: 1px solid var(--rule); }
  .trg-region-card:nth-child(3n) { border-right: 0; }
}

@media (max-width: 700px) {
  .trg-region-grid {
    grid-template-columns: 1fr;
  }
  .trg-region-card { border-right: 0 !important; }
}

/* ---------- History / Authority ---------- */

.trg-history-section {
  background: var(--paper-2);
  color: var(--ink);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.trg-history-section .trg-section-title,
.trg-history-section .trg-section-title em {
  color: var(--ink);
}

.trg-history-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 96px;
  align-items: start;
}

.trg-history-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.trg-history-stat {
  padding: 36px 24px 36px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  border-radius: 0;
}

.trg-history-stat:nth-child(2n) { border-right: 0; padding-right: 0; padding-left: 24px; }

.trg-history-stat strong {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 3.4rem;
  color: var(--ink);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
}

.trg-history-stat span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.trg-history-marquee {
  margin-top: 36px;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
  padding-top: 28px;
}

.trg-history-marquee span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.trg-history-marquee p {
  margin: 14px 0 0;
  color: var(--ink-3);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.trg-history-copy p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 22px 0 0;
}

@media (max-width: 980px) {
  .trg-history-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---------- How We Work ---------- */

.trg-how-section {
  background: var(--paper);
}

.trg-how-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.trg-how-card {
  position: relative;
  padding: 40px 28px 40px 0;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.25s ease;
}

.trg-how-card:last-child { border-right: 0; }

.trg-how-card:hover {
  transform: none;
  box-shadow: none;
  background: var(--paper-2);
}

.trg-how-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--brass-2);
  -webkit-text-stroke: 0;
  letter-spacing: -0.01em;
  padding-left: 28px;
}

.trg-how-card h4 {
  margin: 0;
  padding-left: 28px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.trg-how-card p {
  margin: 0;
  padding-left: 28px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .trg-how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trg-how-card:nth-child(2n) { border-right: 0; }
  .trg-how-card:nth-child(2n + 1) { border-right: 1px solid var(--rule); }
}

@media (max-width: 600px) {
  .trg-how-grid { grid-template-columns: 1fr; }
  .trg-how-card { border-right: 0 !important; }
}

/* ---------- Final CTA ---------- */

.trg-cta-section {
  background: var(--ink);
  color: var(--paper);
  padding: 140px 0;
}

.trg-cta-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 96px;
  align-items: end;
  position: relative;
  overflow: visible;
}

.trg-cta-card::before { display: none; }

.trg-cta-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--paper);
  max-width: 16ch;
}

.trg-cta-card h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--paper);
}

.trg-cta-card p {
  margin: 24px 0 0;
  color: rgba(245, 241, 234, 0.7);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 48ch;
}

.trg-cta-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--rule-dark-soft);
}

.trg-cta-actions .trg-btn {
  justify-content: space-between;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--rule-dark-soft);
  background: transparent;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-transform: none;
}

.trg-cta-actions .trg-btn:hover {
  background: transparent;
  color: var(--brass-soft);
  padding-left: 12px;
}

@media (max-width: 980px) {
  .trg-cta-card {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 48px;
  }
}

/* ---------- Footer ---------- */

.trg-footer {
  background: var(--ink);
  color: rgba(245, 241, 234, 0.6);
  border-top: 1px solid var(--rule-dark-soft);
}

.trg-footer-inner {
  padding: 36px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12.5px;
}

.trg-footer-inner a {
  color: rgba(245, 241, 234, 0.6);
  transition: color 200ms ease;
}

.trg-footer-inner a:hover {
  color: var(--brass-soft);
}

.trg-footer-links {
  display: flex;
  gap: 32px;
}

@media (prefers-reduced-motion: reduce) {
  .trg-channel-tile,
  .trg-tool-card,
  .trg-flow-row,
  .trg-region-card,
  .trg-how-card,
  .trg-cta-actions .trg-btn {
    transition: none !important;
  }
}
