/* =============================================
   TURNKEY SIDING — Main Stylesheet
   Design: C-3 Slate Blue + Teal | Outfit + Lato
   ============================================= */

:root {
  --accent:        #0E7268;
  --accent-hover:  #0a5e55;
  --primary:       #081C2C;
  --bg:            #E5EDE8;
  --bg-white:      #EFF4F1;
  --bg-dark:       #081C2C;
  --text:          #081C2C;
  --text-muted:    #486070;
  --text-light:    rgba(255,255,255,0.62);
  --border:        #BACCD8;
  --accent-light:  #D8EFEC;
  --accent-border: #88C8C0;
  --font-display:  'Outfit', sans-serif;
  --font-body:     'Lato', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.ts-skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.ts-skip-link:focus { left: 16px; top: 16px; width: auto; height: auto; padding: 8px 16px; background: var(--accent); color: #fff; font-weight: 700; z-index: 9999; border-radius: 2px; }
.ts-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.ts-header { position: sticky; top: 0; z-index: 100; }

.ts-nav {
  background: var(--bg-white);
  border-bottom: 2px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  height: 72px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  gap: 0;
}

.ts-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .5px;
  flex-shrink: 0;
}
.ts-logo em { font-style: normal; color: var(--accent); }

.ts-nav-links {
  margin-left: auto;
  display: flex;
  gap: 28px;
  list-style: none;
}
.ts-nav-links a {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .3px;
  transition: color .2s;
}
.ts-nav-links a:hover { color: var(--accent); }

/* Dropdown nav */
.ts-has-dropdown { position: relative; }
.ts-caret { font-size: 9px; display: inline-block; margin-left: 3px; vertical-align: middle; }
.ts-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(8,28,44,.12);
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s;
  z-index: 200;
  padding: 8px 0;
}
.ts-dropdown-wide { min-width: 180px; columns: 2; column-gap: 0; }
.ts-dropdown li a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
  break-inside: avoid;
}
.ts-dropdown li a:hover { background: var(--bg); color: var(--accent); }
.ts-has-dropdown:hover .ts-dropdown,
.ts-has-dropdown:focus-within .ts-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ts-nav-cta {
  margin-left: 28px;
  background: var(--accent);
  color: #fff;
  padding: 11px 26px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: background .2s;
  flex-shrink: 0;
}
.ts-nav-cta:hover { background: var(--accent-hover); }

.ts-menu-toggle { display: none; }

/* ===== HERO ===== */
.ts-hero {
  background: var(--bg-white);
  padding: 0;
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 0;
  min-height: 90vh;
  overflow: hidden;
}
.ts-hero::before { display: none; }
.ts-hero-left {
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ts-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 2px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: .3px;
}
.ts-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.3); }
}

.ts-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
}
.ts-hero h1 em { font-style: italic; color: var(--accent); }

.ts-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}

.ts-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.ts-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 2px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.ts-hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.ts-btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 16px 32px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(14,114,104,.3);
}
.ts-btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }

.ts-btn-ghost {
  border: 2px solid var(--border);
  color: var(--text-muted);
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
}
.ts-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.ts-hero-right {
  position: relative;
  overflow: hidden;
}
.ts-hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(255,255,255,.95) 0%, rgba(255,255,255,.5) 18%, rgba(255,255,255,.15) 35%, rgba(255,255,255,0) 52%);
}
.ts-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ts-hero-video::-webkit-media-controls { display: none !important; }

/* HERO — Rating + Value Props */
.ts-hero-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.ts-hero-stars { color: #F5C842; font-size: 16px; letter-spacing: 2px; }
.ts-hero-rating-text { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.ts-value-props { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.ts-value-props li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-muted); line-height: 1.5; }
.ts-value-props li::before { content: '\2713'; color: var(--accent); font-weight: 900; font-size: 14px; flex-shrink: 0; }
.ts-value-props li strong { color: var(--text); font-weight: 700; }

/* TRUST / CREDENTIALS BAR */
.ts-trust-bar { background: var(--bg-white); border-bottom: 1px solid var(--border); border-top: 1px solid var(--border); padding: 18px 5%; }
.ts-trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.ts-trust-text { flex-shrink: 0; }
.ts-trust-headline { font-size: 13px; font-weight: 700; color: var(--text); letter-spacing: .3px; margin-bottom: 7px; }
.ts-trust-licenses { display: flex; gap: 8px; flex-wrap: wrap; }
.ts-trust-lic-badge { font-size: 12px; color: var(--text-muted); background: var(--bg); border: 1px solid var(--border); padding: 4px 10px; letter-spacing: .2px; }
.ts-trust-lic-badge strong { color: var(--text); font-weight: 700; }
.ts-trust-divider { width: 1px; height: 52px; background: var(--border); flex-shrink: 0; }
.ts-seals { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; flex: 1; justify-content: flex-end; }
.ts-seals img { height: 52px; width: auto; object-fit: contain; flex-shrink: 0; }

.ts-service-count {
  position: absolute;
  top: -16px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(14,114,104,.35);
  z-index: 2;
}
.ts-service-count-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.ts-service-count-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; opacity: .9; }

.ts-review-float {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--bg-white);
  border-radius: 4px;
  padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
  z-index: 2;
}
.ts-review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.ts-review-stars { color: #F5A623; font-size: 13px; margin-bottom: 3px; }
.ts-review-text { font-size: 13px; color: var(--text); font-weight: 600; }
.ts-review-source { font-size: 11px; color: #aaa; margin-top: 2px; }

/* ===== SEALS STRIP ===== */
.ts-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 28px 5% 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ts-strip-item {
  padding: 12px 24px;
  border-right: 1px solid rgba(0,0,0,.08);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-strip-item:last-child { border-right: none; }
.ts-strip-seal { height: 64px; width: auto; object-fit: contain; display: block; }
.ts-strip-licenses-row { grid-column: 1 / -1; text-align: center; border-top: 1px solid rgba(0,0,0,.07); padding-top: 12px; margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.ts-strip-licenses-row span { font-size: 12px; color: var(--text-muted); letter-spacing: .5px; }
.ts-strip-licenses-row strong { color: var(--text-dark); font-weight: 700; }

/* ===== STATS BAR ===== */
.ts-trust-stats { display: flex; align-items: center; width: 100%; }
.ts-stat-item { flex: 1; text-align: center; padding: 6px 0; }
.ts-stat-num { font-family: var(--font-display); font-size: 40px; font-weight: 900; color: var(--accent); line-height: 1; }
.ts-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 5px; letter-spacing: 1px; text-transform: uppercase; }

/* ===== PROBLEM ===== */
.ts-problem { padding: 96px 5%; background: var(--bg); }
.ts-problem-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ts-prob-cards { display: flex; flex-direction: column; gap: 16px; }
.ts-prob-cards-cta { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }

.ts-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.ts-problem h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}
.ts-problem h2 em { font-style: italic; color: var(--accent); }

.ts-problem p { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; font-weight: 300; }

.ts-check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 0; }
.ts-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
  padding: 14px 16px;
  background: var(--bg-white);
  border-left: 4px solid var(--accent);
  font-weight: 500;
}
.ts-check { color: var(--accent); font-weight: 800; font-size: 18px; flex-shrink: 0; }

.ts-prob-cards { display: flex; flex-direction: column; gap: 14px; }
.ts-prob-card {
  background: var(--bg-white);
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.ts-prob-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 9px; }
.ts-prob-card-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ts-prob-card-icon svg { width: 17px; height: 17px; }
.ts-prob-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); margin: 0; line-height: 1.3; }
.ts-prob-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ===== SERVICES ===== */
.ts-services { padding: 96px 5%; background: var(--bg-white); }
.ts-section-header { margin-bottom: 56px; }
.ts-services h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
.ts-services-sub { font-size: 17px; color: var(--text-muted); font-weight: 300; }

.ts-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ts-service {
  background: var(--bg);
  border-radius: 2px;
  padding: 28px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .25s;
}
.ts-service:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(14,114,104,.25);
}
.ts-service:hover .ts-svc-name,
.ts-service:hover .ts-svc-desc { color: #fff; }

.ts-svc-icon { font-size: 30px; margin-bottom: 16px; }
.ts-svc-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  transition: color .25s;
}
.ts-svc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; transition: color .25s; }

/* ===== TESTIMONIALS — 3 CARDS ===== */
.ts-testimonials { background: var(--bg-dark); padding: 96px 5%; }
.ts-testi-head { text-align: center; margin-bottom: 52px; }
.ts-testi-head h2 { font-family: var(--font-display); font-size: clamp(36px,5vw,54px); font-weight: 900; color: #fff; margin-bottom: 10px; }
.ts-testi-rating-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; }
.ts-testi-rating-row .stars { color: #F5C842; font-size: 18px; letter-spacing: 2px; }
.ts-testi-rating-row .meta { font-size: 13px; color: rgba(255,255,255,.4); }
.ts-testi-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ts-testi-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-top: 3px solid var(--accent); padding: 28px; }
.ts-testi-card .tc-stars { color: #F5C842; font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }
.ts-testi-card .tc-quote { font-family: var(--font-display); font-size: 16px; font-style: italic; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 22px; }
.ts-testi-card .tc-reviewer { display: flex; align-items: center; gap: 12px; }
.ts-testi-card .tc-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-light), var(--accent)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0; }
.ts-testi-card .tc-name { font-size: 14px; font-weight: 700; color: #fff; }
.ts-testi-card .tc-loc { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ===== SERVICE AREAS ===== */
.ts-areas { padding: 96px 5%; background: var(--bg); }
.ts-areas h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
.ts-areas-sub { font-size: 17px; color: var(--text-muted); margin-bottom: 48px; font-weight: 300; }

.ts-areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.ts-area {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 16px 20px;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
  transition: all .2s;
  cursor: pointer;
}
.ts-area:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ===== CTA FORM ===== */
.ts-cta,
.ts-cta-form-section {
  padding: 96px 5%;
  background: var(--bg-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--border);
}
.ts-cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}
.ts-cta-left h2 em { font-style: italic; color: var(--accent); }
.ts-cta-left p { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; font-weight: 300; }

.ts-phone {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .2s;
}
.ts-phone:hover { color: var(--accent-hover); }

.ts-cta-promise {
  background: var(--accent-light);
  border-radius: 2px;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
  border: 1px solid var(--accent-border);
  line-height: 1.6;
}
.ts-cta-promise strong { color: var(--text); }

.ts-form {
  background: var(--bg);
  border-radius: 2px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border);
}
.ts-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.ts-estimate-form { display: flex; flex-direction: column; gap: 12px; }

