/* ============================================================
   TEH LOGISTICS — SHARED STYLESHEET
   The Eleventh Hour Logistics, Inc.  |  thexithhour.com

   TABLE OF CONTENTS
   ─────────────────────────────────────────────────────────
   1.  BRAND TOKENS
   2.  RESET & BASE
   3.  TYPOGRAPHY SCALE
   4.  NAVIGATION
   5.  MOBILE MENU
   6.  BUTTONS
   7.  SECTION UTILITIES
   8.  IMAGE & ICON PLACEHOLDERS
   9.  FOOTER
   10. SCROLL REVEAL
   11. RESPONSIVE

   NAMING CONVENTION
   ─────────────────────────────────────────────────────────
   Shared (this file)  →  .nav-*, .mob-*, .teh-btn, .teh-footer-*
   Page-specific       →  two-letter prefix in each page <style>
     Homepage          →  .hp-*
     Hub               →  .hb-*
     Quote             →  .qt-*
     Services          →  .sv-*
     Carriers          →  .cr-*
     Agents            →  .ag-*
     About             →  .ab-*
     Contact           →  .ct-*
     Waitlist          →  .wl-*
     Privacy Policy    →  .pv-*

   FOR APPSCRIP DEVELOPERS
   ─────────────────────────────────────────────────────────
   Portal hooks  →  window.TEH.portal.*  in shared.js
   SSO targets   →  data-portal attributes on anchor tags
   Brand tokens  →  :root block below — do not override
   Image swaps   →  replace .teh-ph div with <img class="teh-img">
   ============================================================ */


/* ─────────────────────────────────────────────────────────
   1. BRAND TOKENS
   ───────────────────────────────────────────────────────── */
