/*
Theme Name:   Together BM Child
Theme URI:    https://togetherbm.com
Description:  Child theme for Together Branding + Marketing — built on Hello Elementor.
              All design tokens, global typography, sticky nav, animations, and
              component styles for the full 8-page site.
Author:       Together Branding + Marketing
Author URI:   https://togetherbm.com
Template:     hello-elementor
Version:      1.0.0
Text Domain:  together-bm-child
*/

/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */
:root {
  --emerald:       #276567;
  --sage:          #88a988;
  --sage-display:  #8BBD8B;
  --linen:         #faf6e3;
  --dark:          #1a2e2e;
  --dark-alt:      #1e4a4c;
  --mid:           #3d5a5b;
  --la:            rgba(250,246,227,0.82);
  --ld:            rgba(250,246,227,0.5);
  --ease:          cubic-bezier(0.22,1,0.36,1);
}

/* =========================================================
   2. GLOBAL RESET + BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--linen);
  color: var(--dark);
  margin: 0;
  padding: 0;
}

.entry-title,
.page-title,
.elementor-page-title { display: none !important; }
.elementor-section-wrap { padding-top: 0 !important; }

/* =========================================================
   3. TYPOGRAPHY DEFAULTS
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-variant-ligatures: none;
  margin: 0;
}

p { margin: 0; }
a { text-decoration: none; }

/* =========================================================
   4. ANIMATION SYSTEMS
   ========================================================= */
@keyframes tbm-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.a { opacity: 0; }
.a.n1 { animation: tbm-up 0.9s var(--ease) 0.15s forwards; }
.a.n2 { animation: tbm-up 0.9s var(--ease) 0.32s forwards; }
.a.n3 { animation: tbm-up 0.9s var(--ease) 0.50s forwards; }
.a.n4 { animation: tbm-up 0.9s var(--ease) 0.68s forwards; }
.a.n5 { animation: tbm-up 0.9s var(--ease) 0.86s forwards; }

.r {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.r.d1 { transition-delay: 0.10s; }
.r.d2 { transition-delay: 0.22s; }
.r.d3 { transition-delay: 0.34s; }
.r.d4 { transition-delay: 0.46s; }
.r.d5 { transition-delay: 0.58s; }
.r.on { opacity: 1; transform: translateY(0); }

@keyframes tbm-slide-right {
  from { opacity: 0; transform: translateX(90px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* =========================================================
   5. STICKY NAVIGATION
   ========================================================= */
.tbm-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 24px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.tbm-nav.scrolled {
  padding: 16px 64px;
  background: rgba(250,246,227,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(39,101,103,0.1);
}

.logo-variant         { display: flex; flex-direction: column; }
.logo-variant.ko      { display: flex; }
.logo-variant.color   { display: none; }

.tbm-nav.scrolled .logo-variant.ko    { display: none; }
.tbm-nav.scrolled .logo-variant.color { display: flex; }

.tbm-nav-items {
  display: flex;
  align-items: center;
  gap: 34px;
}

.tbm-nav-link {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,227,0.78);
  text-decoration: none;
  transition: color 0.3s;
}
.tbm-nav-link:hover             { color: var(--linen); }
.tbm-nav.scrolled .tbm-nav-link { color: var(--mid); }
.tbm-nav.scrolled .tbm-nav-link:hover { color: var(--emerald); }
.tbm-nav-link.active            { color: var(--linen); }
.tbm-nav.scrolled .tbm-nav-link.active { color: var(--emerald); font-weight: 800; }

.tbm-nav-btn {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--linen);
  border: 1.5px solid rgba(250,246,227,0.45);
  padding: 9px 22px;
  text-decoration: none;
  transition: all 0.3s;
}
.tbm-nav-btn:hover { border-color: var(--linen); background: rgba(250,246,227,0.08); }
.tbm-nav.scrolled .tbm-nav-btn       { color: var(--emerald); border-color: var(--emerald); background: transparent; }
.tbm-nav.scrolled .tbm-nav-btn:hover { background: var(--emerald); color: var(--linen); }

.tbm-nav-dropdown { position: relative; display: flex; align-items: center; }
.tbm-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--linen);
  border: 1px solid rgba(39,101,103,0.15);
  box-shadow: 0 8px 24px rgba(26,46,46,0.12);
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
}
.tbm-nav-dropdown:hover .tbm-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.tbm-nav-dropdown-item {
  display: block;
  padding: 13px 20px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  border-bottom: 1px solid rgba(39,101,103,0.07);
}
.tbm-nav-dropdown-item:last-child { border-bottom: none; }
.tbm-nav-dropdown-item:hover      { color: var(--emerald); background: rgba(39,101,103,0.04); }

/* =========================================================
   6. SHARED SECTION UTILITIES
   ========================================================= */
.tbm-sec       { padding: 120px 64px; }
.tbm-sec-inner { max-width: 1200px; margin: 0 auto; }

.tbm-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tbm-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--sage);
  flex-shrink: 0;
}
.tbm-eyebrow.inv { color: var(--la); }

