:root {
  /* Base — deep earth */
  --tlr-bg: #161411;
  --tlr-bg2: #1f1c17;
  --tlr-bg-soft: #1f1c17;
  --tlr-bg3: #26211b;

  --tlr-panel: #26211b;
  --tlr-panel-2: #2e2820;
  --tlr-panel-3: #362f26;

  --tlr-border: rgba(120, 95, 60, 0.25);
  --tlr-border-strong: rgba(160, 120, 70, 0.35);
  --tlr-border-soft: rgba(255,255,255,0.06);

  /* Text */
  --tlr-text: #f3e9d8;
  --tlr-text-soft: #e0d4c0;
  --tlr-muted: #b7a98c;
  --tlr-faint: #7a6e5c;

  /* Primary — earth / leather */
  --tlr-primary: #7a5a32;
  --tlr-primary-soft: rgba(122, 90, 50, 0.18);

  /* Accent — tangerine / sunlight */
  --tlr-accent: #d68a3a;
  --tlr-accent-light: #e8a050;
  --tlr-accent-bright: #f0b868;
  --tlr-accent-deep: #7a5a32;
  --tlr-accent-soft: rgba(214, 138, 58, 0.18);
  --tlr-accent-glow: rgba(214, 138, 58, 0.35);

  /* Secondary — muted green / nature */
  --tlr-green: #6f8a4a;
  --tlr-green-soft: rgba(111, 138, 74, 0.18);
  --tlr-violet: #6f8a4a;
  --tlr-violet-soft: rgba(111, 138, 74, 0.18);

  --tlr-success: #6f8a4a;
  --tlr-success-soft: rgba(111, 138, 74, 0.14);

  /* Gold — rare highlight */
  --tlr-gold: #c6a15b;
  --tlr-gold-soft: rgba(198, 161, 91, 0.14);

  /* Danger — subtle, not bright */
  --tlr-danger: #a14f3f;
  --tlr-danger-soft: rgba(161, 79, 63, 0.14);

  /* Sizing */
  --tlr-radius-xs: 10px;
  --tlr-radius-sm: 14px;
  --tlr-radius: 18px;
  --tlr-radius-lg: 24px;

  /* Shadows */
  --tlr-shadow-sm: 0 10px 24px rgba(0,0,0,0.22);
  --tlr-shadow-md: 0 16px 38px rgba(0,0,0,0.32);
  --tlr-shadow-lg: 0 28px 68px rgba(0,0,0,0.46);

  --tlr-font: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--tlr-font);
  color: var(--tlr-text);
  background:
    radial-gradient(circle at 16% 8%, rgba(214,138,58,0.12), transparent 22%),
    radial-gradient(circle at 82% 4%, rgba(122,90,50,0.10), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(111,138,74,0.04), transparent 24%),
    linear-gradient(180deg, var(--tlr-bg2) 0%, var(--tlr-bg) 55%, #110f0c 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 88%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

/* Layout */
.tlr-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.tlr-section {
  padding: 56px 0;
}

.tlr-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.tlr-section-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.tlr-section-sub {
  margin: 0;
  max-width: 720px;
  color: var(--tlr-muted);
  line-height: 1.7;
  font-size: 16px;
}

.tlr-grid {
  display: grid;
  gap: 18px;
}

.tlr-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tlr-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tlr-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.tlr-stack > * + * {
  margin-top: 14px;
}

.tlr-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Nav */
.tlr-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(31,28,23,0.94), rgba(22,20,17,0.88));
  border-bottom: 1px solid var(--tlr-border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

.tlr-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tlr-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 800;
  color: var(--tlr-text);
  letter-spacing: 0.01em;
}

.tlr-brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--tlr-accent-bright) 0%, var(--tlr-accent) 55%, var(--tlr-primary) 100%);
  box-shadow:
    0 0 20px var(--tlr-accent-glow),
    inset 0 1px 0 rgba(255,255,255,0.20);
  position: relative;
  flex-shrink: 0;
}

.tlr-brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.18);
}

.tlr-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--tlr-muted);
  font-size: 14px;
}

.tlr-nav-links a {
  padding: 8px 14px;
  border-radius: 10px;
  transition: color 0.16s ease, background 0.16s ease;
}

.tlr-nav-links a:hover {
  color: var(--tlr-text);
  background: rgba(255,255,255,0.04);
}

