/* TOP CITY v28 — original production catalogue design. */

.services-page {
  --service-accent: #f17722;
  --tc-orange: #f17722;
  --tc-orange-deep: #b84c12;
  --tc-black: #090a09;
  --tc-graphite: #141614;
  --tc-paper: #f1eee7;
  --tc-paper-2: #e8e4dc;
  --tc-line: rgba(13, 15, 13, .16);
  --lime: var(--tc-orange);
  background: var(--tc-paper);
}

.services-page .desktop-nav > a[aria-current="page"]::after { background: var(--tc-orange); }

.service-finder-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(520px, .94fr) minmax(560px, 1.06fr);
  min-height: clamp(610px, 43vw, 720px);
  margin: 0 18px;
  color: #f8f5ef;
  background:
    radial-gradient(circle at 34% 35%, rgba(241, 119, 34, .11), transparent 25rem),
    linear-gradient(122deg, #080908 0%, #111310 58%, #080908 100%);
  overflow: hidden;
}

.service-finder-hero::before {
  content: "194 / SERVICES";
  position: absolute;
  z-index: -1;
  top: 54px;
  left: 3.8vw;
  color: rgba(255, 255, 255, .026);
  letter-spacing: -.065em;
  font-size: clamp(92px, 11.5vw, 220px);
  font-weight: 900;
  line-height: .8;
  white-space: nowrap;
}

.service-finder-hero::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tc-orange) 31%, transparent 72%);
  opacity: .8;
}

.finder-hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  min-width: 0;
  padding: clamp(48px, 4.2vw, 76px) clamp(30px, 3.7vw, 70px);
}

.service-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, .52);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 820;
}

.service-kicker span { color: var(--tc-orange); }
.service-kicker::after { width: 48px; background: var(--tc-orange); }

.finder-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #f8f5ef;
  letter-spacing: -.064em;
  text-transform: uppercase;
  font-size: clamp(54px, 4.55vw, 84px);
  font-weight: 890;
  line-height: .89;
  text-wrap: balance;
}

.finder-hero-copy h1 em,
.directory-heading h2 em,
.finder-heading h2 em,
.service-workflow h2 em,
.service-scale h2 em,
.services-faq h2 em,
.service-brief h2 em {
  color: var(--tc-orange);
  font-style: normal;
}

.finder-hero-copy > p:not(.service-kicker) {
  max-width: 660px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: 16px;
  line-height: 1.58;
}

.finder-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 29px;
}

.finder-hero-actions .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .035);
}

.finder-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(720px, 100%);
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.finder-hero-stats > span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px 13px 14px 0;
}

.finder-hero-stats > span + span {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.finder-hero-stats strong {
  color: #fff;
  font-size: clamp(21px, 1.8vw, 30px);
  line-height: 1;
}

.finder-hero-stats small {
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
  line-height: 1.35;
}

.finder-proof {
  grid-template-columns: 1.25fr .95fr .72fr;
  width: min(720px, 100%);
  margin-top: 17px;
  padding-top: 15px;
  border-top: 0;
}

.finder-proof b { color: var(--tc-orange); }

.finder-hero-media {
  position: relative;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.finder-hero-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #10120f 0%, rgba(16, 18, 15, .18) 35%, transparent 66%),
    linear-gradient(0deg, rgba(7, 8, 7, .84), transparent 45%);
  pointer-events: none;
}

.finder-hero-media::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: -18%;
  left: 8%;
  width: 16%;
  height: 145%;
  background: linear-gradient(90deg, transparent, rgba(255, 228, 194, .13), transparent);
  transform: skewX(-13deg);
  animation: tc-services-glint 7s 1.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes tc-services-glint {
  0%, 58%, 100% { left: -22%; opacity: 0; }
  68% { opacity: 1; }
  82% { left: 110%; opacity: 0; }
}

.finder-hero-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(610px, 43vw, 720px);
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(.72) contrast(1.08) brightness(.84);
}

.finder-hero-media figcaption {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 3vw, 52px);
  bottom: 33px;
  left: clamp(24px, 3vw, 52px);
  display: grid;
  gap: 7px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.finder-hero-media figcaption span {
  color: var(--tc-orange);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
}

