:root {
  --ink: #11161b;
  --charcoal: #192027;
  --navy: #0f2a3d;
  --blue: #174762;
  --orange: #f04f18;
  --orange-dark: #c63b0c;
  --gold: #c8914a;
  --paper: #fbfaf7;
  --soft: #f2f0eb;
  --white: #ffffff;
  --stone: #d8d0c4;
  --muted: #68727a;
  --line: rgba(17, 22, 27, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 90px rgba(17, 22, 27, 0.22);
  --max: 1240px;
}

.ts-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(17, 22, 27, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 18px 54px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  left: 50%;
  max-width: var(--max);
  min-height: 78px;
  padding: 10px;
  position: absolute;
  top: 18px;
  transform: translateX(-50%);
  width: calc(100% - clamp(36px, 8vw, 112px));
  z-index: 10;
}

.ts-header__brand {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  height: 58px;
  justify-content: center;
  padding: 7px 12px;
  width: 126px;
}

.ts-header__brand img {
  max-height: 50px;
  object-fit: contain;
}

.ts-header__nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  justify-content: center;
}

.ts-header__nav a,
.ts-header__call,
.ts-header__quote {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.ts-header__actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: end;
}

.ts-header__call,
.ts-header__quote {
  min-width: 88px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.ts-header__call {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 18px;
}

.ts-header__quote {
  background: var(--orange);
  border: 1px solid rgba(240, 79, 24, 0.7);
  box-shadow: 0 14px 32px rgba(240, 79, 24, 0.28);
  color: var(--white);
  padding: 14px 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

main {
  background:
    linear-gradient(90deg, rgba(17, 22, 27, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  overflow: hidden;
}

.ts-hero {
  background:
    linear-gradient(90deg, rgba(17, 22, 27, 0.96) 0%, rgba(17, 22, 27, 0.86) 48%, rgba(15, 42, 61, 0.56) 100%),
    url("../images/project-driveway.jpeg") center / cover;
  color: var(--white);
  min-height: 100vh;
  padding: 18px clamp(18px, 4vw, 56px) 72px;
  position: relative;
}

.ts-hero::after {
  background: linear-gradient(180deg, transparent, var(--paper));
  bottom: 0;
  content: "";
  height: 110px;
  left: 0;
  position: absolute;
  right: 0;
}

.ts-hero__noise {
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 0.7px, transparent 0.7px);
  background-size: 13px 13px;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
}

.nav {
  align-items: center;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(17, 22, 27, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 18px 54px rgba(0, 0, 0, 0.16);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 78px;
  padding: 10px;
  position: relative;
  z-index: 2;
}

.brand {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  height: 58px;
  justify-content: center;
  padding: 7px 12px;
  width: 126px;
}

.brand img {
  max-height: 50px;
  object-fit: contain;
}

.nav nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  justify-content: center;
}

.nav nav a,
.nav-call,
.nav-quote {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
}

.nav nav a:hover,
.nav-call:hover,
.nav-quote:hover {
  color: var(--white);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: end;
}

.nav-call,
.nav-quote {
  min-width: 88px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.nav-call {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 18px;
}

.nav-quote {
  background: var(--orange);
  border: 1px solid rgba(240, 79, 24, 0.7);
  box-shadow: 0 14px 32px rgba(240, 79, 24, 0.28);
  color: var(--white);
  padding: 14px 18px;
}

.nav-quote::after,
.ts-header__quote::after,
.ts-button--primary::after,
.ts-hero__badge::after {
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  content: "";
  height: 160%;
  left: -80%;
  position: absolute;
  top: -30%;
  transform: rotate(12deg);
  transition: left 520ms ease;
  width: 42%;
}

.nav-quote:hover::after,
.ts-header__quote:hover::after,
.ts-button--primary:hover::after,
.ts-hero__badge:hover::after {
  left: 125%;
}

.ts-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(36px, 6vw, 92px);
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.72fr);
  margin: clamp(64px, 9vw, 116px) auto 0;
  max-width: var(--max);
  position: relative;
  z-index: 1;
}

.ts-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.ts-kicker span,
.ts-area-list span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 9px 11px;
  text-transform: uppercase;
}

.ts-eyebrow {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.ts-hero h1,
.ts-section h2,
.ts-proof-band h2,
.ts-estimate__copy h2 {
  letter-spacing: 0;
  line-height: 0.91;
  margin: 0;
}

.ts-hero h1 {
  font-size: clamp(3.6rem, 8.2vw, 7.8rem);
  max-width: 970px;
  text-wrap: balance;
}

.ts-hero__lede {
  border-left: 4px solid var(--orange);
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.58;
  margin: 30px 0 0;
  max-width: 760px;
  padding-left: 22px;
}

.ts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.ts-button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 54px;
  overflow: hidden;
  padding: 16px 22px;
  position: relative;
  transition:
    background 180ms ease,
    border 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.ts-button--primary {
  background: var(--orange);
  box-shadow: 0 16px 36px rgba(240, 79, 24, 0.28);
  color: var(--white);
}

.ts-button--primary:hover {
  background: var(--orange-dark);
}

.ts-button--secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.ts-button--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.ts-proof-row {
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
  max-width: 930px;
}

.ts-proof-row span {
  color: rgba(255, 255, 255, 0.68);
  display: grid;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 3px;
  min-height: 88px;
  padding: 18px;
}

.ts-proof-row span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.ts-proof-row strong {
  color: var(--white);
  font-size: 1.45rem;
  letter-spacing: 0;
}

.ts-hero__panel {
  padding: 20px 0 56px 20px;
  position: relative;
}

.ts-hero__panel::before {
  border: 1px solid rgba(255, 255, 255, 0.24);
  content: "";
  inset: 0 44px 38px 0;
  position: absolute;
}

.ts-photo-frame {
  aspect-ratio: 4 / 5;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.ts-photo-frame::after {
  background: linear-gradient(180deg, transparent 40%, rgba(17, 22, 27, 0.36));
  content: "";
  inset: 0;
  position: absolute;
}

.ts-photo-frame img {
  transform: scale(1.01);
  transition: transform 700ms ease;
}

.ts-hero__panel:hover .ts-photo-frame img {
  transform: scale(1.055);
}

.ts-photo-frame img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ts-hero__badge {
  backdrop-filter: blur(18px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(240, 79, 24, 0.18)),
    rgba(240, 79, 24, 0.86);
  bottom: 0;
  color: var(--white);
  display: grid;
  gap: 5px;
  max-width: 278px;
  overflow: hidden;
  padding: 18px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.ts-hero__badge span,
.ts-diagnosis-card span,
.ts-warranty__cards span,
.ts-service-grid article span,
.ts-form-heading span {
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ts-hero__badge strong {
  font-size: 1.1rem;
  line-height: 1.15;
}

.ts-diagnosis-card {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.58);
  bottom: 78px;
  box-shadow: 0 18px 46px rgba(17, 22, 27, 0.24);
  color: var(--ink);
  left: -10px;
  max-width: 286px;
  padding: 22px;
  position: absolute;
  z-index: 2;
}

.ts-diagnosis-card span,
.ts-warranty__cards span,
.ts-service-grid article span,
.ts-form-heading span {
  color: var(--orange);
  margin-bottom: 10px;
}

.ts-diagnosis-card strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.05;
}

.ts-diagnosis-card p,
.ts-service-grid article p,
.ts-signal-grid p,
.ts-compare-card p,
.ts-warranty__cards p,
.ts-method__copy li span {
  color: var(--muted);
  line-height: 1.56;
}

.ts-section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(78px, 9vw, 132px) clamp(18px, 4vw, 56px);
}

.ts-heading {
  max-width: 790px;
}

.ts-section-row {
  align-items: end;
  display: grid;
  gap: clamp(26px, 5vw, 70px);
  grid-template-columns: 1fr 0.72fr;
}

.ts-section-row > p {
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0;
  padding-left: 28px;
}

.ts-heading h2,
.ts-proof-band h2,
.ts-estimate__copy h2 {
  font-size: clamp(2.55rem, 5.8vw, 5.5rem);
  text-wrap: balance;
}

.ts-heading p:not(.ts-eyebrow),
.ts-estimate__copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 22px 0 0;
}

.ts-heading--compact {
  max-width: 680px;
}

.ts-signal-grid,
.ts-service-grid,
.ts-compare-grid,
.ts-warranty__cards {
  display: grid;
  gap: 18px;
}

.ts-signal-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
}

