:root {
  --ink: #161616;
  --muted: #5d6470;
  --paper: #fffdf8;
  --line: #e8e1d8;
  --orange: #ff5a1f;
  --blue: #0797c7;
  --pink: #f25b91;
  --yellow: #ffc33d;
  --green: #2aa56f;
  --black: #111111;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 9vw;
  color: var(--black);
  background: rgba(255, 253, 248, 0.76);
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand span:last-child {
  display: grid;
  gap: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-symbol {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 1000;
}

.brand-symbol::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 2px;
  background: var(--black);
  transform: rotate(-47deg);
}

.brand-symbol.large {
  width: 78px;
  height: 78px;
  font-size: 2.2rem;
}

.brand-symbol.large::after {
  width: 96px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2d2d2d;
  font-weight: 800;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--orange);
}

.header-action {
  justify-self: end;
  padding: 12px 18px;
  color: #ffffff;
  background: var(--green);
  border-radius: var(--radius);
  font-weight: 900;
}

.header-icons {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.top-icon:hover,
.top-icon:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.14);
}

.top-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.top-wa {
  background: var(--green);
}

.top-tg {
  background: var(--blue);
}

.top-max {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.top-mail {
  background: var(--orange);
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-content: center;
  padding: 110px 9vw 58px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.9) 34%, rgba(255, 253, 248, 0.16) 70%),
    url("assets/hero-studio-desk.webp") right center / cover no-repeat;
}

.hero-logo {
  position: absolute;
  top: 116px;
  left: 9vw;
  color: var(--black);
  font-size: 2rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding-top: 108px;
}

.overline {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 5.15vw, 4.25rem);
  font-weight: 1000;
  text-transform: uppercase;
}

h2 {
  font-size: 3.05rem;
  font-weight: 1000;
}

h3 {
  font-size: 1.28rem;
  font-weight: 1000;
}

.hero-copy p:not(.overline) {
  max-width: 630px;
  margin: 20px 0 0;
  color: #30343a;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-contact-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, max-content));
  gap: 10px;
  margin-top: 16px;
}

.hero-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 12px;
  color: #ffffff;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 1000;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-contact:hover,
.hero-contact:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.18);
}

.hero-contact img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hero-wa {
  background: var(--green);
}

.hero-tg {
  background: var(--blue);
}

.hero-max {
  color: var(--black);
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.hero-mail {
  background: var(--orange);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 1000;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: var(--orange);
}

.icon-action img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
}

.header-action.icon-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost.icon-action img {
  width: 25px;
  height: 25px;
  padding: 5px;
  background: var(--blue);
  border-radius: 50%;
}

.btn-ghost {
  color: var(--black);
  background: #ffffff;
  border-color: var(--black);
}

.hero-percent {
  position: absolute;
  left: 9vw;
  bottom: 26px;
  color: rgba(17, 17, 17, 0.09);
  font-size: clamp(6rem, 14vw, 13rem);
  font-weight: 1000;
  line-height: 0.8;
}

.hero-note {
  position: absolute;
  right: 9vw;
  bottom: 42px;
  width: min(360px, 36vw);
  padding: 20px;
  color: #ffffff;
  background: var(--black);
  border-left: 8px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-block: 1px solid var(--black);
  background: var(--black);
  gap: 1px;
}

.ticker span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 14px;
  background: #ffffff;
  font-size: 1.05rem;
  font-weight: 1000;
}

.ticker span:nth-child(2n) {
  color: #ffffff;
  background: var(--blue);
}

.ticker span:nth-child(3n) {
  color: var(--black);
  background: var(--yellow);
}

.section {
  padding: 92px 9vw;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: end;
}

.intro p:last-child,
.request-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-title {
  max-width: 860px;
  margin-bottom: 36px;
}

.goods {
  background: #ffffff;
  border-block: 1px solid var(--line);
}

.goods-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.goods-item {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: #ffffff;
  border-radius: var(--radius);
}

.goods-item span {
  font-size: 3.8rem;
  font-weight: 1000;
  line-height: 0.9;
  opacity: 0.32;
}

.goods-item p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.color-orange {
  background: var(--orange);
}

.color-blue {
  background: var(--blue);
}

.color-pink {
  background: var(--pink);
}

.color-yellow {
  color: var(--black);
  background: var(--yellow);
}

.color-yellow p {
  color: rgba(17, 17, 17, 0.72);
}

.process {
  color: #ffffff;
  background: var(--black);
}

.process .overline {
  color: var(--yellow);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.18);
}

.process-list li {
  min-height: 268px;
  padding: 26px;
  background: var(--black);
}