.tlr-nav-links .action {
  color: var(--tlr-text);
  font-weight: 700;
  background: linear-gradient(180deg, rgba(38,33,27,0.94), rgba(27,24,19,0.94));
  border: 1px solid var(--tlr-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Hero */
.tlr-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  padding: 60px 0 44px;
  align-items: center;
}

.tlr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(214,138,58,0.18);
  background: var(--tlr-accent-soft);
  color: #f0c28a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.tlr-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--tlr-accent));
  box-shadow: 0 0 12px var(--tlr-accent-glow);
}

.tlr-hero h1,
.tlr-h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.tlr-line-a {
  display: block;
  background: linear-gradient(180deg, #ffffff, #f3e9d8 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tlr-line-b {
  display: block;
  background: linear-gradient(180deg, #e8a85c, #7a5a32 84%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tlr-hero-sub {
  font-size: 18px;
  font-weight: 600;
  color: #e8dcc4;
  margin: 0 0 10px;
}

.tlr-hero-body {
  max-width: 600px;
  margin: 0 0 26px;
  color: rgba(243,233,216,0.76);
  font-size: 15px;
  line-height: 1.75;
}

.tlr-hero-note {
  font-size: 13px;
  color: var(--tlr-faint);
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.tlr-hero-visual {
  position: relative;
}

.tlr-hero-glow {
  position: absolute;
  right: -40px;
  top: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,138,58,0.14) 0%, transparent 65%);
  z-index: -1;
}

/* Cards / panels */
.tlr-card,
.tlr-panel {
  border-radius: var(--tlr-radius);
  border: 1px solid var(--tlr-border);
  background: linear-gradient(180deg, #26211b, #1b1813);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 12px 30px rgba(0,0,0,0.4);
}

.tlr-card:hover,
.tlr-panel:hover {
  border-color: var(--tlr-border-strong);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.5),
    0 0 20px rgba(214,138,58,0.08);
}

.tlr-card-body,
.tlr-panel-body {
  padding: 18px;
}

.tlr-window {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--tlr-border);
  background: linear-gradient(180deg, rgba(38,33,27,0.97), rgba(22,20,17,0.99));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    var(--tlr-shadow-lg);
}

.tlr-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.18);
}

.tlr-dots {
  display: flex;
  gap: 6px;
}

.tlr-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.tlr-dot.r { background: rgba(161,79,63,0.55); }
.tlr-dot.y { background: rgba(198,161,91,0.60); }
.tlr-dot.g { background: rgba(111,138,74,0.60); }

.tlr-window-title {
  font-size: 12px;
  color: var(--tlr-muted);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Buttons */
.tlr-btn {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--tlr-text);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    filter 0.18s ease,
    background 0.18s ease;
}

.tlr-btn:hover {
  transform: translateY(-2px);
}