.tbm-hl {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--emerald);
  margin-bottom: 22px;
  max-width: 680px;
  font-variant-ligatures: none;
}
.tbm-hl.light { color: var(--linen); }

.tbm-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.76;
  color: var(--mid);
  max-width: 580px;
  margin-bottom: 60px;
}
.tbm-sub.light { color: var(--la); }

/* =========================================================
   7. HERO SECTION
   ========================================================= */
.tbm-hero {
  background: var(--emerald);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 64px 100px;
  position: relative;
  overflow: hidden;
}
.tbm-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -100px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136,169,136,0.13) 0%, transparent 68%);
  pointer-events: none;
}
.tbm-hero::after {
  content: '';
  position: absolute;
  left: 20%; bottom: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136,169,136,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.tbm-hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tbm-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--la);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tbm-hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}

.tbm-hero-hl {
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 750;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  max-width: 900px;
  font-variant-ligatures: none;
}
.tbm-hero-hl .l1 {
  display: block;
  color: var(--linen);
  margin-bottom: 14px;
}
.tbm-hero-hl .l2 {
  display: block;
  color: var(--sage);
  font-size: clamp(32px, 4.8vw, 62px);
  letter-spacing: -0.01em;
  font-weight: 600;
  -webkit-text-stroke: 1.5px rgba(250,246,227,0.5);
  paint-order: stroke fill;
}

.tbm-hero-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.78;
  color: var(--la);
  max-width: 510px;
  margin-bottom: 42px;
}

.tbm-hero-cta {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--linen);
  border: 1.5px solid rgba(250,246,227,0.5);
  padding: 14px 34px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 80px;
}
.tbm-hero-cta:hover { border-color: var(--linen); background: rgba(250,246,227,0.08); color: var(--linen); }

.tbm-icp {
  padding-top: 36px;
  border-top: 1px solid rgba(136,169,136,0.22);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.tbm-icp-lbl {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--la);
  white-space: nowrap;
  flex-shrink: 0;
}
.tbm-icp-items { display: flex; align-items: center; flex-wrap: wrap; }
.tbm-icp-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--linen);
  letter-spacing: 0.02em;
  padding: 0 14px;
}
.tbm-icp-tag:first-child { padding-left: 0; }
.tbm-icp-div { color: rgba(136,169,136,0.4); font-size: 10px; }

/* =========================================================
   8. WHY TOGETHER — CREDENTIAL CARDS
   ========================================================= */