:root {
  /* Official TEH Brand Colors — Brand Identity PDF */
  --teh-navy:   #000000;
  --teh-amber:  #F5A623;
  --teh-cream:  #F3EFE6;

  /* UI-only derivations (not in brand guide) */
  --teh-navy-card:     #111111;
  --teh-amber-hover:   #d48a1d;
  --teh-amber-subtle:  rgba(245,166,35,0.10);
  --teh-border-dark:   rgba(243,239,230,0.10);
  --teh-border-light:  rgba(0, 0, 0,0.12);
  --teh-text-on-dark:  #F3EFE6;
  --teh-text-muted:    rgba(243,239,230,0.60);
  --teh-text-on-light: #000000;

  /* Brand Typefaces — Brand Identity PDF pp.16–17 */
  --teh-font-head: 'Barlow Condensed', sans-serif;
  --teh-font-body: 'Inter', sans-serif;

  /* Spacing — 8px grid */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  48px;
  --sp-xl:  80px;
  --sp-2xl: 120px;

  /* Layout */
  --teh-max-w:    1280px;
  --teh-gutter:   48px;
  --teh-gutter-m: 32px;
  --teh-gutter-s: 20px;
  --teh-nav-h:    72px;

  /* Motion */
  --ease:     cubic-bezier(0.25, 0, 0, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur:      0.35s;
}

.loader {
  position: fixed;
  inset: 0;
  background-color: var(--teh-navy); /* Brand Navy Black */
  z-index: 10000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease-in-out, visibility 0.6s;
  font-family: var(--teh-font-head), cursive;
  letter-spacing: 2px;
}

/* Sizing structure for your video animation */
.loader__video {
  width: 100%;
  max-width: 500px; /* Scales the branded clock comfortably */
  height: auto;
  margin-bottom: 24px;
  border-radius: 100%;
}

.loader--hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ─────────────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--teh-font-body);
  font-weight: 400;
  line-height: 1.6;
  background: var(--teh-navy);
  color: var(--teh-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
a               { text-decoration: none; color: inherit; }
ul, ol          { list-style: none; }
button          { font-family: inherit; cursor: pointer; border: none; }
address         { font-style: normal; }

::selection { background: var(--teh-amber); color: var(--teh-navy); }

::-webkit-scrollbar        { width: 4px; }
::-webkit-scrollbar-track  { background: var(--teh-navy); }
::-webkit-scrollbar-thumb  { background: var(--teh-amber); border-radius: 2px; }


/* ─────────────────────────────────────────────────────────
   3. TYPOGRAPHY SCALE
   ───────────────────────────────────────────────────────── */
.teh-eyebrow {
  font-family: var(--teh-font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teh-amber);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.teh-eyebrow--line::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  color: var(--teh-amber);
  background: var(--teh-amber);
  flex-shrink: 0;
}

.teh-section-heading {
  font-family: var(--teh-font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.teh-section-sub {
  font-family: var(--teh-font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--teh-text-muted);
  max-width: 560px;
}


/* ─────────────────────────────────────────────────────────
   4. NAVIGATION
   ─────────────────────────────────────────────────────────
   .nav--scrolled  → added by JS after 40px scroll
   .nav-link--active → set by JS based on window.location.pathname
   ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--teh-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--teh-gutter);
  transition: background var(--dur) var(--ease),
              border-color var(--dur),
              backdrop-filter var(--dur);
}

.nav--scrolled {
  background: rgba(0, 0, 0,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--teh-border-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo__img {
  height: 40px;
  width: auto;
}

/*
  LOGO SWAP: when logo file is ready, replace the .nav-logo__text span
  with: <img src="assets/images/logo.svg" alt="TEH Logistics" class="nav-logo__img"/>
*/
.nav-logo__text {
  font-family: var(--teh-font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teh-cream);
  white-space: nowrap;
}

.nav-logo__text em {
  font-style: normal;
  color: var(--teh-amber);
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-family: var(--teh-font-head);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teh-text-muted);
  padding: 6px 12px;
  position: relative;
  transition: color var(--dur);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 1px;
  background: var(--teh-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-link:hover,
.nav-link--active {
  color: var(--teh-cream);
}

.nav-link:hover::after,
.nav-link--active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-item--has-dropdown {
  position: relative;
}

.nav-item--has-dropdown > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 1px;
  background: var(--teh-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-item--has-dropdown:hover > .nav-link::after,
.nav-item--has-dropdown:focus-within > .nav-link::after {
  transform: scaleX(1);
}

.nav-item--has-dropdown > .nav-link:hover {
  color: var(--teh-cream);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--teh-navy);
  border: 1px solid rgba(243, 239, 230, 0.10);
  border-top: 2px solid var(--teh-amber);
  min-width: 210px;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}

.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__link {
  display: block;
  padding: 10px 18px;
  font-family: var(--teh-font-head);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teh-text-muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-dropdown__link:hover {
  color: var(--teh-cream);
  background: rgba(245, 166, 35, 0.06);
}

/* Mobile sub-links */
.mob-link--sub {
  padding-left: 32px;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(243, 239, 230, 0.55);
}

.mob-link--sub::before {
  content: '–';
  margin-right: 8px;
  color: var(--teh-amber);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-hamburger__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--teh-cream);
  border-radius: 1px;
  transition: all 0.3s var(--ease);
}

.nav-hamburger.is-open .nav-hamburger__bar:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.nav-hamburger.is-open .nav-hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}
.nav-hamburger.is-open .nav-hamburger__bar:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}


/* ─────────────────────────────────────────────────────────
   5. MOBILE MENU
   ─────────────────────────────────────────────────────────
   JS toggles .is-open on .mob-menu and .nav-hamburger
   ───────────────────────────────────────────────────────── */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--teh-nav-h);
  background: rgba(0, 0, 0,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  padding: 40px var(--teh-gutter-s);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.mob-menu.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mob-link {
  font-family: var(--teh-font-head);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teh-text-muted);
  padding: 16px 0;
  border-bottom: 1px solid var(--teh-border-dark);
  display: block;
  transition: color 0.2s, padding-left 0.2s;
}

.mob-link:hover,
.mob-link--active {
  color: var(--teh-amber);
  padding-left: 8px;
}

.mob-menu__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}


/* ─────────────────────────────────────────────────────────
   6. BUTTONS
   ─────────────────────────────────────────────────────────
   Always use .teh-btn + variant. Never raw <button> for CTAs.
   ───────────────────────────────────────────────────────── */
.teh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--teh-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

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

.teh-btn--primary {
  background: var(--teh-amber);
  color: #1a1205;
  border-color: var(--teh-amber);
  font-weight: 600;
}

.teh-btn--primary:hover {
  background: var(--teh-amber-hover);
  border-color: var(--teh-amber-hover);
  color: #1a1205;
  box-shadow: 0 8px 24px rgba(245,166,35,0.28);
}

.teh-btn--secondary {
  background: transparent;
  color: var(--teh-amber);
  border-color: rgba(245,166,35,0.40);
}

