/* ==========================================================================
   Contact — the front desk
   No stock photography. A split hero with a live desk card, four oversized
   channel rows that fill red, a real enquiry panel with chip-picked topics,
   a full-bleed map, an accordion, and a red counter to close.
   Prefix: ct-
   ========================================================================== */

.ct { background: #000; position: relative; overflow: clip; }
@supports not (overflow: clip) { .ct { overflow: hidden; } }

.ct-wrap { width: 100%; max-width: 1260px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 5; }

/* --------------------------------------------------------- shared pieces */

.ct-kick {
  display: inline-flex; align-items: center; gap: 13px;
  color: var(--primary);
  text-transform: uppercase; letter-spacing: .26em;
  font-family: 'Chakra Petch', sans-serif; font-size: 11px; font-weight: 600;
}
.ct-kick:before { content: ""; width: 28px; height: 2px; background: var(--primary); flex: none; }

.ct-h2 {
  margin: 0; color: #fff; text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif; font-weight: 700;
  font-size: clamp(1.8rem, 4.2vw, 3rem); line-height: 1.03; letter-spacing: -.025em;
}
.ct-kick + .ct-h2 { margin-top: 20px; }

.ct-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 58px; padding: 17px 28px;
  border: 2px solid rgba(255,255,255,.28); color: #fff;
  text-transform: uppercase; letter-spacing: .12em;
  font-family: 'Chakra Petch', sans-serif; font-size: 13px; font-weight: 600;
  transition: background .4s cubic-bezier(.22,.61,.36,1), color .4s, border-color .4s;
}
.ct-btn:hover { background: #fff; border-color: #fff; color: #000; }
.ct-btn--red { background: var(--primary); border-color: var(--primary); }
.ct-btn--red:hover { background: #fff; border-color: #fff; color: var(--primary); }

/* ------------------------------------------------------------------ hero */

.ct-hero { position: relative; overflow: hidden; padding: 166px 0 92px; border-bottom: 1px solid rgba(255,255,255,.1); }
/* An engineering grid instead of a photograph — this page earns its atmosphere
   from drawing, not from stock imagery. */
.ct-hero:before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 92px);
  -webkit-mask-image: radial-gradient(ellipse 88% 78% at 40% 42%, #000 12%, transparent 76%);
  mask-image: radial-gradient(ellipse 88% 78% at 40% 42%, #000 12%, transparent 76%);
}
.ct-hero:after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 700px; height: 700px; right: -200px; top: -260px;
  background: radial-gradient(circle, rgba(216,35,52,.45), transparent 68%);
  filter: blur(96px);
}
.ct-hero__grid { display: grid; grid-template-columns: 1.32fr .68fr; gap: 56px; align-items: start; }

.ct-hero h1 {
  margin: 24px 0 0; color: #fff; text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif; font-weight: 700;
  font-size: clamp(2.6rem, 7.6vw, 6rem); line-height: .88; letter-spacing: -.038em;
}
.ct-hero h1 em { display: block; font-style: normal; color: var(--primary); }
.ct-hero__sub { margin: 30px 0 0; max-width: 48ch; color: rgba(255,255,255,.64); font-weight: 300; font-size: 17px; line-height: 1.85; }
.ct-hero__acts { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* the workshop shot beside the hero copy */
.ct-shot {
  position: relative; margin: 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  aspect-ratio: 3 / 4;
}
.ct-shot:before {
  content: ""; position: absolute; z-index: 2; top: 0; left: 0; right: 0;
  height: 3px; background: var(--primary);
}
.ct-shot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(.18) brightness(.9) contrast(1.04);
}
.ct-shot figcaption {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  padding: 56px 24px 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.88));
  color: rgba(255,255,255,.82);
  text-transform: uppercase; letter-spacing: .14em;
  font-family: 'Chakra Petch', sans-serif; font-size: 11px; font-weight: 600;
}

/* ------------------------------------------------------- oversized channels */

.ct-lines { padding: 96px 0 110px; }
.ct-lines__head { margin-bottom: 40px; }
.ct-lines__set { border-top: 1px solid rgba(255,255,255,.12); }