.tbm-creds {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(39,101,103,0.07);
}
.tbm-cred {
  background: rgba(39,101,103,0.05);
  padding: 38px 32px;
  position: relative;
  opacity: 0;
}
.tbm-cred::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--emerald);
}
.tbm-creds.revealed .tbm-cred:nth-child(1) { animation: tbm-slide-right 0.9s var(--ease) 0.05s forwards; }
.tbm-creds.revealed .tbm-cred:nth-child(2) { animation: tbm-slide-right 0.9s var(--ease) 0.30s forwards; }
.tbm-creds.revealed .tbm-cred:nth-child(3) { animation: tbm-slide-right 0.9s var(--ease) 0.55s forwards; }

.tbm-cred-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 18px;
}
.tbm-cred-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--emerald);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.tbm-cred-body {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
}

/* =========================================================
   9. PLAYBOOK CARDS
   ========================================================= */
.tbm-pbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.tbm-pb {
  background: var(--linen);
  padding: 38px 36px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.tbm-pb:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,46,46,0.12);
}
.tbm-pb-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(39,101,103,0.1);
  display: inline-block;
  padding: 7px 16px;
  margin-bottom: 18px;
}
.tbm-pb-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--emerald);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.tbm-pb-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 24px;
}
.tbm-pb-list { margin-bottom: 24px; }
.tbm-pb-item {
  font-size: 12.5px;
  color: var(--mid);
  padding: 9px 0;
  border-bottom: 1px solid rgba(39,101,103,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tbm-pb-item:last-child { border-bottom: none; }
.tbm-pb-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.tbm-pb-link {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
  text-decoration: none;
}
.tbm-pb-link:hover { gap: 14px; }
.tbm-pb-link::after { content: '→'; }

.tbm-connector {
  background: rgba(250,246,227,0.04);
  border-left: 3px solid var(--sage);
  padding: 36px 44px;
}
.tbm-connector p {
  font-size: 17px;
  font-weight: 600;
  color: var(--la);
  line-height: 1.65;
  letter-spacing: -0.01em;
}
.tbm-connector p em { font-style: italic; color: var(--linen); }

/* =========================================================
   10. CASE STUDY
   ========================================================= */
.tbm-case-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tbm-cs-lbl {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tbm-cs-lbl::before { content: ''; width: 22px; height: 1px; background: var(--sage); flex-shrink: 0; }
.tbm-cs-hl {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 750;
  color: var(--emerald);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  font-variant-ligatures: none;
}
.tbm-cs-body { font-size: 14px; color: var(--mid); line-height: 1.78; margin-bottom: 32px; }
.tbm-cs-btn {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--emerald);
  color: var(--linen);
  border: 1.5px solid var(--emerald);
  padding: 13px 30px;
  text-decoration: none;
  transition: all 0.3s;
}
.tbm-cs-btn:hover { background: transparent; color: var(--emerald); }
.tbm-cs-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(39,101,103,0.04);
  border: 1px solid rgba(39,101,103,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.tbm-cs-img span {
  font-size: 9px;
  color: rgba(39,101,103,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.8;
}

/* =========================================================
   11. CTA CLOSE
   ========================================================= */
.tbm-close { text-align: center; }
.tbm-close-eyebrow {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--la);
  margin-bottom: 22px;
}
.tbm-close-hl {
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--linen);
  margin-bottom: 24px;
  font-variant-ligatures: none;
}
.tbm-close-body { font-size: 15px; color: var(--la); line-height: 1.76; max-width: 560px; margin: 0 auto 52px; }
.tbm-close-acts { display: flex; align-items: center; justify-content: center; gap: 32px; }
.tbm-btn-fill {
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--linen); color: var(--emerald); padding: 14px 34px;
  border: 1.5px solid var(--linen); text-decoration: none; transition: all 0.3s; display: inline-block;
}
.tbm-btn-fill:hover { background: transparent; color: var(--linen); }
.tbm-btn-ghost {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--linen); border-bottom: 1.5px solid rgba(250,246,227,0.4); padding-bottom: 2px;
  text-decoration: none; transition: all 0.2s; display: inline-block;
}
.tbm-btn-ghost:hover { color: white; border-color: rgba(250,246,227,0.8); }