.teh-btn--secondary:hover {
  background: var(--teh-amber);
  color: var(--teh-navy);
  border-color: var(--teh-amber);
}

.teh-btn--ghost {
  background: transparent;
  color: var(--teh-cream);
  border-color: rgba(243,239,230,0.35);
}

.teh-btn--ghost:hover {
  background: rgba(243,239,230,0.08);
  border-color: var(--teh-cream);
}

/* ─────────────────────────────────────────────────────────
   PARTNER PATH DETAIL  (shippers / carriers / energy-water / ventures)
   Reusable content blocks for the Partners path sub-pages.
   ───────────────────────────────────────────────────────── */
.pp-detail {
  background: var(--teh-navy);
  padding: var(--sp-2xl) var(--teh-gutter);
}
.pp-detail__inner { max-width: var(--teh-max-w); margin: 0 auto; }
.pp-detail__lead {
  font-family: var(--teh-font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--teh-text-on-dark);
  max-width: 800px;
  margin-bottom: var(--sp-md);
}
.pp-block { margin-bottom: var(--sp-xl); }
.pp-block:last-child { margin-bottom: 0; }
.pp-block__title {
  font-family: var(--teh-font-head);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teh-cream);
  line-height: 1.1;
  margin-bottom: var(--sp-md);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--teh-border-dark);
}
.pp-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px 48px;
}
.pp-list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--teh-font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--teh-text-muted);
}
.pp-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  background: var(--teh-amber);
  border-radius: 50%;
}
.pp-list strong { color: var(--teh-cream); font-weight: 600; }
.pp-table-wrap { overflow-x: auto; }
.pp-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.pp-table th {
  text-align: left;
  font-family: var(--teh-font-head);
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teh-amber);
  padding: 0 20px 14px 0;
  border-bottom: 1px solid var(--teh-border-dark);
}
.pp-table td {
  padding: 16px 20px 16px 0;
  vertical-align: top;
  font-family: var(--teh-font-body);
  font-size: 14px; line-height: 1.6;
  color: var(--teh-text-muted);
  border-bottom: 1px solid var(--teh-border-dark);
}
.pp-table td:first-child { color: var(--teh-cream); font-weight: 600; }


/* ─────────────────────────────────────────────────────────
   7. SECTION UTILITIES
   ───────────────────────────────────────────────────────── */
.teh-section {
  width: 100%;
  padding: var(--sp-2xl) var(--teh-gutter);
}

.teh-section__inner {
  max-width: var(--teh-max-w);
  margin: 0 auto;
}

.teh-section__header { margin-bottom: var(--sp-xl); }
.teh-section__header--center { text-align: center; }
.teh-section__header--center .teh-eyebrow { justify-content: center; }


/* ─────────────────────────────────────────────────────────
   8. IMAGE & ICON PLACEHOLDERS
   ─────────────────────────────────────────────────────────
   HOW TO SWAP AN IMAGE:
   1. Add your file to assets/images/
   2. Replace the entire .teh-ph div with:
        <img src="assets/images/filename.jpg"
             alt="Descriptive text"
             class="teh-img"
             loading="lazy"/>
   3. The .teh-img class handles sizing automatically.

   HOW TO SWAP A CERTIFICATION LOGO:
   Replace the .teh-cert-logo span content with:
        <img src="assets/images/logo-iata.svg" alt="IATA" class="teh-cert-logo__img"/>
   ───────────────────────────────────────────────────────── */