.finder-hero-media figcaption strong {
  max-width: 440px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

/* Production directory */
.service-directory {
  position: relative;
  margin: 0 18px;
  padding: clamp(70px, 6vw, 108px) clamp(26px, 4.6vw, 84px) clamp(78px, 7vw, 128px);
  background:
    linear-gradient(90deg, transparent 0 49.96%, rgba(11, 13, 11, .045) 49.96% 50.04%, transparent 50.04%),
    var(--tc-paper);
  overflow: visible;
}

.directory-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, .58fr);
  align-items: end;
  gap: clamp(40px, 7vw, 130px);
  margin-bottom: clamp(38px, 4.4vw, 64px);
}

.directory-heading .service-kicker,
.service-workflow .service-kicker,
.services-faq .service-kicker { color: #6c6e69; }

.directory-heading h2,
.service-showcase .finder-heading h2,
.service-workflow h2,
.service-scale h2,
.services-faq h2,
.service-brief h2 {
  max-width: 900px;
  margin: 0;
  letter-spacing: -.059em;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  font-size: clamp(46px, 4.15vw, 74px);
  font-weight: 880;
  line-height: .92;
}

.directory-heading > p {
  max-width: 560px;
  margin: 0;
  color: #62645f;
  font-size: 16px;
  line-height: 1.62;
}

.directory-search-panel {
  position: sticky;
  z-index: 55;
  top: 10px;
  margin-bottom: 22px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(241, 119, 34, .08), transparent 30%),
    rgba(10, 11, 10, .96);
  box-shadow: 0 26px 70px rgba(11, 12, 11, .23);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.directory-search-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 18px;
  left: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tc-orange), transparent);
}

.directory-search.service-search {
  width: 100%;
  min-height: 60px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
  box-shadow: none;
}

.directory-search.service-search:focus-within {
  border-color: rgba(241, 119, 34, .85);
  box-shadow: 0 0 0 3px rgba(241, 119, 34, .13);
  transform: none;
}

.directory-search .service-search-icon {
  margin-left: 18px;
  color: var(--tc-orange);
}

.directory-search.service-search input {
  height: 58px;
  color: #fff;
  font-size: 16px;
}

.directory-search.service-search input::placeholder { color: rgba(255, 255, 255, .44); }

.directory-search.service-search kbd {
  border-color: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .56);
  background: rgba(255, 255, 255, .06);
}

.directory-search .service-search-clear {
  color: #0d0f0d;
  background: var(--tc-orange);
}

.directory-tabs {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.directory-tabs::-webkit-scrollbar { display: none; }

.directory-tabs button {
  flex: none;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  color: rgba(255, 255, 255, .62);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.directory-tabs button:hover {
  color: #fff;
  border-color: rgba(241, 119, 34, .58);
}

.directory-tabs button.is-active {
  color: #0a0b0a;
  border-color: var(--tc-orange);
  background: var(--tc-orange);
}

.directory-panel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
  padding: 10px 3px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.directory-panel-bottom > strong {
  flex: none;
  color: var(--tc-orange);
  font-size: 14px;
  font-weight: 850;
}

.directory-legend { display: flex; flex-wrap: wrap; gap: 18px; }

.directory-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
}

.directory-legend i {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 3px;
}

.directory-legend i.is-ready {
  border-color: var(--tc-orange);
  background: var(--tc-orange);
  box-shadow: inset 0 0 0 5px #0c0d0c;
}

.directory-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.directory-cluster {
  min-width: 0;
  border: 1px solid rgba(12, 14, 12, .14);
  border-radius: 10px;
  background: var(--tc-graphite);
  box-shadow: 0 16px 38px rgba(22, 24, 21, .06);
  overflow: clip;
}

.directory-cluster[open] { grid-column: 1 / -1; }
.directory-cluster[hidden],
.directory-service[hidden],
.directory-empty[hidden] { display: none !important; }

.directory-cluster > summary {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto 38px;
  align-items: center;
  gap: 17px;
  min-height: 102px;
  padding: 18px 20px;
  color: #fff;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.directory-cluster > summary::-webkit-details-marker { display: none; }

.directory-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(241, 119, 34, .45);
  color: var(--tc-orange);
  font-size: 11px;
  font-weight: 900;
}

.directory-cluster h3 {
  margin: 0;
  color: #fff;
  letter-spacing: -.035em;
  font-size: clamp(20px, 1.65vw, 29px);
  line-height: 1.12;
}

.directory-cluster > summary b {
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.directory-cluster > summary > i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: var(--tc-orange);
  font-size: 20px;
  font-style: normal;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .25s ease;
}

.directory-cluster > summary:hover > i { border-color: var(--tc-orange); }

.directory-cluster[open] > summary {
  background:
    linear-gradient(90deg, rgba(241, 119, 34, .1), transparent 42%),
    var(--tc-black);
}

.directory-cluster[open] > summary > i {
  color: #0b0c0b;
  border-color: var(--tc-orange);
  background: var(--tc-orange);
  transform: rotate(45deg);
}

.directory-cluster-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 28px;
  padding: 30px 28px 34px 84px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: var(--tc-paper);
}

