/* Bathroom Toilet — Rough-In Ledger (fixture-spec / clearance layout) */
:root {
  --tl-navy: #17324d;
  --tl-deep: #0e1f2e;
  --tl-coral: #d96832;
  --tl-ink: #1b2834;
  --tl-muted: #5a6875;
  --tl-stone: #e8eef2;
  --tl-wash: #f4f7f9;
  --tl-paper: #fbfcfd;
  --tl-line: rgba(23, 50, 77, 0.12);
  --tl-line-soft: rgba(23, 50, 77, 0.06);
  --tl-serif: "Playfair Display", serif;
  --tl-sans: Inter, sans-serif;
}

.tl-page {
  color: var(--tl-ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(217, 104, 50, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 30%, rgba(23, 50, 77, 0.05), transparent 50%),
    linear-gradient(180deg, var(--tl-wash) 0%, var(--tl-stone) 38%, var(--tl-wash) 100%);
  overflow-x: clip;
}

.tl-wrap {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.tl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.tl-reveal.is-in {
  opacity: 1;
  transform: none;
}
.tl-d1 { transition-delay: 0.08s; }
.tl-d2 { transition-delay: 0.16s; }
.tl-d3 { transition-delay: 0.24s; }
.tl-d4 { transition-delay: 0.32s; }

.tl-kicker {
  margin: 0 0 0.5rem;
  font-family: var(--tl-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tl-coral);
}
.tl-kicker--light { color: #f5a876; }

.tl-title {
  margin: 0;
  font-family: var(--tl-serif);
  font-size: clamp(1.85rem, 3.6vw, 2.95rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--tl-navy);
}
.tl-title--light { color: #fff; }
.tl-title--sm {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
}

.tl-text {
  margin: 0.9rem 0 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--tl-muted);
}

.tl-rule {
  width: 2.75rem;
  height: 3px;
  margin: 1rem 0 0.35rem;
  background: var(--tl-coral);
  border-radius: 2px;
}

.tl-section {
  padding: clamp(3.25rem, 6.5vw, 5.25rem) 0;
  position: relative;
}

/* —— Intro: photo stack + copy + form —— */
.tl-intro {
  padding-top: clamp(2.75rem, 5vw, 4rem);
}

.tl-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.tl-intro-media {
  position: relative;
  min-height: 420px;
}

.tl-intro-photo {
  position: relative;
  border-radius: 4px 28px 4px 28px;
  overflow: hidden;
  box-shadow: 0 24px 48px -20px rgba(23, 50, 77, 0.45);
  aspect-ratio: 4 / 5;
  max-width: 86%;
}
.tl-intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tl-intro-inset {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 48%;
  border-radius: 20px 4px 20px 4px;
  overflow: hidden;
  border: 4px solid var(--tl-paper);
  box-shadow: 0 18px 36px -12px rgba(23, 50, 77, 0.4);
  aspect-ratio: 5 / 4;
}
.tl-intro-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tl-dim-rail {
  position: absolute;
  left: -0.15rem;
  top: 12%;
  bottom: 22%;
  width: 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}
.tl-dim-rail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--tl-coral), rgba(23, 50, 77, 0.35));
  transform: translateX(-50%);
}
.tl-dim-tick {
  position: relative;
  z-index: 1;
  background: var(--tl-navy);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.35rem;
  border-radius: 3px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

.tl-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin-top: 1.35rem;
  list-style: none;
  padding: 0;
}
.tl-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--tl-ink);
}
.tl-checks svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--tl-coral);
}

.tl-form {
  background: var(--tl-paper);
  border: 1px solid var(--tl-line);
  border-radius: 4px 22px 4px 22px;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 20px 44px -24px rgba(23, 50, 77, 0.35);
  position: relative;
}
.tl-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  right: 1.35rem;
  height: 3px;
  background: linear-gradient(90deg, var(--tl-coral), transparent);
  border-radius: 0 0 2px 2px;
}
.tl-form-head h3 {
  margin: 0 0 0.2rem;
  font-family: var(--tl-serif);
  font-size: 1.35rem;
  color: var(--tl-navy);
}
.tl-form-head p {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  color: var(--tl-muted);
}

