/*
Theme Name: Language Hub Child
Theme URI: https://thelanguagehub.com
Description: Custom child theme for The Language Hub — an online English school based in Cape Town. Built on Astra.
Author: The Language Hub
Author URI: https://thelanguagehub.com
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: language-hub-child
*/

/* =========================================================
   THE LANGUAGE HUB — CHILD THEME STYLES
   All custom rules are namespaced under .tlh- for portability.
   Do NOT modify TutorLMS plugin templates here — keep .tutor-*
   classes untouched so plugin updates don't break.
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  --tlh-cream:        #FAF5EE;
  --tlh-cream-soft:   #F2EADD;
  --tlh-tan:          #C49A6C;
  --tlh-orange:       #E8522A;
  --tlh-orange-deep:  #C13F1F;
  --tlh-gold:         #C49A2B;
  --tlh-gold-soft:    #E4C870;
  --tlh-sage:         #8A9E7A;
  --tlh-sage-soft:    #B8C6AA;
  --tlh-lavender:     #D4A5C9;
  --tlh-ink:          #2D2D2D;
  --tlh-ink-deep:     #1A1A1A;
  --tlh-white:        #FFFFFF;
  --tlh-line:         #E2D5BD;

  --tlh-font-head: 'Playfair Display', Georgia, serif;
  --tlh-font-body: 'DM Sans', system-ui, sans-serif;
  --tlh-font-script: 'Cormorant Garamond', Georgia, serif;

  --tlh-radius:    18px;
  --tlh-radius-lg: 28px;
  --tlh-shadow:    0 1px 2px rgba(0,0,0,.04), 0 12px 32px -14px rgba(0,0,0,.18);
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: var(--tlh-cream);
  border-radius: 4px;
  box-shadow: 0 0 2px 2px rgba(0,0,0,.4);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: var(--tlh-orange);
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 8px;
  line-height: normal;
  padding: 12px 20px;
  text-decoration: none;
  top: 8px;
  width: auto;
  z-index: 100000;
}

/* =========================================================
   SITE HEADER / NAVIGATION
   ========================================================= */
.tlh-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 245, 238, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--tlh-line);
}
.tlh-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  position: relative;
}
.tlh-site-header__logo {
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
}
.tlh-site-header__logo img {
  height: 44px;
  width: auto;
  display: block;
}
.tlh-primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.tlh-nav__list {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tlh-nav__list li a {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--tlh-ink);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  font-family: var(--tlh-font-body);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.tlh-nav__list li a:hover,
.tlh-nav__list li.current-menu-item > a,
.tlh-nav__list li.current-page-ancestor > a {
  background: var(--tlh-cream-soft);
  color: var(--tlh-orange);
}
.tlh-header-cta {
  flex-shrink: 0;
  font-size: 14px;
  padding: 10px 20px;
}
/* Hamburger toggle — hidden on desktop */
.tlh-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  z-index: 10;
}
.tlh-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tlh-ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.tlh-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tlh-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.tlh-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* WordPress admin bar offset */
.admin-bar .tlh-site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .tlh-site-header { top: 46px; }
}

/* Mobile nav */
@media (max-width: 900px) {
  .tlh-menu-toggle { display: flex; }
  .tlh-primary-nav {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: -28px;
    right: -28px;
    background: var(--tlh-cream);
    border: 1px solid var(--tlh-line);
    border-radius: var(--tlh-radius);
    padding: 16px 20px;
    box-shadow: 0 12px 32px -8px rgba(0,0,0,.14);
  }
  .tlh-primary-nav.is-open { display: block; }
  .tlh-nav__list { flex-direction: column; gap: 2px; }
  .tlh-nav__list li a { padding: 10px 14px; }
  .tlh-header-cta { display: none; }
}