.ts-estimate-form input,
.ts-estimate-form select,
.ts-estimate-form textarea,
.ts-form input,
.ts-form select,
.ts-form textarea,
.ts-form-input {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 13px 16px;
  border-radius: 4px;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.ts-estimate-form input:focus,
.ts-estimate-form select:focus,
.ts-estimate-form textarea:focus,
.ts-form input:focus,
.ts-form select:focus,
.ts-form textarea:focus,
.ts-form-input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14,114,104,.1);
  outline: none;
}
.ts-estimate-form input::placeholder,
.ts-estimate-form textarea::placeholder,
.ts-form-input::placeholder { color: #9ab0bc; }

.ts-estimate-form button,
.ts-form button,
.ts-form-submit {
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(8,28,44,.25);
  width: 100%;
  display: block;
  margin-top: 4px;
}
.ts-estimate-form button:hover,
.ts-form button:hover,
.ts-form-submit:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(14,114,104,.3);
}
.ts-form-no-pressure { font-size: 12px; color: var(--text-muted); text-align: center; margin: 0 0 8px; }
.ts-form-confirm { font-size: 12px; color: var(--accent); text-align: center; margin: 14px 0 0; font-weight: 600; letter-spacing: .01em; }
.ts-form-disclaimer { font-size: 11px; color: var(--text-muted); text-align: center; margin: 6px 0 0; }
.ts-select-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 4px; }
.ts-form-textarea { resize: vertical; min-height: 90px; }
.ts-mat-micro-cta { text-align: center; padding: 20px 0 0; }
.ts-mat-micro-cta a { color: rgba(136,200,192,1); font-size: 14px; font-weight: 600; text-decoration: none; }
.ts-mat-micro-cta a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.ts-footer { background: #040E18; }

/* Footer CTA strip */
.ts-footer-cta { background: var(--primary); padding: 36px 5%; text-align: center; }
.ts-footer-cta-inner { max-width: 680px; margin: 0 auto; }
.ts-footer-cta h3 { color: #fff; font-size: 1.35rem; font-weight: 800; margin: 0 0 8px; letter-spacing: -.01em; }
.ts-footer-cta p { color: rgba(255,255,255,.82); font-size: .95rem; margin: 0 0 22px; }
.ts-footer-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ts-footer-cta-btn { background: #fff; color: var(--primary); padding: 11px 24px; border-radius: 4px; font-weight: 800; font-size: .9rem; text-decoration: none; letter-spacing: .01em; transition: opacity .15s; }
.ts-footer-cta-btn:hover { opacity: .88; }
.ts-footer-cta-phone { color: #fff; padding: 11px 24px; border: 2px solid rgba(255,255,255,.45); border-radius: 4px; font-weight: 700; font-size: .9rem; text-decoration: none; transition: border-color .15s; }
.ts-footer-cta-phone:hover { border-color: #fff; }

.ts-footer-top {
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 48px;
  padding: 72px 5% 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  max-width: 1440px;
  margin: 0 auto;
}

/* Brand column */
.ts-footer-brand { display: flex; flex-direction: column; gap: 14px; }
.ts-footer-tagline { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin: 0; max-width: 240px; }
.ts-footer-phone { font-size: 20px; font-weight: 700; color: var(--accent); text-decoration: none; font-family: var(--font-display); transition: color .2s; }
.ts-footer-phone:hover { color: #fff; }
.ts-footer-lic-inline { font-size: 11px; color: rgba(255,255,255,.3); letter-spacing: .3px; }
.ts-footer-social { display: flex; gap: 10px; margin-top: 4px; }
.ts-footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.ts-footer-social-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Link columns */
.ts-footer-col { display: flex; flex-direction: column; }
.ts-footer-col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.ts-footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.ts-footer-links a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.ts-footer-links a:hover { color: var(--accent); }

/* Bottom bar */
.ts-footer-bottom { padding: 18px 5%; }
.ts-footer-bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.25);
}
.ts-footer-bottom-inner a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.ts-footer-bottom-inner a:hover { color: var(--accent); }
.ts-footer-bottom-sep { color: rgba(255,255,255,.15); }

/* ===== INNER PAGES ===== */
.ts-container { max-width: 900px; margin: 0 auto; padding: 0 5%; }

/* Page Hero */
.ts-page-hero {
  background: var(--bg-dark);
  padding: 70px 5% 60px;
  position: relative;
  overflow: hidden;
}
.ts-page-hero--image { display: grid; grid-template-columns: 1fr 40%; gap: 0; padding: 0; }
.ts-page-hero-img {
  background-size: cover;
  background-position: center;
  min-height: 380px;
}
.ts-page-hero--image .ts-page-hero-inner { padding: 70px 5% 60px; }
.ts-page-hero-inner { position: relative; z-index: 1; }
.ts-blog-hero { background: linear-gradient(135deg, var(--bg-dark) 0%, #0d2f45 100%); }
.ts-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: #fff;
  margin: 14px 0 10px;
  line-height: 1.15;
}
.ts-page-hero-sub { color: rgba(255,255,255,.55); font-size: 13px; margin-bottom: 28px; }
.ts-post-meta { color: rgba(255,255,255,.5); font-size: 13px; margin-bottom: 0; }
.ts-page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Breadcrumb */
.ts-breadcrumb { font-size: 13px; color: rgba(255,255,255,.45); display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.ts-breadcrumb a { color: rgba(136,200,192,.8); text-decoration: none; }
.ts-breadcrumb a:hover { color: rgba(136,200,192,1); }
.ts-breadcrumb span { color: rgba(255,255,255,.35); }

/* Legal Pages */
.ts-legal-content { background: #fff; padding: 72px 5% 96px; }
.ts-legal-content-inner { max-width: 860px; margin: 0 auto; }

/* Page Body */
.ts-page-body { padding: 60px 5%; max-width: 860px; margin: 0 auto; }
.ts-entry-content { font-size: 17px; color: var(--text-muted); line-height: 1.85; }
.ts-entry-content p { margin-bottom: 20px; }
.ts-entry-content h2 { font-family: var(--font-display); font-size: clamp(22px,2.5vw,30px); font-weight: 700; color: var(--text); margin: 40px 0 14px; padding-top: 8px; border-top: 2px solid var(--accent-light); }
.ts-entry-content h3 { font-family: var(--font-display); font-size: clamp(18px,2vw,22px); font-weight: 700; color: var(--text); margin: 28px 0 10px; }
.ts-entry-content ul, .ts-entry-content ol { margin: 0 0 20px 22px; }
.ts-entry-content li { margin-bottom: 8px; line-height: 1.7; }
.ts-entry-content strong { color: var(--text); font-weight: 700; }
.ts-entry-content a { color: var(--accent); text-decoration: underline; }
.ts-entry-content a:hover { color: var(--accent-hover); }
.ts-blog-body { max-width: 780px; }

/* Page CTA Section */
.ts-page-cta-section {
  background: var(--bg-dark);
  padding: 60px 5%;
}
.ts-page-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.ts-page-cta-text h2 { font-family: var(--font-display); font-size: clamp(22px,2.5vw,32px); color: #fff; margin-bottom: 10px; }
.ts-page-cta-text p { color: var(--text-light); font-size: 16px; max-width: 480px; }
.ts-page-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* Related Section */
.ts-related-section { background: var(--bg); padding: 60px 0; }
.ts-related-heading {
  font-family: var(--font-display);
  font-size: clamp(20px,2vw,26px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.ts-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.ts-related-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all .2s;
  display: block;
}
.ts-related-card:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.ts-related-container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }

/* ===== PAGE HERO (photo bg) ===== */
.ts-page-hero {
  background-size: cover;
  background-position: center;
  background-color: var(--bg-dark);
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}
.ts-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,28,44,.85) 0%, rgba(8,28,44,.55) 60%, rgba(8,28,44,.2) 100%);
}
.ts-page-hero-inner { position: relative; z-index: 1; padding: 60px 5% 50px; max-width: 700px; }
.ts-page-hero h1 { font-family: var(--font-display); font-size: clamp(26px,3.5vw,44px); font-weight: 900; color: #fff; margin: 14px 0 10px; line-height: 1.15; }
.ts-page-hero-sub { color: rgba(255,255,255,.6); font-size: 13px; margin-bottom: 24px; }
.ts-page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== INNER PAGE LAYOUT (content + sidebar) ===== */
.ts-inner-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.ts-inner-content { min-width: 0; }
.ts-content-img-wrap { margin-bottom: 32px; }
.ts-content-img { width: 100%; max-height: 380px; object-fit: cover; border-radius: 4px; display: block; }
.ts-entry-content { font-size: 16px; color: var(--text-muted); line-height: 1.85; }
.ts-entry-content p { margin-bottom: 18px; }
.ts-entry-content h2 { font-family: var(--font-display); font-size: clamp(20px,2.2vw,28px); font-weight: 700; color: var(--text); margin: 36px 0 12px; border-top: 2px solid var(--accent-light); padding-top: 8px; }
.ts-entry-content h3 { font-family: var(--font-display); font-size: clamp(17px,1.8vw,21px); font-weight: 700; color: var(--text); margin: 24px 0 8px; }
.ts-entry-content ul, .ts-entry-content ol { margin: 0 0 18px 22px; }
.ts-entry-content li { margin-bottom: 7px; }
.ts-entry-content strong { color: var(--text); font-weight: 700; }
.ts-entry-content a { color: var(--accent); text-decoration: underline; }

/* Sidebar */
.ts-inner-sidebar { position: sticky; top: 100px; }
.ts-sidebar-cta { background: var(--bg-dark); color: #fff; padding: 28px 24px; border-radius: 4px; margin-bottom: 20px; }
.ts-sidebar-cta h3 { font-family: var(--font-display); font-size: 18px; color: #fff; margin-bottom: 10px; }
.ts-sidebar-cta p { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.ts-sidebar-btn { display: block; text-align: center; width: 100%; margin-bottom: 12px; }
.ts-sidebar-phone { display: block; text-align: center; color: rgba(136,200,192,1); font-size: 15px; font-weight: 700; text-decoration: none; }
.ts-sidebar-services { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 20px 24px; margin-bottom: 20px; }
.ts-sidebar-services h4 { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 12px; }
.ts-sidebar-services ul { list-style: none; margin: 0; }
.ts-sidebar-services li { border-bottom: 1px solid var(--bg); }
.ts-sidebar-services li:last-child { border-bottom: none; }
.ts-sidebar-services a { display: block; padding: 7px 0; font-size: 14px; color: var(--text); text-decoration: none; transition: color .2s; }
.ts-sidebar-services a:hover { color: var(--accent); }
.ts-sidebar-trust { background: var(--bg); border-radius: 4px; padding: 16px 20px; text-align: center; font-size: 13px; color: var(--text-muted); }
.ts-sidebar-stars { color: #f5a623; font-size: 18px; margin-bottom: 4px; }

/* ===== CONTACT PAGE ===== */
.ts-contact-wrap { max-width: 1480px; margin: 0 auto; padding: 60px 5%; display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.ts-contact-left h2 { font-family: var(--font-display); font-size: clamp(22px,2.5vw,30px); font-weight: 700; color: var(--text); margin-bottom: 10px; }
.ts-contact-left p { color: var(--text-muted); margin-bottom: 24px; }
.ts-contact-right { display: flex; flex-direction: column; gap: 16px; }
.ts-contact-info-card { background: var(--bg-white); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 4px; padding: 22px 24px; }
.ts-contact-info-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.ts-contact-info-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.ts-contact-phone { font-size: 26px; font-weight: 700; color: var(--accent); text-decoration: none; font-family: var(--font-display); display: block; letter-spacing: -.01em; }
.ts-contact-phone:hover { color: var(--accent-hover); }
.ts-trust-card { background: var(--primary); border-color: transparent; border-left-color: var(--accent); text-align: center; color: rgba(255,255,255,.7); }
.ts-trust-card p { color: rgba(255,255,255,.7); }
/* Contact form card wrapper */
.ts-contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 4px;
  padding: 32px 36px 28px;
  box-shadow: 0 4px 24px rgba(8,28,44,.06);
}
/* GHL embed variant — no card/box; form shows as-is (it has its own styling) */
.ts-contact-form-wrap--ghl {
  padding: 0;
  overflow: visible;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.ts-contact-form-wrap--ghl iframe {
  width: 100%;
  min-height: 1240px;
  border: none;
  border-radius: 2px;
  display: block;
  position: relative !important; /* keep in flow; form_embed.js auto-resizes height */
}
/* Sticky info column so it stays in view alongside the tall form */
.ts-contact-right { position: sticky; top: 100px; }

/* Blog single layout */
.ts-blog-hero { min-height: 280px; }
.ts-blog-body-wrap { max-width: 800px; margin: 0 auto; padding: 60px 5%; }
.ts-post-meta { color: rgba(255,255,255,.5); font-size: 13px; margin-top: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ts-hero { grid-template-columns: 1fr; min-height: auto; }
  .ts-hero-left { padding: 60px 5%; }
  .ts-hero-right { display: none; }
  .ts-problem-inner { grid-template-columns: 1fr; gap: 48px; }
  .ts-cta { grid-template-columns: 1fr; gap: 48px; }
  .ts-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-t-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ts-nav-links { display: none; }
  .ts-nav-cta { display: none; }
  .ts-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 8px;
  }
  .ts-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: all .2s; }
  .ts-strip { grid-template-columns: repeat(2, 1fr); }
  .ts-strip-item:nth-child(2) { border-right: none; }
  .ts-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ts-footer-brand { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 20px 40px; align-items: flex-start; }
  .ts-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .ts-services-grid { grid-template-columns: 1fr; }
  .ts-badges { flex-direction: column; }
  .ts-hero-btns { flex-direction: column; align-items: flex-start; }
  .ts-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .ts-footer-brand { flex-direction: column; }
  .ts-footer-bottom-inner { flex-direction: column; gap: 4px; }
  .ts-footer-bottom-sep { display: none; }
}

/* ===== PROCESS — Design C Simple Cards ===== */
.ts-process { background: var(--bg-white); padding: 96px 5%; }
.ts-process-head { text-align: center; margin-bottom: 52px; }
.ts-process-head h2 { font-family: var(--font-display); font-size: clamp(36px,5vw,54px); font-weight: 900; color: var(--text); margin-bottom: 12px; }
.ts-process-head p { font-size: 17px; color: var(--text-muted); max-width: 500px; margin: 0 auto; font-weight: 300; }
.ts-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ts-step { background: var(--bg); border: 1px solid var(--border); padding: 40px 36px; position: relative; overflow: hidden; }
.ts-step-bg-num { position: absolute; bottom: -10px; right: 14px; font-family: var(--font-display); font-size: 96px; font-weight: 900; color: rgba(8,28,44,.04); line-height: 1; pointer-events: none; }
.ts-step-num { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 20px; }
.ts-step h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.ts-step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== MATERIALS — Dark Catalog Grid ===== */
.ts-materials { padding: 96px 5%; background: var(--bg-dark); }
.ts-mat-head { margin-bottom: 52px; }
.ts-mat-head .ts-eyebrow { color: rgba(136,200,192,1); }
.ts-mat-head h2 { font-family: var(--font-display); font-size: clamp(36px,5vw,54px); font-weight: 900; color: #fff; margin-bottom: 12px; }
.ts-mat-head p { font-size: 17px; color: rgba(255,255,255,.55); font-weight: 300; }
.ts-mat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.ts-mat-card { display: flex; flex-direction: row; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); transition: background .25s; overflow: hidden; }
.ts-mat-card:hover { background: rgba(255,255,255,.08); border-color: rgba(14,114,104,.5); }
.ts-mat-card-photo { width: 200px; flex-shrink: 0; position: relative; overflow: hidden; }
.ts-mat-card-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.ts-mat-card:hover .ts-mat-card-photo img { transform: scale(1.06); }
.ts-mat-card-body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.ts-mat-tag { display: inline-block; background: rgba(14,114,104,.18); border: 1px solid rgba(14,114,104,.35); color: rgba(136,200,192,1); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 3px 10px; align-self: flex-start; }
.ts-mat-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; }
.ts-mat-card-body p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; margin: 0; }
.ts-mat-cta { color: rgba(136,200,192,1); font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; opacity: .8; transition: opacity .2s; text-decoration: none; }
.ts-mat-card:hover .ts-mat-cta { opacity: 1; }

/* ===== GALLERY — Editorial Asymmetric ===== */
.ts-gallery { padding: 96px 5%; background: var(--bg-white); }
.ts-gallery h2 { font-family: var(--font-display); font-size: clamp(36px,4.5vw,54px); font-weight: 900; color: var(--text); margin-bottom: 12px; }
.ts-gallery-sub { font-size: 17px; color: var(--text-muted); margin-bottom: 48px; max-width: 560px; font-weight: 300; }
.ts-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 300px 300px 260px; gap: 10px; }
.ts-gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.ts-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.ts-gallery-item:hover img { transform: scale(1.06); }
.ts-gallery-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
.ts-gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(8,28,44,.88)); padding: 28px 20px 18px; color: #fff; font-size: 14px; font-weight: 600; opacity: 0; transition: opacity .3s; }
.ts-gallery-item:hover .ts-gallery-caption { opacity: 1; }
.ts-gallery-item:first-child .ts-gallery-caption { font-size: 18px; }
.ts-gallery-more { text-align: center; margin-top: 28px; }
.ts-gallery-more a { color: var(--accent); font-weight: 700; font-size: 15px; text-decoration: none; border-bottom: 2px solid var(--accent-border); }
.ts-gallery-more a:hover { border-color: var(--accent); }

/* ===== CTA BANNER ===== */
.ts-cta-banner { position: relative; min-height: 276px; display: flex; align-items: center; overflow: hidden; }
.ts-cta-banner-bg { position: absolute; inset: 0; background: url('../images/mat-fiber-cement.jpg') center 60% / cover no-repeat; }
.ts-cta-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(8,28,44,0.97) 0%, rgba(8,28,44,0.93) 38%, rgba(8,28,44,0.65) 65%, rgba(8,28,44,0.15) 100%); }
.ts-cta-banner-inner { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 32px 5%; }
.ts-cta-banner-content { max-width: 560px; }
.ts-cta-banner-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-light); font-weight: 700; margin-bottom: 10px; }
.ts-cta-banner h2 { font-family: var(--font-display); font-size: clamp(22px, 2.8vw, 32px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 8px; }
.ts-cta-banner h2 em { font-style: italic; color: var(--accent-light); }
.ts-cta-banner p { font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 20px; line-height: 1.6; font-weight: 300; }
.ts-cta-banner-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ts-cta-banner-primary { background: var(--accent); color: #fff; font-size: 14px; font-weight: 700; padding: 13px 30px; border-radius: 2px; letter-spacing: .5px; transition: all .2s; text-decoration: none; }
.ts-cta-banner-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(14,114,104,.4); }
.ts-cta-banner-phone { background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.25); color: #fff; font-size: 14px; font-weight: 700; padding: 12px 24px; border-radius: 2px; transition: all .2s; text-decoration: none; }
.ts-cta-banner-phone:hover { background: rgba(255,255,255,.14); }

/* ===== COMMUNITIES ===== */
.ts-communities { padding: 96px 5%; background: var(--bg); }
.ts-comm-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ts-comm-left h2 { font-family: var(--font-display); font-size: clamp(36px,5vw,52px); font-weight: 900; color: var(--text); margin-bottom: 16px; }
.ts-comm-left p { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; font-weight: 300; }
.ts-comm-stat { display: flex; gap: 40px; margin-bottom: 32px; }
.ts-comm-stat-item { text-align: center; }
.ts-comm-stat-num { font-family: var(--font-display); font-size: 48px; font-weight: 900; color: var(--accent); line-height: 1; }
.ts-comm-stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }
.ts-comm-cta { display: inline-block; background: var(--accent); color: #fff; padding: 16px 32px; text-decoration: none; font-size: 15px; font-weight: 700; transition: background .2s; }
.ts-comm-cta:hover { background: var(--accent-hover); }
.ts-regions { display: flex; flex-direction: column; gap: 20px; }
.ts-region { background: var(--bg-white); border: 1px solid var(--border); padding: 24px 28px; }
.ts-region-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.ts-region-label::before { content: ''; width: 24px; height: 2px; background: var(--accent); flex-shrink: 0; }
.ts-region-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.ts-city { background: var(--bg); border: 1px solid var(--border); padding: 7px 14px; font-size: 14px; color: var(--text); font-weight: 600; transition: all .2s; cursor: pointer; }
.ts-city:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.ts-steps > .ts-step:nth-child(2) { transition-delay: .15s; }
.ts-steps > .ts-step:nth-child(3) { transition-delay: .3s; }
.ts-gallery-grid .ts-gallery-item:nth-child(2) { transition-delay: .1s; }
.ts-gallery-grid .ts-gallery-item:nth-child(3) { transition-delay: .2s; }
.ts-gallery-grid .ts-gallery-item:nth-child(4) { transition-delay: .3s; }
.ts-gallery-grid .ts-gallery-item:nth-child(5) { transition-delay: .4s; }
.ts-gallery-grid .ts-gallery-item:nth-child(6) { transition-delay: .5s; }

/* ===== RESPONSIVE — New Sections ===== */
@media (max-width: 1024px) {
  .ts-steps { grid-template-columns: 1fr; }
  .ts-mat-grid { grid-template-columns: 1fr; }
  .ts-mat-card { flex-direction: column; }
  .ts-mat-card-photo { width: 100%; height: 200px; }
  .ts-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 220px; }
  .ts-gallery-item:first-child { grid-column: 1 / 3; grid-row: 1 / 2; }
  .ts-testi-cards { grid-template-columns: 1fr; }
  .ts-comm-inner { grid-template-columns: 1fr; gap: 48px; }
  .ts-cta, .ts-cta-form-section { grid-template-columns: 1fr; gap: 48px; }
  .ts-trust-bar-inner { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
  .ts-gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .ts-gallery-item:first-child { grid-column: auto; grid-row: auto; }
  .ts-gallery-item img { height: 260px; }
  .ts-comm-stat { gap: 20px; }
  .ts-seals { justify-content: center; }
  .ts-seals img { height: 52px; }
  .ts-cta-banner-btns { flex-direction: column; align-items: center; }
}

/* ===== INNER PAGE IMPROVEMENTS ===== */

/* Max-width expansion — reduce dead space on wide screens */
.ts-inner-wrap         { max-width: 1440px; }
.ts-related-container  { max-width: 1440px; }
.ts-page-cta-inner     { max-width: 1440px; }
.ts-page-hero-inner    { max-width: 980px; }

/* Phone number button in hero — white styling for dark overlay */
.ts-btn-ghost--hero {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.92);
}
.ts-btn-ghost--hero:hover {
  border-color: rgba(255,255,255,.65);
  color: #fff;
  background: rgba(255,255,255,.1);
}

/* Inner page responsive layout */
@media (max-width: 1024px) {
  .ts-inner-wrap { grid-template-columns: 1fr; }
  .ts-inner-sidebar { position: static; }
}

/* ===== INNER PAGE TESTIMONIALS ===== */
.ts-inner-testimonials {
  background: var(--bg-white);
  padding: 80px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ts-inner-testi-container {
  max-width: 1440px;
  margin: 0 auto;
}
.ts-inner-testi-head {
  text-align: center;
  margin-bottom: 48px;
}
.ts-inner-testi-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.ts-inner-testi-head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
.ts-inner-testi-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ts-testi-stars { color: #F5C842; font-size: 18px; letter-spacing: 2px; }
.ts-testi-meta { font-size: 14px; color: var(--text-muted); }
.ts-inner-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ts-inner-testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
}
.ts-itc-stars { color: #F5C842; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.ts-itc-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.ts-itc-reviewer { display: flex; align-items: center; gap: 12px; }
.ts-itc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ts-itc-name { font-weight: 700; font-size: 14px; color: var(--text); }
.ts-itc-loc { font-size: 12px; color: var(--text-muted); }

/* ===== RELATED SECTION REDESIGN ===== */
.ts-related-section { background: var(--bg); padding: 80px 0; }
.ts-related-container { padding: 0 5%; }

.ts-rel-block { }
.ts-rel-section-divider {
  height: 1px;
  background: var(--border);
  margin: 56px 0;
}

.ts-rel-block-head { margin-bottom: 28px; }
.ts-rel-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.ts-rel-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.ts-rel-sub { font-size: 15px; color: var(--text-muted); }

/* Service cards */
.ts-svc-rel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}
.ts-svc-rel-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: 4px;
  padding: 16px 44px 16px 20px;
  text-decoration: none;
  display: block;
  position: relative;
  transition: all .2s;
}
.ts-svc-rel-card:hover {
  border-left-color: var(--accent);
  box-shadow: 0 4px 16px rgba(8,28,44,.08);
  transform: translateY(-2px);
}
.ts-svc-rel-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  transition: color .2s;
}
.ts-svc-rel-card:hover .ts-svc-rel-name { color: var(--accent); }
.ts-svc-rel-tag { font-size: 12px; color: var(--text-muted); }
.ts-svc-rel-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--border);
  font-size: 16px;
  transition: all .2s;
}
.ts-svc-rel-card:hover .ts-svc-rel-arrow { color: var(--accent); right: 12px; }