/* =========================================================
   12. FOOTER
   ========================================================= */
.tbm-footer-nl { background: var(--linen); border-bottom: 1px solid rgba(39,101,103,0.12); }
.tbm-fnl-inner {
  max-width: 1200px; margin: 0 auto;
  border: 1.5px solid rgba(39,101,103,0.35);
  padding: 56px 64px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center;
}
.tbm-fnl-hl { font-size: 24px; font-weight: 800; color: var(--emerald); margin-bottom: 10px; letter-spacing: -0.01em; }
.tbm-fnl-sub { font-size: 13px; color: var(--mid); line-height: 1.65; }
.tbm-fnl-form { display: flex; }
.tbm-fnl-input {
  flex: 1; background: white; border: 1px solid rgba(39,101,103,0.2); border-right: none;
  padding: 13px 16px; font-size: 13px; color: var(--dark); font-family: 'Montserrat', sans-serif; outline: none;
}
.tbm-fnl-input::placeholder { color: rgba(26,46,46,0.35); }
.tbm-fnl-btn {
  background: var(--emerald); color: var(--linen); font-size: 9.5px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 13px 24px; border: none;
  cursor: pointer; white-space: nowrap; font-family: 'Montserrat', sans-serif;
}
.tbm-fnl-note { font-size: 10.5px; color: rgba(39,101,103,0.6); margin-top: 10px; }

.tbm-footer-body {
  background: var(--emerald); padding: 60px 64px 44px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px;
}
.tbm-fb-name { font-size: 15px; font-weight: 600; color: var(--linen); letter-spacing: 0.06em; margin-bottom: 6px; }
.tbm-fb-tagline { font-size: 8px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,246,227,0.65); }
.tbm-fc-head { font-size: 8px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,246,227,0.65); margin-bottom: 18px; }
.tbm-f-link { display: block; font-size: 12.5px; color: rgba(250,246,227,0.44); margin-bottom: 9px; text-decoration: none; transition: color 0.2s; }
.tbm-f-link:hover { color: rgba(250,246,227,0.85); }
.tbm-f-socials { display: flex; gap: 14px; margin-top: 18px; }
.tbm-f-social { color: rgba(250,246,227,0.44); transition: color 0.2s; line-height: 0; text-decoration: none; }
.tbm-f-social:hover { color: rgba(250,246,227,0.85); }
.tbm-footer-bar {
  background: var(--emerald); border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 64px; display: flex; justify-content: space-between;
}
.tbm-footer-copy { font-size: 11px; color: rgba(250,246,227,0.25); }

/* =========================================================
   13. FAQ ACCORDION
   ========================================================= */
.tbm-faq-item { border-bottom: 1px solid rgba(250,246,227,0.1); overflow: hidden; }
.tbm-faq-item:first-child { border-top: 1px solid rgba(250,246,227,0.1); }
.tbm-faq-q {
  width: 100%; background: none; border: none; text-align: left; padding: 26px 0;
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: var(--linen);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: color 0.2s;
}
.tbm-faq-q:hover { color: var(--sage); }
.tbm-faq-icon { font-size: 18px; color: var(--sage); flex-shrink: 0; transition: transform 0.3s var(--ease); font-weight: 300; }
.tbm-faq-item.open .tbm-faq-icon { transform: rotate(45deg); }
.tbm-faq-a { font-size: 14px; color: var(--la); line-height: 1.78; max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); padding: 0; }
.tbm-faq-item.open .tbm-faq-a { max-height: 400px; padding-bottom: 28px; }

/* =========================================================
   14. PHASE TABS
   ========================================================= */