.directory-group { min-width: 0; }

.directory-group h4 {
  margin: 0 0 13px;
  color: var(--tc-orange-deep);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.directory-group > div { border-top: 1px solid var(--tc-line); }

.directory-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--tc-line);
  color: #171a17;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.directory-service > span { min-width: 0; }

.directory-service strong {
  display: block;
  letter-spacing: -.015em;
  font-size: 14px;
  font-weight: 730;
  line-height: 1.3;
}

.directory-service small { display: none; }

.directory-service > i {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(15, 17, 15, .26);
  border-radius: 50%;
  color: var(--tc-orange-deep);
  font-size: 12px;
  font-style: normal;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.directory-service:hover strong,
.directory-service:focus-visible strong { color: var(--tc-orange-deep); }

.directory-service:hover > i,
.directory-service:focus-visible > i {
  color: #0a0b0a;
  border-color: var(--tc-orange);
  background: var(--tc-orange);
  transform: translateX(2px);
}

.directory-empty {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-top: 10px;
  padding: clamp(34px, 4vw, 60px);
  color: #fff;
  background:
    linear-gradient(115deg, rgba(241, 119, 34, .13), transparent 44%),
    var(--tc-black);
}

.directory-empty > span {
  color: var(--tc-orange);
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
}

.directory-empty > strong {
  max-width: 820px;
  letter-spacing: -.035em;
  font-size: clamp(27px, 3vw, 46px);
  line-height: 1.07;
}

/* Product examples: compact bento composition. */
.service-showcase {
  margin: 0 18px;
  padding: clamp(64px, 5.4vw, 94px) clamp(28px, 4.5vw, 82px);
  color: #f8f5ef;
  background:
    radial-gradient(circle at 82% 12%, rgba(241, 119, 34, .14), transparent 25rem),
    #0b0d0b;
}

.service-showcase .finder-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .58fr);
  align-items: end;
  gap: clamp(38px, 6vw, 110px);
}

.service-showcase .finder-heading .service-kicker { color: rgba(255, 255, 255, .48); }
.service-showcase .finder-heading h2 { color: #f8f5ef; font-size: clamp(44px, 3.75vw, 67px); }

.service-showcase .finder-heading > p {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 16px;
  line-height: 1.58;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  grid-template-rows: repeat(2, minmax(0, 255px));
  gap: 12px;
  margin-top: clamp(36px, 4vw, 54px);
}

.showcase-card,
.showcase-card-wide {
  position: relative;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: #151715;
  overflow: hidden;
}

.showcase-card-wide { grid-row: 1 / 3; min-height: 0; }
.showcase-card figure { position: absolute; inset: 0; margin: 0; }

.showcase-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 8, 7, .95) 0%, rgba(7, 8, 7, .5) 34%, transparent 70%);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) contrast(1.04);
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}

.showcase-card:hover img { transform: scale(1.025); }

.showcase-card > div {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 2.4vw, 38px);
  bottom: clamp(20px, 2.4vw, 38px);
  left: clamp(20px, 2.4vw, 38px);
}

.showcase-card > div > span {
  color: var(--tc-orange);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 850;
}

.showcase-card h3,
.showcase-card:not(.showcase-card-wide) h3 {
  max-width: 650px;
  margin: 9px 0 8px;
  color: #fff;
  letter-spacing: -.042em;
  font-size: clamp(24px, 2vw, 35px);
  line-height: 1.03;
}