/* ===== AREAS PANEL ===== */
.ts-areas-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(8,28,44,.18);
}
.ts-areas-panel-left {
  background: var(--accent);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ts-areas-eyebrow {
  color: rgba(255,255,255,.6);
  letter-spacing: 3px;
  font-size: 11px;
}
.ts-areas-panel-heading {
  font-family: var(--font-display);
  font-size: clamp(22px,2.4vw,30px);
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.ts-areas-panel-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  margin: 0;
}
.ts-areas-panel-cta {
  display: inline-block;
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,.4);
  width: fit-content;
  transition: border-color .2s, letter-spacing .15s;
}
.ts-areas-panel-cta:hover { border-color: #fff; letter-spacing: .3px; }

.ts-areas-panel-right {
  background: var(--primary);
  padding: 28px 36px;
}
.ts-areas-city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.ts-areas-city-list li {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ts-areas-city-list a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: 12px 12px 12px 18px;
  position: relative;
  transition: color .2s, padding-left .2s;
}
.ts-areas-city-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 2px;
  transition: height .18s;
}
.ts-areas-city-list a:hover { color: #fff; padding-left: 24px; }
.ts-areas-city-list a:hover::before { height: 18px; }

/* Responsive — inner page additions */
@media (max-width: 1024px) {
  .ts-inner-testi-grid { grid-template-columns: 1fr; }
  .ts-svc-rel-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-areas-city-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .ts-areas-panel { grid-template-columns: 1fr; }
  .ts-areas-panel-left { padding: 32px 28px; flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 10px 24px; }
  .ts-areas-panel-heading { width: 100%; }
  .ts-areas-panel-desc { width: 100%; }
  .ts-areas-panel-cta { margin-top: 4px; }
}
@media (max-width: 768px) {
  .ts-inner-wrap { padding: 40px 5%; gap: 36px; }
  .ts-inner-testimonials { padding: 60px 5%; }
  .ts-inner-testi-head h2 { font-size: 24px; }
  .ts-related-section { padding: 60px 0; }
  .ts-svc-rel-grid { grid-template-columns: 1fr; }
  .ts-rel-section-divider { margin: 40px 0; }
  .ts-areas-panel-right { padding: 24px 20px; }
  .ts-areas-city-list { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================
   HUB PAGES — Services & Service Areas
   =================================================== */

/* Shared wrapper */
.ts-hub-section-wrap { max-width: 1440px; margin: 0 auto; padding: 0 5%; }

/* Hero */
.ts-hub-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.ts-hub-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,28,44,.95) 0%, rgba(8,28,44,.78) 50%, rgba(8,28,44,.25) 100%);
}
.ts-hub-hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 90px 5%;
}
.ts-hub-hero-content { max-width: 660px; }
.ts-hub-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 700;
  margin-bottom: 14px;
}
.ts-hub-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 18px;
}
.ts-hub-hero-content h1 em { font-style: italic; color: var(--accent-light); }
.ts-hub-hero-content p { font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 30px; font-weight: 300; }
.ts-hub-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats bar */
.ts-hub-stats { background: var(--primary); padding: 0; }
.ts-hub-stats-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.ts-hub-stat {
  text-align: center;
  padding: 28px 40px;
  flex: 1;
  min-width: 160px;
}
.ts-hub-stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 6px;
}
.ts-hub-stat-label { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; line-height: 1.4; }
.ts-hub-stat-div { width: 1px; background: rgba(255,255,255,.1); align-self: stretch; margin: 16px 0; }

/* Intro section */
.ts-hub-intro { background: var(--bg-white); padding: 96px 5%; }
.ts-hub-intro-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ts-hub-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--text);
  margin: 10px 0 22px;
  line-height: 1.15;
}
.ts-hub-intro-text p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.ts-hub-intro-text strong { color: var(--text); }
.ts-hub-link {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-top: 12px;
  padding: 15px 30px;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(14,114,104,.3);
  transition: all .2s;
}
.ts-hub-link:hover { background: var(--accent-hover); transform: translateY(-2px); }
/* In-content estimate CTAs: a standalone contact link in body copy → button */
.ts-entry-content p > a[href*="contact"]:only-child {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-top: 8px;
  padding: 15px 30px;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(14,114,104,.3);
  transition: all .2s;
}
.ts-entry-content p > a[href*="contact"]:only-child:hover { background: var(--accent-hover); transform: translateY(-2px); }
.ts-hub-intro-img img { width: 100%; border-radius: 4px; display: block; max-height: 460px; object-fit: cover; }

/* Section heading */
.ts-hub-section-head { text-align: center; margin-bottom: 52px; }
.ts-hub-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--text);
  margin: 10px 0 12px;
  line-height: 1.15;
}
.ts-hub-section-head p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; font-weight: 300; }
.ts-hub-section-head--light h2 { color: #fff; }
.ts-hub-section-head--light p { color: rgba(255,255,255,.6); }
.ts-hub-eyebrow-light {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Materials grid */
.ts-hub-materials { background: var(--bg); padding: 96px 5%; }
.ts-hub-mat-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ts-hub-mat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.ts-hub-mat-card:hover { box-shadow: 0 8px 28px rgba(8,28,44,.12); transform: translateY(-3px); }
.ts-hub-mat-photo { height: 185px; background-size: cover; background-position: center; }
.ts-hub-mat-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.ts-hub-mat-tag {
  display: inline-block;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  align-self: flex-start;
}
.ts-hub-mat-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 4px 0 0;
}
.ts-hub-mat-body p { font-size: 13px; color: var(--text-muted); line-height: 1.65; flex: 1; margin: 0; }
.ts-hub-mat-cta { color: var(--accent); font-size: 13px; font-weight: 700; margin-top: 10px; display: inline-block; transition: color .2s; }
.ts-hub-mat-card:hover .ts-hub-mat-cta { color: var(--accent-hover); }
p.ts-hub-mat-note {
  max-width: 1440px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}
p.ts-hub-mat-note a { color: var(--accent); text-decoration: underline; }

/* Why section */
.ts-hub-why { background: var(--primary); padding: 96px 5%; }
.ts-hub-why-grid {
  max-width: 1440px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ts-hub-why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid var(--accent);
  padding: 36px 28px;
}
.ts-hub-why-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 20px;
}
.ts-hub-why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.ts-hub-why-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.75; }

/* Areas teaser (on services page) */
.ts-hub-areas-teaser { background: var(--bg-white); padding: 80px 5%; border-top: 1px solid var(--border); }
.ts-hub-areas-teaser-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ts-hub-areas-left h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  color: var(--text);
  margin: 10px 0 14px;
}
.ts-hub-areas-left p { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
.ts-hub-areas-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.ts-hub-areas-chips .ts-iac {
  background: var(--bg);
  border: 1.5px solid rgba(14,114,104,.45);
  color: var(--primary);
  border-radius: 4px;
}
.ts-hub-areas-chips .ts-iac:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(14,114,104,.25);
}

/* === SERVICE AREAS PAGE === */