/* —— Challenges: inspection strip —— */
.tl-challenges {
  background: var(--tl-deep);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.tl-challenges::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 40%, rgba(217, 104, 50, 0.08) 100%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.015) 40px,
      rgba(255, 255, 255, 0.015) 41px
    );
  pointer-events: none;
}
.tl-challenges .tl-wrap { position: relative; z-index: 1; }

.tl-chal-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.tl-chal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
}
.tl-chal-item {
  background: rgba(14, 31, 46, 0.92);
  padding: 1.35rem 1.2rem 1.5rem;
  min-height: 100%;
  transition: background 0.25s ease;
}
.tl-chal-item:hover {
  background: rgba(23, 50, 77, 0.95);
}
.tl-chal-num {
  display: block;
  font-family: var(--tl-serif);
  font-size: 1.75rem;
  color: var(--tl-coral);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.tl-chal-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--tl-serif);
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.3;
}
.tl-chal-item p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* —— Services: dual photo panels —— */
.tl-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.tl-svc {
  position: relative;
  border-radius: 4px 24px 4px 24px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 18px 40px -18px rgba(23, 50, 77, 0.35);
}
.tl-svc:nth-child(2) {
  border-radius: 24px 4px 24px 4px;
}
.tl-svc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tl-svc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(14, 31, 46, 0.92) 78%);
}
.tl-svc-body {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.4rem 1.55rem;
  color: #fff;
}
.tl-svc-body h3 {
  margin: 0 0 0.55rem;
  font-family: var(--tl-serif);
  font-size: 1.45rem;
}
.tl-svc-body > p {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.tl-svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}
.tl-svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}
.tl-svc-list svg {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: #f5a876;
}

/* —— Toilet types mosaic —— */
.tl-types-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}
.tl-types-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}
.tl-type {
  grid-column: span 4;
  background: var(--tl-paper);
  border: 1px solid var(--tl-line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tl-type:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -16px rgba(23, 50, 77, 0.3);
}
.tl-type:nth-child(1) { grid-column: span 5; }
.tl-type:nth-child(2) { grid-column: span 7; }
.tl-type:nth-child(3) { grid-column: span 4; }
.tl-type:nth-child(4) { grid-column: span 4; }
.tl-type:nth-child(5) { grid-column: span 4; }
.tl-type:nth-child(6) { grid-column: span 12; flex-direction: row; }
.tl-type-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}
.tl-type:nth-child(6) .tl-type-media {
  width: 42%;
  aspect-ratio: auto;
  min-height: 200px;
}
.tl-type-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.tl-type:hover .tl-type-media img {
  transform: scale(1.04);
}
.tl-type-body {
  padding: 1.15rem 1.2rem 1.3rem;
}
.tl-type-body h3 {
  margin: 0 0 0.45rem;
  font-family: var(--tl-serif);
  font-size: 1.1rem;
  color: var(--tl-navy);
}
.tl-type-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--tl-muted);
}
.tl-types-cta {
  text-align: center;
  margin-top: 1.75rem;
}

/* —— Process: stage deck (5 photo columns) —— */
.tl-process {
  background: var(--tl-deep);
  position: relative;
  overflow: hidden;
}
.tl-process::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(217, 104, 50, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 35% at 90% 80%, rgba(255, 255, 255, 0.04), transparent 55%);
  pointer-events: none;
}
.tl-process .tl-wrap { position: relative; z-index: 1; }
.tl-process-head {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.tl-stages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  position: relative;
}
.tl-stages::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tl-coral) 12%, var(--tl-coral) 88%, transparent);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.tl-stage {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.tl-stage-num {
  display: flex;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.tl-stage-num span {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tl-deep);
  border: 2px solid var(--tl-coral);
  color: #f5a876;
  font-family: var(--tl-serif);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--tl-deep);
}

.tl-stage-photo {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px 16px 4px 16px;
  position: relative;
}
.tl-stage:nth-child(even) .tl-stage-photo {
  border-radius: 16px 4px 16px 4px;
}
.tl-stage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.tl-stage:hover .tl-stage-photo img {
  transform: scale(1.05);
}
.tl-stage-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(14, 31, 46, 0.55) 100%);
  pointer-events: none;
}