.showcase-card-wide h3 { font-size: clamp(31px, 2.9vw, 52px); }
.showcase-card p { margin: 0; color: rgba(255, 255, 255, .62); font-size: 14px; line-height: 1.45; }
.showcase-card:not(.showcase-card-wide) p { display: none; }
.showcase-card button { margin-top: 14px; padding: 0; color: #fff; border: 0; background: transparent; font: inherit; font-size: 12px; font-weight: 820; cursor: pointer; }
.showcase-card button:hover { color: var(--tc-orange); }

/* Production route */
.service-workflow {
  display: grid;
  grid-template-columns: minmax(400px, .8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: clamp(44px, 5.3vw, 90px);
  background: var(--tc-paper);
}

.service-workflow h2 { font-size: clamp(45px, 3.55vw, 64px); }

.workflow-copy > p:not(.service-kicker) {
  max-width: 650px;
  margin: 23px 0 0;
  color: #62645f;
  font-size: 16px;
  line-height: 1.6;
}

.workflow-list { margin-top: 30px; border-color: var(--tc-line); }
.workflow-list li { padding: 13px 0; border-color: var(--tc-line); }
.workflow-list li > span { color: var(--tc-orange-deep); }

.workflow-visual {
  min-height: clamp(470px, 36vw, 600px);
  border-radius: 10px;
}

.workflow-visual span { color: var(--tc-orange); }

/* Large runs with original generated production images. */
.service-scale-v27 {
  display: grid;
  grid-template-columns: minmax(390px, .72fr) minmax(600px, 1.28fr);
  gap: 28px clamp(42px, 5vw, 84px);
  margin: 0 18px;
  padding: clamp(58px, 5vw, 84px) clamp(34px, 4vw, 76px);
  color: #f8f5ef;
  background:
    radial-gradient(circle at 76% 14%, rgba(241, 119, 34, .17), transparent 27rem),
    var(--tc-black);
}

.service-scale-v27 .service-kicker { color: rgba(255, 255, 255, .47); }
.service-scale-v27 .scale-copy { align-self: center; }
.service-scale-v27 .scale-copy h2 { color: #f8f5ef; font-size: clamp(43px, 3.45vw, 62px); }

.scale-copy > p:not(.service-kicker) {
  max-width: 620px;
  margin: 24px 0 29px;
  color: rgba(255, 255, 255, .6);
  font-size: 16px;
  line-height: 1.6;
}

.scale-visuals { position: relative; min-width: 0; min-height: 430px; }

.scale-visuals figure {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: #121412;
  overflow: hidden;
}

.scale-visuals figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 8, 7, .9), transparent 52%);
  pointer-events: none;
}

.scale-visual-main { height: 430px; }

.scale-visual-main img,
.scale-visual-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.07);
}

.scale-visual-main img { object-position: 50% 52%; }

.scale-visual-detail {
  position: absolute !important;
  right: 18px;
  bottom: 18px;
  width: min(43%, 335px);
  height: 174px;
  box-shadow: 0 20px 58px rgba(0, 0, 0, .45);
}

.scale-visuals figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  gap: 6px;
}

.scale-visuals figcaption span {
  color: var(--tc-orange);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
}

.scale-visuals figcaption strong { max-width: 440px; color: #fff; font-size: 17px; line-height: 1.22; }
.scale-visual-detail figcaption { right: 14px; bottom: 13px; left: 14px; }
.scale-visual-detail figcaption strong { font-size: 13px; }

.service-scale-v27 .scale-metrics {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3px;
  border-color: rgba(255, 255, 255, .14);
}

.service-scale-v27 .scale-metrics article {
  min-height: 138px;
  padding: 20px;
  border-color: rgba(255, 255, 255, .14);
}

.service-scale-v27 .scale-metrics span { color: var(--tc-orange); }
.service-scale-v27 .scale-metrics strong { font-size: 15px; }
.service-scale-v27 .scale-metrics p { font-size: 12px; }

/* FAQ */
.services-faq {
  display: grid;
  grid-template-columns: minmax(330px, .62fr) minmax(580px, 1.38fr);
  align-items: start;
  gap: clamp(52px, 7vw, 120px);
  padding-top: clamp(66px, 5.6vw, 98px);
  padding-bottom: clamp(66px, 5.6vw, 98px);
  background: var(--tc-paper);
}

.services-faq .faq-heading {
  position: sticky;
  top: 22px;
  max-width: 570px;
}

.services-faq .faq-heading h2 { font-size: clamp(43px, 3.65vw, 65px); }

.services-faq .faq-heading > p:not(.service-kicker) {
  max-width: 470px;
  margin: 24px 0 0;
  color: #676964;
  font-size: 15px;
  line-height: 1.58;
}

.faq-list { counter-reset: service-faq; border-top: 1px solid var(--tc-line); }
.faq-list details { counter-increment: service-faq; border-bottom: 1px solid var(--tc-line); }

.faq-list summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 0;
  color: #111411;
  cursor: pointer;
  list-style: none;
  letter-spacing: -.018em;
  font-size: 17px;
  font-weight: 770;
  line-height: 1.32;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::before {
  content: counter(service-faq, decimal-leading-zero);
  color: var(--tc-orange-deep);
  font-size: 11px;
  font-weight: 900;
}

.faq-list summary > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(15, 17, 15, .22);
  border-radius: 50%;
  color: var(--tc-orange-deep);
  font-size: 20px;
  font-weight: 400;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .25s ease;
}