/* Primary — earth / leather */
.tlr-btn-primary {
  color: var(--tlr-text);
  background: linear-gradient(180deg, #8b673a, #6e4f2c);
  border: 1px solid rgba(160,120,70,0.5);
  box-shadow:
    0 10px 26px rgba(90,60,24,0.34),
    0 0 16px var(--tlr-primary-soft);
}

.tlr-btn-primary:hover {
  background: linear-gradient(180deg, #9a7340, #7a5a32);
  box-shadow:
    0 14px 34px rgba(90,60,24,0.44),
    0 0 18px var(--tlr-accent-glow);
  filter: brightness(1.04);
}

/* Accent — tangerine CTA */
.tlr-btn-accent {
  color: #1a140c;
  font-weight: 700;
  background: linear-gradient(180deg, #e09a4a, #c97c2f);
  border: 1px solid rgba(214,138,58,0.6);
  box-shadow:
    0 10px 26px rgba(160,90,30,0.30),
    0 0 16px var(--tlr-accent-soft);
}

.tlr-btn-accent:hover {
  box-shadow:
    0 14px 34px rgba(160,90,30,0.40),
    0 0 22px var(--tlr-accent-glow);
  filter: brightness(1.04);
}

.tlr-btn-secondary,
.tlr-btn-ghost {
  color: var(--tlr-text);
  background: linear-gradient(180deg, rgba(38,33,27,0.94), rgba(27,24,19,0.94));
  border-color: var(--tlr-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.tlr-btn-secondary:hover,
.tlr-btn-ghost:hover {
  border-color: var(--tlr-border-strong);
  background: linear-gradient(180deg, rgba(46,40,32,0.96), rgba(32,28,22,0.96));
}

/* Green — nature / success */
.tlr-btn-success,
.tlr-btn-green {
  color: #e8f0e0;
  background: linear-gradient(180deg, #7f9a56, #5e753d);
  border: 1px solid rgba(111,138,74,0.5);
  box-shadow: 0 0 18px var(--tlr-green-soft);
}

.tlr-btn-success:hover,
.tlr-btn-green:hover {
  box-shadow:
    0 10px 28px rgba(80,110,50,0.30),
    0 0 20px rgba(111,138,74,0.20);
  filter: brightness(1.04);
}

.tlr-btn-danger {
  color: #f0ddd8;
  background: linear-gradient(180deg, rgba(161,79,63,0.28), rgba(120,50,40,0.22));
  border-color: rgba(161,79,63,0.30);
  box-shadow: 0 0 18px rgba(161,79,63,0.08);
}

.tlr-btn-gold {
  color: #1a140c;
  background: linear-gradient(180deg, #d8bc72, #c6a15b);
  border-color: rgba(198,161,91,0.34);
  box-shadow:
    0 10px 26px rgba(96,71,20,0.26),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.tlr-btn-gold:hover {
  box-shadow:
    0 14px 34px rgba(96,71,20,0.36),
    0 0 20px rgba(198,161,91,0.18);
}

/* Pills / badges */
.tlr-pill,
.tlr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--tlr-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--tlr-border);
  backdrop-filter: blur(8px);
}

.tlr-pill-accent {
  background: var(--tlr-accent-soft);
  border-color: rgba(214,138,58,0.4);
  color: #f0c28a;
}

.tlr-pill-success {
  background: var(--tlr-green-soft);
  border-color: rgba(111,138,74,0.4);
  color: #c9d8a8;
}

.tlr-pill-warning {
  background: var(--tlr-gold-soft);
  border-color: rgba(198,161,91,0.30);
  color: #e8d8a8;
}

.tlr-pill-danger {
  background: var(--tlr-danger-soft);
  border-color: rgba(161,79,63,0.30);
  color: #e0c0b8;
}

/* Inputs */
.tlr-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #e0d4c0;
}

.tlr-input,
.tlr-select,
.tlr-textarea {
  width: 100%;
  border: 1px solid var(--tlr-border);
  background: linear-gradient(180deg, rgba(22,20,17,0.96), rgba(18,16,13,0.98));
  color: var(--tlr-text);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.tlr-input::placeholder,
.tlr-textarea::placeholder {
  color: #8a7d68;
}

.tlr-input:focus,
.tlr-select:focus,
.tlr-textarea:focus {
  border-color: rgba(214,138,58,0.42);
  box-shadow:
    0 0 0 4px rgba(214,138,58,0.10),
    0 0 20px rgba(214,138,58,0.08);
  background: linear-gradient(180deg, rgba(28,25,20,0.98), rgba(22,20,17,1));
}

.tlr-textarea {
  min-height: 140px;
  resize: vertical;
}

/* Stats */
.tlr-statbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 0 72px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--tlr-border);
  background: rgba(120,95,60,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 44px rgba(0,0,0,0.22);
}

.tlr-statcell {
  min-height: 120px;
  padding: 22px 24px 20px;
  background: linear-gradient(180deg, rgba(31,28,23,0.98), rgba(22,20,17,0.98));
}

.tlr-stat-number {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff, #e8d0a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.tlr-stat-label {
  font-size: 13px;
  color: var(--tlr-muted);
  line-height: 1.55;
}

/* Feature / content cards */
.tlr-feature {
  background: linear-gradient(180deg, rgba(38,33,27,0.95), rgba(27,24,19,0.96));
  border: 1px solid var(--tlr-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 16px 38px rgba(0,0,0,0.28);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.tlr-feature:hover {
  transform: translateY(-4px);
  border-color: var(--tlr-border-strong);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 20px 44px rgba(0,0,0,0.34),
    0 0 18px rgba(214,138,58,0.08);
}

.tlr-feature-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  background: linear-gradient(180deg, var(--tlr-primary-soft), rgba(122,90,50,0.10));
  border: 1px solid rgba(160,120,70,0.25);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 18px rgba(122,90,50,0.06);
  margin-bottom: 16px;
}

.tlr-feature-title {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.tlr-feature-body {
  margin: 0;
  color: var(--tlr-muted);
  line-height: 1.7;
  font-size: 15px;
}

/* Progress */
.tlr-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.tlr-progress-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--tlr-primary), var(--tlr-accent), var(--tlr-accent-bright));
  box-shadow: 0 0 16px rgba(214,138,58,0.28);
  position: relative;
}

.tlr-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28));
  filter: blur(4px);
}

/* Alerts */
.tlr-alert {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(34,30,24,0.94), rgba(27,24,19,0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.tlr-alert-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.tlr-alert-title {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 4px;
}

.tlr-alert-text {
  margin: 0;
  color: var(--tlr-muted);
  line-height: 1.65;
  font-size: 14px;
}

.tlr-alert-info {
  border-color: rgba(214,138,58,0.22);
  background: linear-gradient(180deg, rgba(214,138,58,0.08), rgba(27,24,19,0.96));
}

.tlr-alert-info .tlr-alert-icon {
  color: #f0c28a;
  background: linear-gradient(180deg, var(--tlr-accent-soft), rgba(122,90,50,0.10));
  border-color: rgba(214,138,58,0.20);
}

.tlr-alert-success {
  border-color: rgba(111,138,74,0.22);
  background: linear-gradient(180deg, rgba(111,138,74,0.08), rgba(27,24,19,0.96));
}

.tlr-alert-success .tlr-alert-icon {
  color: #c9d8a8;
  background: linear-gradient(180deg, var(--tlr-green-soft), rgba(80,110,50,0.10));
  border-color: rgba(111,138,74,0.20);
}

.tlr-alert-warning {
  border-color: rgba(198,161,91,0.22);
  background: linear-gradient(180deg, rgba(198,161,91,0.08), rgba(27,24,19,0.96));
}

.tlr-alert-warning .tlr-alert-icon {
  color: #e8d8a8;
  background: linear-gradient(180deg, var(--tlr-gold-soft), rgba(118,91,32,0.10));
  border-color: rgba(198,161,91,0.20);
}

.tlr-alert-danger {
  border-color: rgba(161,79,63,0.22);
  background: linear-gradient(180deg, rgba(161,79,63,0.08), rgba(27,24,19,0.96));
}

.tlr-alert-danger .tlr-alert-icon {
  color: #e0c0b8;
  background: linear-gradient(180deg, var(--tlr-danger-soft), rgba(120,50,40,0.10));
  border-color: rgba(161,79,63,0.20);
}

/* Tables */
.tlr-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--tlr-border);
}

.tlr-table th,
.tlr-table td {
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
}

.tlr-table th {
  color: #e8dcc4;
  font-weight: 700;
  background: var(--tlr-primary-soft);
  border-bottom: 1px solid var(--tlr-border);
}

.tlr-table td {
  color: var(--tlr-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.tlr-table tbody tr:hover td {
  background: rgba(255,255,255,0.02);
}

/* Utility */
.tlr-muted { color: var(--tlr-muted); }
.tlr-faint { color: var(--tlr-faint); }
.tlr-center { text-align: center; }
.tlr-right { text-align: right; }

.tlr-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(120,95,60,0.25), rgba(120,95,60,0.06), transparent);
  margin: 18px 0;
}

.tlr-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #f0e0c8;
  white-space: pre-wrap;
  background: linear-gradient(180deg, rgba(22,20,17,0.98), rgba(16,14,11,1));
  border: 1px solid var(--tlr-border);
  border-radius: 14px;
  padding: 14px 16px;
  overflow: auto;
}