.tl-stage-body {
  padding: 1rem 0.15rem 0.25rem;
}
.tl-stage-label {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f5a876;
}
.tl-stage-body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--tl-serif);
  font-size: 1.05rem;
  line-height: 1.25;
  color: #fff;
}
.tl-stage-body p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

/* —— Trust band —— */
.tl-trust-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.tl-trust-photo {
  border-radius: 28px 4px 28px 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 22px 44px -18px rgba(23, 50, 77, 0.4);
}
.tl-trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tl-trust-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.tl-trust-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: var(--tl-paper);
  border: 1px solid var(--tl-line);
  border-left: 3px solid var(--tl-coral);
  border-radius: 0 10px 10px 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tl-trust-item:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 24px -14px rgba(23, 50, 77, 0.25);
}
.tl-trust-item span {
  font-family: var(--tl-serif);
  font-size: 1.35rem;
  color: var(--tl-coral);
  line-height: 1;
  padding-top: 0.15rem;
}
.tl-trust-item h3 {
  margin: 0 0 0.3rem;
  font-family: var(--tl-serif);
  font-size: 1.05rem;
  color: var(--tl-navy);
}
.tl-trust-item p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--tl-muted);
}

/* —— Service area —— */
.tl-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  margin-top: 1.75rem;
}
.tl-map-panel {
  background: linear-gradient(160deg, #dce6ee, #e8ded2);
  border-radius: 4px 24px 4px 24px;
  padding: 1.35rem;
  position: relative;
}
.tl-map-panel-head {
  text-align: center;
  margin-bottom: 0.75rem;
}
.tl-map-panel-head .tl-title {
  font-size: 1.55rem;
}
.tl-map-svg-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 118%;
}
.tl-map-svg-wrap svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(23, 50, 77, 0.15));
}
.tl-map-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1rem;
}
.tl-map-stat {
  background: var(--tl-paper);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(23, 50, 77, 0.08);
}
.tl-map-stat strong {
  display: block;
  font-family: var(--tl-serif);
  font-size: 1.35rem;
  color: var(--tl-navy);
}
.tl-map-stat span {
  font-size: 0.72rem;
  color: var(--tl-muted);
}

.tl-locs h3 {
  margin: 0.35rem 0 0;
  font-family: var(--tl-serif);
  font-size: 1.55rem;
  color: var(--tl-navy);
}
.tl-loc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.15rem 0 1.25rem;
}
.tl-note {
  margin-top: 1.15rem;
  padding: 1rem 1.15rem;
  background: var(--tl-wash);
  border: 1px solid var(--tl-line);
  border-radius: 12px;
}
.tl-note strong {
  display: block;
  font-size: 0.92rem;
  color: var(--tl-navy);
  margin-bottom: 0.25rem;
}
.tl-note p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--tl-muted);
  line-height: 1.55;
}
.tl-note a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
  color: var(--tl-coral);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}
.tl-note a:hover { text-decoration: underline; }