.tbm-tabs {
  display: flex; gap: 0; border-bottom: 2px solid rgba(39,101,103,0.12);
  margin-bottom: 56px; overflow-x: auto;
}
.tbm-tab {
  font-size: 9px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mid); padding: 14px 24px; cursor: pointer; border-bottom: 2.5px solid transparent;
  margin-bottom: -2px; white-space: nowrap; transition: color 0.2s, border-color 0.2s;
  background: none; border-top: none; border-left: none; border-right: none; font-family: 'Montserrat', sans-serif;
}
.tbm-tab:hover { color: var(--emerald); }
.tbm-tab.active { color: var(--emerald); border-bottom-color: var(--emerald); }
.tbm-tabs.inv .tbm-tab { color: var(--ld); }
.tbm-tabs.inv .tbm-tab:hover { color: var(--la); }
.tbm-tabs.inv .tbm-tab.active { color: var(--linen); border-bottom-color: var(--sage); }
.tbm-panel { display: none; }
.tbm-panel.active { display: block; }

/* =========================================================
   15. CONTACT FORM
   ========================================================= */
.tbm-form-field { margin-bottom: 22px; }
.tbm-form-label { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; }
.tbm-form-input, .tbm-form-select, .tbm-form-textarea {
  width: 100%; background: white; border: 1px solid rgba(39,101,103,0.2);
  padding: 12px 16px; font-size: 13.5px; color: var(--dark); font-family: 'Montserrat', sans-serif;
  outline: none; transition: border-color 0.2s; appearance: none; -webkit-appearance: none;
}
.tbm-form-input:focus, .tbm-form-select:focus, .tbm-form-textarea:focus { border-color: var(--emerald); }
.tbm-form-textarea { resize: vertical; min-height: 120px; }
.tbm-form-submit {
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--emerald); color: var(--linen); padding: 16px 40px;
  border: 1.5px solid var(--emerald); cursor: pointer; font-family: 'Montserrat', sans-serif; transition: all 0.3s;
}
.tbm-form-submit:hover { background: transparent; color: var(--emerald); }
.tbm-form-success { display: none; padding: 40px; background: rgba(39,101,103,0.05); border: 1px solid rgba(39,101,103,0.2); text-align: center; }
.tbm-form-success.visible { display: block; }

/* =========================================================
   16. TIMELINE
   ========================================================= */
.tbm-timeline-fill {
  width: 100%; height: 0;
  background: linear-gradient(to bottom, var(--sage) 0%, rgba(136,169,136,0.3) 100%);
  transition: height 1.8s cubic-bezier(0.25,0.46,0.45,0.94) 0.25s;
}
#hwLayers.line-on .tbm-timeline-fill { height: 100%; }

/* =========================================================
   17. RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .tbm-nav { padding: 20px 40px; }
  .tbm-nav.scrolled { padding: 14px 40px; }
  .tbm-sec { padding: 80px 40px; }
  .tbm-hero { padding: 100px 40px 80px; }
  .tbm-pbs { grid-template-columns: 1fr; }
  .tbm-case-strip { gap: 48px; }
  .tbm-footer-body { padding: 48px 40px 36px; }
  .tbm-footer-bar { padding: 18px 40px; }
  .tbm-fnl-inner { padding: 40px; gap: 48px; }
}

@media (max-width: 768px) {
  .tbm-nav { padding: 18px 24px; }
  .tbm-nav.scrolled { padding: 12px 24px; }
  .tbm-nav-items { gap: 20px; }
  .tbm-sec { padding: 64px 24px; }
  .tbm-hero { padding: 90px 24px 64px; min-height: auto; }

  .tbm-creds { grid-template-columns: 1fr; }
  .tbm-cred {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    animation: none !important;
  }
  .tbm-cred.on { opacity: 1; transform: translateY(0); }

  .tbm-pbs { grid-template-columns: 1fr; }
  .tbm-case-strip { grid-template-columns: 1fr; gap: 32px; }
  .tbm-close-acts { flex-direction: column; gap: 20px; }

  .tbm-footer-body { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
  .tbm-footer-bar { flex-direction: column; gap: 8px; padding: 16px 24px; }
  .tbm-fnl-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }

  .tbm-tab { padding: 12px 16px; font-size: 8px; }
}