.ct-line {
  position: relative; isolation: isolate;
  display: grid; grid-template-columns: 72px 1fr auto 58px; gap: 26px; align-items: center;
  padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.12);
  text-transform: none; letter-spacing: normal; font-family: inherit; font-size: inherit;
  transition: padding-left .5s cubic-bezier(.22,.61,.36,1);
}
.ct-line:before {
  content: ""; position: absolute; z-index: -1; inset: 0 -22px;
  background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
.ct-line:hover { padding-left: 22px; }
.ct-line:hover:before { transform: none; }

.ct-line__n {
  font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 1.5rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.2px rgba(255,255,255,.32);
  transition: color .4s ease, -webkit-text-stroke-color .4s ease;
}
@supports not (-webkit-text-stroke: 1px #fff) { .ct-line__n { color: rgba(255,255,255,.3); } }
.ct-line:hover .ct-line__n { color: #fff; -webkit-text-stroke-color: #fff; }

.ct-line__label {
  color: #fff; text-transform: uppercase; letter-spacing: -.02em;
  font-family: 'Chakra Petch', sans-serif; font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 2.3rem); line-height: 1.05;
}
.ct-line__label small {
  display: block; margin-top: 9px;
  color: rgba(255,255,255,.42); text-transform: none; letter-spacing: 0;
  font-family: 'Mulish', sans-serif; font-size: 13.5px; font-weight: 300; line-height: 1.7;
  transition: color .4s ease;
}
.ct-line:hover .ct-line__label small { color: rgba(255,255,255,.86); }

.ct-line__val {
  color: rgba(255,255,255,.68); text-align: right; letter-spacing: .02em;
  font-family: 'Chakra Petch', sans-serif; font-size: 15px; font-weight: 600;
  transition: color .4s ease;
}
.ct-line:hover .ct-line__val { color: #fff; }

.ct-line__go {
  justify-self: end; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 15px; line-height: 1;
  transition: all .45s cubic-bezier(.22,.61,.36,1);
}
.ct-line:hover .ct-line__go { border-color: #fff; color: #fff; transform: translate(4px, -4px); }

/* ----------------------------------------------------------- we come to you

   The four channel rows above are full-width and numbered, so this cannot be
   more rows. It is an asymmetric spread instead: a red statement slab that
   carries the 50% inside running text rather than as a stat, and a narrow
   column of two tall channel cards beside it. The red sits mid-page, which
   also stops the long stretch of black between the hero and the form.
   -------------------------------------------------------------------------- */

.ct-onsite { padding: 0 0 110px; scroll-margin-top: 110px; }
.ct-onsite__grid { display: grid; grid-template-columns: 1.42fr .58fr; gap: 22px; align-items: stretch; }

.ct-onsite__say {
  padding: 58px 56px 62px;
  background:
    radial-gradient(ellipse 76% 60% at 12% 0%, rgba(255,255,255,.12), transparent 62%),
    linear-gradient(158deg, #d42535 0%, #bb1c2b 56%, #9c1522 100%);
}
.ct-onsite__kick {
  display: inline-flex; align-items: center; gap: 13px;
  color: rgba(255,255,255,.78); text-transform: uppercase; letter-spacing: .26em;
  font-family: 'Chakra Petch', sans-serif; font-size: 11px; font-weight: 600;
  margin-bottom: 20px;
}
.ct-onsite__kick:before { content: ""; width: 28px; height: 2px; background: #fff; flex: none; }
.ct-onsite__say h2 {
  margin: 0; color: #fff; text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif; font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.9rem); line-height: 1.03; letter-spacing: -.025em;
}
.ct-onsite__big {
  margin: 30px 0 0; color: #fff; font-weight: 300;
  font-size: clamp(1.05rem, 2.1vw, 1.4rem); line-height: 1.55; max-width: 34ch;
}
.ct-onsite__big b {
  font-family: 'Chakra Petch', sans-serif; font-weight: 700; letter-spacing: -.02em;
  font-size: 1.5em; line-height: 1;
}
.ct-onsite__say p {
  margin: 20px 0 0; color: rgba(255,255,255,.9);
  font-weight: 300; font-size: 15px; line-height: 1.85; max-width: 58ch;
}
.ct-onsite__say p strong { color: #fff; font-weight: 700; }

.ct-onsite__aside { display: flex; flex-direction: column; gap: 12px; }
.ct-onsite__asidekick {
  display: block; color: rgba(255,255,255,.42);
  text-transform: uppercase; letter-spacing: .24em;
  font-family: 'Chakra Petch', sans-serif; font-size: 10.5px; font-weight: 600;
  padding-bottom: 4px;
}

.ct-drop {
  flex: 1; display: flex; flex-direction: column; align-items: flex-start;
  padding: 30px 30px 32px;
  border: 1px solid rgba(255,255,255,.15); background: linear-gradient(180deg, #0c0c0c, #050505);
  text-transform: none; letter-spacing: normal; font-family: inherit;
  transition: border-color .45s ease, background .45s ease, transform .45s cubic-bezier(.22,.61,.36,1);
}
.ct-drop svg { width: 26px; height: 26px; color: var(--primary); margin-bottom: 20px; flex: none; }
.ct-drop b {
  display: block; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .2em;
  font-family: 'Chakra Petch', sans-serif; font-size: 10px; font-weight: 600;
  margin-bottom: 8px;
  transition: color .45s ease;
}
.ct-drop em {
  display: block; font-style: normal; color: #fff; letter-spacing: -.01em;
  font-family: 'Chakra Petch', sans-serif; font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 700;
  overflow-wrap: anywhere;
}
.ct-drop small {
  display: block; margin-top: 12px; color: rgba(255,255,255,.42);
  font-family: 'Mulish', sans-serif; font-size: 13px; font-weight: 300; line-height: 1.7;
  transition: color .45s ease;
}
.ct-drop:hover { border-color: rgba(255,255,255,.55); background: #101010; transform: translateY(-3px); }
.ct-drop:hover b, .ct-drop:hover small { color: rgba(255,255,255,.8); }
.ct-drop--wa svg { color: #25d366; }
.ct-drop--wa:hover { border-color: #25d366; }

/* ------------------------------------------------------------------ desk */

.ct-deskwrap { padding: 0 0 118px; scroll-margin-top: 110px; }
.ct-deskwrap__grid { display: grid; grid-template-columns: 1.55fr .8fr; gap: 32px; align-items: start; }

.ct-form { position: relative; border: 1px solid rgba(255,255,255,.13); background: linear-gradient(180deg, #0c0c0c, #050505); }
.ct-form:before { content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 3px; background: var(--primary); }
.ct-form__head {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 32px 42px 28px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.ct-form__head h2 {
  margin: 0; color: #fff; text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif; font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.05; letter-spacing: -.02em;
}
.ct-form__count {
  color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .2em;
  font-family: 'Chakra Petch', sans-serif; font-size: 10px; font-weight: 600;
}
.ct-form__body { padding: 34px 42px 42px; }

.ct-set { margin-bottom: 30px; }
.ct-set:last-of-type { margin-bottom: 0; }
.ct-set__legend {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
  color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .18em;
  font-family: 'Chakra Petch', sans-serif; font-size: 10px; font-weight: 600;
}
.ct-set__legend b { color: var(--primary); font-weight: 600; letter-spacing: .1em; }
.ct-set__legend:after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.1); }

.ct-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ct-field { margin-bottom: 18px; }
.ct-field:last-child { margin-bottom: 0; }
.ct-field label {
  display: block; margin: 0 0 9px; color: rgba(255,255,255,.52);
  text-transform: uppercase; letter-spacing: .14em; font-weight: 600;
  font-family: 'Chakra Petch', sans-serif; font-size: 10px;
}
.ct-field label i { font-style: normal; color: var(--primary); }

.ct-field input, .ct-field textarea {
  width: 100%; display: block;
  background: #0a0a0a; border: 1px solid rgba(255,255,255,.14); color: #fff;
  padding: 15px 16px; min-height: 54px; border-radius: 0;
  font-family: 'Mulish', sans-serif; font-size: 16px; font-weight: 300; line-height: 1.5;
  -webkit-appearance: none; appearance: none;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.ct-field textarea { min-height: 132px; resize: vertical; }
.ct-field input::placeholder, .ct-field textarea::placeholder { color: #4a4a4a; }
.ct-field input:focus, .ct-field textarea:focus {
  outline: none; border-color: var(--primary); background: #101010;
  box-shadow: 0 0 0 3px rgba(216,35,52,.15);
}

/* topic chips — a select box does this job badly */
.ct-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.ct-chip { position: relative; display: inline-flex; margin: 0; }
.ct-chip input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.ct-chip span {
  display: inline-flex; align-items: center; min-height: 44px; padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.62);
  text-transform: uppercase; letter-spacing: .08em;
  font-family: 'Chakra Petch', sans-serif; font-size: 11.5px; font-weight: 600;
  transition: all .3s ease; cursor: pointer;
}
.ct-chip:hover span { border-color: rgba(255,255,255,.45); color: #fff; }
.ct-chip input:checked + span { background: var(--primary); border-color: var(--primary); color: #fff; }
.ct-chip input:focus-visible + span { outline: 2px solid #fff; outline-offset: 2px; }

.ct-consent { display: flex; gap: 13px; align-items: flex-start; margin: 30px 0 26px; }
.ct-consent input { flex: none; width: 18px; height: 18px; margin-top: 3px; accent-color: var(--primary); }
.ct-consent span { color: rgba(255,255,255,.48); font-size: 13px; font-weight: 300; line-height: 1.7; }
/* Webflow makes every label a bold block; this one sits inline inside a sentence. */
.ct-consent label { display: inline; margin: 0; font: inherit; color: inherit; cursor: pointer; }
.ct-consent a {
  color: var(--primary); text-transform: none; letter-spacing: 0; display: inline;
  font-family: inherit; font-size: inherit; font-weight: inherit;
  border-bottom: 1px solid rgba(216,35,52,.4);
}
.ct-consent a:hover { color: #fff; border-bottom-color: rgba(255,255,255,.5); }

.ct-send {
  width: 100%; min-height: 64px; cursor: pointer; border: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--primary); color: #fff;
  text-transform: uppercase; letter-spacing: .16em;
  font-family: 'Chakra Petch', sans-serif; font-size: 13px; font-weight: 600;
  transition: background .4s cubic-bezier(.22,.61,.36,1), color .4s;
}
.ct-send:hover { background: #fff; color: #000; }
.ct-note { color: rgba(255,255,255,.34); font-size: 12px; line-height: 1.75; margin: 18px 0 0; }
.ct-note a {
  color: rgba(255,255,255,.62); text-transform: none; letter-spacing: 0; display: inline;
  font-family: inherit; font-size: inherit; font-weight: inherit;
}
.ct-note a:hover { color: var(--primary); }
.ct-note[data-form-status] { color: var(--primary); font-size: 13px; }

/* the column beside the form */
.ct-aside { position: sticky; top: 118px; display: grid; gap: 18px; }
.ct-panel { border: 1px solid rgba(255,255,255,.12); background: #070707; padding: 28px 26px; }
.ct-panel h3 {
  margin: 0; color: #fff; text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .1em;
}
.ct-panel p { margin: 14px 0 0; color: rgba(255,255,255,.5); font-size: 14px; font-weight: 300; line-height: 1.8; }
.ct-panel--red { background: var(--primary); border-color: var(--primary); }
.ct-panel--red p { color: rgba(255,255,255,.88); }
.ct-panel__tel {
  display: inline-block; margin-top: 12px; color: #fff;
  text-transform: none; letter-spacing: -.01em;
  font-family: 'Chakra Petch', sans-serif; font-size: 30px; font-weight: 700; line-height: 1.1;
}
.ct-panel__tel:hover { opacity: .75; color: #fff; }
.ct-panel__link {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 16px;
  color: var(--primary); text-transform: uppercase; letter-spacing: .12em;
  font-family: 'Chakra Petch', sans-serif; font-size: 11.5px; font-weight: 600;
}
.ct-panel__link:hover { color: #fff; }

.ct-check {
  list-style: none; margin: 16px 0 0; padding: 0;
  background: none; background-clip: border-box; -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentColor; color: inherit;
  display: grid; grid-row-gap: 0; gap: 13px;
}
.ct-check li {
  display: grid; grid-template-columns: 9px 1fr; gap: 13px; align-items: start;
  color: rgba(255,255,255,.55); font-size: 13.5px; font-weight: 300; line-height: 1.7;
}
.ct-check li:before { content: ""; width: 9px; height: 9px; background: var(--primary); margin-top: 7px; }

/* ------------------------------------------------------------------- map */

.ct-where { position: relative; border-top: 1px solid rgba(255,255,255,.12); }
.ct-where__map { height: 560px; background: #0a0a0a; position: relative; }
.ct-where__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(1) invert(.92) contrast(.85); }
.ct-where__ask {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  text-align: center; padding: 40px 24px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 58px), #0a0a0a;
}
.ct-where__pin { width: 14px; height: 14px; background: var(--primary); box-shadow: 0 0 0 10px rgba(216,35,52,.14); }
.ct-where__ask h3 {
  margin: 0; color: #fff; text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: .06em;
}
.ct-where__ask p { margin: 0; color: rgba(255,255,255,.4); font-size: 13px; font-weight: 300; max-width: 44ch; line-height: 1.75; }
.ct-where__ask button {
  border: 2px solid var(--primary); background: var(--primary); color: #fff;
  padding: 13px 26px; min-height: 48px; cursor: pointer;
  text-transform: uppercase; letter-spacing: .12em;
  font-family: 'Chakra Petch', sans-serif; font-size: 12px; font-weight: 600;
  transition: all .4s ease;
}
.ct-where__ask button:hover { background: transparent; }

.ct-where__card {
  position: absolute; z-index: 6; bottom: 56px;
  left: max(28px, calc(50vw - 630px + 28px));
  width: min(440px, calc(100% - 56px));
  background: #000; border: 1px solid rgba(255,255,255,.16); padding: 34px 32px;
}
.ct-where__card h3 {
  margin: 16px 0 0; color: #fff; text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: .08em;
}
.ct-where__card address { font-style: normal; color: rgba(255,255,255,.66); font-weight: 300; line-height: 1.9; font-size: 15px; margin-top: 12px; }
.ct-where__card address.is-small { font-size: 13px; color: rgba(255,255,255,.45); }
.ct-rule { height: 1px; background: rgba(255,255,255,.14); margin: 22px 0; }
.ct-where__card a {
  color: var(--primary); text-transform: uppercase; letter-spacing: .12em;
  font-family: 'Chakra Petch', sans-serif; font-size: 12px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.ct-where__card a:hover { color: #fff; }

/* ------------------------------------------------------------------- faq */

.ct-faq { padding: 112px 0 118px; }
.ct-faq__head { margin-bottom: 46px; }
.ct-qa { border-top: 1px solid rgba(255,255,255,.12); }
.ct-q { border-bottom: 1px solid rgba(255,255,255,.12); }
.ct-q summary {
  display: grid; grid-template-columns: 1fr 30px; gap: 24px; align-items: center;
  padding: 26px 0; cursor: pointer; list-style: none;
  color: #fff; text-transform: none; letter-spacing: -.01em;
  font-family: 'Chakra Petch', sans-serif; font-weight: 600;
  font-size: clamp(1rem, 1.9vw, 1.28rem); line-height: 1.35;
  transition: color .3s ease;
}
.ct-q summary::-webkit-details-marker { display: none; }
.ct-q summary::marker { content: ""; }
.ct-q summary:hover { color: var(--primary); }
.ct-q__mark { position: relative; width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.25); justify-self: end; transition: border-color .3s ease; }
.ct-q__mark:before, .ct-q__mark:after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--primary);
  transform: translate(-50%, -50%);
}
.ct-q__mark:before { width: 12px; height: 1.5px; }
.ct-q__mark:after { width: 1.5px; height: 12px; transition: transform .35s cubic-bezier(.22,.61,.36,1); }
.ct-q[open] .ct-q__mark { border-color: var(--primary); }
.ct-q[open] .ct-q__mark:after { transform: translate(-50%, -50%) scaleY(0); }
.ct-q p {
  margin: 0 0 30px; padding-right: 54px; max-width: 88ch;
  color: rgba(255,255,255,.56); font-weight: 300; font-size: 15.5px; line-height: 1.9;
}

/* ------------------------------------------------------------ red counter */

.ct-end { background: var(--primary); padding: 78px 0; }
.ct-end__in { display: grid; grid-template-columns: 1.25fr .75fr; gap: 44px; align-items: end; }
.ct-end__kick {
  display: block; color: rgba(255,255,255,.78);
  text-transform: uppercase; letter-spacing: .24em;
  font-family: 'Chakra Petch', sans-serif; font-size: 11px; font-weight: 600;
  margin-bottom: 18px;
}
.ct-end__tel {
  display: inline-block; color: #fff; text-transform: none; letter-spacing: -.03em;
  font-family: 'Chakra Petch', sans-serif; font-weight: 700;
  font-size: clamp(2.1rem, 7.4vw, 4.9rem); line-height: .95;
  transition: opacity .3s ease;
}
.ct-end__tel:hover { opacity: .72; color: #fff; }
.ct-end__side { border-left: 1px solid rgba(255,255,255,.34); padding-left: 34px; }
.ct-end__side div { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.ct-end__side div:last-child { border-bottom: 0; }
.ct-end__side a, .ct-end__side p {
  margin: 0; color: #fff; text-transform: none; letter-spacing: 0; display: block;
  font-family: 'Mulish', sans-serif; font-size: 14px; font-weight: 300; line-height: 1.7;
}
.ct-end__side a:hover { color: #000; }
.ct-end__side b {
  display: block; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .16em;
  font-family: 'Chakra Petch', sans-serif; font-size: 9.5px; font-weight: 600; margin-bottom: 5px;
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 1100px) {
  .ct-hero { padding: 132px 0 68px; }
  .ct-hero__grid { grid-template-columns: 1fr; gap: 44px; align-items: start; }
  /* the hero stacks, so the shot goes wide and short rather than tall */
  .ct-shot { max-width: 560px; aspect-ratio: 4 / 3; }
  .ct-lines { padding: 72px 0 82px; }
  .ct-onsite { padding-bottom: 78px; }
  .ct-onsite__grid { grid-template-columns: 1fr; gap: 16px; }
  .ct-onsite__say { padding: 44px 34px 48px; }
  /* side by side once they are no longer a narrow column */
  .ct-onsite__aside { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .ct-onsite__asidekick { grid-column: 1 / -1; }
  .ct-deskwrap__grid { grid-template-columns: 1fr; gap: 24px; }
  .ct-aside { position: static; grid-template-columns: 1fr 1fr; }
  .ct-form__head, .ct-form__body { padding-left: 30px; padding-right: 30px; }
  .ct-where__map { height: 460px; }
  .ct-where__card { position: static; width: auto; margin: 0 28px; transform: translateY(-46px); }
  .ct-faq { padding: 80px 0 86px; }
  .ct-end__in { grid-template-columns: 1fr; gap: 34px; align-items: start; }
  .ct-end__side { border-left: 0; border-top: 1px solid rgba(255,255,255,.34); padding: 22px 0 0; }
}

@media (max-width: 700px) {
  .ct-wrap { padding: 0 20px; }
  .ct-hero { padding: 116px 0 56px; }
  .ct-hero__acts a { width: 100%; }
  .ct-line { grid-template-columns: 44px 1fr 44px; gap: 16px; padding: 26px 0; }
  .ct-line:hover { padding-left: 12px; }
  .ct-line__n { font-size: 1.1rem; }
  .ct-line__val { grid-column: 2; text-align: left; margin-top: 4px; font-size: 13.5px; }
  .ct-line__go { width: 40px; height: 40px; grid-row: 1; grid-column: 3; }
  .ct-pair { grid-template-columns: 1fr; gap: 0; }
  .ct-form__head, .ct-form__body { padding-left: 22px; padding-right: 22px; }
  .ct-aside { grid-template-columns: 1fr; }
  .ct-where__map { height: 380px; }
  .ct-where__card { margin: 0 20px; padding: 28px 24px; }
  .ct-q p { padding-right: 0; }
  .ct-shot { max-width: none; aspect-ratio: 3 / 2; }
  .ct-onsite__say { padding: 38px 24px 42px; }
  .ct-onsite__aside { grid-template-columns: 1fr; }
  .ct-drop { padding: 26px 24px 28px; }
}