/* —— More services —— */
.tl-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.tl-more-a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  background: var(--tl-paper);
  border: 1px solid var(--tl-line);
  border-radius: 4px;
  color: var(--tl-navy);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.tl-more-a span:last-child {
  color: var(--tl-coral);
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.tl-more-a:hover {
  background: var(--tl-navy);
  color: #fff;
  border-color: var(--tl-navy);
  transform: translateY(-2px);
}
.tl-more-a:hover span:last-child {
  color: #f5a876;
  opacity: 1;
  transform: translateX(3px);
}

/* —— CTA —— */
.tl-cta {
  background:
    linear-gradient(115deg, rgba(14, 31, 46, 0.88), rgba(23, 50, 77, 0.78)),
    url('/assets/images/services--bathroom-toilet/toilet-installation-orange-county-cta-orange-county.avif') center / cover no-repeat;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.tl-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.tl-cta .tl-form {
  background: rgba(255, 255, 255, 0.97);
}
.tl-cta .tl-form-head h3 { color: var(--tl-navy); }
.tl-cta .tl-text { color: rgba(255, 255, 255, 0.78); }

/* —— FAQ —— */
.tl-faq {
  background: linear-gradient(180deg, #fbfcfd 0%, #eef2f6 100%);
}
.tl-faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.tl-faq-side .tl-title {
  max-width: 16ch;
}
.tl-faq-visual {
  margin: 1.75rem 0 0;
  border-radius: 22px 4px 22px 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 22px 44px -18px rgba(23, 50, 77, 0.35);
}
.tl-faq-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tl-faq-list {
  background: var(--tl-paper);
  border: 1px solid var(--tl-line);
  border-radius: 4px 20px 4px 20px;
  padding: 0.35rem 1.15rem;
  box-shadow: 0 18px 40px -24px rgba(23, 50, 77, 0.28);
}

.tl-faq-item {
  border-bottom: 1px solid #dbe3ea;
}
.tl-faq-item:last-child {
  border-bottom: none;
}

.tl-faq-q {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
  width: 100%;
  padding: 1.15rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--tl-navy);
  font-family: var(--tl-sans);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
}
.tl-faq-num {
  font-family: var(--tl-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--tl-coral);
  line-height: 1.4;
  padding-top: 0.05rem;
}
.tl-faq-q-text {
  padding-right: 0.25rem;
}
.tl-faq-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--tl-stone);
  color: var(--tl-coral);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.tl-faq-item.is-open .tl-faq-icon,
.tl-faq-q[aria-expanded="true"] .tl-faq-icon {
  background: var(--tl-coral);
  color: #fff;
}
.tl-faq-q[aria-expanded="true"] .tl-faq-plus-v {
  display: none;
}

.tl-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--tl-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.tl-faq-q[aria-expanded="true"] + .tl-faq-a {
  max-height: 480px;
}
.tl-faq-a p {
  margin: 0;
  padding: 0 0 1.15rem 3.15rem;
  max-width: 42rem;
}

/* —— Motion —— */
@media (prefers-reduced-motion: reduce) {
  .tl-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .tl-type:hover .tl-type-media img,
  .tl-type:hover,
  .tl-trust-item:hover,
  .tl-more-a:hover,
  .tl-stage:hover .tl-stage-photo img {
    transform: none;
  }
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .tl-intro-grid,
  .tl-services-grid,
  .tl-trust-layout,
  .tl-area-grid,
  .tl-cta-grid,
  .tl-faq-grid {
    grid-template-columns: 1fr;
  }
  .tl-chal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tl-intro-media {
    min-height: 0;
    max-width: 420px;
  }
  .tl-dim-rail { display: none; }
  .tl-type:nth-child(n) {
    grid-column: span 6;
  }
  .tl-type:nth-child(6) {
    grid-column: span 12;
    flex-direction: column;
  }
  .tl-type:nth-child(6) .tl-type-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
  .tl-faq-layout {
    grid-template-columns: 1fr;
  }
  .tl-faq-side .tl-title {
    max-width: none;
  }
  .tl-faq-visual {
    max-width: 420px;
    aspect-ratio: 16 / 11;
  }
  .tl-faq-a p {
    padding-left: 0;
  }
  .tl-faq-q {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
  }
  .tl-more-grid { grid-template-columns: 1fr 1fr; }
  .tl-stages {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.85rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .tl-stages::before { display: none; }
  .tl-stage {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
  }
  .tl-stage-photo { aspect-ratio: 4 / 5; }
}

@media (max-width: 640px) {
  .tl-chal-grid,
  .tl-checks,
  .tl-services-grid,
  .tl-more-grid {
    grid-template-columns: 1fr;
  }
  .tl-type:nth-child(n) {
    grid-column: span 12;
  }
  .tl-intro-photo {
    max-width: 100%;
    border-radius: 4px 20px 4px 20px;
  }
  .tl-intro-inset {
    width: 42%;
    bottom: 4%;
  }
  .tl-map-stats { grid-template-columns: 1fr; }
  .tl-form { border-radius: 4px 16px 4px 16px; }
}
