:root {
  --contact-paper: #f2f0e9;
  --contact-white: #fbfbf8;
  --contact-ink: #101111;
  --contact-orange: #ff5b22;
  --contact-blue: #1769e0;
  --contact-mint: #a9d4c9;
  --contact-line: rgba(16, 17, 17, .2);
}

.contact-page {
  background: var(--contact-white);
  color: var(--contact-ink);
}

.contact-page main {
  overflow: clip;
}

.contact-page fieldset,
.contact-page legend {
  min-width: 0;
  margin: 0;
  border: 0;
}

.contact-page legend {
  padding: 0;
}

.contact-page input,
.contact-page textarea,
.contact-page button {
  border-radius: 0;
}

.contact-page [data-reveal] {
  opacity: 1;
  transform: none;
}

.js .contact-page [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2, .7, .2, 1);
}

.js .contact-page [data-reveal].is-visible,
.js.is-static .contact-page [data-reveal] {
  opacity: 1;
  transform: none;
}

/* Hero */

.contact-hero {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  padding: 0;
}

.contact-hero__inner {
  display: flex;
  flex: 1;
  align-items: center;
  padding-top: clamp(54px, 6vw, 100px);
  padding-bottom: clamp(54px, 6vw, 100px);
}

.contact-hero h1 {
  margin: 0 0 32px;
  font-size: clamp(76px, 8vw, 154px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.058em;
}

.contact-hero .contact__grid {
  width: 100%;
  align-items: center;
}

.contact-hero .contact__main .eyebrow {
  margin-bottom: 30px;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 28px;
  margin-top: 28px;
}

.contact-hero .contact__main .button {
  margin-top: 0;
}

.contact-brief-link {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
}

.contact-hero .contact__channels {
  align-self: center;
  width: 100%;
  min-width: 0;
}

.contact-hero .contact__channels strong {
  font-size: clamp(23px, 2.2vw, 36px);
  overflow-wrap: anywhere;
}

/* Brief */

.brief-section {
  padding: clamp(110px, 11vw, 190px) 0 clamp(120px, 12vw, 210px);
  background: var(--contact-white);
}

.brief-heading {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 30px;
  margin-bottom: clamp(90px, 10vw, 160px);
}

.brief-heading .eyebrow {
  margin-top: 10px;
  color: rgba(16, 17, 17, .5);
}

.brief-heading h2 {
  max-width: 1200px;
  font-size: clamp(62px, 7vw, 128px);
  line-height: .88;
  letter-spacing: -.06em;
}

.brief-heading div > p {
  max-width: 780px;
  margin: 44px 0 0;
  color: rgba(16, 17, 17, .68);
  font-size: clamp(18px, 1.3vw, 23px);
  line-height: 1.48;
}

.project-brief {
  border-top: 0;
}

.brief-block {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 30px;
  padding: clamp(60px, 7vw, 110px) 0;
  border-bottom: 1px solid var(--contact-line) !important;
}

.brief-block legend {
  float: left;
  width: 100%;
  display: grid;
  align-content: start;
  gap: 12px;
  padding-right: 30px;
}

.brief-block legend span {
  color: var(--contact-orange);
  font-size: 11px;
}

.brief-block legend strong {
  max-width: 320px;
  font: 400 clamp(34px, 3vw, 52px)/.95 var(--display);
  letter-spacing: -.04em;
}

.brief-block legend small {
  max-width: 300px;
  color: rgba(16, 17, 17, .56);
  font-size: 13px;
  line-height: 1.45;
}

.brief-block > :not(legend) {
  grid-column: 2;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px 28px;
}

.text-field,
.message-field,
.file-note {
  display: grid;
  gap: 10px;
}

.text-field span,
.message-field span,
.file-note span {
  color: rgba(16, 17, 17, .55);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.text-field input,
.message-field textarea,
.file-note input {
  width: 100%;
  padding: 16px 0 14px;
  border: 0;
  border-bottom: 1px solid var(--contact-ink);
  outline: 0;
  background: transparent;
  color: var(--contact-ink);
  font-size: clamp(18px, 1.35vw, 23px);
  transition: border-color .18s ease;
}

.text-field input:focus,
.message-field textarea:focus,
.file-note input:focus {
  border-bottom-color: var(--contact-blue);
}

.text-field input::placeholder,
.message-field textarea::placeholder,
.file-note input::placeholder {
  color: rgba(16, 17, 17, .28);
}

.task-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--contact-line);
  border-left: 1px solid var(--contact-line);
}