.faq-list details[open] summary > span {
  color: #0a0b0a;
  border-color: var(--tc-orange);
  background: var(--tc-orange);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 760px;
  margin: -2px 54px 0 52px;
  padding: 0 0 25px;
  color: #666963;
  font-size: 14px;
  line-height: 1.62;
}

/* Capture form remains in the same brand system. */
.service-brief {
  background:
    radial-gradient(circle at 24% 15%, rgba(241, 119, 34, .17), transparent 24rem),
    var(--tc-black);
}

.service-brief-copy h2 { font-size: clamp(43px, 3.5vw, 63px); }
.service-form { background: linear-gradient(140deg, #f7f4ed, #e7e2d9); }

@media (max-width: 1280px) {
  .service-finder-hero { grid-template-columns: minmax(470px, 1fr) minmax(430px, .92fr); }
  .finder-hero-copy h1 { font-size: clamp(50px, 5.1vw, 70px); }

  .directory-cluster-body { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .service-workflow { grid-template-columns: minmax(350px, .78fr) minmax(440px, 1.22fr); }

  .service-scale-v27 { grid-template-columns: minmax(350px, .76fr) minmax(500px, 1.24fr); }
  .scale-visuals, .scale-visual-main { min-height: 390px; height: 390px; }
}

@media (max-width: 1050px) {
  .service-finder-hero { grid-template-columns: 1fr; }
  .finder-hero-copy { padding: 62px clamp(24px, 6vw, 58px) 48px; }
  .finder-hero-copy h1 { max-width: 820px; font-size: clamp(52px, 8vw, 76px); }
  .finder-hero-media, .finder-hero-media img { min-height: 480px; }
  .finder-hero-media::before { background: linear-gradient(0deg, rgba(7, 8, 7, .88), transparent 58%); }

  .directory-heading,
  .service-showcase .finder-heading { grid-template-columns: 1fr; gap: 22px; }
  .directory-heading > p,
  .service-showcase .finder-heading > p { max-width: 760px; }

  .directory-list { grid-template-columns: 1fr; }
  .directory-cluster[open] { grid-column: auto; }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 440px 330px;
  }
  .showcase-card-wide { grid-column: 1 / -1; grid-row: 1; }

  .service-workflow,
  .service-scale-v27,
  .services-faq { grid-template-columns: 1fr; }

  .service-workflow { gap: 38px; }
  .workflow-copy { max-width: 780px; }
  .workflow-visual { min-height: 510px; }

  .service-scale-v27 { gap: 38px; }
  .service-scale-v27 .scale-copy { max-width: 760px; }
  .scale-visuals, .scale-visual-main { min-height: 465px; height: 465px; }

  .services-faq .faq-heading { position: static; }
}

@media (max-width: 760px) {
  .service-finder-hero,
  .service-directory,
  .service-showcase,
  .service-scale-v27 { margin-right: 0; margin-left: 0; }

  .service-finder-hero::before { top: 36px; left: 15px; font-size: 76px; }
  .finder-hero-copy { padding: 48px 18px 36px; }
  .finder-hero-copy h1 { font-size: clamp(42px, 12.8vw, 59px); line-height: .91; }
  .finder-hero-copy > p:not(.service-kicker) { margin-top: 20px; font-size: 16px; }

  .finder-hero-actions { align-items: stretch; flex-direction: column; }
  .finder-hero-actions .button { width: 100%; }

  .finder-hero-stats { grid-template-columns: 1fr; }
  .finder-hero-stats > span { grid-template-columns: 82px 1fr; align-items: center; padding: 11px 0; }
  .finder-hero-stats > span + span { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, .12); border-left: 0; }
  .finder-hero-stats strong { font-size: 24px; }

  .finder-proof { grid-template-columns: 1fr; }
  .finder-proof span { min-height: 49px; padding: 11px 0; font-size: 11px; }
  .finder-proof span + span { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, .12); border-left: 0; }

  .finder-hero-media, .finder-hero-media img { min-height: 360px; }
  .finder-hero-media figcaption { right: 18px; bottom: 20px; left: 18px; }

  .service-directory { padding: 56px 18px 72px; }

  .directory-heading h2,
  .service-showcase .finder-heading h2,
  .service-workflow h2,
  .service-scale h2,
  .services-faq h2,
  .service-brief h2 {
    max-width: 100%;
    font-size: clamp(37px, 11vw, 50px);
    line-height: .94;
  }

  .directory-heading > p { font-size: 15px; }

  .directory-search-panel {
    top: 0;
    margin-right: -10px;
    margin-left: -10px;
    padding: 9px;
    border-radius: 0 0 10px 10px;
  }

  .directory-search.service-search { min-height: 54px; }
  .directory-search.service-search input { height: 52px; font-size: 14px; }
  .directory-search.service-search kbd { display: none; }
  .directory-tabs { margin-top: 7px; }
  .directory-tabs button { padding: 8px 11px; }
  .directory-panel-bottom { align-items: flex-start; flex-direction: column-reverse; gap: 7px; }
  .directory-panel-bottom > strong { font-size: 12px; }
  .directory-legend { display: none; }

  .directory-cluster > summary {
    grid-template-columns: 37px minmax(0, 1fr) 31px;
    gap: 10px;
    min-height: 82px;
    padding: 12px;
  }
  .directory-index { width: 34px; height: 34px; }
  .directory-cluster h3 { font-size: 19px; }
  .directory-cluster > summary b { display: none; }
  .directory-cluster > summary > i { width: 30px; height: 30px; font-size: 17px; }
  .directory-cluster-body { grid-template-columns: 1fr; gap: 26px; padding: 23px 15px 27px; }
  .directory-service { min-height: 59px; }

  .service-showcase { padding: 58px 18px; }
  .showcase-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .showcase-card-wide,
  .showcase-card { grid-column: auto; grid-row: auto; min-height: 420px; }
  .showcase-card:not(.showcase-card-wide) p { display: block; }
  .showcase-card h3,
  .showcase-card:not(.showcase-card-wide) h3,
  .showcase-card-wide h3 { font-size: clamp(27px, 8vw, 37px); }

  .service-workflow { gap: 35px; padding-top: 58px; padding-bottom: 58px; }
  .workflow-visual { min-height: 420px; }

  .service-scale-v27 { padding: 56px 18px; }
  .scale-visuals, .scale-visual-main { min-height: 410px; height: 410px; }
  .scale-visual-detail { right: 12px; bottom: 12px; width: 55%; height: 148px; }
  .scale-visuals figcaption { right: 18px; bottom: 18px; left: 18px; }
  .scale-visual-detail figcaption { right: 12px; bottom: 11px; left: 12px; }
  .scale-visual-detail figcaption strong { font-size: 12px; }
  .service-scale-v27 .scale-metrics { grid-template-columns: 1fr 1fr; }
  .service-scale-v27 .scale-metrics article { min-height: 148px; }

  .services-faq { gap: 34px; padding-top: 58px; padding-bottom: 58px; }
  .faq-list summary { grid-template-columns: 28px minmax(0, 1fr) 34px; gap: 10px; min-height: 72px; font-size: 15px; }
  .faq-list summary > span { width: 32px; height: 32px; }
  .faq-list details > p { margin-right: 42px; margin-left: 38px; font-size: 14px; }
}

@media (max-width: 430px) {
  .directory-search .service-search-icon { margin-left: 13px; }
  .directory-search.service-search input { padding-right: 4px; font-size: 13px; }
  .directory-search.service-search input::placeholder { font-size: 12px; }

  .showcase-card-wide,
  .showcase-card { min-height: 390px; }

  .scale-visuals, .scale-visual-main { min-height: 365px; height: 365px; }
  .scale-visual-detail { width: 58%; height: 132px; }
  .scale-visual-main figcaption strong { max-width: 190px; font-size: 15px; }
  .scale-visual-detail figcaption span { display: none; }
  .service-scale-v27 .scale-metrics { grid-template-columns: 1fr; }
  .service-scale-v27 .scale-metrics article { min-height: 126px; }
}

@media (prefers-reduced-motion: reduce) {
  .finder-hero-media::after { animation: none; }
  .showcase-card img,
  .directory-cluster > summary > i,
  .directory-service > i,
  .faq-list summary > span { transition: none; }
}
