:root {
  --tle-ink: #0b1720;
  --tle-navy: #061a28;
  --tle-navy-soft: #0c293a;
  --tle-forest: #0c6a57;
  --tle-forest-bright: #168d73;
  --tle-flame: #eb6a2a;
  --tle-flame-dark: #c84f18;
  --tle-paper: #f5f3ed;
  --tle-mist: #e9efed;
  --tle-white: #ffffff;
  --tle-muted: #5b6870;
  --tle-border: rgba(10, 28, 39, 0.14);
  --tle-shadow: 0 24px 70px rgba(1, 20, 31, 0.12);
  --tle-shell: min(1240px, calc(100vw - 48px));
  --tle-radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--tle-ink);
  background: var(--tle-paper);
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.tle-menu-is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #7ed8c6;
  outline-offset: 4px;
}

.tle-shell {
  width: var(--tle-shell);
  margin-inline: auto;
}

.tle-section {
  position: relative;
  padding-block: 130px;
}

.tle-skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--tle-white);
  background: var(--tle-forest);
  transform: translateY(-150%);
}

.tle-skip-link:focus {
  transform: translateY(0);
}

.tle-site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--tle-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tle-site-header.is-scrolled {
  background: rgba(4, 22, 34, 0.95);
  border-color: transparent;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.tle-header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.tle-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.tle-brand-mark,
.tle-brand-custom-logo img {
  display: block;
  width: 76px;
  height: 48px;
  padding: 2px;
  border-radius: 4px;
  background: #fff;
  object-fit: contain;
}

.tle-brand-copy {
  display: flex;
  line-height: 1.05;
  flex-direction: column;
}

.tle-brand-copy strong {
  font-size: 16px;
  font-weight: 760;
  letter-spacing: 0.01em;
}

.tle-brand-copy small {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.tle-primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.tle-primary-nav > a {
  position: relative;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.tle-primary-nav > a:not(.tle-nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--tle-flame);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.tle-primary-nav > a:not(.tle-nav-cta):hover::after,
.tle-primary-nav > a:not(.tle-nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tle-nav-cta {
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.tle-nav-cta:hover {
  color: var(--tle-navy);
  background: var(--tle-white);
}

.tle-menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: inherit;
  border: 0;
  background: none;
}

.tle-menu-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tle-menu-icon {
  display: grid;
  width: 28px;
  height: 20px;
  place-items: center;
}

.tle-menu-icon i {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.tle-menu-icon i:last-child {
  transform: translateY(5px);
}

.tle-menu-toggle[aria-expanded="true"] .tle-menu-icon i:first-child {
  transform: translateY(1px) rotate(45deg);
}

.tle-menu-toggle[aria-expanded="true"] .tle-menu-icon i:last-child {
  transform: translateY(-1px) rotate(-45deg);
}

.tle-hero {
  position: relative;
  display: flex;
  min-height: 860px;
  color: var(--tle-white);
  background: var(--tle-navy);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.tle-hero-media,
.tle-hero-shade {
  position: absolute;
  inset: 0;
}

.tle-hero-media {
  background-image: url("../images/hero-forest-field.webp");
  background-position: 52% center;
  background-size: cover;
  transform: scale(1.015);
}

.tle-hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 18, 29, 0.97) 0%, rgba(2, 18, 29, 0.84) 43%, rgba(2, 18, 29, 0.28) 77%, rgba(2, 18, 29, 0.45) 100%),
    linear-gradient(0deg, rgba(2, 18, 29, 0.72) 0%, transparent 42%);
}

.tle-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: 170px;
  padding-bottom: 132px;
  align-items: end;
  gap: 70px;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
}

.tle-eyebrow {
  display: flex;
  margin: 0 0 26px;
  align-items: center;
  gap: 12px;
  color: var(--tle-forest);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tle-eyebrow > span {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--tle-flame);
}

.tle-eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

.tle-hero h1,
.tle-section h2,
.tle-contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.tle-hero h1 {
  max-width: 820px;
  font-size: clamp(58px, 6.4vw, 96px);
}

.tle-hero h1 em,
.tle-section h2 em,
.tle-contact h2 em {
  color: #7ed8c6;
  font-weight: 400;
}

.tle-hero-lede {
  max-width: 700px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.tle-button-row {
  display: flex;
  margin-top: 42px;
  flex-wrap: wrap;
  gap: 14px;
}

.tle-button {
  display: inline-flex;
  min-height: 54px;
  padding: 15px 24px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.tle-button:hover {
  transform: translateY(-2px);
}

.tle-button--primary {
  color: var(--tle-white);
  background: var(--tle-flame);
  box-shadow: 0 10px 30px rgba(232, 96, 34, 0.28);
}

.tle-button--primary:hover {
  background: var(--tle-flame-dark);
}

.tle-button--ghost {
  color: var(--tle-white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.04);
}

.tle-button--ghost:hover {
  color: var(--tle-navy);
  border-color: var(--tle-white);
  background: var(--tle-white);
}

.tle-hero-card {
  padding: 28px 30px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(4, 23, 35, 0.62);
  box-shadow: var(--tle-shadow);
  backdrop-filter: blur(12px);
}

.tle-card-kicker {
  display: block;
  padding-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tle-hero-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tle-hero-card li {
  display: grid;
  padding: 20px 0;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 36px 1fr;
}

.tle-hero-card li:last-child {
  border-bottom: 0;
}

.tle-hero-card li span {
  color: #7ed8c6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.tle-hero-card li a {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.tle-hero-card li a:hover {
  color: #7ed8c6;
}

.tle-hero-bottom {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.tle-hero-bottom .tle-shell {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tle-hero-bottom i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tle-flame);
}

.tle-intro {
  background:
    radial-gradient(circle at 4% 10%, rgba(20, 137, 112, 0.08), transparent 28%),
    var(--tle-paper);
}

.tle-intro-grid {
  display: grid;
  gap: 110px;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
}

.tle-section h2 {
  font-size: clamp(48px, 5.2vw, 78px);
}

.tle-section-heading h2 em,
.tle-process h2 em,
.tle-faq h2 em,
.tle-field h2 em {
  color: var(--tle-forest);
}

body.third-level-landing-page .tle-intro .tle-section-heading h2,
body.third-level-landing-page .tle-field .tle-field-heading h2 {
  color: var(--tle-navy);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-shadow: none;
}

body.third-level-landing-page .tle-intro .tle-section-heading h2 em,
body.third-level-landing-page .tle-field .tle-field-heading h2 em {
  color: #075746;
  font-weight: 700;
}

.tle-intro-copy {
  padding-top: 38px;
}

.tle-intro-copy p {
  max-width: 680px;
  margin-top: 0;
  color: var(--tle-muted);
}

.tle-intro-copy .tle-large-copy {
  margin-bottom: 24px;
  color: var(--tle-ink);
  font-size: clamp(24px, 2.35vw, 34px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.tle-text-link {
  display: inline-flex;
  margin-top: 16px;
  padding-bottom: 5px;
  align-items: center;
  gap: 26px;
  color: var(--tle-ink);
  border-bottom: 2px solid var(--tle-flame);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.tle-text-link span {
  transition: transform 180ms ease;
}

.tle-text-link:hover span {
  transform: translateX(5px);
}

.tle-capability-grid {
  display: grid;
  margin-top: 100px;
  align-items: stretch;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tle-capability-card {
  display: grid;
  min-height: 620px;
  border: 1px solid var(--tle-border);
  background: rgba(255, 255, 255, 0.52);
  grid-template-rows: 300px 1fr;
  overflow: hidden;
}

.tle-capability-card--feature {
  min-height: 680px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  grid-template-rows: auto;
}

.tle-card-image {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.tle-card-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(4, 24, 36, 0.4), transparent 55%);
}

.tle-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.tle-capability-card:hover .tle-card-image img {
  transform: scale(1.035);
}

.tle-card-image > span {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 18px;
  color: var(--tle-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.tle-card-content {
  display: flex;
  padding: clamp(32px, 4vw, 58px);
  flex-direction: column;
  align-items: flex-start;
}

.tle-card-label {
  margin: 0 0 22px;
  color: var(--tle-forest);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tle-card-content h3 {
  max-width: 580px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.tle-capability-card:not(.tle-capability-card--feature) .tle-card-content h3 {
  font-size: clamp(29px, 2.5vw, 38px);
}

.tle-card-content > p:not(.tle-card-label) {
  margin-top: 0;
  color: var(--tle-muted);
}

.tle-card-content ul {
  display: grid;
  width: 100%;
  margin: 10px 0 22px;
  padding: 0;
  gap: 0;
  list-style: none;
}

.tle-card-content li {
  position: relative;
  padding: 11px 0 11px 26px;
  border-top: 1px solid var(--tle-border);
  font-size: 14px;
  font-weight: 650;
}

.tle-card-content li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--tle-flame);
}

.tle-card-content .tle-text-link {
  margin-top: auto;
}

.tle-training {
  color: var(--tle-white);
  background: var(--tle-navy);
  overflow: hidden;
}

.tle-training-backdrop {
  position: absolute;
  top: -380px;
  right: -320px;
  width: 980px;
  height: 980px;
  border: 1px solid rgba(126, 216, 198, 0.15);
  border-radius: 50%;
}

.tle-training-backdrop::before,
.tle-training-backdrop::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(126, 216, 198, 0.1);
  border-radius: 50%;
}

.tle-training-backdrop::before {
  inset: 120px;
}

.tle-training-backdrop::after {
  inset: 250px;
}

.tle-training-head {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  gap: 90px;
  grid-template-columns: 1fr 0.8fr;
}

.tle-training-head > p {
  max-width: 530px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.tle-training-layout {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 80px;
  gap: 70px;
  grid-template-columns: minmax(350px, 0.78fr) minmax(0, 1.22fr);
}

.tle-training-photo {
  position: relative;
  min-height: 650px;
}

.tle-training-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.06);
}

.tle-training-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 26, 40, 0.78), transparent 45%);
}

.tle-training-photo > div {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 30px;
  left: 32px;
  display: flex;
  padding-top: 20px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.tle-training-photo strong {
  font-size: 14px;
}

.tle-training-photo span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.tle-training-catalog article {
  display: grid;
  padding: 32px 0 40px;
  gap: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 52px 1fr;
}

.tle-training-number {
  color: #7ed8c6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.tle-training-catalog h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.1;
}

.tle-training-catalog p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.tle-training-catalog .tle-training-note {
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.67);
  border-left: 3px solid var(--tle-flame);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  line-height: 1.55;
}

.tle-field {
  color: var(--tle-ink);
  background: var(--tle-white);
}

body.third-level-landing-page .tle-field .tle-eyebrow {
  color: #075746;
  font-weight: 900;
}

.tle-field-heading {
  display: grid;
  align-items: end;
  gap: 100px;
  grid-template-columns: 1fr 0.78fr;
}

.tle-field-heading > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: var(--tle-muted);
  font-size: 18px;
}

.tle-field-grid {
  display: grid;
  margin-top: 90px;
  gap: 70px;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
}

.tle-field-list article {
  display: grid;
  padding: 28px 0 30px;
  gap: 24px;
  border-top: 1px solid var(--tle-border);
  grid-template-columns: 50px 1fr;
}

.tle-field-list article:last-child {
  border-bottom: 1px solid var(--tle-border);
}

.tle-field-list span {
  color: var(--tle-forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.tle-field-list h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}

.tle-field-list p {
  margin: 0;
  color: var(--tle-muted);
  font-size: 15px;
}

.tle-field-gallery {
  position: relative;
  min-height: 690px;
  padding: 0 0 60px;
}

.tle-field-gallery figure {
  margin: 0;
}

.tle-field-gallery-main {
  height: 620px;
}

.tle-field-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tle-field-gallery-main figcaption {
  padding-top: 12px;
  color: var(--tle-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tle-field-gallery-side {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 210px;
  height: 270px;
  padding: 10px 10px 26px;
  background: var(--tle-paper);
  box-shadow: var(--tle-shadow);
}

.tle-field-gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tle-process {
  background:
    linear-gradient(rgba(10, 28, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 28, 39, 0.06) 1px, transparent 1px),
    var(--tle-mist);
  background-size: 42px 42px;
}

.tle-process-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tle-process-heading > * {
  grid-column: 1;
}

.tle-process-steps {
  display: grid;
  margin: 90px 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tle-process-steps li {
  min-height: 310px;
  padding: 32px 28px;
  border-top: 3px solid var(--tle-forest);
  border-right: 1px solid rgba(10, 28, 39, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.tle-process-steps li:nth-child(even) {
  margin-top: 42px;
  border-top-color: var(--tle-flame);
}

.tle-process-steps li:last-child {
  border-right: 0;
}

.tle-process-steps span {
  color: var(--tle-forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.tle-process-steps h3 {
  margin: 66px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.tle-process-steps p {
  margin: 0;
  color: var(--tle-muted);
  font-size: 14px;
}

.tle-about {
  color: var(--tle-white);
  background: #0b2c38;
}

.tle-about-grid {
  display: grid;
  align-items: center;
  gap: 110px;
  grid-template-columns: minmax(370px, 0.92fr) minmax(0, 1.08fr);
}

.tle-about-image {
  position: relative;
  min-height: 660px;
}

.tle-about-image::before {
  position: absolute;
  z-index: 0;
  top: -26px;
  right: -26px;
  width: 50%;
  height: 42%;
  content: "";
  border-top: 2px solid #7ed8c6;
  border-right: 2px solid #7ed8c6;
}

.tle-about-image img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.tle-about-image > span {
  position: absolute;
  z-index: 2;
  right: -42px;
  bottom: 44px;
  padding: 22px 28px;
  color: var(--tle-navy);
  background: #7ed8c6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.12;
}

.tle-about-copy h2 {
  max-width: 720px;
  font-size: clamp(45px, 4.7vw, 70px);
}

.tle-about-copy > p:not(.tle-eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
}

.tle-about-copy > p:nth-of-type(2) {
  margin-top: 34px;
}

.tle-about-points {
  display: flex;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.tle-about-points span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tle-faq {
  background: var(--tle-paper);
}

.tle-faq-layout {
  display: grid;
  gap: 110px;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
}

.tle-faq-list {
  border-top: 1px solid var(--tle-border);
}

.tle-faq-list details {
  border-bottom: 1px solid var(--tle-border);
}

.tle-faq-list summary {
  display: flex;
  padding: 28px 4px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.25;
  list-style: none;
}

.tle-faq-list summary::-webkit-details-marker {
  display: none;
}

.tle-faq-list summary span {
  color: var(--tle-flame);
  font-family: Inter, Aptos, "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.tle-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.tle-faq-list details p {
  max-width: 670px;
  margin: -4px 0 28px;
  color: var(--tle-muted);
}

.tle-contact {
  color: var(--tle-white);
  background:
    radial-gradient(circle at 85% 15%, rgba(22, 141, 115, 0.28), transparent 31%),
    var(--tle-navy);
}

.tle-contact-grid {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
}

.tle-contact h2 {
  font-size: clamp(48px, 5.4vw, 78px);
}

.tle-contact-copy > p:not(.tle-eyebrow) {
  max-width: 520px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.68);
}

.tle-contact-direct {
  display: grid;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.tle-contact-direct a {
  display: flex;
  padding: 18px 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.tle-contact-direct small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tle-contact-direct strong {
  font-size: 15px;
}

.tle-contact-form-wrap {
  padding: clamp(28px, 4.5vw, 58px);
  color: var(--tle-ink);
  background: var(--tle-white);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.2);
}

.tle-contact-form {
  display: grid;
  gap: 22px;
}

.tle-form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tle-contact-form label {
  display: grid;
  gap: 8px;
}

.tle-contact-form label > span {
  color: #35454e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tle-contact-form input,
.tle-contact-form select,
.tle-contact-form textarea {
  width: 100%;
  color: var(--tle-ink);
  border: 0;
  border-bottom: 1px solid #a7b1b5;
  border-radius: 0;
  background: transparent;
}

.tle-contact-form input,
.tle-contact-form select {
  min-height: 48px;
}

.tle-contact-form textarea {
  padding: 12px 0;
  resize: vertical;
}

.tle-contact-form input:focus,
.tle-contact-form select:focus,
.tle-contact-form textarea:focus {
  border-color: var(--tle-forest);
  outline: 0;
  box-shadow: 0 2px 0 var(--tle-forest);
}

.tle-button--submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.tle-form-note {
  margin: -6px 0 0;
  color: var(--tle-muted);
  font-size: 11px;
  text-align: center;
}

.tle-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.tle-form-status {
  margin-bottom: 24px;
  padding: 15px 18px;
  border-left: 4px solid;
  font-size: 14px;
}

.tle-form-status--success {
  color: #064a3d;
  border-color: var(--tle-forest);
  background: #e0f3ee;
}

.tle-form-status--error {
  color: #7e250c;
  border-color: var(--tle-flame);
  background: #fff0e9;
}

.tle-site-footer {
  padding: 74px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #03131d;
}

.tle-footer-grid {
  display: grid;
  padding-bottom: 60px;
  gap: 70px;
  grid-template-columns: 1.5fr 0.65fr 0.85fr;
}

.tle-brand--footer {
  color: var(--tle-white);
}

.tle-footer-grid > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.tle-footer-grid p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.tle-footer-grid a:not(.tle-brand) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  text-decoration: none;
}

.tle-footer-grid a:hover {
  color: var(--tle-white);
}

.tle-footer-label {
  margin-bottom: 12px;
  color: #7ed8c6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tle-footer-bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tle-default-page {
  min-height: 70vh;
  padding: 150px 0 100px;
  background: var(--tle-paper);
}

.tle-prose {
  max-width: 840px;
}

.tle-prose h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  :root {
    --tle-shell: min(100% - 40px, 940px);
  }

  .tle-primary-nav {
    gap: 20px;
  }

  .tle-hero-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .tle-intro-grid,
  .tle-training-head,
  .tle-field-heading,
  .tle-contact-grid {
    gap: 54px;
  }

  .tle-field-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 42px;
  }

  .tle-about-grid {
    gap: 70px;
  }
}

@media (max-width: 900px) {
  .tle-section {
    padding-block: 100px;
  }

  .tle-menu-toggle {
    z-index: 2;
    display: inline-flex;
  }

  .tle-primary-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    padding: 120px 32px 40px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    color: var(--tle-white);
    background: var(--tle-navy);
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .tle-primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .tle-primary-nav > a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
  }

  .tle-primary-nav > .tle-nav-cta {
    width: auto;
    margin-top: 22px;
    padding: 17px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    font-family: Inter, Aptos, "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 800;
  }

  .tle-hero {
    min-height: 900px;
  }

  .tle-hero-layout {
    padding-top: 170px;
    padding-bottom: 125px;
    align-items: start;
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .tle-hero-card {
    max-width: 520px;
  }

  .tle-intro-grid,
  .tle-training-head,
  .tle-field-heading,
  .tle-about-grid,
  .tle-faq-layout,
  .tle-contact-grid {
    gap: 52px;
    grid-template-columns: 1fr;
  }

  .tle-intro-copy {
    padding-top: 0;
  }

  .tle-capability-card--feature {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 420px 1fr;
  }

  .tle-training-layout {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .tle-training-photo {
    min-height: 520px;
  }

  .tle-field-grid {
    grid-template-columns: 1fr;
  }

  .tle-field-gallery {
    min-height: 640px;
  }

  .tle-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tle-process-steps li:nth-child(even) {
    margin-top: 0;
  }

  .tle-about-image {
    width: calc(100% - 30px);
    min-height: 560px;
  }

  .tle-about-image > span {
    right: -30px;
  }

  .tle-footer-grid {
    grid-template-columns: 1.4fr 0.7fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  :root {
    --tle-shell: calc(100% - 32px);
  }

  body {
    font-size: 16px;
  }

  .tle-section {
    padding-block: 78px;
  }

  .tle-header-inner {
    min-height: 74px;
  }

  .tle-brand-mark,
  .tle-brand-custom-logo img {
    width: 66px;
    height: 42px;
  }

  .tle-brand-copy strong {
    font-size: 14px;
  }

  .tle-hero {
    min-height: 930px;
  }

  .tle-hero-media {
    background-position: 63% center;
  }

  .tle-hero-shade {
    background: linear-gradient(0deg, rgba(2, 18, 29, 0.95), rgba(2, 18, 29, 0.48)), linear-gradient(90deg, rgba(2, 18, 29, 0.82), transparent);
  }

  .tle-hero-layout {
    padding-top: 135px;
    padding-bottom: 132px;
    gap: 36px;
  }

  .tle-hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .tle-hero-lede {
    margin-top: 25px;
    font-size: 17px;
  }

  .tle-button-row {
    margin-top: 30px;
  }

  .tle-button {
    width: 100%;
  }

  .tle-hero-card {
    padding: 23px 22px 12px;
  }

  .tle-hero-bottom .tle-shell {
    gap: 10px;
    font-size: 9px;
  }

  .tle-hero-bottom .tle-shell span:last-child,
  .tle-hero-bottom .tle-shell i:last-of-type {
    display: none;
  }

  .tle-section h2,
  .tle-contact h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .tle-intro-grid {
    gap: 38px;
  }

  .tle-capability-grid {
    margin-top: 64px;
    grid-template-columns: 1fr;
  }

  .tle-capability-card,
  .tle-capability-card--feature {
    min-height: 0;
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 310px 1fr;
  }

  .tle-card-content {
    padding: 30px 25px 36px;
  }

  .tle-training-layout {
    margin-top: 56px;
  }

  .tle-training-photo {
    min-height: 430px;
  }

  .tle-training-photo > div {
    right: 20px;
    bottom: 18px;
    left: 20px;
    flex-direction: column;
    gap: 4px;
  }

  .tle-training-catalog article,
  .tle-field-list article {
    gap: 16px;
    grid-template-columns: 42px 1fr;
  }

  .tle-field-gallery {
    min-height: 520px;
    padding: 0 0 44px;
  }

  .tle-field-gallery-main {
    height: 480px;
  }

  .tle-field-gallery-side {
    width: 142px;
    height: 190px;
  }

  .tle-process-steps {
    margin-top: 58px;
    grid-template-columns: 1fr;
  }

  .tle-process-steps li {
    min-height: 0;
    padding: 28px 24px 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 28, 39, 0.12);
  }

  .tle-process-steps h3 {
    margin-top: 28px;
  }

  .tle-about-image {
    min-height: 440px;
  }

  .tle-about-image > span {
    right: -20px;
    bottom: 24px;
    font-size: 20px;
  }

  .tle-faq-list summary {
    font-size: 20px;
  }

  .tle-contact-direct a {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .tle-contact-form-wrap {
    padding: 27px 20px 32px;
  }

  .tle-form-row {
    grid-template-columns: 1fr;
  }

  .tle-footer-grid {
    grid-template-columns: 1fr;
  }

  .tle-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