/* ---------- BASE OVERRIDES ---------- */
body.tlh-body {
  background: var(--tlh-cream);
  color: var(--tlh-ink);
  font-family: var(--tlh-font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.tlh-body h1, .tlh-body h2, .tlh-body h3, .tlh-body h4 {
  font-family: var(--tlh-font-head);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.tlh-body em, .tlh-script { font-family: var(--tlh-font-script); font-style: italic; }

.tlh- *, .tlh-body * { box-sizing: border-box; }
.tlh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- BUTTONS ---------- */
.tlh-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--tlh-font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.tlh-btn--primary { background: var(--tlh-orange); color: #fff; }
.tlh-btn--primary:hover { background: var(--tlh-orange-deep); color: #fff; transform: translateY(-1px); }
.tlh-btn--outline { background: transparent; color: var(--tlh-ink); border: 1.5px solid var(--tlh-ink); }
.tlh-btn--outline:hover { background: var(--tlh-ink); color: var(--tlh-cream); }
.tlh-btn--ink { background: var(--tlh-ink); color: var(--tlh-cream); }
.tlh-btn--ink:hover { background: var(--tlh-ink-deep); color: #fff; }
.tlh-btn--whatsapp { background: #25D366; color: #fff; border: none; gap: 10px; }
.tlh-btn--whatsapp:hover { background: #1da851; color: #fff; transform: translateY(-1px); }
.tlh-footer__whatsapp { color: #25D366 !important; }
.tlh-footer__whatsapp:hover { color: #1da851 !important; }
.tlh-btn .arr { width: 16px; height: 16px; transition: transform .18s; }
.tlh-btn:hover .arr { transform: translateX(3px); }

/* ---------- EYEBROW ---------- */
.tlh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tlh-orange);
}
.tlh-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
}
/* Centred variant — used on page heroes where the heading is centred */
.tlh-eyebrow--centered {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

/* ---------- SECTION SCAFFOLD ---------- */
.tlh-section { padding: 100px 0; position: relative; overflow: hidden; }
.tlh-section--cream    { background: var(--tlh-cream); }
.tlh-section--sage     { background: var(--tlh-sage); color: #fff; }
.tlh-section--sage h2, .tlh-section--sage h3 { color: #fff; }
.tlh-section--sage .tlh-eyebrow { color: var(--tlh-gold-soft); }
.tlh-section--tan      { background: var(--tlh-tan); color: #fff; }
.tlh-section--tan h2, .tlh-section--tan h3 { color: #fff; }
.tlh-section--tan .tlh-eyebrow { color: var(--tlh-cream); }
.tlh-section--ink      { background: var(--tlh-ink); color: var(--tlh-cream); }
.tlh-section--ink h2, .tlh-section--ink h3 { color: #fff; }

.tlh-section__head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.tlh-section__head h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 16px 0 12px;
}
.tlh-section__head h2 em { color: var(--tlh-orange); }
.tlh-section--sage .tlh-section__head h2 em,
.tlh-section--tan .tlh-section__head h2 em { color: var(--tlh-gold-soft); }
.tlh-section__head p { font-size: 17.5px; color: inherit; opacity: 0.88; }

@media (max-width: 880px) {
  .tlh-section { padding: 64px 0; }
  .tlh-section__head { margin-bottom: 36px; }
}

/* =========================================================
   HOME — HERO
   ========================================================= */
.tlh-home-hero {
  background: var(--tlh-cream);
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
}
.tlh-home-hero__logo img {
  height: 120px;
  width: auto;
  margin: 0 auto 32px;
  display: block;
}
.tlh-home-hero__tag {
  font-size: clamp(44px, 6vw, 76px);
  font-family: var(--tlh-font-head);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin: 0 auto 32px;
  color: var(--tlh-ink);
}
.tlh-home-hero__tag em {
  font-family: var(--tlh-font-script);
  font-style: italic;
  color: var(--tlh-orange);
}
.tlh-home-hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.tlh-home-hero__decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 90vw);
  aspect-ratio: 1;
  border: 1px solid var(--tlh-line);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.tlh-home-hero__decor::before, .tlh-home-hero__decor::after {
  content: ""; position: absolute; inset: 8%;
  border: 1px solid var(--tlh-line);
  border-radius: 50%;
}
.tlh-home-hero__decor::after { inset: 18%; }
.tlh-home-hero > .tlh-container { position: relative; z-index: 1; }

/* =========================================================
   HOME — BOOST YOUR SKILLS (3-card grid on sage)
   ========================================================= */
.tlh-boost {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tlh-boost__card {
  border-radius: var(--tlh-radius);
  padding: 36px 30px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tlh-boost__card:hover { transform: translateY(-4px); box-shadow: var(--tlh-shadow); }
.tlh-boost__card--orange   { background: var(--tlh-orange); color: #fff; }
.tlh-boost__card--lavender { background: var(--tlh-lavender); color: var(--tlh-ink); }
.tlh-boost__card--gold     { background: var(--tlh-gold); color: #fff; }
.tlh-boost__num {
  font-family: var(--tlh-font-script);
  font-style: italic;
  font-size: 22px;
  opacity: 0.85;
}
.tlh-boost__card h3 {
  font-size: 30px;
  letter-spacing: -0.01em;
  margin: 0;
  color: inherit;
}
.tlh-boost__card p { font-size: 15.5px; line-height: 1.55; opacity: 0.95; }
.tlh-boost__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.22);
  display: grid; place-items: center;
  color: inherit;
  margin-bottom: auto;
}
.tlh-boost__card--lavender .tlh-boost__icon { background: rgba(255,255,255,0.55); }
@media (max-width: 880px) { .tlh-boost { grid-template-columns: 1fr; } }

/* =========================================================
   HOME — PLATFORMS
   ========================================================= */
.tlh-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tlh-platform {
  background: #fff;
  border: 1px solid var(--tlh-line);
  border-radius: var(--tlh-radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tlh-platform:hover { transform: translateY(-4px); box-shadow: var(--tlh-shadow); }
.tlh-platform__logo {
  height: 56px;
  display: flex;
  align-items: center;
}
.tlh-platform__logo img { max-height: 100%; width: auto; }
.tlh-platform h3 { font-size: 28px; margin: 0; color: var(--tlh-ink); }
.tlh-platform p  { font-size: 15.5px; color: var(--tlh-ink); opacity: 0.85; }
.tlh-platform__chip {
  align-self: flex-start;
  background: var(--tlh-cream-soft);
  color: var(--tlh-orange);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 880px) { .tlh-platforms { grid-template-columns: 1fr; } }

/* =========================================================
   HOME — TESTIMONIALS (tan background, white cards)
   ========================================================= */
.tlh-stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.tlh-story {
  background: #fff;
  border-radius: var(--tlh-radius);
  border: 1px solid rgba(196,154,43,.35);
  padding: 40px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  color: var(--tlh-ink);
  box-shadow: 0 12px 32px -16px rgba(0,0,0,.25);
}
.tlh-story__mark {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--tlh-font-head);
  font-size: 90px;
  line-height: 1;
  color: var(--tlh-gold);
  opacity: 0.35;
  font-style: italic;
}
.tlh-story__avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--tlh-cream-soft);
  border: 3px solid var(--tlh-cream);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  margin-bottom: 4px;
}
.tlh-story__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tlh-story__avatar--initial {
  display: grid; place-items: center;
  font-family: var(--tlh-font-head);
  font-size: 30px;
  color: var(--tlh-orange);
  background: var(--tlh-cream-soft);
}
.tlh-story__quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--tlh-ink);
  flex: 1;
}
.tlh-story__name { font-weight: 700; font-size: 16px; color: var(--tlh-ink); }
.tlh-story__loc  { font-size: 13px; color: #777; margin-top: 2px; }
.tlh-story__stars {
  display: flex; gap: 4px;
  color: var(--tlh-gold);
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
@media (max-width: 880px) { .tlh-stories { grid-template-columns: 1fr; } }

/* =========================================================
   HOME — TESTIMONIALS TIMELINE
   Horizontal scrolling carousel that pans with mouse hover.
   Empty space on the right is intentional — drops in cleanly
   when you add more student stories.
   ========================================================= */
.tlh-timeline {
  position: relative;
  margin-top: 24px;
}
.tlh-timeline__head {
  max-width: 520px;
  margin-bottom: 0;
}
.tlh-timeline__head h2 em { color: var(--tlh-gold-soft); }
.tlh-timeline__head p {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-top: 14px;
  font-family: var(--tlh-font-script);
}
/* Standalone rail (unused — kept for backwards compat if referenced) */
.tlh-timeline__rail { display: none; }
.tlh-timeline__viewport {
  position: relative;
  overflow: hidden;
  cursor: grab;
  margin-top: 48px;
}
.tlh-timeline__viewport:active { cursor: grabbing; }
.tlh-timeline__viewport::before {
  /* horizontal dashed rail, anchored to viewport — stays static while cards scroll */
  content: "";
  position: absolute;
  top: 18px;
  left: 0; right: 0;
  border-top: 2px dashed rgba(255,255,255,0.65);
  z-index: 1;
  pointer-events: none;
}
.tlh-timeline__viewport::after {
  /* start dot on the rail, far left */
  content: "";
  position: absolute;
  top: 18px; left: 0;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--tlh-orange);
  box-shadow: 0 0 0 5px rgba(232, 82, 42, 0.22);
  z-index: 3;
}
.tlh-timeline__track {
  display: flex;
  gap: 56px;
  width: max-content;
  padding: 18px 0 24px;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  position: relative;
  z-index: 2;
}
.tlh-tl {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding-top: 76px;
}
.tlh-tl__pin {
  position: absolute;
  top: 0;
  left: 46px;
  width: 12px;
  pointer-events: none;
}
.tlh-tl__pin::before {
  /* dot on the rail */
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--tlh-orange);
  box-shadow: 0 0 0 4px rgba(232, 82, 42, 0.22);
}
.tlh-tl__pin::after {
  /* dashed stem dropping to the avatar */
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 70px;
  border-left: 2px dashed var(--tlh-orange);
  opacity: 1;
}
.tlh-tl__head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.tlh-tl__avatar {
  flex-shrink: 0;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  color: #fff;
  font-family: var(--tlh-font-head);
  font-size: 36px;
}
.tlh-tl__avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.tlh-tl__avatar--blue   { background: #A7C5E8; }
.tlh-tl__avatar--peach  { background: #E8B89C; }
.tlh-tl__avatar--sage   { background: #B8CDA1; }
.tlh-tl__avatar--lavender { background: #D4A5C9; }
.tlh-tl__avatar--lila-pos img { object-position: center 30%; }
.tlh-tl__mark {
  display: block;
  font-family: var(--tlh-font-head);
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  color: var(--tlh-orange);
  margin-bottom: 6px;
}
.tlh-tl__title {
  font-family: var(--tlh-font-head);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  font-weight: 600;
}
.tlh-tl__body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin: 0;
}
.tlh-tl__byline {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.tlh-tl__byline strong { color: #fff; font-weight: 600; }
.tlh-timeline__hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.tlh-timeline__hint svg { width: 28px; height: 14px; }

@media (max-width: 720px) {
  .tlh-tl { flex: 0 0 300px; }
  .tlh-tl__avatar { width: 76px; height: 76px; }
  .tlh-tl__title { font-size: 22px; }
}

/* =========================================================
   HOME — HOW IT WILL IMPACT YOUR LIFE? (before / after)
   ========================================================= */
.tlh-impact {
  display: grid;
  gap: 56px;
}
.tlh-impact__head {
  max-width: 520px;
}
.tlh-impact__head h2 {
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.tlh-impact__head h2 em {
  font-family: var(--tlh-font-script);
  font-style: italic;
  color: var(--tlh-orange);
}
.tlh-impact__head p {
  font-family: var(--tlh-font-script);
  font-style: italic;
  font-size: 19px;
  color: var(--tlh-orange);
  margin: 0;
}
.tlh-impact__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: -32px;
}
.tlh-impact__col-label {
  font-family: var(--tlh-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tlh-sage);
  padding-left: 12px;
}
.tlh-impact__col-label--after { color: var(--tlh-orange); }
.tlh-impact__rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tlh-impact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  cursor: pointer;
}
.tlh-impact__before,
.tlh-impact__after {
  border-radius: var(--tlh-radius);
  padding: 30px 36px;
  min-height: 130px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.tlh-impact__before {
  background: var(--tlh-cream-soft);
  color: var(--tlh-ink);
}
.tlh-impact__after {
  background: var(--tlh-sage-soft);
  color: var(--tlh-ink);
}
.tlh-impact__emoji {
  font-size: 44px;
  line-height: 1;
  flex-shrink: 0;
  display: block;
  filter: saturate(1.05);
}
.tlh-impact__text {
  font-family: var(--tlh-font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--tlh-orange-deep);
  letter-spacing: -0.005em;
}
.tlh-impact__after .tlh-impact__text { color: #3D5536; }

/* default: After is hidden, hover the row to reveal */
.tlh-impact__after .tlh-impact__emoji,
.tlh-impact__after .tlh-impact__text {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .45s cubic-bezier(0.22, 1, 0.36, 1),
              transform .45s cubic-bezier(0.22, 1, 0.36, 1);
}
.tlh-impact__after .tlh-impact__text { transition-delay: .08s; }
.tlh-impact__row:hover .tlh-impact__after,
.tlh-impact__row:focus-within .tlh-impact__after {
  box-shadow: 0 12px 32px -14px rgba(138, 158, 122, 0.55);
}
.tlh-impact__row:hover .tlh-impact__after .tlh-impact__emoji,
.tlh-impact__row:hover .tlh-impact__after .tlh-impact__text,
.tlh-impact__row:focus-within .tlh-impact__after .tlh-impact__emoji,
.tlh-impact__row:focus-within .tlh-impact__after .tlh-impact__text {
  opacity: 1;
  transform: translateX(0);
}
.tlh-impact__row:hover .tlh-impact__before {
  transform: translateX(-4px);
}
.tlh-impact__row:hover .tlh-impact__after {
  transform: translateX(4px);
}
/* faint placeholder pattern in After before hover */
.tlh-impact__after::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.18) 0%, transparent 60%);
  opacity: 1;
  transition: opacity .35s;
}
.tlh-impact__row:hover .tlh-impact__after::before { opacity: 0; }

@media (max-width: 720px) {
  .tlh-impact__cols { display: none; }
  .tlh-impact__row { grid-template-columns: 1fr; gap: 10px; }
  .tlh-impact__before, .tlh-impact__after { padding: 22px 24px; min-height: 100px; }
  .tlh-impact__after .tlh-impact__emoji,
  .tlh-impact__after .tlh-impact__text { opacity: 1; transform: none; }
}

/* =========================================================
   HOME — PRICING / PACKAGES (sage background)
   ========================================================= */
.tlh-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.tlh-price {
  background: #fff;
  color: var(--tlh-ink);
  border-radius: var(--tlh-radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tlh-price:hover { transform: translateY(-4px); box-shadow: var(--tlh-shadow); }
.tlh-price--popular {
  background: var(--tlh-ink);
  color: var(--tlh-cream);
  transform: translateY(-12px);
}
.tlh-price--popular:hover { transform: translateY(-16px); }
.tlh-price__ribbon {
  position: absolute;
  top: 22px; right: -42px;
  width: 160px;
  background: var(--tlh-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  padding: 7px 0;
  transform: rotate(35deg);
  text-transform: uppercase;
}
.tlh-price__count {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tlh-orange);
  font-weight: 700;
}
.tlh-price--popular .tlh-price__count { color: var(--tlh-gold-soft); }
.tlh-price__name {
  font-family: var(--tlh-font-head);
  font-size: 28px;
  letter-spacing: -0.01em;
}
.tlh-price__amount {
  font-family: var(--tlh-font-head);
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex; align-items: flex-start; gap: 4px;
}
.tlh-price__amount sup {
  font-size: 22px;
  margin-top: 8px;
  color: var(--tlh-orange);
}
.tlh-price--popular .tlh-price__amount sup { color: var(--tlh-gold-soft); }
.tlh-price__features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14.5px;
}
.tlh-price__features li {
  display: flex; gap: 10px; align-items: flex-start;
}
.tlh-price__features li::before {
  content: ""; flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--tlh-orange);
  border-radius: 999px;
  margin-top: 8px;
}
.tlh-price--popular .tlh-price__features li::before { background: var(--tlh-gold-soft); }
.tlh-price__cta { margin-top: auto; padding-top: 12px; }
.tlh-price__cta .tlh-btn { width: 100%; justify-content: center; }
.tlh-price--popular .tlh-btn--outline { color: var(--tlh-cream); border-color: var(--tlh-cream); }
.tlh-price--popular .tlh-btn--outline:hover { background: var(--tlh-cream); color: var(--tlh-ink); }
@media (max-width: 880px) {
  .tlh-pricing { grid-template-columns: 1fr; }
  .tlh-price--popular { transform: none; }
  .tlh-price--popular:hover { transform: translateY(-4px); }
}

/* =========================================================
   HOME — SPEAKING HUB (coming soon)
   ========================================================= */
.tlh-speaking {
  background: var(--tlh-cream);
  border: 2px solid var(--tlh-gold);
  border-radius: var(--tlh-radius-lg);
  padding: 60px 56px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.tlh-speaking__chip {
  display: inline-block;
  background: var(--tlh-gold);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tlh-speaking h2 {
  font-size: clamp(36px, 4.6vw, 52px);
  margin: 0 0 12px;
  color: var(--tlh-ink);
}
.tlh-speaking h2 em { color: var(--tlh-orange); font-family: var(--tlh-font-script); font-style: italic; }
.tlh-speaking__sub {
  font-family: var(--tlh-font-script);
  font-style: italic;
  font-size: 22px;
  color: var(--tlh-orange);
  margin-bottom: 14px;
}
.tlh-speaking__desc {
  font-size: 16px;
  color: var(--tlh-ink);
  opacity: 0.85;
  max-width: 56ch;
  margin: 0 auto 30px;
}
.tlh-speaking__form {
  display: flex; gap: 8px;
  background: #fff;
  border: 1px solid var(--tlh-line);
  border-radius: 999px;
  padding: 6px;
  max-width: 460px;
  margin: 0 auto;
}
.tlh-speaking__form input {
  flex: 1; border: 0; background: transparent;
  padding: 12px 18px; font: inherit; color: var(--tlh-ink); outline: none;
}
.tlh-speaking__form input::placeholder { color: #999; }
.tlh-speaking__form button {
  background: var(--tlh-orange); color: #fff;
  border: 0; padding: 10px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px; cursor: pointer;
}
.tlh-speaking__form button:hover { background: var(--tlh-orange-deep); }
@media (max-width: 600px) {
  .tlh-speaking { padding: 40px 24px; }
  .tlh-speaking__form { flex-direction: column; border-radius: 16px; }
  .tlh-speaking__form button { width: 100%; }
}

/* =========================================================
   HOME — FAQ (sage background, accordion)
   ========================================================= */
.tlh-faq { max-width: 820px; margin: 0 auto; }
.tlh-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.22);
}
.tlh-faq__item:first-child { border-top: 1px solid rgba(255,255,255,0.22); }
.tlh-faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  cursor: pointer;
  color: #fff;
  font-family: var(--tlh-font-head);
  font-size: 21px;
  letter-spacing: -0.005em;
  transition: color .15s;
}
.tlh-faq__q:hover { color: var(--tlh-gold-soft); }
.tlh-faq__icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .15s, border-color .15s;
}
.tlh-faq__icon::before, .tlh-faq__icon::after {
  content: ""; position: absolute; background: #fff;
}
.tlh-faq__icon::before { width: 12px; height: 1.5px; }
.tlh-faq__icon::after  { width: 1.5px; height: 12px; transition: opacity .25s; }
.tlh-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  line-height: 1.6;
}
.tlh-faq__item[data-open="true"] .tlh-faq__a {
  max-height: 400px;
  padding: 0 0 24px;
}
.tlh-faq__item[data-open="true"] .tlh-faq__icon {
  background: var(--tlh-gold);
  border-color: var(--tlh-gold);
}
.tlh-faq__item[data-open="true"] .tlh-faq__icon::after { opacity: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.tlh-footer {
  background: var(--tlh-ink-deep);
  color: var(--tlh-cream);
  padding: 72px 0 28px;
}
.tlh-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.tlh-footer__brand img { height: 56px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.tlh-footer__brand p { font-size: 14.5px; color: rgba(255,255,255,.7); max-width: 36ch; }
.tlh-footer__col h4 {
  font-family: var(--tlh-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tlh-gold-soft);
  margin: 0 0 18px;
}
.tlh-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tlh-footer__col a { color: var(--tlh-cream); font-size: 14.5px; text-decoration: none; transition: color .15s; }
.tlh-footer__col a:hover { color: var(--tlh-orange); }
.tlh-footer__social {
  display: flex; gap: 10px; margin-top: 18px;
}
.tlh-footer__social a {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: #fff;
}
.tlh-footer__social a:hover { background: var(--tlh-orange); }
.tlh-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.55);
  flex-wrap: wrap; gap: 12px;
}
@media (max-width: 880px) { .tlh-footer__grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.tlh-about-hero {
  background: var(--tlh-sage);
  color: #fff;
  padding: 100px 0;
}
.tlh-about-hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.tlh-about-hero__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--tlh-radius-lg);
  overflow: hidden;
  background: rgba(0,0,0,.1);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,.3);
  position: relative;
}
.tlh-about-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.tlh-about-hero__eyebrow {
  color: var(--tlh-gold-soft);
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.tlh-about-hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  margin: 16px 0 24px;
  color: #fff;
  line-height: 1.05;
}
.tlh-about-hero h1 em { font-family: var(--tlh-font-script); font-style: italic; color: var(--tlh-gold-soft); }
.tlh-about-hero p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.95);
  margin-bottom: 18px;
  max-width: 58ch;
}
.tlh-about-hero__signature {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--tlh-font-script); font-style: italic;
  font-size: 26px; color: #fff;
}
.tlh-about-hero__signature::before { content: ""; width: 36px; height: 1px; background: var(--tlh-gold-soft); }
.tlh-about-hero__cta { margin-top: 36px; }
@media (max-width: 880px) {
  .tlh-about-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .tlh-about-hero__photo { max-width: 460px; }
}

/* =========================================================
   COURSES (Learning Hub) PAGE
   ========================================================= */
.tlh-courses-hero {
  background: var(--tlh-cream);
  padding: 80px 0 60px;
  text-align: center;
}
.tlh-courses-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 16px;
  color: var(--tlh-ink);
}
.tlh-courses-hero h1 em { color: var(--tlh-orange); font-family: var(--tlh-font-script); font-style: italic; }
.tlh-courses-hero__sub {
  font-family: var(--tlh-font-script);
  font-style: italic;
  font-size: 22px;
  color: var(--tlh-orange);
  margin-bottom: 16px;
}
.tlh-courses-hero p {
  max-width: 60ch; margin: 0 auto;
  color: var(--tlh-ink); opacity: 0.8;
}
.tlh-courses-grid { padding: 40px 0 80px; }
.tlh-courses-coming {
  background: var(--tlh-gold);
  color: #fff;
  border-radius: var(--tlh-radius);
  padding: 56px 40px;
  text-align: center;
  max-width: 720px;
  margin: 32px auto 0;
}
.tlh-courses-coming__icon {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 16px;
}
.tlh-courses-coming h3 {
  font-family: var(--tlh-font-head);
  font-size: 32px;
  color: #fff;
  margin: 0 0 10px;
}
.tlh-courses-no-plugin {
  text-align: center;
  color: #888;
  padding: 24px;
  font-size: 14px;
}
.tlh-courses-coming p { font-size: 16px; color: rgba(255,255,255,.92); margin: 0; }
.tlh-courses-banner {
  background: var(--tlh-cream-soft);
  border-radius: var(--tlh-radius);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 48px auto 0;
  max-width: 980px;
}
.tlh-courses-banner__text { color: var(--tlh-ink); font-size: 15.5px; max-width: 60ch; }
.tlh-courses-banner__text strong { color: var(--tlh-orange); }
@media (max-width: 720px) {
  .tlh-courses-banner { flex-direction: column; text-align: center; padding: 28px 24px; }
}
/* Hide the placeholder card once real TutorLMS courses are published */
.tutor-courses + .tlh-courses-coming,
.tutor-courses-wrap + .tlh-courses-coming,
.tutor-course-list + .tlh-courses-coming,
body:has(.tutor-course) .tlh-courses-coming { display: none; }

/* =========================================================
   BLOG PAGE
   ========================================================= */
.tlh-blog-hero {
  background: var(--tlh-cream);
  padding: 80px 0 50px;
  text-align: center;
}
.tlh-blog-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 12px;
  color: var(--tlh-ink);
}
.tlh-blog-hero h1 em { color: var(--tlh-orange); font-family: var(--tlh-font-script); font-style: italic; }
.tlh-blog-hero__sub {
  font-family: var(--tlh-font-script);
  font-style: italic;
  font-size: 20px;
  color: var(--tlh-orange);
}
.tlh-blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding: 40px 0 100px;
}
.tlh-blog-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.tlh-post-card {
  background: #fff;
  border: 1px solid var(--tlh-line);
  border-radius: var(--tlh-radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tlh-post-card:hover { transform: translateY(-3px); box-shadow: var(--tlh-shadow); }
.tlh-post-card__thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--tlh-cream-soft), var(--tlh-tan));
  overflow: hidden;
}
.tlh-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.tlh-post-card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tlh-post-card__date {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tlh-orange);
  font-weight: 700;
}
.tlh-post-card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  color: var(--tlh-ink);
}
.tlh-post-card p { font-size: 14.5px; color: var(--tlh-ink); opacity: 0.78; line-height: 1.55; }
.tlh-post-card__more {
  margin-top: auto;
  align-self: flex-start;
  color: var(--tlh-orange);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.tlh-sidebar { display: flex; flex-direction: column; gap: 28px; }
.tlh-sidebar__widget {
  background: #fff;
  border: 1px solid var(--tlh-line);
  border-radius: var(--tlh-radius);
  padding: 24px 22px;
}
.tlh-sidebar__widget h4 {
  font-family: var(--tlh-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tlh-orange);
  margin: 0 0 16px;
}
.tlh-sidebar__widget ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.tlh-sidebar__widget a { color: var(--tlh-ink); text-decoration: none; }
.tlh-sidebar__widget a:hover { color: var(--tlh-orange); }
.tlh-sidebar__widget input[type="search"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--tlh-line);
  border-radius: 999px;
  font: inherit;
  background: var(--tlh-cream);
  outline: none;
}
@media (max-width: 880px) {
  .tlh-blog-grid { grid-template-columns: 1fr; }
  .tlh-blog-posts { grid-template-columns: 1fr; }
}