.process-list b {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 44px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.4rem;
}

.process-list li:nth-child(2) b {
  background: var(--blue);
}

.process-list li:nth-child(3) b {
  background: var(--pink);
}

.process-list li:nth-child(4) b {
  background: var(--orange);
}

.process-list p {
  color: rgba(255, 255, 255, 0.72);
}

.request {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 195, 61, 0.24), rgba(7, 151, 199, 0.14)),
    #fffaf0;
}

.request-copy {
  position: sticky;
  top: 112px;
}

.request-kpis {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.request-kpi {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 14px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.request-kpi span {
  grid-row: span 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #ffffff;
  background: var(--black);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 1000;
}

.request-kpi:nth-child(1) span {
  color: var(--black);
  background: var(--yellow);
}

.request-kpi:nth-child(2) span {
  background: var(--orange);
}

.request-kpi:nth-child(3) span {
  background: var(--blue);
}

.request-kpi b {
  font-size: 1rem;
}

.request-kpi small {
  color: var(--muted);
  font-weight: 800;
}

.direct-contacts {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.direct-contacts a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 3px 12px;
  align-items: center;
  max-width: 100%;
  padding: 12px;
  color: var(--black);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.direct-icon {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
}

.direct-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.direct-max {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.direct-mail {
  background: var(--orange);
}

.direct-tg {
  background: var(--blue);
}

.direct-contacts small {
  color: var(--muted);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 195, 61, 0.14), rgba(255, 255, 255, 0) 34%),
    #ffffff;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-brand-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  color: #ffffff;
  background: var(--black);
  border-radius: var(--radius);
}

.form-brand-panel > div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.form-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 1000;
}

.form-brand-panel b,
.form-brand-panel small {
  display: block;
}

.form-brand-panel small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-brand-panel strong {
  display: grid;
  min-width: 62px;
  height: 42px;
  place-items: center;
  color: var(--black);
  background: #ffffff;
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form .field-label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-weight: 1000;
}

.lead-form .field-label input,
.lead-form .field-label select,
.lead-form .field-label textarea,
.send-panel textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  border: 2px solid #d7cfc3;
  border-radius: var(--radius);
}

.input-shell {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  background: #fffdf8;
  border: 2px solid #d7cfc3;
  border-radius: var(--radius);
}

.input-shell > span {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 0 14px;
  color: #ffffff;
  background: var(--orange);
  font-size: 0.86rem;
  font-weight: 1000;
}

.input-shell input {
  min-width: 0;
  padding-left: 16px;
  padding-right: 16px;
  border: 0;
  border-radius: 0;
}

.input-shell:focus-within {
  outline: 4px solid rgba(255, 90, 31, 0.22);
  border-color: var(--orange);
}

.lead-form .field-label textarea,
.send-panel textarea {
  resize: vertical;
}

.lead-form .field-label input:focus,
.lead-form .field-label select:focus,
.lead-form .field-label textarea:focus,
.send-panel textarea:focus {
  outline: 4px solid rgba(255, 90, 31, 0.22);
  border-color: var(--orange);
}

.input-shell input:focus {
  outline: 0;
}