.task-grid label {
  min-width: 0;
}

.task-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.task-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-right: 1px solid var(--contact-line);
  border-bottom: 1px solid var(--contact-line);
  background: var(--contact-white);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.task-card:hover {
  background: #eceae3;
}

.task-card i {
  color: rgba(16, 17, 17, .42);
  font-size: 10px;
  font-style: normal;
}

.task-card strong {
  margin: auto 0 18px;
  font: 400 clamp(27px, 2.2vw, 40px)/.94 var(--display);
  letter-spacing: -.035em;
}

.task-card small {
  color: rgba(16, 17, 17, .58);
  font-size: 12px;
  line-height: 1.4;
}

.task-grid input:checked + .task-card {
  background: var(--contact-orange);
  color: var(--contact-ink);
}

.task-grid input:checked + .task-card i,
.task-grid input:checked + .task-card small {
  color: rgba(16, 17, 17, .72);
}

.task-grid input:focus-visible + .task-card {
  outline: 2px solid var(--contact-blue);
  outline-offset: -3px;
}

.field-message {
  min-height: 20px;
  margin: 14px 0 0;
  color: #b73412;
  font-size: 13px;
}

.budget-guide {
  display: grid;
  grid-template-columns: 7fr 5fr;
  background: var(--contact-paper);
  color: var(--contact-ink);
}

.budget-choice {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  border-bottom: 1px solid var(--contact-line);
}

.budget-choice button {
  padding: 14px 18px;
  border: 1px solid var(--contact-line);
  background: transparent;
  color: var(--contact-ink);
  cursor: pointer;
  font-size: 14px;
}

.budget-choice button.is-active {
  background: var(--contact-ink);
  color: #fff;
}

.budget-choice button:focus-visible {
  outline: 2px solid var(--contact-blue);
  outline-offset: 3px;
}

.budget-guide.is-unknown {
  grid-template-columns: 1fr;
}

.budget-guide__controls,
.budget-guide__result {
  padding: clamp(28px, 4vw, 60px);
}

.budget-guide__topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.budget-guide__topline p,
.budget-guide__result > p {
  margin: 0;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scenario-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 18px 0 54px;
}

.scenario-tabs button {
  min-height: 56px;
  padding: 10px;
  border: 1px solid rgba(16, 17, 17, .22);
  background: transparent;
  color: var(--contact-ink);
  cursor: pointer;
  font-size: 13px;
}

.scenario-tabs button + button {
  border-left: 0;
}

.scenario-tabs button.is-active {
  border-color: var(--contact-ink);
  background: var(--contact-ink);
  color: #fff;
}

.range-field {
  display: block;
  margin-top: 35px;
}

.range-field > span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.range-field b {
  font-weight: 500;
}

.range-field output {
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.range-field input {
  width: 100%;
  accent-color: var(--contact-orange);
}

.range-field input:disabled {
  opacity: .25;
}

.budget-guide__note {
  margin: 45px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 17, 17, .2);
  color: rgba(16, 17, 17, .55);
  font-size: 11px;
  line-height: 1.5;
}

.budget-guide__result {
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 194, 112, .16), transparent 32%),
    radial-gradient(circle at 8% 82%, rgba(255, 224, 196, .24), transparent 38%),
    var(--contact-orange);
}

.budget-guide__result > p {
  margin-bottom: 62px;
}

.budget-guide__result > div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid rgba(16, 17, 17, .34);
}

.budget-guide__result > div > strong {
  font: 400 clamp(36px, 3vw, 56px)/.9 var(--display);
  letter-spacing: -.035em;
  text-align: right;
}