/* Regions */
.ts-hub-regions { background: #f4f7f9; padding: 96px 5%; }
.ts-hub-regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.ts-hub-region-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(8,28,44,.06);
  overflow: hidden;
}
.ts-hub-region-header { background: #fff; padding: 28px 28px 20px; }
.ts-hub-region-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.ts-hub-region-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px;
  line-height: 1.2;
}
.ts-hub-region-header p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.ts-hub-region-divider { height: 1px; background: var(--border); margin: 0 28px; }
.ts-hub-region-cities {
  padding: 20px 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ts-hub-city-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f4f7f9;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  transition: all .2s;
}
.ts-hub-city-card:hover { border-color: var(--accent); background: var(--accent); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(14,114,104,.2); }
.ts-hub-city-name { font-size: 13px; font-weight: 600; color: var(--text); transition: color .2s; }
.ts-hub-city-card:hover .ts-hub-city-name { color: #fff; }
.ts-hub-city-arrow { color: var(--border); font-size: 12px; transition: all .2s; }
.ts-hub-city-card:hover .ts-hub-city-arrow { color: rgba(255,255,255,.7); }

/* Services chips */
.ts-hub-svc-chips-section { background: var(--primary); padding: 80px 5%; }
.ts-hub-svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}
.ts-hub-svc-chip {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  padding: 13px 30px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.ts-hub-svc-chip:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Guarantees */
.ts-hub-guarantees { background: var(--bg); padding: 96px 5%; }
.ts-hub-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.ts-hub-guarantee-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 24px 24px;
  border-radius: 0 4px 4px 0;
}
.ts-hub-g-check {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  flex-shrink: 0;
}
.ts-hub-g-title { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 5px; }
.ts-hub-g-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* === RESPONSIVE — Hub Pages === */
@media (max-width: 1280px) {
  .ts-hub-mat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .ts-hub-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .ts-hub-areas-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  .ts-hub-why-grid { grid-template-columns: 1fr; }
  .ts-hub-guarantee-grid { grid-template-columns: 1fr; }
  .ts-hub-regions-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ts-hub-hero { min-height: 400px; }
  .ts-hub-hero-content h1 { font-size: 28px; }
  .ts-hub-hero-inner { padding: 60px 5%; }
  .ts-hub-mat-grid { grid-template-columns: 1fr; }
  .ts-hub-stat { padding: 16px 20px; min-width: 130px; }
  .ts-hub-stat-div { width: 0; }
  .ts-hub-intro { padding: 60px 5%; }
  .ts-hub-intro-img { display: none; }
  .ts-hub-materials, .ts-hub-why, .ts-hub-regions, .ts-hub-guarantees { padding: 60px 5%; }
  .ts-hub-svc-chips { justify-content: flex-start; }
  .ts-hub-areas-teaser { padding: 60px 5%; }
}

/* ============================================================
   INNER PAGE — No-Sidebar Structured Layout
   Trust bar, 2-col intro, process strip, why-material,
   city materials grid, why-local section
   ============================================================ */

/* ── Trust Bar ── */
.ts-trust-bar {
  background: #f4f2ee;
  border-bottom: 1px solid #e0ddd8;
  padding: 13px 5%;
}
.ts-trust-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.ts-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  padding: 5px 18px;
  white-space: nowrap;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.ts-trust-check { color: var(--accent); font-size: 1rem; }
.ts-trust-div   { width: 1px; height: 22px; background: #ccc; flex-shrink: 0; }

/* ── LP Intro — 2-col ── */
.ts-lp-intro {
  padding: 56px 5%;
  background: #fff;
}
.ts-lp-intro-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}
.ts-lp-intro-content { font-family: var(--font-body); color: var(--primary); }
.ts-lp-intro-content h2 { font-family: var(--font-display); color: var(--primary); margin: 28px 0 14px; border-top: none; padding-top: 0; font-size: clamp(18px,2vw,24px); }
.ts-lp-intro-content h3 { font-family: var(--font-display); color: var(--primary); margin: 24px 0 12px; }
.ts-lp-intro-content p  { margin: 0 0 18px; line-height: 1.8; font-size: 1rem; }
.ts-lp-intro-content ul { padding-left: 20px; margin: 0 0 18px; }
.ts-lp-intro-content li { margin-bottom: 9px; line-height: 1.75; }
.ts-lp-intro-content a  { color: var(--accent); }
.ts-lp-intro-img {
  align-self: stretch;
}
.ts-lp-intro-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  box-shadow: 0 6px 28px rgba(0,0,0,.13);
  position: sticky;
  top: 100px;
}

/* ── LP Section shared ── */
.ts-lp-section-wrap { max-width: 1440px; margin: 0 auto; }
.ts-lp-section-head { text-align: center; margin-bottom: 48px; }
.ts-lp-section-head h2 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  margin: 8px 0 12px;
}
.ts-lp-section-head p { font-family: var(--font-body); color: #555; font-size: 1rem; margin: 0; }

/* ── Process strip — service pages ── */
.ts-lp-process {
  background: #f4f2ee;
  padding: 72px 5%;
  border-top: 1px solid #e5e2dc;
}
.ts-lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.ts-lp-step {
  background: #fff;
  border-radius: 8px;
  padding: 28px 22px;
  border-top: 3px solid var(--accent);
}
.ts-lp-step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  opacity: .22;
  line-height: 1;
  margin-bottom: 10px;
}
.ts-lp-step-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.ts-lp-step p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
.ts-lp-step-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.ts-lp-process .ts-cta-banner-phone {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.ts-lp-process .ts-cta-banner-phone:hover {
  background: var(--primary);
  color: #fff;
}

/* ── Why this material — service pages ── */
.ts-lp-why-material {
  background: var(--primary);
  padding: 72px 5%;
}
.ts-lp-why-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.ts-lp-why-text .ts-rel-eyebrow { color: rgba(255,255,255,.6); margin-bottom: 8px; }
.ts-lp-why-text h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  margin: 0 0 24px;
}
.ts-lp-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.ts-lp-why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.88);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.ts-lp-check { color: var(--accent); flex-shrink: 0; font-weight: 700; margin-top: 1px; }
.ts-hub-link--light { background: #fff !important; color: #081C2C !important; box-shadow: 0 4px 14px rgba(0,0,0,.18) !important; }
.ts-hub-link--light:hover { background: #fff !important; color: #081C2C !important; }
.ts-lp-why-cta-box {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  position: sticky;
  top: 100px;
}
.ts-lp-why-box-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}
.ts-lp-why-cta-box p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.65;
}
.ts-lp-why-phone {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  text-align: center;
  margin-bottom: 16px;
}
.ts-lp-why-phone:hover { color: var(--accent); }
.ts-lp-why-lic {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #888;
  text-align: center;
  line-height: 1.5;
}

/* ── City materials grid ── */
.ts-lp-city-materials {
  background: #fff;
  padding: 72px 5%;
  border-top: 1px solid #e5e2dc;
}
.ts-lp-mat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ts-lp-mat-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 18px;
  border: 1px solid #e5e2dc;
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  text-decoration: none;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.ts-lp-mat-card img {
  width: calc(100% + 36px);
  margin: -20px -18px 14px;
  height: 110px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.ts-lp-mat-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.09);
  transform: translateY(-2px);
}
.ts-lp-mat-name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
}
.ts-lp-mat-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
}
.ts-lp-mat-card > span {
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 6px;
  font-weight: 700;
}

/* ── Why Local — city pages ── */
.ts-lp-why-local {
  background: #f4f2ee;
  padding: 72px 5%;
  border-top: 1px solid #e5e2dc;
}
.ts-lp-why-local-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
  align-items: center;
}
.ts-lp-why-local-text .ts-rel-eyebrow { margin-bottom: 8px; }
.ts-lp-why-local-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  color: var(--primary);
  margin: 0 0 24px;
}
.ts-lp-why-local-text .ts-lp-why-list li { color: var(--primary); }
.ts-lp-why-local-text .ts-lp-check { color: var(--accent); }
.ts-lp-why-local-img img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  box-shadow: 0 6px 28px rgba(0,0,0,.11);
}

/* ── FAQ section wrapper ── */
.ts-lp-faq {
  background: #fff;
  padding: 72px 5%;
  border-top: 1px solid #e5e2dc;
}
.ts-lp-faq-body {
  max-width: 800px;
  margin: 0 auto;
}

/* ── FAQ Accordion ── */
.ts-faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.ts-faq-item {
  border-bottom: 1px solid #e5e2dc;
}
.ts-faq-item:first-child {
  border-top: 1px solid #e5e2dc;
}
.ts-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  transition: color .2s;
}
.ts-faq-trigger:hover,
.ts-faq-trigger[aria-expanded="true"] { color: var(--accent); }
.ts-faq-q-text { flex: 1; }
.ts-faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  position: relative;
  transition: background .2s;
}
.ts-faq-trigger[aria-expanded="true"] .ts-faq-icon {
  background: var(--accent);
}
.ts-faq-icon::before,
.ts-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 2px;
  background: var(--accent);
  transition: transform .25s, background .2s;
}
.ts-faq-icon::before { width: 11px; height: 2px; transform: translate(-50%, -50%); }
.ts-faq-icon::after  { width: 2px; height: 11px; transform: translate(-50%, -50%); }
.ts-faq-trigger[aria-expanded="true"] .ts-faq-icon::before,
.ts-faq-trigger[aria-expanded="true"] .ts-faq-icon::after { background: #fff; }
.ts-faq-trigger[aria-expanded="true"] .ts-faq-icon::after  { transform: translate(-50%, -50%) rotate(90deg); }
.ts-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}
.ts-faq-panel p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  padding: 0 0 20px;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .ts-lp-intro-inner          { grid-template-columns: 1fr 340px; gap: 44px; }
  .ts-lp-why-inner            { grid-template-columns: 1fr 280px; }
  .ts-lp-why-local-inner      { grid-template-columns: 1fr 420px; }
}
@media (max-width: 1024px) {
  .ts-lp-intro-inner          { grid-template-columns: 1fr; }
  .ts-lp-intro-img            { display: none; }
  .ts-lp-steps                { grid-template-columns: repeat(2, 1fr); }
  .ts-lp-why-inner            { grid-template-columns: 1fr; }
  .ts-lp-why-cta-box          { max-width: 480px; position: static; }
  .ts-lp-mat-grid             { grid-template-columns: repeat(2, 1fr); }
  .ts-lp-why-local-inner      { grid-template-columns: 1fr; }
  .ts-lp-why-local-img        { display: none; }
}
@media (max-width: 768px) {
  .ts-trust-bar-inner         { justify-content: flex-start; }
  .ts-trust-item              { font-size: 0.72rem; padding: 5px 12px; }
  .ts-trust-div               { display: none; }
  .ts-lp-intro                { padding: 52px 5%; }
  .ts-lp-process,
  .ts-lp-why-material,
  .ts-lp-city-materials,
  .ts-lp-why-local            { padding: 56px 5%; }
  .ts-lp-steps                { grid-template-columns: 1fr; gap: 14px; }
  .ts-lp-mat-grid             { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ts-lp-step-cta             { flex-direction: column; align-items: center; }
}

/* ===================================================
   INNER PAGE — OTHER SIDING SERVICES (separated section)
   =================================================== */
.ts-other-svc-section {
  background: var(--bg);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.ts-other-svc-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.ts-other-svc-head {
  text-align: center;
  margin-bottom: 36px;
}
.ts-other-svc-head .ts-rel-heading {
  font-size: clamp(24px, 2.8vw, 34px);
  margin-top: 8px;
}

/* ===================================================
   INNER PAGE — WHERE WE WORK (full-bleed dark)
   =================================================== */
.ts-inner-areas-section {
  background: var(--bg-dark);
  padding: 90px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ts-inner-areas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(14,114,104,.22) 0%, transparent 65%);
  pointer-events: none;
}
.ts-inner-areas-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.ts-inner-areas-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.ts-inner-areas-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 50px);
  color: #fff;
  line-height: 1.18;
  margin: 0 0 20px;
}
.ts-inner-areas-desc {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.ts-inner-areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.ts-iac {
  display: inline-block;
  background: rgba(14,114,104,.18);
  border: 1.5px solid rgba(14,114,104,.6);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 32px;
  letter-spacing: .2px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.ts-iac:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(14,114,104,.35);
}
.ts-inner-areas-cta-btn {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 4px;
  letter-spacing: .4px;
  transition: border-color .2s, background .2s, color .2s;
}
.ts-inner-areas-cta-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
@media (max-width: 768px) {
  .ts-other-svc-section { padding: 60px 0; }
  .ts-inner-areas-section { padding: 64px 5%; }
  .ts-inner-areas-heading { font-size: 28px; }
  .ts-iac { font-size: 13px; padding: 9px 18px; }
}

/* ===================================================
   BLOG ARCHIVE (index.php)
   =================================================== */
/* ===== BLOG ARCHIVE ===== */
.ts-blog-archive-hero { min-height: 380px; }
.ts-blog-archive-inner { max-width: 760px; text-align: left; }
.ts-blog-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.ts-blog-archive-sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin: 10px 0 0;
  max-width: 560px;
}

.ts-blog-main { background: #f4f7f9; padding: 60px 0 100px; }
.ts-blog-container { max-width: 1420px; margin: 0 auto; padding: 0 32px; }

/* Two-column page layout: posts + sidebar */
.ts-blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.ts-blog-content { min-width: 0; }

/* --- Featured first post --- */
.ts-blog-card.ts-blog-card--featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(8,28,44,.09);
  border: 1px solid rgba(8,28,44,.06);
  margin-bottom: 28px;
  transition: box-shadow .2s, transform .2s;
}
.ts-blog-card--featured:hover {
  box-shadow: 0 10px 40px rgba(8,28,44,.14);
  transform: translateY(-3px);
}
.ts-blog-card--featured .ts-blog-card-img-wrap {
  aspect-ratio: unset;
  min-height: 280px;
}
.ts-blog-card--featured .ts-blog-card-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ts-blog-card--featured .ts-blog-card-title {
  font-size: 22px;
  margin: 0 0 14px;
}
.ts-blog-card--featured .ts-blog-card-excerpt {
  font-size: 15px;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Regular grid: 2 columns --- */
.ts-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ts-blog-card {
  background: #fff;
  border: 1px solid rgba(8,28,44,.06);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(8,28,44,.06);
  transition: box-shadow .2s, transform .2s;
}
.ts-blog-card:hover {
  box-shadow: 0 8px 32px rgba(8,28,44,.12);
  transform: translateY(-3px);
}
.ts-blog-card-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-dark);
}
.ts-blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ts-blog-card:hover .ts-blog-card-img,
.ts-blog-card--featured:hover .ts-blog-card-img { transform: scale(1.04); }

.ts-blog-card-date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 5px;
  padding: 6px 10px;
  text-align: center;
  min-width: 42px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.ts-bcd-day {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.ts-bcd-month {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}
.ts-blog-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ts-blog-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: .3px;
}
.ts-blog-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
}
.ts-blog-card-title a { color: var(--text); text-decoration: none; transition: color .2s; }
.ts-blog-card-title a:hover { color: var(--accent); }
.ts-blog-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
}
.ts-blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
  transition: gap .15s;
}
.ts-blog-card-cta:hover { gap: 8px; }