.field-help {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.link-fieldset {
  display: grid;
  gap: 9px;
}

.link-fieldset-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.link-fieldset-head .field-label {
  margin: 0;
}

.link-list {
  display: grid;
  gap: 8px;
}

.link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.link-row:first-child {
  grid-template-columns: 1fr;
}

.etsy-link-input {
  width: 100%;
  min-height: 58px;
  padding: 13px 16px;
  color: var(--ink);
  background: #fffdf8;
  border: 2px solid #d7cfc3;
  border-radius: var(--radius);
  font-weight: 900;
}

.etsy-link-input:focus {
  outline: 4px solid rgba(255, 90, 31, 0.22);
  border-color: var(--orange);
}

.add-link-button,
.remove-link-button {
  min-height: 42px;
  padding: 8px 12px;
  border: 2px solid #f1c7b8;
  border-radius: var(--radius);
  background: #fff7ed;
  color: var(--black);
  font-weight: 1000;
  cursor: pointer;
}

.add-link-button {
  color: var(--orange);
  background: #fff7ed;
  white-space: nowrap;
}

.remove-link-button {
  color: var(--orange);
  border-color: #f1c7b8;
}

.channel-field {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.channel-field legend {
  margin-bottom: 10px;
  color: var(--black);
  font-weight: 1000;
}

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

.channel-option {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  min-height: 96px;
  padding: 14px;
  background: #fffdf8;
  border: 2px solid #d7cfc3;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.channel-option:hover,
.channel-option:focus-within {
  transform: translateY(-1px);
  border-color: var(--black);
}

.channel-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.channel-option:has(input:checked) {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.16);
}

.channel-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
}

.channel-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.channel-tg .channel-icon {
  background: var(--blue);
}

.channel-wa .channel-icon {
  background: var(--green);
}

.channel-max .channel-icon {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.channel-mail .channel-icon {
  background: var(--orange);
}

.channel-option b,
.channel-option small {
  display: block;
  min-width: 0;
}

.channel-option b {
  font-size: 1rem;
  line-height: 1.1;
}

.channel-option small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.form-submit {
  width: 100%;
  border-color: var(--orange);
}

.send-panel {
  display: grid;
  gap: 12px;
  padding-top: 6px;
}

.send-panel[hidden] {
  display: none;
}

.send-panel p {
  margin: 0;
  color: var(--green);
  font-weight: 1000;
}

.send-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.send-actions img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn-mail {
  color: #ffffff;
  background: var(--black);
}

.btn-wa {
  color: #ffffff;
  background: var(--green);
}

.btn-tg {
  color: #ffffff;
  background: var(--blue);
}

.btn-max {
  color: var(--black);
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.16);
}

.contacts {
  background: #ffffff;
}

.faq {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

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

.faq details {
  padding: 20px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq summary {
  cursor: pointer;
  color: var(--black);
  font-size: 1.08rem;
  font-weight: 1000;
}

.faq p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-link {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  color: var(--black);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #ffffff;
  background: var(--black);
  border-radius: 50%;
  font-weight: 1000;
}

.contact-icon img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.contact-wa {
  background: var(--green);
}

.contact-tg {
  background: var(--blue);
}

.contact-mail {
  background: var(--orange);
}

.contact-max {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.contact-link b {
  display: block;
  margin-top: 28px;
  font-size: 1.25rem;
}

.contact-link small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 34px 9vw 86px;
  color: #ffffff;
  background: var(--black);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.mobile-contact-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(17, 17, 17, 0.9);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.mobile-contact-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  color: #ffffff;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 1000;
}

.mobile-contact-bar img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.mobile-contact-bar a:nth-child(1) {
  background: var(--green);
}

.mobile-contact-bar a:nth-child(2) {
  background: var(--blue);
}

.mobile-contact-bar a:nth-child(3) {
  background: var(--orange);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 5vw;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-inline: 5vw;
  }

  .hero-logo,
  .hero-percent {
    left: 5vw;
  }

  .hero-note {
    right: 5vw;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .ticker {
    grid-template-columns: repeat(4, 1fr);
  }

  .intro,
  .request {
    grid-template-columns: 1fr;
  }

  .request-copy {
    position: static;
  }

  .goods-grid,
  .process-list,
  .contact-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    padding: 12px 18px;
  }

  .brand small,
  .brand strong {
    display: none;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
  }

  .header-action {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .header-icons {
    gap: 6px;
  }

  .top-icon {
    width: 38px;
    height: 38px;
  }

  .top-icon img {
    width: 20px;
    height: 20px;
  }

  .hero {
    min-height: 80svh;
    padding: 86px 18px 32px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.82) 52%, rgba(255, 253, 248, 0.18) 100%),
      url("assets/hero-studio-desk.webp") 62% center / cover no-repeat;
  }

  .hero-logo {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 22px;
    font-size: 1.55rem;
  }

  .brand-symbol.large {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .brand-symbol.large::after {
    width: 76px;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    font-size: 2.22rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-copy p:not(.overline),
  .intro p:last-child,
  .request-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-contact-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-contact {
    justify-content: center;
    min-width: 0;
  }

  .hero-percent {
    left: 18px;
    bottom: 18px;
    font-size: 5.2rem;
  }

  .hero-note {
    display: none;
  }

  .section {
    padding: 58px 18px;
  }

  .ticker,
  .goods-grid,
  .process-list,
  .contact-grid,
  .faq-grid,
  .form-row,
  .channel-grid,
  .send-actions,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .ticker span {
    min-height: 56px;
  }

  .goods-item,
  .process-list li,
  .contact-link {
    min-height: 210px;
  }

  .lead-form {
    padding: 18px;
  }

  .link-row {
    grid-template-columns: 1fr;
  }

  .link-fieldset-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .add-link-button,
  .remove-link-button {
    width: fit-content;
  }

  .channel-option {
    min-height: 80px;
    padding: 12px;
  }

  .mobile-contact-bar {
    display: grid;
  }
}