.budget-guide__comparison {
  display: block !important;
}

.budget-guide__comparison strong {
  display: block;
  margin-top: 16px;
  text-align: left !important;
}

.budget-guide__comparison b {
  font-weight: 400;
}

.budget-guide__result > small {
  display: block;
  margin-top: 42px;
  line-height: 1.5;
}

.budget-guide.is-unknown .budget-guide__result {
  background:
    radial-gradient(circle at 18% 18%, rgba(23, 105, 224, .25), transparent 36%),
    linear-gradient(145deg, #dce5ee, #a9d4c9);
}

.budget-guide__result .budget-guide__unknown { display: none; }
.budget-guide.is-unknown .budget-guide__result > div { display: none !important; }
.budget-guide.is-unknown .budget-guide__unknown {
  display: block;
  margin: 26px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 60px);
  line-height: .96;
  letter-spacing: -.03em;
  text-transform: none;
}

.brief-block--message {
  border-bottom-color: var(--contact-ink) !important;
}

.message-field textarea {
  min-height: 190px;
  resize: vertical;
  line-height: 1.42;
}

.file-note {
  margin-top: 42px;
}

.brief-submit {
  display: grid;
  gap: 14px;
  margin-top: 50px;
}

.brief-submit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.brief-submit .button {
  cursor: pointer;
}

.brief-submit .button--secondary {
  border: 1px solid var(--contact-ink);
  background: transparent;
  color: var(--contact-ink);
}

.brief-submit .button--secondary:hover {
  background: var(--contact-paper);
}

.brief-submit button:disabled {
  cursor: wait;
  opacity: .55;
}

.brief-submit > p {
  max-width: 620px;
  margin: 0;
  color: rgba(16, 17, 17, .5);
  font-size: 11px;
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  margin: 18px 0 0;
  color: var(--contact-blue);
  font-size: 13px;
}

.form-status[data-state="error"] {
  color: #b73412;
}

.form-status a {
  color: inherit;
}

/* Gradient transitions */

.gradient-transition {
  --transition-field-width: min(142vw, 2860px);
  --transition-scale-x: 1;
  --transition-scale-y: 1;
  --transition-y: 0px;
  --transition-rotate-x: 0deg;
  position: relative;
  min-height: 88svh;
  overflow: hidden;
}

.gradient-transition::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(72px, 6vw, 112px);
  pointer-events: none;
}

.gradient-transition--in::after {
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 10, 0),
    #08080a 74%,
    #08080a 100%
  );
}

.gradient-transition--out::after {
  background: linear-gradient(
    to bottom,
    rgba(251, 251, 248, 0),
    #fbfbf8 74%,
    #fbfbf8 100%
  );
}