/* --- Pagination --- */
.ts-blog-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.ts-blog-pagination .page-numbers {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
}
.ts-blog-pagination .page-numbers li a,
.ts-blog-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  background: #fff;
  transition: border-color .2s, background .2s, color .2s;
}
.ts-blog-pagination .page-numbers li a:hover { border-color: var(--accent); color: var(--accent); }
.ts-blog-pagination .page-numbers li span.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.ts-blog-empty { text-align: center; padding: 80px 0; color: var(--text-muted); font-size: 16px; }

/* ===== SIDEBAR ===== */
.ts-blog-sidebar { position: sticky; top: 90px; }

.ts-sidebar-widget {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(8,28,44,.06);
  box-shadow: 0 2px 12px rgba(8,28,44,.06);
}
.ts-sidebar-widget-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  letter-spacing: .3px;
}

/* Search widget */
.ts-sidebar-widget--search { padding: 16px; }
.ts-sidebar-widget--search form {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
  transition: border-color .2s;
}
.ts-sidebar-widget--search form:focus-within { border-color: var(--accent); }
.ts-sidebar-widget--search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: transparent;
}
.ts-sidebar-widget--search button {
  background: transparent;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: color .2s;
}
.ts-sidebar-widget--search button:hover { color: var(--accent); }

/* Categories list */
.ts-sidebar-cats {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ts-sidebar-cats li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #f0f4f7;
  gap: 8px;
}
.ts-sidebar-cats li:last-child { border-bottom: none; }
.ts-sidebar-cats li a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
  line-height: 1.3;
}
.ts-sidebar-cats li a:hover { color: var(--accent); }
.ts-cat-count {
  flex-shrink: 0;
  background: #eef2f5;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  line-height: 1.6;
}

/* CTA widget */
.ts-sidebar-widget--cta {
  background: var(--accent) !important;
  border-color: transparent !important;
  box-shadow: 0 6px 24px rgba(14,114,104,.25) !important;
  text-align: center;
}
.ts-sidebar-cta-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #fff;
}
.ts-sidebar-widget--cta h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}
.ts-sidebar-widget--cta p {
  font-size: 13px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  margin: 0 0 20px;
}
.ts-sidebar-cta-btn {
  display: block;
  background: #fff;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: opacity .2s, transform .15s;
}
.ts-sidebar-cta-btn:hover { opacity: .92; transform: translateY(-1px); }
.ts-sidebar-cta-phone {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}
.ts-sidebar-cta-phone:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .ts-blog-layout { grid-template-columns: 1fr 260px; gap: 32px; }
}
@media (max-width: 900px) {
  .ts-blog-layout { grid-template-columns: 1fr; }
  .ts-blog-sidebar { position: static; }
  .ts-blog-card.ts-blog-card--featured { grid-template-columns: 1fr; }
  .ts-blog-card--featured .ts-blog-card-img-wrap { min-height: 220px; aspect-ratio: 16/7; }
}
@media (max-width: 640px) {
  .ts-blog-grid { grid-template-columns: 1fr; }
  .ts-blog-card--featured .ts-blog-card-body { padding: 24px 20px; }
}

/* ===================================================
   GALLERY PAGE (page-gallery.php)
   =================================================== */
.ts-gallery-page-hero { min-height: 420px; }
.ts-gallery-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.ts-gallery-page-hero .ts-page-hero-inner h1 {
  font-size: clamp(30px, 4vw, 52px);
}

.ts-gallery-section { background: var(--bg); padding: 80px 5% 40px; }
.ts-gallery-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.ts-gallery-intro-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.ts-gallery-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--text);
  margin: 0 0 12px;
}
.ts-gallery-intro p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.ts-gallery-grid {
  columns: 3;
  column-gap: 16px;
  max-width: 1200px;
  margin: 0 auto 64px;
}
.ts-gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.ts-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.ts-gallery-item:hover img { transform: scale(1.04); }
.ts-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,28,44,.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  pointer-events: none;
}
.ts-gallery-item:hover .ts-gallery-item-overlay { opacity: 1; }
.ts-gallery-item-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
}

.ts-gallery-materials {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 48px 5%;
}
.ts-gallery-mat-inner { max-width: 1200px; margin: 0 auto; }
.ts-gallery-mat-head {
  text-align: center;
  margin-bottom: 40px;
}
.ts-gallery-mat-head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 34px);
  color: var(--text);
  margin: 8px 0 10px;
}
.ts-gallery-mat-head p { font-size: 15px; color: var(--text-muted); }
.ts-gallery-mat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ts-gallery-mat-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.ts-gallery-mat-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.ts-gallery-mat-card-body { padding: 18px 20px; }
.ts-gallery-mat-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}
.ts-gallery-mat-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0; }

.ts-gallery-cta {
  background: var(--bg-dark);
  padding: 80px 5%;
  text-align: center;
}
.ts-gallery-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  color: #fff;
  margin: 0 0 14px;
}
.ts-gallery-cta p { font-size: 16px; color: rgba(255,255,255,.6); margin: 0 0 32px; }
.ts-gallery-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 4px;
  transition: background .2s, transform .15s;
}
.ts-gallery-cta-btn:hover { background: var(--accent-hover); transform: translateY(-2px); }

@media (max-width: 1024px) {
  .ts-gallery-grid { columns: 2; }
  .ts-gallery-mat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ts-gallery-grid { columns: 1; }
  .ts-gallery-mat-grid { grid-template-columns: 1fr; }
}