/* =========================================================
   PARTNERSHIPS PAGE
   ========================================================= */
.tlh-partners {
  background: var(--tlh-cream);
  padding: 100px 0;
}
.tlh-partners__head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.tlh-partners__head h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  margin: 16px 0 14px;
  color: var(--tlh-ink);
}
.tlh-partners__head h1 em { color: var(--tlh-orange); font-family: var(--tlh-font-script); font-style: italic; }
.tlh-partners__sub {
  font-family: var(--tlh-font-script);
  font-style: italic;
  font-size: 22px;
  color: var(--tlh-orange);
}
.tlh-partners__divider {
  width: 60px; height: 2px;
  background: var(--tlh-gold);
  margin: 32px auto;
}
.tlh-partners__body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--tlh-ink);
}
.tlh-partners__body p { margin-bottom: 18px; }
.tlh-partners__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0;
  max-width: 980px;
  margin-left: auto; margin-right: auto;
}
.tlh-partners__pillar {
  background: #fff;
  border: 1px solid var(--tlh-line);
  border-radius: var(--tlh-radius);
  padding: 28px 26px;
  text-align: center;
}
.tlh-partners__pillar h4 {
  font-family: var(--tlh-font-head);
  font-size: 22px;
  font-style: italic;
  color: var(--tlh-orange);
  margin: 0 0 8px;
}
.tlh-partners__pillar p { font-size: 14.5px; color: var(--tlh-ink); opacity: 0.8; margin: 0; }
.tlh-partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--tlh-line);
}
.tlh-partners__logos img {
  max-height: 120px;
  max-width: 220px;
  width: auto;
  opacity: 0.9;
}
@media (max-width: 720px) {
  .tlh-partners__pillars { grid-template-columns: 1fr; }
  .tlh-partners__logos { gap: 32px; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.tlh-contact {
  background: var(--tlh-cream);
  padding: 90px 0 100px;
}
.tlh-contact__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.tlh-contact__head h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  margin: 12px 0 14px;
  color: var(--tlh-ink);
}
.tlh-contact__head h1 em { color: var(--tlh-orange); font-family: var(--tlh-font-script); font-style: italic; }
.tlh-contact__head p { color: var(--tlh-ink); opacity: 0.78; font-size: 17.5px; }
.tlh-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.tlh-contact__details {
  background: #fff;
  border: 1px solid var(--tlh-line);
  border-radius: var(--tlh-radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.tlh-contact__detail {
  display: flex; gap: 14px; align-items: flex-start;
}
.tlh-contact__detail .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--tlh-cream-soft);
  color: var(--tlh-orange);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.tlh-contact__detail h4 {
  font-family: var(--tlh-font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tlh-orange);
  margin: 0 0 4px;
  font-weight: 700;
}
.tlh-contact__detail a, .tlh-contact__detail span { color: var(--tlh-ink); font-size: 15.5px; text-decoration: none; }
.tlh-contact__detail a:hover { color: var(--tlh-orange); }
.tlh-contact__social {
  display: flex; gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--tlh-line);
}
.tlh-contact__social a {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--tlh-cream);
  display: grid; place-items: center;
  color: var(--tlh-ink);
  border: 1px solid var(--tlh-line);
}
.tlh-contact__social a:hover { background: var(--tlh-orange); color: #fff; border-color: var(--tlh-orange); }
/* Wrapper for WPForms output — gives it the same card treatment as the fallback form */
.tlh-contact__form-wrap {
  background: #fff;
  border: 1px solid var(--tlh-line);
  border-radius: var(--tlh-radius);
  padding: 36px 32px;
}
.tlh-contact__form {
  background: #fff;
  border: 1px solid var(--tlh-line);
  border-radius: var(--tlh-radius);
  padding: 36px 32px;
}
.tlh-contact__form-row {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px;
}
.tlh-contact__form-row label {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--tlh-orange); font-weight: 700;
}
.tlh-contact__form-row input,
.tlh-contact__form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--tlh-line);
  border-radius: 10px;
  font: inherit;
  color: var(--tlh-ink);
  background: var(--tlh-cream);
  outline: none;
  transition: border-color .15s, background .15s;
}
.tlh-contact__form-row input:focus,
.tlh-contact__form-row textarea:focus {
  border-color: var(--tlh-orange);
  background: #fff;
}
.tlh-contact__form-row textarea { min-height: 120px; resize: vertical; }
.tlh-contact__map {
  margin-top: 48px;
  border-radius: var(--tlh-radius);
  overflow: hidden;
  border: 1px solid var(--tlh-line);
  aspect-ratio: 21 / 9;
}
.tlh-contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 880px) {
  .tlh-contact__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PLACEHOLDER LOGOS (used inside platform / partner cards)
   ========================================================= */
.tlh-logo-ph {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--tlh-font-head);
  font-style: italic;
  font-size: 22px;
  color: var(--tlh-ink);
  letter-spacing: -0.005em;
}
.tlh-logo-ph__mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--tlh-font-body);
  font-weight: 700;
  font-size: 14px;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.tlh-mt-0  { margin-top: 0 !important; }
.tlh-mt-8  { margin-top: 8px; }
.tlh-mt-16 { margin-top: 16px; }
.tlh-mt-24 { margin-top: 24px; }
.tlh-text-center { text-align: center; }