.gradient-transition__field {
  position: absolute;
  top: -48px;
  left: auto;
  width: var(--transition-field-width);
  height: calc(100% + 96px);
  margin-left: calc((100% - var(--transition-field-width)) / 2);
  background:
    linear-gradient(to bottom, transparent 80%, rgba(8, 8, 10, .72) 92%, #08080a 100%),
    radial-gradient(
      ellipse 71% 92% at 50% 92%,
      #08080a 0%,
      #08080a 22%,
      #4d0505 39%,
      #ff5b22 62%,
      #e4b9de 78%,
      #fbfbf8 94%,
      #fbfbf8 100%
    );
  filter: blur(24px) saturate(106%);
  transform: translate3d(0, var(--transition-y), 0) scaleX(var(--transition-scale-x)) scaleY(var(--transition-scale-y));
  will-change: transform;
}

.gradient-transition--in {
  --transition-scale-y: .14;
  display: flow-root;
  min-height: clamp(1120px, 112vw, 2200px);
  margin-top: clamp(-156px, -7vw, -72px);
  overflow: clip;
  background: #fbfbf8;
}

.gradient-transition--in .gradient-transition__field {
  position: sticky;
  top: var(--header-h, 76px);
  left: auto;
  margin-top: calc(-86svh + 65px);
  height: calc(100svh - var(--header-h, 76px));
  transform: translate3d(0, var(--transition-y), 0) rotateX(var(--transition-rotate-x)) scaleX(var(--transition-scale-x)) scaleY(var(--transition-scale-y));
  transform-origin: 50% 100%;
}

.gradient-transition--out {
  min-height: clamp(760px, 76vw, 1480px);
  background: #08080a;
}

.gradient-transition--out .gradient-transition__field {
  background:
    linear-gradient(to bottom, transparent 80%, rgba(251, 251, 248, .78) 92%, #fbfbf8 100%),
    radial-gradient(
      ellipse 71% 92% at 50% 108%,
      #fbfbf8 0%,
      #fbfbf8 22%,
      #e4b9de 39%,
      #ff5b22 58%,
      #4d0505 76%,
      #08080a 94%,
      #08080a 100%
    );
  transform-origin: 50% 100%;
}

/* Call theatre */

.gradient-transition--in + .call-theatre {
  margin-top: -2px;
}

.gradient-transition--in + .call-theatre::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -48px;
  right: 0;
  left: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(8, 8, 10, 0), #08080a 88%, #08080a);
  pointer-events: none;
}

.call-theatre {
  --call-width: 72px;
  --call-detail-opacity: 0;
  --call-copy-opacity: .12;
  position: relative;
  min-height: 185svh;
  background: #08080a;
  color: #fff;
}

.call-theatre__sticky {
  position: sticky;
  top: var(--header-h);
  min-height: calc(100svh - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.call-theatre__copy {
  position: absolute;
  top: clamp(34px, 5vw, 80px);
  left: var(--gutter);
  max-width: 720px;
  opacity: var(--call-copy-opacity);
  transition: opacity .15s linear;
}

.call-theatre__copy h2 {
  margin-top: 16px;
  font-size: clamp(56px, 6.5vw, 116px);
  line-height: .88;
}

.call-theatre__copy > span {
  display: block;
  max-width: 550px;
  margin-top: 25px;
  color: rgba(255, 255, 255, .6);
}

.call-pill {
  width: min(var(--call-width), calc(100vw - 36px));
  height: 72px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(38, 38, 40, .94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
  transition: width .12s linear;
}

.call-pill > img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.call-pill__identity,
.call-pill__actions {
  opacity: var(--call-detail-opacity);
  transition: opacity .12s linear;
}

.call-pill__identity {
  min-width: 180px;
  display: grid;
  line-height: 1.15;
}

.call-pill__identity small {
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
}

.call-pill__identity strong {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
}

.call-pill__actions {
  display: flex;
  gap: 8px;
}

.call-action {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
}

.call-action--close {
  position: relative;
  background: #e43d39;
  font-size: 0;
}

.call-action--close::before,
.call-action--close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.call-action--close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.call-action--accept {
  background: #25bf68;
  font-size: 0;
}

.call-action--accept img {
  width: 25px;
  height: auto;
  display: block;
  transform-origin: 50% 50%;
  animation: call-receiver-swing 2.1s cubic-bezier(.36, .07, .19, .97) infinite;
}

@keyframes call-receiver-swing {
  0%, 34%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(-13deg); }
  10% { transform: rotate(11deg); }
  15% { transform: rotate(-9deg); }
  20% { transform: rotate(7deg); }
  25% { transform: rotate(-4deg); }
  30% { transform: rotate(2deg); }
}

.call-theatre__number {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(34px, 5vw, 72px);
  display: grid;
  justify-items: end;
  margin: 0;
  text-align: right;
}

.call-theatre__number a {
  font: 400 clamp(28px, 2.7vw, 46px)/1 var(--display);
  text-decoration: none;
}

.call-theatre__number span {
  max-width: 430px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .43);
  font-size: 11px;
}

/* Telegram */

.telegram-theatre {
  --telegram-opacity: 1;
  --telegram-y: 0px;
  position: relative;
  min-height: 145svh;
  background: var(--contact-white);
}

.telegram-theatre__sticky {
  position: sticky;
  top: var(--header-h);
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: center;
}

.telegram-heading h2 {
  max-width: 720px;
  margin-top: 28px;
  font-size: clamp(58px, 6.2vw, 112px);
  line-height: .88;
  letter-spacing: -.06em;
}

.telegram-stage {
  position: relative;
  min-height: 640px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 30px;
}

.telegram-pill {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100vw - 36px));
  min-height: 82px;
  display: grid;
  grid-template-columns: 58px 1fr 52px;
  gap: 15px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(16, 17, 17, .16);
  border-radius: 999px;
  background: rgba(251, 251, 248, .86);
  box-shadow: none;
  backdrop-filter: blur(18px);
  opacity: var(--telegram-opacity);
  transform: translateY(var(--telegram-y));
}