/* ===== ABOUT STRIP ===== */
.ts-about-strip { background: var(--bg-white); padding: 80px 24px; }
.ts-about-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ts-about-strip-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--primary); margin-bottom: 20px; line-height: 1.2; }
.ts-about-strip-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; font-size: 16px; }
.ts-about-strip-link { display: inline-block; color: var(--accent); font-weight: 700; font-size: 15px; text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 2px; margin-top: 8px; transition: color .2s; }
.ts-about-strip-link:hover { color: var(--accent-hover); }
.ts-about-strip-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ts-about-cred-item { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 28px 20px; text-align: center; }
.ts-about-cred-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--accent); line-height: 1; }
.ts-about-cred-label { font-size: 12px; color: var(--text-muted); font-weight: 600; margin-top: 8px; text-transform: uppercase; letter-spacing: .04em; }
@media (max-width: 900px) { .ts-about-strip-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ===== BLOG TEASER ===== */
.ts-blog-teaser { background: var(--bg); padding: 80px 24px; }
.ts-blog-teaser-inner { max-width: 1200px; margin: 0 auto; }
.ts-blog-teaser-head { text-align: center; margin-bottom: 48px; }
.ts-blog-teaser-head h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--primary); margin-bottom: 12px; }
.ts-blog-teaser-head p { color: var(--text-muted); max-width: 500px; margin: 0 auto; font-size: 16px; }
.ts-blog-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ts-blog-teaser-card { display: flex; flex-direction: column; background: var(--bg-white); border-radius: 12px; overflow: hidden; text-decoration: none; box-shadow: 0 2px 12px rgba(8,28,44,.07); transition: transform .2s, box-shadow .2s; }
.ts-blog-teaser-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(8,28,44,.13); }
.ts-blog-teaser-img { height: 200px; background-size: cover; background-position: center; }
.ts-blog-teaser-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.ts-blog-teaser-date { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.ts-blog-teaser-title { font-family: var(--font-display); font-size: 1.05rem; color: var(--primary); font-weight: 700; line-height: 1.4; margin: 0 0 16px; flex: 1; }
.ts-blog-teaser-read { font-size: 13px; color: var(--accent); font-weight: 700; }
.ts-blog-teaser-more { text-align: center; margin-top: 44px; }
.ts-blog-teaser-more a { color: var(--accent); font-weight: 700; font-size: 15px; text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
@media (max-width: 900px) { .ts-blog-teaser-grid { grid-template-columns: 1fr; } }

/* city chips as links */
a.ts-city { text-decoration: none; }

/* ===== FAQ SECTION ===== */
.ts-faq-section { background: var(--bg-white); padding: 88px 24px; }
.ts-faq-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 72px; align-items: start; }
.ts-faq-left h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 2.8rem); color: var(--primary); margin-bottom: 12px; line-height: 1.15; }
.ts-faq-sub { color: var(--text-muted); font-size: 16px; line-height: 1.6; margin-bottom: 36px; }
.ts-faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.ts-faq-item { border-bottom: 1px solid var(--border); }
.ts-faq-q { width: 100%; background: none; border: none; padding: 20px 40px 20px 0; text-align: left; font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--primary); cursor: pointer; position: relative; transition: color .2s; line-height: 1.4; }
.ts-faq-q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 22px; font-weight: 300; color: var(--accent); transition: transform .25s; line-height: 1; }
.ts-faq-item.open .ts-faq-q::after { transform: translateY(-50%) rotate(45deg); }
.ts-faq-q:hover { color: var(--accent); }
.ts-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; }
.ts-faq-item.open .ts-faq-a { max-height: 300px; }
.ts-faq-a p { padding: 0 40px 20px 0; color: var(--text-muted); font-size: 15px; line-height: 1.75; margin: 0; }
.ts-faq-right { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.ts-faq-img { width: 100%; height: 320px; object-fit: cover; border-radius: 12px; display: block; }
.ts-faq-cta-card { background: var(--primary); border-radius: 12px; padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; }
.ts-faq-cta-label { color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin: 0; }
.ts-faq-phone-btn { display: block; text-align: center; background: var(--accent); color: #fff; font-weight: 700; font-size: 17px; padding: 14px 20px; border-radius: 8px; text-decoration: none; transition: background .2s; }
.ts-faq-phone-btn:hover { background: var(--accent-hover); }
.ts-faq-estimate-btn { display: block; text-align: center; background: transparent; color: #fff; font-weight: 600; font-size: 14px; padding: 12px 20px; border-radius: 8px; text-decoration: none; border: 1px solid rgba(255,255,255,.3); transition: border-color .2s, background .2s; }
.ts-faq-estimate-btn:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }
@media (max-width: 960px) {
  .ts-faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .ts-faq-right { position: static; }
  .ts-faq-img { height: 260px; }
}

/* ===== BLOG CAROUSEL ===== */
.ts-blog-carousel { background: var(--bg); padding: 88px 24px; }
.ts-blog-carousel-inner { max-width: 1200px; margin: 0 auto; }
.ts-blog-carousel-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 20px; }
.ts-blog-carousel-head-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--primary); margin: 8px 0 0; }
.ts-carousel-controls { display: flex; gap: 10px; flex-shrink: 0; }
.ts-carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border); background: var(--bg-white); color: var(--primary); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s, color .2s; }
.ts-carousel-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.ts-blog-carousel-viewport { overflow: hidden; }
.ts-blog-carousel-track { display: flex; gap: 24px; transition: none; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.ts-blog-carousel-track::-webkit-scrollbar { display: none; }
.ts-blog-carousel-card { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; background: var(--bg-white); border-radius: 12px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; box-shadow: 0 2px 12px rgba(8,28,44,.07); transition: transform .2s, box-shadow .2s; }
.ts-blog-carousel-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(8,28,44,.13); }
.ts-blog-carousel-img { height: 200px; background-size: cover; background-position: center; flex-shrink: 0; }
.ts-blog-carousel-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.ts-blog-carousel-date { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.ts-blog-carousel-title { font-family: var(--font-display); font-size: 1.05rem; color: var(--primary); font-weight: 700; line-height: 1.4; margin: 0 0 16px; flex: 1; }
.ts-blog-carousel-read { font-size: 13px; color: var(--accent); font-weight: 700; }
.ts-blog-carousel-footer { text-align: center; margin-top: 40px; }
.ts-blog-carousel-more { color: var(--accent); font-weight: 700; font-size: 15px; text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
@media (max-width: 960px) {
  .ts-blog-carousel-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 600px) {
  .ts-blog-carousel-card { flex: 0 0 85%; }
  .ts-blog-carousel-head { flex-direction: column; align-items: flex-start; }
}

/* ===== HOMEPAGE OVERHAUL 2026-05-22 ===== */

/* Hero eyebrow + subhead */
.ts-eyebrow-hero { font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--accent); margin-bottom:16px; }
.ts-hero-subhead { font-size:17px; color:rgba(255,255,255,0.75); line-height:1.65; margin-bottom:24px; font-weight:300; max-width:480px; }

/* Trust Strip */
.ts-trust-strip { background:var(--primary); border-top:1px solid rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:0; padding:14px 5%; }
.ts-trust-strip-item { font-size:13px; color:rgba(255,255,255,0.7); padding:6px 24px; }
.ts-trust-strip-item strong { color:#fff; }
.ts-trust-strip-divider { width:1px; height:18px; background:rgba(255,255,255,0.2); }
@media (max-width:640px) { .ts-trust-strip { gap:8px; padding:12px 5%; } .ts-trust-strip-divider { display:none; } .ts-trust-strip-item { font-size:12px; padding:4px 12px; } }

/* Pain Section */
.ts-pain { padding:96px 5%; background:#f9f9f9; }
.ts-pain-inner { max-width:1200px; margin:0 auto; text-align:center; }
.ts-pain-inner h2 { font-family:var(--font-display); font-size:clamp(30px,4vw,48px); font-weight:900; color:var(--text); margin-bottom:12px; line-height:1.2; }
.ts-pain-sub { font-size:17px; color:var(--text-muted); max-width:560px; margin:0 auto 48px; font-weight:300; line-height:1.65; }
.ts-pain-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; text-align:left; }
.ts-pain-card { background:#fff; border:1px solid var(--border); border-radius:12px; padding:24px; display:flex; gap:18px; align-items:flex-start; }
.ts-pain-icon { font-size:24px; line-height:1; flex-shrink:0; width:48px; height:48px; background:#fff3e0; border-radius:10px; display:flex; align-items:center; justify-content:center; }
.ts-pain-content h4 { font-size:16px; font-weight:700; color:var(--text); margin-bottom:6px; }
.ts-pain-content p { font-size:14px; color:var(--text-muted); line-height:1.6; }
@media (max-width:700px) { .ts-pain-grid { grid-template-columns:1fr; } }

/* Why Turnkey / Proof */
.ts-proof { padding:96px 5%; background:var(--bg-white); }
.ts-proof-inner { max-width:1200px; margin:0 auto; }
.ts-proof-top { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; margin-bottom:40px; }
.ts-proof-text h2 { font-family:var(--font-display); font-size:clamp(28px,3.5vw,44px); font-weight:900; color:var(--primary); margin-bottom:16px; line-height:1.2; }
.ts-proof-text p { font-size:17px; color:var(--text-muted); line-height:1.75; margin-bottom:20px; font-weight:300; }
.ts-proof-stats { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.ts-proof-stat { background:var(--bg); border:1px solid var(--border); border-radius:12px; padding:28px 20px; text-align:center; }
.ts-proof-stat-num { font-family:var(--font-display); font-size:2.8rem; font-weight:700; color:var(--accent); line-height:1; }
.ts-proof-stat-num span { font-size:1.8rem; color:var(--accent); }
.ts-proof-stat-label { font-size:12px; color:var(--text-muted); font-weight:600; margin-top:8px; text-transform:uppercase; letter-spacing:0.04em; }
.ts-featured-testi { background:var(--primary); border-radius:16px; padding:36px 40px; color:#fff; text-align:center; }
.ts-featured-testi-stars { color:#f59e0b; font-size:20px; margin-bottom:16px; letter-spacing:2px; }
.ts-featured-testi-quote { font-family:var(--font-display); font-size:clamp(18px,2.2vw,24px); font-weight:400; font-style:italic; color:rgba(255,255,255,0.92); line-height:1.6; max-width:760px; margin:0 auto 16px; }
.ts-featured-testi-author { font-size:14px; color:var(--accent); font-weight:700; }
@media (max-width:900px) { .ts-proof-top { grid-template-columns:1fr; gap:40px; } .ts-featured-testi { padding:28px 24px; } }

/* Process dark override */
.ts-process--dark { background:var(--primary) !important; }
.ts-process--dark .ts-process-head h2 { color:#fff; }
.ts-process--dark .ts-process-head p { color:rgba(255,255,255,0.65); }
.ts-process--dark .ts-eyebrow { color:var(--accent); }
.ts-process--dark .ts-step { background:rgba(255,255,255,0.06); border-color:rgba(255,255,255,0.1); }
.ts-process--dark .ts-step h3 { color:#fff; }
.ts-process--dark .ts-step p { color:rgba(255,255,255,0.65); }
.ts-process--dark .ts-step-num { color:var(--accent); }
.ts-process--dark .ts-step-bg-num { color:rgba(255,255,255,0.04); }

/* Inline Form */
.ts-inline-form { background:var(--accent); padding:96px 5%; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.ts-inline-form-left h2 { font-family:var(--font-display); font-size:clamp(28px,3.5vw,44px); font-weight:900; color:#fff; margin-bottom:16px; line-height:1.2; }
.ts-inline-form-left p { font-size:16px; color:rgba(255,255,255,0.85); line-height:1.65; margin-bottom:24px; }
.ts-inline-form-promises { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.ts-inline-form-promises li { font-size:15px; color:rgba(255,255,255,0.9); display:flex; align-items:center; gap:10px; }
.ts-inline-form-promises li::before { content:'OK'; font-weight:700; color:#fff; flex-shrink:0; font-size:0; width:14px; height:14px; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.ts-inline-form-phone { display:inline-block; font-size:18px; font-weight:700; color:#fff; text-decoration:none; border-bottom:2px solid rgba(255,255,255,0.4); padding-bottom:2px; transition:border-color 0.2s; }
.ts-inline-form-phone:hover { border-color:#fff; }
.ts-form-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(8,28,44,0.22);
  border-top: 4px solid var(--primary);
}
.ts-form-card--ghl {
  padding: 0;
  height: 620px;
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.ts-form-card--ghl iframe {
  width: 100%;
  height: 1150px;
  border: none;
  border-radius: 6px;
  display: block;
  position: relative !important; /* override form_embed.js position:absolute so card can scroll */
}
/* Slim scrollbar styled to brand */
.ts-form-card--ghl::-webkit-scrollbar { width: 8px; }
.ts-form-card--ghl::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 0 8px 8px 0; }
.ts-form-card--ghl::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 8px; }
.ts-form-card--ghl::-webkit-scrollbar-thumb:hover { background: var(--accent-hover); }
.ts-form-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.ts-form-card .ts-form-confirm { font-size:12px; color:var(--accent); text-align:center; margin-top:14px; font-weight:600; }
@media (max-width:900px) { .ts-inline-form { grid-template-columns:1fr; gap:40px; padding:64px 5%; } }

/* Crew Section */
.ts-crew { padding:96px 5%; background:var(--bg-white); }
.ts-crew-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.ts-crew-img { border-radius:16px; overflow:hidden; aspect-ratio:4/3; }
.ts-crew-img img { width:100%; height:100%; object-fit:cover; display:block; }
.ts-crew-text h2 { font-family:var(--font-display); font-size:clamp(28px,3.5vw,42px); font-weight:900; color:var(--primary); margin-bottom:16px; line-height:1.2; }
.ts-crew-text p { font-size:17px; color:var(--text-muted); line-height:1.75; margin-bottom:32px; font-weight:300; }
.ts-crew-stats { display:flex; gap:32px; flex-wrap:wrap; }
.ts-crew-stat-num { font-family:var(--font-display); font-size:2.4rem; font-weight:700; color:var(--primary); line-height:1; }
.ts-crew-stat-num span { color:var(--accent); }
.ts-crew-stat-label { font-size:12px; color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:0.04em; margin-top:4px; }
@media (max-width:900px) { .ts-crew-inner { grid-template-columns:1fr; gap:40px; } .ts-crew-img { aspect-ratio:16/9; } }

/* Service Areas dark override */
.ts-communities--dark { background:var(--primary) !important; }
.ts-communities--dark h2 { color:#fff; }
.ts-communities--dark p { color:rgba(255,255,255,0.7); }
.ts-communities--dark .ts-eyebrow { color:var(--accent); }
.ts-communities--dark .ts-comm-stat-num { color:#fff; }
.ts-communities--dark .ts-comm-stat-label { color:rgba(255,255,255,0.6); }
.ts-communities--dark .ts-region-label { color:var(--accent); border-bottom-color:rgba(255,255,255,0.15); }
.ts-communities--dark .ts-city { background:rgba(255,255,255,0.07); border-color:rgba(255,255,255,0.15); color:rgba(255,255,255,0.85); }
.ts-communities--dark .ts-city:hover { background:rgba(255,255,255,0.14); color:#fff; }
.ts-communities--dark .ts-comm-cta { background:var(--accent); color:#fff; border-color:var(--accent); }
.ts-communities--dark .ts-comm-cta:hover { background:#0a5f56; }

/* ===== VISUAL FIXES 2026-05-22 ===== */

/* FIX: Process dark bg — more specific selector + hex fallback */
section.ts-process.ts-process--dark {
  background: #081C2C !important;
}
section.ts-process.ts-process--dark .ts-process-head h2 { color: #fff !important; }
section.ts-process.ts-process--dark .ts-process-head p  { color: rgba(255,255,255,0.65) !important; }
section.ts-process.ts-process--dark .ts-eyebrow          { color: #0E7268 !important; }
section.ts-process.ts-process--dark .ts-step             { background: rgba(255,255,255,0.07) !important; border-color: rgba(255,255,255,0.12) !important; }
section.ts-process.ts-process--dark .ts-step h3          { color: #fff !important; }
section.ts-process.ts-process--dark .ts-step p           { color: rgba(255,255,255,0.65) !important; }
section.ts-process.ts-process--dark .ts-step-num         { color: #0E7268 !important; }
section.ts-process.ts-process--dark .ts-step-bg-num      { color: rgba(255,255,255,0.04) !important; }

/* FIX: Testimonials — override to light bg so it separates from dark service areas */
.ts-testimonials {
  background: #f0f4f1 !important;
}
.ts-testimonials .ts-testi-head h2       { color: #081C2C !important; }
.ts-testimonials .ts-testi-rating-row .stars { color: #f59e0b !important; }
.ts-testimonials .ts-testi-rating-row .meta  { color: #6b7280 !important; }
.ts-testimonials .ts-testi-card          { background: #fff !important; border: 1px solid #e5e7eb !important; }
.ts-testimonials .tc-quote               { color: #374151 !important; }
.ts-testimonials .tc-name               { color: #081C2C !important; }
.ts-testimonials .tc-loc                { color: #6b7280 !important; }
.ts-testimonials .tc-avatar             { background: #081C2C !important; color: #fff !important; }
.ts-testimonials .tc-stars              { color: #f59e0b !important; }

/* FIX: Inline form promise list — plain checkmark instead of SVG */
.ts-inline-form-promises li::before {
  content: '\2713' !important;
  font-size: 14px !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  font-weight: 700;
  color: #fff;
}
/* Ensure form left text is all white */
.ts-inline-form-left h2  { color: #fff !important; }
.ts-inline-form-left p   { color: rgba(255,255,255,0.9) !important; }

/* FIX: Service areas dark — ensure ALL text elements visible */
.ts-communities--dark .ts-comm-left h2       { color: #fff !important; }
.ts-communities--dark .ts-comm-left p        { color: rgba(255,255,255,0.8) !important; }
.ts-communities--dark .ts-comm-stat-num      { color: #fff !important; }
.ts-communities--dark .ts-comm-stat-label    { color: rgba(255,255,255,0.65) !important; }
.ts-communities--dark .ts-region-label       { color: #0E7268 !important; }
.ts-communities--dark .ts-region-cities .ts-city { color: rgba(255,255,255,0.85) !important; background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.15) !important; }
.ts-communities--dark .ts-region-cities .ts-city:hover { color: #fff !important; background: rgba(255,255,255,0.15) !important; }
.ts-communities--dark .ts-comm-cta           { background: #0E7268 !important; color: #fff !important; border-color: #0E7268 !important; }

/* ===== TARGETED FIXES ROUND 2 — 2026-05-22 ===== */

/* FIX: Materials — override dark bg to white (process is dark, materials must be light) */
.ts-materials { background: #fff !important; }
.ts-mat-head .ts-eyebrow  { color: var(--accent) !important; }
.ts-mat-head h2            { color: var(--primary) !important; }
.ts-mat-head p             { color: var(--text-muted) !important; }
.ts-mat-grid               { gap: 16px !important; }
.ts-mat-card               { background: #f0f4f1 !important; border: 1px solid #d1ddd5 !important; flex-direction: column !important; }
.ts-mat-card:hover         { background: #e5ede8 !important; border-color: var(--accent) !important; }
.ts-mat-card-photo         { width: 100% !important; height: 180px !important; overflow: hidden; }
.ts-mat-card-photo img     { width: 100%; height: 100%; object-fit: cover; }
.ts-mat-tag                { color: var(--accent) !important; background: rgba(14,114,104,0.1) !important; display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; margin-bottom: 6px; }
.ts-mat-name               { color: var(--primary) !important; }
.ts-mat-card-body p        { color: var(--text-muted) !important; }
.ts-mat-cta                { color: var(--accent) !important; }
.ts-mat-micro-cta a        { color: var(--accent) !important; }

/* FIX: Service areas — region boxes must be dark, not white */
.ts-communities--dark .ts-region {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.12) !important;
}
.ts-communities--dark .ts-region-label {
  color: #88c8c0 !important;
  border-bottom-color: rgba(255,255,255,0.15) !important;
}
.ts-communities--dark .ts-region-label::before {
  background: #88c8c0 !important;
}
.ts-communities--dark .ts-city {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: #fff !important;
}
.ts-communities--dark .ts-city:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

/* FIX: Inline form — ensure all left-side text is white */
.ts-inline-form-promises li { color: #fff !important; }
.ts-inline-form-promises li::before { content: "\2713"; font-size: 13px !important; background: none !important; width: auto !important; height: auto !important; color: #fff !important; font-weight: 700; }
.ts-inline-form-left h2 { color: #fff !important; }
.ts-inline-form-left p  { color: rgba(255,255,255,0.9) !important; }
.ts-inline-form-phone   { color: #fff !important; }

/* ===== ROUND 3 FIXES 2026-05-22 ===== */

/* FIX: Hero � dark background + all text visible */
.ts-hero { background: #081C2C !important; }
.ts-hero h1 { color: #fff !important; }
.ts-hero h1 em { color: var(--accent) !important; }
.ts-eyebrow-hero { color: var(--accent) !important; }
.ts-hero-subhead { color: rgba(255,255,255,0.88) !important; font-size: 17px !important; }
.ts-value-props { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.ts-value-props li { color: rgba(255,255,255,0.82) !important; font-size: 14px; padding-left: 18px; position: relative; }
.ts-value-props li::before { content: '\2713'; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.ts-value-props li strong { color: #fff; }
.ts-hero-left { background: transparent !important; }

/* FIX: Materials � square overlay cards, 4-column */
.ts-mat-grid--square { grid-template-columns: repeat(4,1fr) !important; gap: 16px !important; }
.ts-mat-card--sq {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
  background: #111;
  flex-direction: unset !important;
}
.ts-mat-card--sq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ts-mat-card--sq:hover img { transform: scale(1.06); }
.ts-mat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,28,44,0.92) 0%, rgba(8,28,44,0.4) 50%, rgba(8,28,44,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.3s;
}
.ts-mat-card--sq:hover .ts-mat-overlay { background: linear-gradient(to top, rgba(8,28,44,0.97) 0%, rgba(8,28,44,0.6) 60%, rgba(8,28,44,0.1) 100%); }
.ts-mat-overlay .ts-mat-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); background: none !important; padding: 0 !important; margin-bottom: 4px; border: none !important; }
.ts-mat-overlay .ts-mat-name { font-size: 20px; font-weight: 800; color: #fff !important; font-family: var(--font-display); line-height: 1.1; margin-bottom: 8px; }
.ts-mat-overlay .ts-mat-cta { font-size: 13px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.ts-mat-card--sq:hover .ts-mat-overlay .ts-mat-cta { color: #fff; }
.ts-mat-see-all { text-align: center; margin-top: 32px; }
.ts-btn-outline-dark { display: inline-block; padding: 14px 36px; border: 2px solid var(--primary); color: var(--primary) !important; font-size: 15px; font-weight: 700; border-radius: 6px; text-decoration: none; transition: background 0.2s, color 0.2s; }
.ts-btn-outline-dark:hover { background: var(--primary); color: #fff !important; }
@media (max-width: 768px) { .ts-mat-grid--square { grid-template-columns: repeat(2,1fr) !important; } }

/* FIX: Gallery � clickable images */
.ts-gallery-item a { display: block; position: relative; text-decoration: none; }
.ts-gallery-item a img { display: block; width: 100%; }
.ts-gallery-item a .ts-gallery-caption { pointer-events: none; }
.ts-gallery-item a::after { content: ''; position: absolute; inset: 0; background: rgba(14,114,104,0); transition: background 0.25s; }
.ts-gallery-item a:hover::after { background: rgba(14,114,104,0.18); }
.ts-gallery-item a:hover .ts-gallery-caption { background: var(--accent); color: #fff; }

/* FIX: Inline form � background image with overlay */
.ts-inline-form {
  position: relative !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.ts-inline-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,114,104,0.95) 0%, rgba(8,28,44,0.88) 100%);
  z-index: 0;
}
.ts-inline-form > * { position: relative; z-index: 1; }

/* ===== ROUND 4 FIXES 2026-05-22 ===== */

/* REVERT: Hero � restore original light bg, only fix text colors */
.ts-hero { background: var(--bg-white) !important; }
.ts-hero h1 { color: var(--primary) !important; }
.ts-hero h1 em { color: var(--accent) !important; }
.ts-eyebrow-hero { color: var(--accent) !important; }
.ts-hero-subhead { color: var(--text-muted) !important; font-size: 17px !important; font-weight: 400 !important; }
.ts-value-props li { color: var(--text) !important; }
.ts-value-props li::before { color: var(--accent) !important; }
.ts-value-props li strong { color: var(--primary) !important; }
.ts-hero-left { background: transparent !important; }

/* FIX: Inline form � dark navy theme matching site palette, 40% compact */
.ts-inline-form {
  background: var(--primary) !important;
  background-image: none !important;
  padding: 58px 5% !important;
  position: relative !important;
}
.ts-inline-form::before { display: none !important; }
.ts-inline-form > * { position: relative; z-index: auto; }

/* FIX: Gallery � maximize width, reduce dead space on sides */
.ts-gallery { padding-left: 1.5% !important; padding-right: 1.5% !important; }
.ts-gallery-grid { gap: 6px !important; }
.ts-gallery h2 { padding-left: 1.5%; }
.ts-gallery .ts-eyebrow, .ts-gallery .ts-gallery-sub, .ts-gallery-more { padding-left: 1.5%; }

/* Lightbox overlay */
.ts-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.ts-lightbox.ts-lb--open { opacity: 1; pointer-events: auto; }
.ts-lb-content { display: flex; flex-direction: column; align-items: center; max-width: 90vw; }
.ts-lb-img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: 4px; box-shadow: 0 24px 80px rgba(0,0,0,0.6); }
.ts-lb-cap { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; margin-top: 16px; letter-spacing: 0.3px; }
.ts-lb-close {
  position: fixed;
  top: 18px; right: 24px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 100000;
}
.ts-lb-close:hover { background: rgba(255,255,255,0.25); }

/* Hero subhead � bold */
.ts-hero-subhead { font-weight: 700 !important; }

/* Inline form � background image with dark navy overlay */
.ts-inline-form {
  background-color: var(--primary) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative !important;
}
.ts-inline-form::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(8,28,44,0.82) !important;
  z-index: 0 !important;
}
.ts-inline-form > * { position: relative !important; z-index: 1 !important; }

/* Inline form � reduce overlay opacity so photo shows through */
.ts-inline-form::before { background: rgba(8,28,44,0.68) !important; }

/* Inline form � use CSS custom property for background image (bypasses !important suppression) */
.ts-inline-form { background-image: var(--form-bg, none) !important; }

/* Gallery � remove ALL side padding so images fill edge to edge */
.ts-gallery { padding-left: 0 !important; padding-right: 0 !important; }
.ts-gallery > .ts-eyebrow,
.ts-gallery > h2,
.ts-gallery > .ts-gallery-sub,
.ts-gallery > .ts-gallery-more { padding-left: 4% !important; padding-right: 4% !important; }
.ts-gallery-grid { gap: 4px !important; }

/* Estimate section � dark section vibe, photo as subtle texture only */
.ts-inline-form::before { background: rgba(8,28,44,0.88) !important; }

/* Pain section � professional SVG icons */
.ts-pain-icon {
  background: rgba(14,114,104,0.1) !important;
  color: var(--accent) !important;
  border: 1.5px solid rgba(14,114,104,0.2) !important;
  flex-shrink: 0 !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: unset !important;
}
.ts-pain-icon svg { display: block; }

/* FIX: Gallery homepage grid � remove max-width cap causing dead space on wide screens */
.ts-gallery .ts-gallery-grid {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  columns: unset !important;
  column-gap: unset !important;
}

/* FIX: Gallery PAGE � restore column layout, keep max-width spacing */
.ts-gallery-section .ts-gallery-grid {
  display: block !important;
  grid-template-columns: unset !important;
  grid-template-rows: unset !important;
  columns: 3 !important;
  column-gap: 12px !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.ts-gallery-section .ts-gallery-item {
  display: block !important;
  grid-column: unset !important;
  grid-row: unset !important;
  break-inside: avoid !important;
  margin-bottom: 12px !important;
}
.ts-gallery-section .ts-gallery-item img {
  height: auto !important;
  width: 100% !important;
}
@media (max-width: 1024px) { .ts-gallery-section .ts-gallery-grid { columns: 2 !important; } }
@media (max-width: 640px)  { .ts-gallery-section .ts-gallery-grid { columns: 1 !important; } }

/* ===================================================
   GALLERY PAGE � Responsive overhaul (v1.2)
   Overrides: homepage grid-template-rows/columns,
   removes double max-width, explicit breakpoints
   =================================================== */

/* Gallery page editorial grid — featured item 1 tall-left, item 6 full-width bottom */

/* Anchor must fill grid cell so img height:100% resolves correctly */
.ts-gallery-section .ts-gallery-item a {
  display: block !important;
  height: 100% !important;
  text-decoration: none !important;
}

.ts-gallery-section .ts-gallery-grid {
  display: grid !important;
  columns: unset !important;
  grid-template-columns: 1.6fr 1fr 1fr !important;
  grid-template-rows: 310px 270px 230px !important;
  gap: 12px !important;
  max-width: 1200px !important;
  margin: 0 auto 0 !important;
}
.ts-gallery-section .ts-gallery-item {
  display: block !important;
  break-inside: unset !important;
  margin-bottom: 0 !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  position: relative !important;
  cursor: pointer !important;
}
.ts-gallery-section .ts-gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .4s ease !important;
}
.ts-gallery-section .ts-gallery-item:hover img { transform: scale(1.04) !important; }
.ts-gallery-section .ts-gallery-item:nth-child(1) {
  grid-row: 1 / 3 !important;
  grid-column: 1 / 2 !important;
}
.ts-gallery-section .ts-gallery-item:nth-child(6) {
  grid-row: 3 / 4 !important;
  grid-column: 1 / 4 !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .ts-gallery-section .ts-gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 260px 240px 220px 220px !important;
  }
  .ts-gallery-section .ts-gallery-item:nth-child(1) {
    grid-row: 1 / 3 !important;
    grid-column: 1 / 2 !important;
  }
  .ts-gallery-section .ts-gallery-item:nth-child(6) {
    grid-row: 4 / 5 !important;
    grid-column: 1 / 3 !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ts-gallery-section .ts-gallery-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(6, 240px) !important;
    gap: 10px !important;
  }
  .ts-gallery-section .ts-gallery-item:nth-child(1),
  .ts-gallery-section .ts-gallery-item:nth-child(6) {
    grid-row: auto !important;
    grid-column: auto !important;
  }
  .ts-gallery-section { padding-left: 4% !important; padding-right: 4% !important; }
}

/* Materials grid on gallery page � responsive */
@media (max-width: 900px) {
  .ts-gallery-mat-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 560px) {
  .ts-gallery-mat-grid { grid-template-columns: 1fr !important; }
}

/* ===== HOMEPAGE GALLERY � Mosaic Layout (Design B) ===== */
.ts-gallery--mosaic { background: var(--bg-white); padding: 80px 5%; }
.ts-gallery-head { text-align: center; margin-bottom: 40px; }
.ts-gallery-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  color: var(--primary); margin: 8px 0 12px; line-height: 1.2;
}
.ts-gallery-head .ts-gallery-sub { font-size: 16px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

.ts-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 280px 220px;
  gap: 6px;
  max-width: 1200px;
  margin: 0 auto;
}
.ts-mosaic-item { position: relative; overflow: hidden; cursor: pointer; }
.ts-mosaic-item--featured { grid-row: 1 / 3; }
.ts-mosaic-item a { display: block; width: 100%; height: 100%; text-decoration: none; }
.ts-mosaic-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.ts-mosaic-item:hover img { transform: scale(1.06); }

.ts-mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,28,44,0.8) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 16px 20px;
  opacity: 0; transition: opacity 0.3s;
}
.ts-mosaic-item--featured .ts-mosaic-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(8,28,44,0.75) 0%, transparent 45%);
}
.ts-mosaic-item:hover .ts-mosaic-overlay { opacity: 1; }
.ts-mosaic-cap {
  color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
}
.ts-mosaic-item--featured .ts-mosaic-cap { font-size: 16px; }

.ts-mosaic-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 10px; border-radius: 3px; z-index: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .ts-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 200px 200px;
  }
  .ts-mosaic-item--featured { grid-row: 1 / 2; grid-column: 1 / 3; }
}
@media (max-width: 600px) {
  .ts-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }
  .ts-mosaic-item--featured { grid-row: auto; grid-column: auto; }
}

/* FIX: Gallery mosaic � restore side padding overridden by earlier .ts-gallery rule */
.ts-gallery--mosaic {
  padding-left: 5% !important;
  padding-right: 5% !important;
}

/* Crew section � 3-card layout with real team photos */
.ts-crew--cards {
  background: #fff;
  padding: 80px 5%;
}
.ts-crew-cards-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ts-crew-cards-head {
  text-align: center;
  margin-bottom: 48px;
}
.ts-crew-cards-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--primary);
  margin: 8px 0 12px;
  line-height: 1.2;
}
.ts-crew-cards-head p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}
.ts-crew-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.ts-crew-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-white);
}
.ts-crew-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.ts-crew-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.ts-crew-card:hover .ts-crew-card-photo img { transform: scale(1.04); }
.ts-crew-card-info {
  padding: 18px 20px;
  background: #fff;
}
.ts-crew-card-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.ts-crew-card-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.ts-crew-cards-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
  .ts-crew-cards-grid { grid-template-columns: 1fr 1fr; }
  .ts-crew-cards-stats { gap: 24px; }
}
@media (max-width: 500px) {
  .ts-crew-cards-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .ts-crew-cards-stats { flex-direction: column; align-items: center; gap: 20px; }
}

/* FIX: Remove double-centering on mosaic � section 5% padding is enough */
.ts-mosaic {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Crew slider � photo carousel within original two-column layout */
.ts-crew-slider { position: relative; width: 100%; }
.ts-crew-slides { position: relative; overflow: hidden; border-radius: 10px; }
.ts-crew-slide { display: none; }
.ts-crew-slide--active { display: block; }
.ts-crew-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 10px;
}
.ts-crew-slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  gap: 12px;
}
.ts-crew-prev,
.ts-crew-next {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: #fff;
  color: var(--accent);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.ts-crew-prev:hover,
.ts-crew-next:hover { background: var(--accent); color: #fff; }
.ts-crew-id {
  display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1;
}
.ts-crew-id-name {
  font-size: 16px; font-weight: 700; color: var(--primary);
}
.ts-crew-id-role {
  font-size: 13px; color: var(--accent); font-weight: 600; margin-top: 2px;
}

/* Crew slider � show full photo, no crop */
.ts-crew-slide img {
  width: 100% !important;
  height: auto !important;
  object-fit: unset !important;
  object-position: unset !important;
  border-radius: 10px !important;
  display: block !important;
}
.ts-crew-slides {
  border-radius: 10px !important;
  overflow: visible !important;
}

/* Crew slider � unclip the container so full photo + nav arrows show */
.ts-crew-img {
  overflow: visible !important;
  height: auto !important;
  align-self: start !important;
}
.ts-crew-inner {
  align-items: start !important;
}

/* Crew cards � show full photo uncropped, natural aspect ratio */
.ts-crew-card-photo {
  aspect-ratio: unset !important;
  overflow: hidden !important;
}
.ts-crew-card-photo img {
  width: 100% !important;
  height: auto !important;
  object-fit: unset !important;
  display: block !important;
}

/* NAV: fix logo-to-nav gap � links follow logo, CTA anchors right */
.ts-nav-links {
  margin-left: 40px !important;
}
.ts-nav-cta {
  margin-left: auto !important;
}

/* NAV: Call Now button + CTA margin fix */
.ts-nav-call {
  margin-left: auto !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 2px solid var(--accent);
  border-radius: 5px;
  color: var(--accent) !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.ts-nav-call:hover {
  background: var(--accent);
  color: #fff !important;
}
.ts-nav-cta {
  margin-left: 10px !important;
}
@media (max-width: 900px) {
  .ts-nav-call { display: none !important; }
}

/* ===== NAV: center links between logo and CTAs ===== */
@media (min-width: 901px) {
  .ts-nav {
    position: relative !important;
  }
  .ts-nav-links {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    display: flex !important;
    gap: 28px !important;
    pointer-events: auto !important;
  }
}

/* ===== TRUST SEALS ===== */
.ts-trust-seals {
  background: #fff;
  padding: 32px 5%;
  border-bottom: 1px solid #e2e8ed;
  border-top: 1px solid #e2e8ed;
}
.ts-trust-seals-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ts-trust-seal {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  transition: transform 0.2s;
}
.ts-trust-seal:hover { transform: translateY(-3px); }
.ts-trust-seal img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 95px;
  object-fit: contain;
}
.ts-trust-divider {
  width: 1px;
  height: 56px;
  background: #dde4ea;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .ts-trust-seals-inner { flex-wrap: wrap; gap: 4px; }
  .ts-trust-divider { display: none; }
  .ts-trust-seal { flex: 0 0 calc(50% - 4px); padding: 10px 16px; }
  .ts-trust-seal img { max-height: 78px; }
}
@media (max-width: 400px) {
  .ts-trust-seal { flex: 0 0 100%; }
}

/* ===== ANIMATIONS ===== */

/* Hero entrance — page load, staggered */
@keyframes ts-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ts-fade-right {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: none; }
}
.ts-eyebrow-hero                     { animation: ts-fade-up 0.6s ease both; animation-delay: 0.1s; }
.ts-hero-left h1                     { animation: ts-fade-up 0.7s ease both; animation-delay: 0.25s; }
.ts-hero-subhead                     { animation: ts-fade-up 0.6s ease both; animation-delay: 0.42s; }
.ts-value-props                      { animation: ts-fade-up 0.6s ease both; animation-delay: 0.55s; }
.ts-hero-btns                        { animation: ts-fade-up 0.6s ease both; animation-delay: 0.68s; }
.ts-hero-right                       { animation: ts-fade-right 0.8s ease both; animation-delay: 0.3s; }

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Process steps — stagger via nth-child (already have reveal class in HTML) */
.ts-step.reveal:nth-child(2) { transition-delay: 0.15s; }
.ts-step.reveal:nth-child(3) { transition-delay: 0.3s; }

/* Pain grid — parent reveals, children stagger in */
.ts-pain-grid.reveal .ts-pain-card {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.ts-pain-grid.reveal.visible .ts-pain-card                  { opacity: 1; transform: none; }
.ts-pain-grid.reveal.visible .ts-pain-card:nth-child(2)     { transition-delay: 0.1s; }
.ts-pain-grid.reveal.visible .ts-pain-card:nth-child(3)     { transition-delay: 0.2s; }
.ts-pain-grid.reveal.visible .ts-pain-card:nth-child(4)     { transition-delay: 0.3s; }

/* Proof stats — parent reveals, children stagger in */
.ts-proof-stats.reveal .ts-proof-stat {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.ts-proof-stats.reveal.visible .ts-proof-stat                  { opacity: 1; transform: none; }
.ts-proof-stats.reveal.visible .ts-proof-stat:nth-child(2)     { transition-delay: 0.1s; }
.ts-proof-stats.reveal.visible .ts-proof-stat:nth-child(3)     { transition-delay: 0.2s; }
.ts-proof-stats.reveal.visible .ts-proof-stat:nth-child(4)     { transition-delay: 0.3s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .ts-eyebrow-hero, .ts-hero-left h1, .ts-hero-subhead,
  .ts-value-props, .ts-hero-btns, .ts-hero-right,
  .reveal, .ts-pain-grid.reveal .ts-pain-card,
  .ts-proof-stats.reveal .ts-proof-stat {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== INSTAGRAM SECTION ===== */
.ts-instagram-section { padding: 72px 5% 64px; background: var(--bg-white); }
.ts-instagram-inner { max-width: 1200px; margin: 0 auto; }
.ts-instagram-head { text-align: center; margin-bottom: 36px; }
.ts-instagram-head .ts-eyebrow { margin-bottom: 8px; }
.ts-instagram-head h2 { font-family: var(--font-display); font-size: 32px; color: var(--primary); margin: 0; }
@media (max-width: 768px) { .ts-instagram-section { padding: 48px 4% 40px; } }

/* ===== ROUND 5 FIXES 2026-05-29 — Dead space + low-contrast fixes ===== */

/* 1. Why Turnkey — close the oversized center gap */
.ts-proof-top { gap: 48px !important; }

/* 2. Process dark — trim excess bottom padding below cards */
section.ts-process.ts-process--dark { padding-bottom: 60px !important; }

/* 3. Materials section head — flex row: headline left, big stats right */
.ts-mat-head {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  gap: 24px !important;
}
.ts-mat-head > div:first-child { flex: 1; }
.ts-mat-head-right {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  flex-shrink: 0;
  padding-bottom: 4px;
}
.ts-mat-head-stat { text-align: center; }
.ts-mat-head-stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.ts-mat-head-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
@media (max-width: 768px) {
  .ts-mat-head { flex-direction: column !important; align-items: flex-start !important; }
  .ts-mat-head-right { display: none !important; }
}

/* 4. Inline form — top-align both columns, remove centering dead space below phone */
.ts-inline-form { align-items: flex-start !important; }

/* 5. Materials overlay tags — boost contrast so labels are readable */
.ts-mat-overlay .ts-mat-tag {
  color: #fff !important;
  background: rgba(14,114,104,0.85) !important;
  padding: 3px 9px !important;
  border-radius: 2px !important;
  font-size: 10px !important;
  border: none !important;
}

/* 6. Crew stats bar — spread stats to fill full row width */
.ts-crew-cards-stats {
  justify-content: space-evenly !important;
}
.ts-crew-stat { flex: 1 !important; text-align: center !important; }

/* 7. Service areas — stretch regions column to fill dark panel height */
.ts-communities .ts-comm-inner,
.ts-communities--dark .ts-comm-inner { align-items: stretch !important; }
.ts-communities .ts-regions,
.ts-communities--dark .ts-regions {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 16px !important;
  height: 100% !important;
}
.ts-communities .ts-region,
.ts-communities--dark .ts-region { flex: 1 !important; display: flex !important; flex-direction: column !important; }
.ts-communities .ts-region-cities,
.ts-communities--dark .ts-region-cities { flex: 1 !important; }

/* 8. Materials "Learn more" — always fully visible, not just on hover */
.ts-mat-overlay .ts-mat-cta {
  color: #fff !important;
  opacity: 1 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  border-bottom: 1px solid rgba(255,255,255,0.45) !important;
  padding-bottom: 1px !important;
  width: fit-content !important;
}

/* 9. Free Estimate — phone CTA button: teal with white text */
.ts-inline-form-phone-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: var(--accent) !important;
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  padding: 16px 28px !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 20px rgba(14,114,104,0.45), 0 0 0 3px rgba(255,255,255,0.2) !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  margin-bottom: 24px !important;
  width: 100% !important;
  justify-content: center !important;
}
.ts-inline-form-phone-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(14,114,104,0.55), 0 0 0 3px rgba(255,255,255,0.3) !important;
}
.ts-inline-form-phone-btn svg {
  color: #fff !important;
  stroke: #fff !important;
  flex-shrink: 0 !important;
}

/* 10. Free Estimate trust seals — images only, no box */
.ts-inline-form-seals {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  flex-wrap: wrap !important;
  margin-top: 20px !important;
}
.ts-inline-form-seals img {
  height: 96px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

/* 11. Coverage area — single-line heading, no wrap */
.ts-hub-intro-text h2 {
  white-space: nowrap !important;
}

/* 12. Coverage area image — fill full height of row, no dead space */
.ts-hub-intro-inner { align-items: stretch !important; }
.ts-hub-intro-img { height: 100% !important; }
.ts-hub-intro-img img {
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
}

/* 13. Service areas — flex row so cards size to their own content, not the tallest sibling */
.ts-hub-regions-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  gap: 24px !important;
}
.ts-hub-region-card {
  flex: 1 1 260px !important;
  max-width: calc(33.333% - 16px) !important;
  align-self: flex-start !important;
}

/* 14. Blog post comparison tables */
.ts-table-wrap { overflow-x: auto; margin: 28px 0; border-radius: 4px; }
.ts-comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; line-height: 1.5; }
.ts-comparison-table th {
  background: var(--primary);
  color: #fff;
  padding: 11px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.ts-comparison-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #e2e8ed;
  color: var(--text-muted);
  vertical-align: top;
}
.ts-comparison-table tr:nth-child(even) td { background: #f7faf8; }
.ts-comparison-table tr:hover td { background: rgba(14,114,104,0.06); }
.ts-comparison-table td:first-child { font-weight: 600; color: var(--text); }

/* ===== Estimate popup modal ===== */
.ts-modal-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(8,28,44,.72);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 40px 16px; overflow-y: auto;
}
.ts-modal-overlay.is-open { display: flex; }
.ts-modal {
  position: relative; background: #fff; border-radius: 8px;
  width: 100%; max-width: 480px; margin: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  animation: ts-modal-in .25s ease;
}
@keyframes ts-modal-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.ts-modal-close {
  position: absolute; top: -16px; right: -16px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: #fff; color: #081C2C; font-size: 26px; line-height: 1;
  cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,.28);
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s;
}
.ts-modal-close:hover { transform: scale(1.08); }
.ts-modal-iframe {
  width: 100%; height: 600px; border: none; border-radius: 8px;
  display: block; background: #fff;
}
@media (max-width: 540px) {
  .ts-modal-overlay { padding: 16px 8px; }
  .ts-modal-close { top: 8px; right: 8px; background: rgba(255,255,255,.92); width: 34px; height: 34px; font-size: 22px; }
}
 /* ===== Turnkey custom sections (Tier 3) — in the stylesheet so WP Rocket RUCSS retains them ===== */
  .ts-sa-citygrid{display:grid;grid-template-columns:repeat(auto-fill,minmax(185px,1fr));gap:12px;max-width:1080px;margi
  n:0 auto}

  .ts-loc-dir{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:18px;max-width:1180px;margin:30
  px auto 0}
  .ts-loc-card{background:#0f2c41;border:1px solid rgba(255,255,255,.1);border-radius:14px;padding:20px}
  .ts-loc-ch{margin-bottom:14px;padding-bottom:12px;border-bottom:1px solid rgba(255,255,255,.14)}
  .ts-loc-ch a,.ts-loc-ch
  span{font-family:'Outfit',sans-serif;font-weight:800;font-size:1.22rem;color:#fff;text-decoration:none}
  .ts-loc-ch a:hover{color:#F5C842}
  .ts-loc-mats{display:flex;flex-wrap:wrap;gap:7px}
  .ts-loc-chip{font-family:'Lato',sans-serif;font-weight:700;font-size:13px;text-decoration:none;padding:8px
  13px;border-radius:7px;border:1.5px solid #88C8C0;color:#cfe3df;background:transparent;transition:.14s}
  .ts-loc-chip:hover{background:#0E7268;border-color:#0E7268;color:#fff}
  .ts-loc-soon{border:1.5px dashed
  rgba(255,255,255,.22);color:rgba(255,255,255,.45);pointer-events:none;font-weight:600}
  .ts-loc-soon
  em{font-style:normal;font-size:.68em;text-transform:uppercase;letter-spacing:.05em;margin-left:5px;opacity:.85}

  .ts-fr-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:18px;max-width:1100px;margin:0
  auto}
  .ts-fr-card{display:flex;align-items:center;justify-content:space-between;gap:14px;background:#fff;border:1px solid
  #BACCD8;border-radius:13px;padding:22px 24px;text-decoration:none;box-shadow:0 3px 14px
  rgba(8,28,44,.05);transition:.18s}
  .ts-fr-card:hover{border-color:#0E7268;transform:translateY(-3px);box-shadow:0 12px 28px rgba(14,114,104,.16)}
  .ts-fr-nm{display:block;font-family:'Outfit',sans-serif;font-weight:700;font-size:1.08rem;color:#081C2C;line-height:1.
  3}
  .ts-fr-tg{display:block;font-family:'Lato',sans-serif;font-size:12px;color:#0E7268;font-weight:700;margin-top:6px;text
  -transform:uppercase;letter-spacing:.04em}
  .ts-fr-ar{font-family:'Outfit',sans-serif;font-weight:800;font-size:1.3rem;color:#0E7268;flex-shrink:0}
  .ts-fr-card:hover .ts-fr-ar{transform:translateX(3px)}
 /* ============================================================
     MOBILE FIXES — 2026-06-11
     Horizontalize tall stacked blocks + fix contact page on phones.
     Paired with the nav.js caret fix (Services / Service Areas hub
     links now navigate on mobile). Appended last so it wins source order.
     ============================================================ */
  @media (max-width: 768px) {
    /* Homepage crew stats: 20+ / 50+ / 100% on one row, not stacked */
    .ts-crew-cards-stats { flex-direction: row !important; flex-wrap: nowrap !important; justify-content: space-between
  !important; align-items: flex-start !important; gap: 8px !important; }
    .ts-crew-cards-stats .ts-crew-stat { flex: 1 1 0 !important; min-width: 0 !important; text-align: center !important;
  }
    .ts-crew-cards-stats .ts-crew-stat-num { font-size: 1.9rem !important; }
    .ts-crew-cards-stats .ts-crew-stat-label { font-size: 10px !important; letter-spacing: .02em !important; }

    /* Service/material page trust checklist: 2x2 grid instead of a tall column */
    .ts-trust-bar-inner { flex-direction: row !important; flex-wrap: wrap !important; justify-content: center
  !important; gap: 10px 8px !important; }
    .ts-trust-bar-inner .ts-trust-item { flex: 0 0 calc(50% - 8px) !important; justify-content: center !important;
  white-space: normal !important; text-align: center !important; font-size: .7rem !important; }
    .ts-trust-bar-inner .ts-trust-div { display: none !important; }

    /* Contact page: collapse the 1fr/380px grid so the form gets full width */
    .ts-contact-wrap { grid-template-columns: 1fr !important; gap: 28px !important; padding: 40px 5% !important; }
    .ts-contact-right { position: static !important; top: auto !important; }
    .ts-contact-form-wrap--ghl iframe { width: 100% !important; }
  }

  /* Homepage trust seals (Google/Facebook/100%/Premium): stay 2x2 on small phones, never 1-per-row */
  @media (max-width: 400px) {
    .ts-trust-seals-inner .ts-trust-seal { flex: 0 0 calc(50% - 4px) !important; }
  }

  /* Bigger, right-aligned tap target on the dropdown caret so it's separable from the hub link on mobile */
  @media (max-width: 1024px) {
    .ts-nav-links .ts-has-dropdown > a { display: flex !important; align-items: center; justify-content: space-between;
  }
    .ts-nav-links .ts-has-dropdown > a .ts-caret { display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 40px; margin: -8px -8px -8px 6px; }
  }
 /* ============================================================
     2026-06-11 — Footer Service Areas (2 columns) + legal page density
     ============================================================ */

  .ts-footer-top > .ts-footer-col:nth-child(3) .ts-footer-links {
    display: block;
    columns: 2;
    column-gap: 32px;
  }
  .ts-footer-top > .ts-footer-col:nth-child(3) .ts-footer-links li {
    margin-bottom: 9px;
    break-inside: avoid;
  }

  .ts-legal-content { padding: 48px 5% 56px; }
  .ts-legal-content .ts-entry-content { line-height: 1.65; font-size: 16px; }
  .ts-legal-content .ts-entry-content p { margin-bottom: 12px; }
  .ts-legal-content .ts-entry-content h2 { margin: 22px 0 7px; padding-top: 14px; }
  .ts-legal-content .ts-entry-content h2:first-child,
  .ts-legal-content .ts-entry-content > p:first-child { margin-top: 0; }
* ============================================================
     2026-06-11 — Legal pages: 2-column layout with sidebar
     ============================================================ */
  .ts-legal-content-inner {
    max-width: 1180px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 308px;
    gap: 56px;
    align-items: start;
  }
  .ts-legal-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  @media (max-width: 900px) {
    .ts-legal-content-inner { grid-template-columns: 1fr; gap: 28px; }
    .ts-legal-sidebar { position: static; }
  }