.ts-signal-grid article,
.ts-service-grid article,
.ts-compare-card,
.ts-warranty__cards article,
.ts-estimate-form,
.ts-contact-card {
  backdrop-filter: blur(20px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 48px rgba(17, 22, 27, 0.06);
}

.ts-signal-grid article {
  min-height: 190px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.ts-signal-grid article::after {
  background: linear-gradient(135deg, rgba(240, 79, 24, 0.12), transparent);
  content: "";
  height: 90px;
  position: absolute;
  right: -30px;
  top: -30px;
  transform: rotate(18deg);
  width: 90px;
}

.ts-signal-grid span {
  background: var(--orange);
  display: block;
  height: 5px;
  margin-bottom: 42px;
  width: 54px;
}

.ts-signal-grid h3,
.ts-service-grid article h3,
.ts-compare-card h3,
.ts-warranty__cards h3 {
  font-size: 1.24rem;
  line-height: 1.1;
  margin: 0;
}

.ts-split {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 70px);
  grid-template-columns: 0.82fr 1.18fr;
}

.ts-service-grid {
  grid-template-columns: repeat(2, 1fr);
}

.ts-service-grid article {
  min-height: 278px;
  padding: 32px;
  position: relative;
  transition:
    border 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.ts-service-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.ts-service-icon {
  background: rgba(15, 42, 61, 0.08);
  border: 1px solid rgba(15, 42, 61, 0.12);
  display: block;
  height: 54px;
  position: relative;
  width: 54px;
}

.ts-service-icon::before,
.ts-service-icon::after {
  content: "";
  position: absolute;
}

.ts-service-icon-seal::before {
  background: var(--orange);
  border-radius: 999px 999px 999px 0;
  height: 25px;
  left: 15px;
  top: 10px;
  transform: rotate(-35deg);
  width: 18px;
}

.ts-service-icon-seal::after {
  border: 3px solid var(--navy);
  border-top: 0;
  height: 12px;
  left: 15px;
  top: 31px;
  width: 25px;
}

.ts-service-icon-correct::before {
  border: 4px solid var(--orange);
  border-radius: 50%;
  height: 28px;
  left: 10px;
  top: 9px;
  width: 28px;
}

.ts-service-icon-correct::after {
  background: var(--navy);
  height: 4px;
  left: 31px;
  top: 35px;
  transform: rotate(45deg);
  width: 15px;
}

.ts-service-icon-stone::before {
  background: var(--orange);
  clip-path: polygon(16% 18%, 68% 6%, 92% 44%, 74% 86%, 22% 88%, 4% 46%);
  height: 34px;
  left: 10px;
  top: 10px;
  width: 34px;
}

.ts-service-icon-stone::after {
  border-left: 2px solid rgba(255, 255, 255, 0.72);
  height: 22px;
  left: 27px;
  top: 16px;
  transform: rotate(26deg);
}

.ts-service-icon-shield::before {
  background: var(--navy);
  clip-path: polygon(50% 4%, 84% 16%, 78% 66%, 50% 92%, 22% 66%, 16% 16%);
  height: 36px;
  left: 9px;
  top: 8px;
  width: 36px;
}

.ts-service-icon-shield::after {
  background: var(--orange);
  height: 18px;
  left: 25px;
  top: 17px;
  width: 5px;
}

.ts-service-grid article:hover {
  border-color: rgba(240, 79, 24, 0.32);
  box-shadow: 0 22px 56px rgba(17, 22, 27, 0.12), 0 0 0 1px rgba(240, 79, 24, 0.08);
  transform: translateY(-4px);
}

.ts-service-grid article::after,
.ts-warranty__cards article::after {
  background: radial-gradient(circle at 30% 20%, rgba(240, 79, 24, 0.18), transparent 38%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease;
}

.ts-service-grid article:hover::after,
.ts-warranty__cards article:hover::after {
  opacity: 1;
}

.ts-service-grid article h3 {
  font-size: clamp(1.5rem, 2vw, 2.04rem);
}

.ts-testimonials {
  max-width: 1360px;
}

.ts-testimonial-header {
  align-items: end;
  display: grid;
  gap: clamp(26px, 5vw, 72px);
  grid-template-columns: 1fr 340px;
}

.ts-google-score-card,
.ts-testimonial-grid article {
  backdrop-filter: blur(20px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(17, 22, 27, 0.1);
}

.ts-google-score-card {
  display: grid;
  gap: 8px;
  padding: 26px;
}

.ts-google-wordmark {
  display: flex;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
}

.ts-google-wordmark span:nth-child(1),
.ts-google-wordmark span:nth-child(4) {
  color: #4285f4;
}

.ts-google-wordmark span:nth-child(2),
.ts-google-wordmark span:nth-child(6) {
  color: #db4437;
}

.ts-google-wordmark span:nth-child(3) {
  color: #f4b400;
}

.ts-google-wordmark span:nth-child(5) {
  color: #0f9d58;
}

.ts-google-score-card strong {
  color: var(--ink);
  font-size: 4.5rem;
  line-height: 0.9;
}

.ts-google-score-card p {
  color: var(--muted);
  font-weight: 800;
  margin: 0;
}

.ts-star-row {
  color: #f4b400;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.ts-testimonial-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.ts-testimonial-grid article {
  min-height: 300px;
  padding: 30px;
  position: relative;
}

.ts-quote-mark {
  height: 42px;
  margin-bottom: 24px;
  position: relative;
  width: 52px;
}

.ts-quote-mark::before,
.ts-quote-mark::after {
  background: var(--orange);
  border-radius: 999px 999px 0 999px;
  content: "";
  height: 28px;
  position: absolute;
  top: 4px;
  width: 22px;
}

.ts-quote-mark::before {
  left: 0;
}

.ts-quote-mark::after {
  left: 28px;
}

.ts-testimonial-grid h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.05;
  margin: 16px 0 0;
}

.ts-testimonial-grid p {
  color: var(--muted);
  line-height: 1.62;
  margin: 16px 0 0;
}

.ts-testimonial-grid article > span {
  color: var(--orange);
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-top: 24px;
  text-transform: uppercase;
}

.ts-proof-band {
  background:
    linear-gradient(90deg, rgba(17, 22, 27, 0.94), rgba(15, 42, 61, 0.9)),
    url("../images/hero-driveway.webp") center / cover;
  color: var(--white);
  display: grid;
  gap: clamp(26px, 5vw, 72px);
  grid-template-columns: 0.9fr 1.1fr;
  padding: clamp(70px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.ts-proof-band > div:first-child {
  max-width: 620px;
}

.ts-proof-band__grid {
  display: grid;
  gap: 14px;
}

.ts-proof-band__grid article {
  align-items: start;
  backdrop-filter: blur(18px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 10px;
  grid-template-columns: 190px 1fr;
  padding: 22px;
}

.ts-proof-band__grid strong {
  color: var(--white);
}

.ts-proof-band__grid span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.result-section {
  max-width: 1360px;
}

.ts-compare-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.ts-compare-card {
  overflow: hidden;
}

.ts-compare {
  aspect-ratio: 4 / 3;
  background: #b9b4aa;
  overflow: hidden;
  position: relative;
}

.ts-compare__layer {
  align-items: end;
  background-size: 58px 58px, cover;
  display: flex;
  inset: 0;
  padding: 18px;
  position: absolute;
}

.ts-compare__layer span {
  background: rgba(17, 22, 27, 0.78);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.ts-compare__before {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  z-index: 2;
}

.ts-compare__after {
  justify-content: end;
  z-index: 1;
}

.tone-drive-before {
  background:
    linear-gradient(45deg, rgba(77, 72, 66, 0.55) 25%, transparent 25%),
    linear-gradient(135deg, #625d54, #9a9286);
}

.tone-drive-after {
  background:
    linear-gradient(45deg, rgba(98, 38, 18, 0.34) 25%, transparent 25%),
    linear-gradient(135deg, #b64f2c, #df9a61);
}

.tone-pool-before {
  background:
    linear-gradient(45deg, rgba(45, 71, 52, 0.42) 25%, transparent 25%),
    linear-gradient(135deg, #747967, #aaa68f);
}

.tone-pool-after {
  background:
    linear-gradient(45deg, rgba(13, 73, 91, 0.18) 25%, transparent 25%),
    linear-gradient(135deg, #c78645, #dac99b);
}

.tone-stone-before {
  background:
    linear-gradient(45deg, rgba(78, 86, 68, 0.36) 25%, transparent 25%),
    linear-gradient(135deg, #858374, #b4ac98);
}

.tone-stone-after {
  background:
    linear-gradient(45deg, rgba(127, 78, 39, 0.2) 25%, transparent 25%),
    linear-gradient(135deg, #d1ae7b, #efe0bd);
}

.ts-compare__divider {
  background: var(--white);
  bottom: 0;
  box-shadow: 0 0 0 1px rgba(17, 22, 27, 0.1);
  left: var(--split);
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  z-index: 3;
}

.ts-compare__divider::after {
  align-items: center;
  background: var(--orange);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(17, 22, 27, 0.26);
  color: var(--white);
  content: "<>";
  display: flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
}

.ts-compare input {
  cursor: ew-resize;
  inset: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 4;
}

.ts-compare-card__copy {
  padding: 24px;
}

.ts-method {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: 0.92fr 1.08fr;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.ts-method__image {
  min-height: 610px;
  position: relative;
}

.ts-method__image::after {
  background: linear-gradient(90deg, rgba(17, 22, 27, 0.12), transparent);
  content: "";
  inset: 0;
  position: absolute;
}

.ts-method__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ts-method__copy {
  background:
    linear-gradient(135deg, rgba(240, 79, 24, 0.09), transparent 38%),
    var(--ink);
  color: var(--white);
  padding: clamp(48px, 7vw, 98px);
}

.ts-method__copy h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.9rem);
  letter-spacing: 0;
  line-height: 0.93;
  margin: 0;
  text-wrap: balance;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 46px 0 0;
  padding: 0;
}

.process-list li {
  border-top: 1px solid var(--line-dark);
  counter-increment: process;
  display: grid;
  gap: 12px;
  grid-template-columns: 54px 168px 1fr;
  padding: 24px 0;
}

.process-list li::before {
  color: var(--orange);
  content: counter(process, decimal-leading-zero);
  font-weight: 900;
}

.process-list strong {
  font-size: 1.1rem;
}

.ts-warranty {
  align-items: end;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: 1fr 0.95fr;
}

.ts-warranty > div:first-child p:not(.ts-eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-top: 24px;
}

.ts-warranty__cards {
  grid-template-columns: repeat(2, 1fr);
}

.ts-warranty__cards article {
  min-height: 272px;
  padding: 32px;
  position: relative;
}

.ts-warranty__cards article:nth-child(2) {
  background: var(--ink);
  color: var(--white);
}

.ts-warranty__cards article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.7);
}

.ts-local {
  padding-top: 30px;
}

.ts-service-map-card {
  backdrop-filter: blur(20px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at 28% 35%, rgba(240, 79, 24, 0.12), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(17, 22, 27, 0.1);
  display: grid;
  gap: clamp(22px, 4vw, 54px);
  grid-template-columns: minmax(320px, 0.92fr) 1fr;
  margin-top: 44px;
  overflow: hidden;
  padding: clamp(22px, 4vw, 42px);
}

.ts-florida-map {
  aspect-ratio: 1 / 1.15;
  background:
    linear-gradient(135deg, rgba(15, 42, 61, 0.08), rgba(240, 79, 24, 0.08)),
    #f7f5ef;
  border: 1px solid rgba(17, 22, 27, 0.1);
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.ts-florida-map::before {
  background-image:
    linear-gradient(rgba(17, 22, 27, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 22, 27, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  inset: 0;
  opacity: 0.75;
  position: absolute;
}

.ts-florida-map svg {
  height: 94%;
  left: 46%;
  position: absolute;
  top: 51%;
  transform: translate(-50%, -50%);
  width: 74%;
}

.ts-florida-shape {
  fill: rgba(15, 42, 61, 0.12);
  stroke: rgba(15, 42, 61, 0.52);
  stroke-width: 5;
}

.ts-gulf-line {
  fill: none;
  stroke: rgba(240, 79, 24, 0.7);
  stroke-linecap: round;
  stroke-width: 5;
}

.ts-service-ring {
  border: 2px solid rgba(240, 79, 24, 0.45);
  border-radius: 999px;
  height: 42%;
  left: 38%;
  position: absolute;
  top: 49%;
  transform: translate(-50%, -50%);
  width: 42%;
}

.ts-service-ring::after {
  border: 1px solid rgba(240, 79, 24, 0.18);
  border-radius: inherit;
  content: "";
  inset: -12px;
  position: absolute;
}

.ts-service-ring span {
  background: var(--orange);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 900;
  left: 50%;
  letter-spacing: 0.08em;
  padding: 6px 8px;
  position: absolute;
  text-transform: uppercase;
  top: -13px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.ts-map-pin {
  align-items: center;
  display: flex;
  gap: 7px;
  left: var(--x);
  position: absolute;
  top: var(--y);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ts-map-pin i {
  background: var(--orange);
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(17, 22, 27, 0.22);
  display: block;
  height: 16px;
  width: 16px;
}

.ts-map-pin-primary i {
  height: 22px;
  position: relative;
  width: 22px;
}

.ts-map-pin-primary i::after {
  animation: pinPulse 1900ms ease-out infinite;
  border: 2px solid rgba(240, 79, 24, 0.5);
  border-radius: inherit;
  content: "";
  inset: -10px;
  position: absolute;
}

.ts-map-pin b {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(17, 22, 27, 0.1);
  color: var(--navy);
  font-size: 0.72rem;
  line-height: 1;
  opacity: 0;
  padding: 7px 8px;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.ts-map-pin-primary b {
  background: var(--ink);
  color: var(--white);
  opacity: 1;
  transform: translateY(0);
}

.ts-map-pin:hover b {
  opacity: 1;
  transform: translateY(0);
}

.ts-map-copy {
  align-self: center;
}

.ts-map-copy > span {
  color: var(--orange);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ts-map-copy strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0;
  line-height: 0.98;
  max-width: 520px;
}

.ts-map-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
  margin: 18px 0 0;
  max-width: 560px;
}

.ts-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.ts-area-list span {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy);
}

@keyframes pinPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.72);
  }

  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

.ts-subpage {
  background:
    linear-gradient(90deg, rgba(17, 22, 27, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  overflow: hidden;
}

.ts-page-hero {
  background:
    linear-gradient(90deg, rgba(17, 22, 27, 0.96) 0%, rgba(17, 22, 27, 0.86) 52%, rgba(15, 42, 61, 0.62) 100%),
    url("../images/hero-driveway.webp") center / cover;
  color: var(--white);
  padding: 18px clamp(18px, 4vw, 56px) clamp(76px, 10vw, 132px);
  position: relative;
}

.ts-page-hero::after {
  background: linear-gradient(180deg, transparent, var(--paper));
  bottom: 0;
  content: "";
  height: 96px;
  left: 0;
  position: absolute;
  right: 0;
}

.ts-warranty-page-hero {
  background:
    linear-gradient(90deg, rgba(17, 22, 27, 0.97) 0%, rgba(17, 22, 27, 0.88) 50%, rgba(15, 42, 61, 0.62) 100%),
    url("../images/project-driveway.jpeg") center / cover;
}

.ts-service-page-hero,
.ts-travertine-page-hero,
.ts-concrete-page-hero,
.ts-stripping-page-hero {
  background:
    linear-gradient(90deg, rgba(17, 22, 27, 0.97) 0%, rgba(17, 22, 27, 0.86) 50%, rgba(15, 42, 61, 0.56) 100%),
    url("../images/project-driveway.jpeg") center / cover;
}

.ts-travertine-page-hero {
  background:
    linear-gradient(90deg, rgba(17, 22, 27, 0.97) 0%, rgba(17, 22, 27, 0.86) 50%, rgba(15, 42, 61, 0.56) 100%),
    url("../images/hero-driveway.webp") center / cover;
}

.ts-page-hero__grid {
  display: grid;
  gap: clamp(28px, 5vw, 76px);
  grid-template-columns: minmax(0, 1fr) 360px;
  margin: clamp(92px, 12vw, 158px) auto 0;
  max-width: var(--max);
  position: relative;
  z-index: 2;
}

.ts-page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.9rem);
  letter-spacing: 0;
  line-height: 0.87;
  margin: 0;
  max-width: 940px;
  text-transform: uppercase;
}

.ts-page-hero p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.65;
  max-width: 720px;
}

.ts-page-hero aside {
  align-self: end;
  backdrop-filter: blur(22px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  padding: 28px;
}

.ts-page-hero aside span,
.ts-service-detail-card > span,
.ts-warranty-detail-grid span {
  color: var(--orange);
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ts-page-hero aside strong {
  font-size: 2rem;
  line-height: 1;
}

.ts-page-hero aside p {
  font-size: 0.98rem;
  margin: 0;
}

.ts-detail-grid-section {
  max-width: 1360px;
}

.ts-service-detail-grid,
.ts-warranty-detail-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.ts-service-detail-card,
.ts-warranty-detail-grid article,
.ts-eligibility-card {
  backdrop-filter: blur(20px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(17, 22, 27, 0.1);
}

.ts-service-detail-card {
  min-height: 420px;
  padding: clamp(26px, 4vw, 42px);
}

.ts-service-detail-card h2,
.ts-warranty-detail-grid h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  margin: 0;
}

.ts-service-detail-card p,
.ts-warranty-detail-grid p,
.ts-eligibility-card p {
  color: var(--muted);
  line-height: 1.65;
}

.ts-service-detail-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.ts-service-detail-card li {
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
  padding-top: 12px;
}

.ts-service-link {
  border: 1px solid var(--line);
  color: var(--orange-dark);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 28px;
  padding: 12px 14px;
  text-transform: uppercase;
}

.ts-service-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.ts-service-landing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1360px;
}

.ts-service-landing-grid article {
  backdrop-filter: blur(20px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(17, 22, 27, 0.1);
  min-height: 320px;
  padding: clamp(26px, 4vw, 38px);
}

.ts-service-landing-grid span {
  color: var(--orange);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.ts-service-landing-grid h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 0.98;
  margin: 0;
}

.ts-service-landing-grid p {
  color: var(--muted);
  line-height: 1.65;
  margin: 18px 0 0;
}

.ts-service-knowledge-section {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: 0.8fr 1.2fr;
  max-width: 1240px;
}

.ts-service-knowledge-section h2,
.ts-service-process-detail h2,
.ts-faq-section h2 {
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  line-height: 0.92;
  margin: 0;
}

.ts-knowledge-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.ts-knowledge-list span {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
  padding: 18px;
}

.ts-service-process-detail {
  max-width: 1240px;
}

.ts-service-process-detail ol {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.ts-service-process-detail li {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  color: var(--navy);
  display: grid;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
  gap: 18px;
  grid-template-columns: 74px 1fr;
  padding: 18px;
}

.ts-service-process-detail li span {
  background: var(--ink);
  color: var(--white);
  display: inline-grid;
  height: 54px;
  place-items: center;
  width: 54px;
}

.ts-faq-section {
  max-width: 1240px;
  padding-top: 36px;
}

.ts-faq-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.ts-faq-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 32px);
}

.ts-faq-grid h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.08;
  margin: 0;
}

.ts-faq-grid p {
  color: var(--muted);
  line-height: 1.65;
  margin: 12px 0 0;
}

.ts-service-process-band {
  background:
    linear-gradient(90deg, rgba(17, 22, 27, 0.94), rgba(15, 42, 61, 0.9)),
    url("../images/project-driveway.jpeg") center / cover;
  color: var(--white);
  display: grid;
  gap: clamp(30px, 5vw, 70px);
  grid-template-columns: 0.9fr 1.1fr;
  margin-bottom: clamp(50px, 8vw, 92px);
  max-width: none;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.ts-service-process-band h2 {
  font-size: clamp(2.6rem, 5.6vw, 5.8rem);
  line-height: 0.9;
  margin: 0;
  max-width: 740px;
}

.ts-warranty-detail-section,
.ts-eligibility-section {
  max-width: 1240px;
}

.ts-warranty-detail-grid article {
  min-height: 330px;
  padding: clamp(28px, 4vw, 46px);
}

.ts-eligibility-section {
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: 0.8fr 1.2fr;
}

.ts-eligibility-card {
  display: grid;
  gap: 0;
  padding: clamp(22px, 4vw, 36px);
}

.ts-eligibility-card p {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 18px 0;
}

.ts-eligibility-card p:first-child {
  border-top: 0;
}

.ts-estimate {
  background:
    linear-gradient(135deg, rgba(240, 79, 24, 0.16), transparent 30%),
    linear-gradient(90deg, var(--navy), #102331);
  color: var(--white);
  display: grid;
  gap: clamp(32px, 6vw, 78px);
  grid-template-columns: 0.9fr 1.1fr;
  padding: clamp(76px, 9vw, 122px) clamp(18px, 5vw, 72px);
}

.ts-estimate__copy p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}

.ts-contact-card {
  color: var(--ink);
  display: grid;
  gap: 8px;
  margin-top: 34px;
  max-width: 370px;
  padding: 24px;
}

.ts-contact-card a {
  color: var(--orange-dark);
  font-weight: 900;
}

.ts-estimate-form {
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
}

.ts-form-shell .tst-estimate-form {
  margin: 0;
}

.ts-form-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
  padding-bottom: 18px;
}

.ts-form-heading h3 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1;
  margin: 0;
}

.ts-form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

label {
  color: var(--ink);
  display: grid;
  font-size: 0.84rem;
  font-weight: 900;
  gap: 8px;
}

input,
select,
textarea {
  background: #fbfbfa;
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 52px;
  outline: none;
  padding: 13px 14px;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 79, 24, 0.14);
}

.ts-upload {
  background: rgba(240, 79, 24, 0.04);
  border: 1px dashed rgba(17, 22, 27, 0.28);
  padding: 16px;
}

.ts-form-confirmation {
  background: rgba(22, 95, 61, 0.1);
  border: 1px solid rgba(22, 95, 61, 0.22);
  color: #165f3d;
  margin: 0;
  padding: 13px 14px;
}

.ts-privacy {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 0;
}

.ts-footer {
  align-items: center;
  background: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: 150px 1fr auto;
  padding: 34px clamp(18px, 5vw, 72px);
}

.ts-footer img {
  max-height: 86px;
  object-fit: contain;
}

.ts-footer p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

.ts-footer div {
  display: grid;
  gap: 8px;
  text-align: right;
}

.ts-footer a {
  color: var(--navy);
  font-weight: 900;
}

.ts-footer span {
  color: var(--muted);
}

@media (max-width: 1040px) {
  .ts-hero {
    min-height: auto;
  }

  .ts-header {
    grid-template-columns: auto 1fr;
  }

  .ts-header__nav {
    display: none;
  }

  .ts-header__actions {
    justify-self: end;
  }

  .nav {
    grid-template-columns: auto 1fr;
  }

  .nav nav {
    display: none;
  }

  .ts-hero__grid,
  .ts-split,
  .ts-proof-band,
  .ts-method,
  .ts-warranty,
  .ts-estimate,
  .ts-section-row,
  .ts-page-hero__grid,
  .ts-service-process-band,
  .ts-service-knowledge-section,
  .ts-eligibility-section,
  .ts-testimonial-header,
  .ts-service-map-card {
    grid-template-columns: 1fr;
  }

  .ts-hero__panel {
    max-width: 620px;
  }

  .ts-proof-row,
  .ts-signal-grid,
  .ts-compare-grid,
  .ts-service-detail-grid,
  .ts-warranty-detail-grid,
  .ts-service-landing-grid,
  .ts-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ts-section-row > p {
    border-left: 0;
    padding-left: 0;
  }

  .ts-method__image {
    min-height: 380px;
  }

  .ts-florida-map {
    min-height: 520px;
  }

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

  .ts-footer div {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .ts-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    height: 58px;
    width: 114px;
  }

  .ts-header__brand {
    height: 58px;
    width: 114px;
  }

  .nav-call,
  .ts-header__call {
    font-size: 0.78rem;
    min-width: 70px;
    padding: 12px;
  }

  .nav-quote,
  .ts-header__quote {
    font-size: 0.78rem;
    min-width: 82px;
    padding: 12px;
  }

  .nav-actions,
  .ts-header__actions {
    gap: 6px;
  }

  .ts-hero h1 {
    font-size: clamp(2.85rem, 15vw, 4.5rem);
  }

  .ts-actions,
  .ts-button {
    width: 100%;
  }

  .ts-proof-row,
  .ts-signal-grid,
  .ts-service-grid,
  .ts-compare-grid,
  .ts-testimonial-grid,
  .ts-service-detail-grid,
  .ts-warranty-detail-grid,
  .ts-service-landing-grid,
  .ts-knowledge-list,
  .ts-warranty__cards,
  .ts-form-grid,
  .ts-proof-band__grid article {
    grid-template-columns: 1fr;
  }

  .ts-proof-row span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .ts-hero__panel {
    padding-left: 0;
    padding-right: 0;
  }

  .ts-hero__panel::before {
    inset: 10px;
  }

  .ts-diagnosis-card {
    bottom: 70px;
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .ts-hero__badge {
    left: 12px;
    max-width: none;
    right: 12px;
  }

  .ts-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ts-heading h2,
  .ts-proof-band h2,
  .ts-estimate__copy h2,
  .ts-method__copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.75rem);
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
  }

  .process-list li span {
    grid-column: 2;
  }

  .ts-estimate,
  .ts-proof-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ts-service-map-card {
    padding: 14px;
  }

  .ts-florida-map {
    min-height: 440px;
  }

  .ts-map-pin b {
    display: none;
  }

  .ts-map-pin-primary b {
    display: block;
  }

  .ts-area-list span {
    font-size: 0.72rem;
    padding: 9px 10px;
  }
}