.telegram-pill > img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.telegram-pill > div {
  min-width: 0;
  display: grid;
  line-height: 1.15;
}

.telegram-pill small {
  color: rgba(16, 17, 17, .45);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.telegram-pill strong {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
}

.telegram-pill span {
  overflow: hidden;
  margin-top: 4px;
  color: rgba(16, 17, 17, .55);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.telegram-pill > a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--contact-blue);
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.telegram-pill > a:hover {
  background: #0f5dce;
  transform: translate(2px, -2px);
}

.telegram-prompts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 680px;
}

.telegram-prompts button {
  padding: 11px 15px;
  border: 1px solid rgba(16, 17, 17, .2);
  border-radius: 999px;
  background: rgba(251, 251, 248, .68);
  color: var(--contact-ink);
  cursor: pointer;
  font-size: 12px;
  backdrop-filter: blur(14px);
  transition: background .18s ease, color .18s ease;
}

.telegram-prompts button:hover,
.telegram-prompts button.is-active {
  background: var(--contact-ink);
  color: #fff;
}

/* Footer */

.contact-footer {
  position: relative;
  z-index: 2;
  background: var(--black);
}

.contact-footer .site-footer {
  margin-top: 0;
  border-top: 0;
}

.copy-feedback {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
}

.copy-feedback.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1199px) {
  .contact-hero h1 {
    font-size: clamp(72px, 8.4vw, 116px);
  }

  .contact-hero .contact__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
  }

  .brief-heading,
  .brief-block {
    grid-template-columns: 1fr;
  }

  .brief-block legend {
    float: none;
    padding-right: 0;
  }

  .brief-block > :not(legend) {
    grid-column: 1;
  }

  .brief-block legend strong,
  .brief-block legend small {
    max-width: 700px;
  }

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

  .telegram-theatre__sticky {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 959px) {
  .contact-hero .contact__grid {
    grid-template-columns: 1fr;
  }

  .budget-guide {
    grid-template-columns: 1fr;
  }

  .telegram-theatre__sticky {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .telegram-heading {
    align-self: end;
  }

  .telegram-stage {
    min-height: 480px;
  }

}

@media (max-width: 767px) {
  .contact-hero__inner {
    padding-top: 32px;
    padding-bottom: 38px;
  }

  .contact-hero .contact__grid {
    gap: 32px;
  }

  .contact-hero .contact__main .eyebrow {
    margin-bottom: 20px;
  }

  .contact-hero h1 {
    margin: 0 0 22px;
    font-size: clamp(54px, 14vw, 70px);
    line-height: .88;
  }

  .contact-hero__actions {
    gap: 18px;
    margin-top: 22px;
  }

  .contact-hero .contact__channels > a,
  .contact-hero .contact__phone,
  .contact-hero .contact__office {
    padding: 15px 0;
  }

  .contact-hero .contact__channels strong {
    font-size: clamp(22px, 6vw, 28px);
  }

  .contact-hero .contact__office strong {
    font-size: 22px;
  }

  .brief-section {
    padding: 86px 0 110px;
  }

  .brief-heading {
    margin-bottom: 72px;
  }

  .brief-heading h2 {
    font-size: clamp(48px, 14vw, 66px);
    line-height: .91;
  }

  .brief-heading div > p {
    margin-top: 28px;
    font-size: 17px;
  }

  .brief-block {
    gap: 42px;
    padding: 62px 0;
  }

  .brief-block legend strong {
    font-size: 38px;
  }

  .field-grid,
  .task-grid {
    grid-template-columns: 1fr;
  }

  .task-card {
    min-height: 205px;
  }

  .budget-guide__controls,
  .budget-guide__result {
    padding: 25px 20px;
  }

  .budget-choice {
    padding: 20px;
  }

  .budget-choice button {
    flex: 1 1 120px;
    padding: 13px 10px;
  }

  .budget-guide__topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .scenario-tabs {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
  }

  .scenario-tabs button + button {
    border-left: 1px solid rgba(16, 17, 17, .22);
  }

  .scenario-tabs button:nth-child(n + 3) {
    border-top: 0;
  }

  .range-field > span {
    align-items: flex-end;
    font-size: 13px;
  }

  .budget-guide__result > div {
    display: block;
  }

  .budget-guide__result > div > strong {
    display: block;
    margin-top: 14px;
    text-align: left;
  }

  .brief-submit {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .brief-submit .button {
    width: 100%;
  }

  .gradient-transition {
    min-height: 58svh;
  }

  .gradient-transition--in {
    min-height: max(150svh, 180vw);
  }

  .gradient-transition--out {
    min-height: 52svh;
  }

  .gradient-transition__field {
    --transition-field-width: 155vw;
    filter: blur(14px) saturate(108%);
  }

  .call-theatre {
    min-height: 150svh;
  }

  .call-theatre__copy {
    top: 28px;
    right: 18px;
    left: 18px;
  }

  .call-theatre__copy h2 {
    font-size: 56px;
  }

  .call-theatre__number {
    right: 18px;
    bottom: 26px;
    left: 18px;
    justify-items: start;
    text-align: left;
  }

  .call-pill {
    max-width: 340px;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 9px;
    height: 68px;
  }

  .call-pill > img {
    width: 52px;
    height: 52px;
  }

  .call-pill__identity {
    min-width: 130px;
  }

  .call-action {
    width: 41px;
    height: 41px;
  }

  .call-action--close {
    display: none;
  }

  .telegram-theatre {
    min-height: 125svh;
  }

  .telegram-theatre__sticky {
    padding-top: 48px;
    padding-bottom: 42px;
  }

  .telegram-heading h2 {
    margin-top: 18px;
    font-size: clamp(48px, 13.5vw, 62px);
  }

  .telegram-stage {
    min-height: 410px;
    gap: 22px;
  }

  .telegram-pill {
    width: min(340px, calc(100vw - 36px));
    min-height: 70px;
    grid-template-columns: 48px 1fr 44px;
    gap: 9px;
    padding: 9px;
  }

  .telegram-pill > img {
    width: 48px;
    height: 48px;
  }

  .telegram-pill > a {
    width: 44px;
    height: 44px;
  }

  .telegram-pill strong {
    font-size: 12px;
  }

  .telegram-pill span {
    max-width: 170px;
    font-size: 10px;
  }

  .telegram-prompts {
    gap: 6px;
  }

  .telegram-prompts button {
    padding: 9px 11px;
    font-size: 10px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .contact-page *,
  .contact-page *::before,
  .contact-page *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .js .contact-page [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .gradient-transition {
    min-height: 55svh;
  }

  .gradient-transition--in {
    --transition-scale-y: 1;
  }

  .gradient-transition--in .gradient-transition__field {
    margin-top: 0;
  }

  .call-theatre,
  .telegram-theatre {
    min-height: auto;
  }

  .call-theatre__sticky,
  .telegram-theatre__sticky {
    position: relative;
    top: auto;
    min-height: 760px;
  }

  .call-theatre {
    --call-width: 430px;
    --call-detail-opacity: 1;
    --call-copy-opacity: 1;
  }

}

@media print {
  .site-header,
  .mobile-menu,
  .gradient-transition,
  .call-theatre,
  .telegram-theatre,
  .brief-submit,
  .copy-feedback {
    display: none !important;
  }

  .contact-page {
    padding-top: 0;
  }
}