/* Footer */
.tlr-footer {
  padding: 24px 0 52px;
  border-top: 1px solid rgba(120,95,60,0.12);
}

.tlr-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.tlr-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8a7d68;
  font-size: 14px;
  font-weight: 700;
}

.tlr-footer-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #7a6e5c;
}

.tlr-footer-links a:hover {
  color: var(--tlr-muted);
}

/* Responsive */
@media (max-width: 1100px) {
  .tlr-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlr-hero {
    grid-template-columns: 1fr;
  }

  .tlr-section-head {
    flex-direction: column;
    align-items: start;
  }

  .tlr-statbar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .tlr-shell,
  .tlr-nav-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tlr-grid-2,
  .tlr-grid-3,
  .tlr-grid-4,
  .tlr-statbar {
    grid-template-columns: 1fr;
  }

  .tlr-nav-inner,
  .tlr-footer-inner {
    flex-direction: column;
    align-items: start;
  }

  .tlr-nav-links,
  .tlr-footer-links {
    flex-wrap: wrap;
  }

  .tlr-hero {
    padding-top: 42px;
  }

  .tlr-hero h1,
  .tlr-h1 {
    font-size: clamp(36px, 12vw, 56px);
  }

  .tlr-card-body,
  .tlr-panel-body,
  .tlr-feature {
    padding: 16px;
  }
}