/* Applied to real <img> tags when swapping */
.teh-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Base placeholder */
.teh-ph {
  background: var(--teh-navy-card);
  border: 1px dashed rgba(245,166,35,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(245,166,35,0.50);
  font-family: var(--teh-font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  width: 100%;
  height: 100%;
}


/* Aspect ratio variants — parent must have position:relative or defined height */
.teh-ph--hero     { min-height: 100vh; }
.teh-ph--video    { aspect-ratio: 16/9; }
.teh-ph--landscape{ aspect-ratio: 3/2; }
.teh-ph--square   { aspect-ratio: 1/1; }
.teh-ph--card     { min-height: 320px; }
.teh-ph--section  { min-height: 480px; }
.teh-ph--portrait { aspect-ratio: 3/4; }

/* Certification logos */
.teh-cert-logos {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 48px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.teh-cert-logos .make-white {
  filter: brightness(0) invert(1);
}

.teh-cert-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.teh-cert-logo:hover {
  border-color: rgba(245,166,35,0.35);
  color: var(--teh-cream);
}

.teh-cert-logo--light:hover {
  border-color: var(--teh-amber);
  color: var(--teh-navy);
}

.teh-cert-logo__img {
  height: auto;
  width: 100px;
  transition: all 0.3s ease;
}

/* Social icons */
.teh-social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--teh-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--teh-font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--teh-text-muted);
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.teh-social-icon svg {
  width: 20px;
  height: 100%;
  filter: brightness(0) invert(1);
}

.teh-social-icon:hover {
  border-color: var(--teh-amber);
  color: var(--teh-amber);
  background: rgba(245,166,35,0.08);
}


/* ─────────────────────────────────────────────────────────
   9. FOOTER
   ─────────────────────────────────────────────────────────
   Shared across all pages. Only update link hrefs per page.
   Do not add page-specific styles here.
   ───────────────────────────────────────────────────────── */
.teh-footer {
  background: black;
  color: var(--teh-cream);
  padding: var(--sp-xl) var(--teh-gutter) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--teh-border-dark);
}

.teh-footer__inner {
  max-width: var(--teh-max-w);
  margin: 0 auto;
}

.teh-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 1.1fr 0.9fr;
  gap: 48px;
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--teh-border-dark);
}

.teh-footer__col-label {
  font-family: var(--teh-font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teh-amber);
  margin-bottom: 18px;
  display: block;
}

.teh-footer__cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: var(--sp-lg);
  flex-wrap: wrap;
}

.teh-footer__request {
  font-family: var(--teh-font-head);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teh-cream);
  line-height: 1;
}

.teh-footer__request-link {
  font-family: var(--teh-font-head);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teh-cream);
  line-height: 1.2;
  transition: color 0.2s;
}

.teh-footer__request-link:hover {
  color: var(--teh-amber);
}

.teh-footer__divider {
  font-size: 20px;
  opacity: 0.2;
}

.teh-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* Address */
.teh-footer__address-hq {
  font-family: var(--teh-font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teh-amber);
  margin-bottom: 4px;
  display: block;
}

.teh-footer__address p {
  font-family: var(--teh-font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teh-text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Nav links */
.teh-footer__nav-link {
  display: block;
  font-family: var(--teh-font-head);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--teh-text-muted);
  padding: 5px 0;
  transition: color 0.2s, padding-left 0.2s;
}

.teh-footer__nav-link:hover {
  color: var(--teh-amber);
  padding-left: 4px;
}

/* Bottom bar */
.teh-footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.teh-footer__legal {
  font-family: var(--teh-font-head);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teh-text-muted);
  opacity: 0.6;
}

.teh-footer__watermark {
  font-family: var(--teh-font-head);
  font-size: 11vw;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teh-cream);
  opacity: 0.07;
  text-align: center;
  line-height: 1;
  padding: 16px 0 8px 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  overflow: visible;
}


/* ─────────────────────────────────────────────────────────
   10. SCROLL REVEAL
   ─────────────────────────────────────────────────────────
   Add .teh-reveal to any element.
   JS IntersectionObserver adds .teh-reveal--visible.
   Delay variants for staggered animations.
   ───────────────────────────────────────────────────────── */
.teh-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.teh-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.teh-reveal--delay-1 { transition-delay: 0.08s; }
.teh-reveal--delay-2 { transition-delay: 0.16s; }
.teh-reveal--delay-3 { transition-delay: 0.24s; }
.teh-reveal--delay-4 { transition-delay: 0.32s; }


/* ─────────────────────────────────────────────────────────
   11. RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --teh-gutter: var(--teh-gutter-m); }
  .teh-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links    { display: none; }
  .nav-hamburger{ display: flex; }
  .mob-menu     { display: flex; }
}

@media (max-width: 600px) {
  :root {
    --teh-gutter:  var(--teh-gutter-s);
    --sp-2xl: 80px;
    --sp-xl:  52px;
  }
  .nav { padding: 0 var(--teh-gutter-s); }
  .teh-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .teh-footer__cta-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .teh-btn { padding: 12px 24px; font-size: 12px; }
  .teh-cert-logos { gap: 8px; }
  .teh-cert-logo { font-size: 9px; padding: 8px 12px; }
}
