:root {
  --ink: #111414;
  --coal: #171b1d;
  --steel: #5f6c72;
  --concrete: #eef0ec;
  --paper: #fbfaf6;
  --line: #d8d6cd;
  --signal: #e4b32f;
  --signal-dark: #ba7d14;
  --oxide: #a64f2b;
  --green: #4f6b57;
  --white: #ffffff;
  --shadow: 0 20px 70px rgba(17, 20, 20, 0.16);
  --motion-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --motion-snappy: cubic-bezier(0.2, 0.8, 0.2, 1);
  --scroll-progress: 0;
  --ticker-top: 136px;
}

* {
  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.5;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  background: var(--signal);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  pointer-events: none;
}

.currency-ticker {
  position: fixed;
  top: calc(var(--ticker-top) - 34px);
  left: 0;
  right: 0;
  z-index: 25;
  display: grid;
  height: 34px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(17, 20, 20, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.currency-ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.currency-ticker__label svg {
  width: 16px;
  height: 16px;
}

.currency-ticker__viewport {
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
}

.currency-ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}

.currency-ticker.is-loaded .currency-ticker__track {
  animation: rates-marquee 34s linear infinite;
}

.currency-ticker__group {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.currency-ticker__date,
.currency-ticker__status {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
}

.currency-rate {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.currency-rate strong {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0;
}

.currency-rate__change {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.currency-rate--up .currency-rate__change {
  color: #f0c642;
}

.currency-rate--down .currency-rate__change {
  color: #9fc7a9;
}

.currency-ticker.is-error .currency-ticker__status {
  color: rgba(255, 255, 255, 0.72);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(rgba(17, 20, 20, 0.82), rgba(17, 20, 20, 0.34));
  backdrop-filter: blur(14px);
  transition:
    padding 280ms ease,
    background-color 280ms ease,
    box-shadow 280ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(17, 20, 20, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.brand img {
  width: min(168px, 42vw);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a {
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.header-action,
.button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 240ms var(--motion-snappy),
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 240ms ease;
}

.header-action::before,
.button::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 46%, transparent 66%);
  content: "";
  pointer-events: none;
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 680ms var(--motion-ease);
}

.header-action span,
.header-action svg,
.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.header-action {
  padding: 11px 16px;
  color: var(--ink);
  background: var(--signal);
  font-size: 14px;
}

.header-action:hover,
.button:hover {
  box-shadow: 0 14px 32px rgba(17, 20, 20, 0.18);
  transform: translateY(-2px);
}

.header-action:hover::before,
.button:hover::before {
  transform: translateX(120%) skewX(-18deg);
}

.header-action:active,
.button:active {
  transform: translateY(0) scale(0.98);
}

.header-action svg,
.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform 220ms var(--motion-snappy);
}

.header-action:hover svg,
.button:hover svg {
  transform: translate3d(2px, -1px, 0) rotate(-8deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--coal);
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-scroll-y: 0px;
  --hero-copy-y: 0px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    image-set(url("assets/hero-construction.jpg") 1x) center / cover no-repeat;
  transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll-y)), 0) scale(1.06);
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 14, 15, 0.92) 0%, rgba(12, 14, 15, 0.72) 50%, rgba(12, 14, 15, 0.28) 100%),
    linear-gradient(180deg, rgba(12, 14, 15, 0.36) 0%, rgba(12, 14, 15, 0.14) 62%, rgba(12, 14, 15, 0.96) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 92vh;
  max-width: 1240px;
  flex-direction: column;
  justify-content: center;
  padding: 136px clamp(18px, 5vw, 64px) 76px;
  transform: translate3d(0, var(--hero-copy-y), 0);
  will-change: transform;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: clamp(56px, 11vw, 148px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.3vw, 25px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  padding: 14px 18px;
}

.button-primary {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
}

.button-primary:hover {
  background: #f0c642;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-stats {
  display: grid;
  width: min(880px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 62px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.18);
}

.hero-stats div {
  min-height: 112px;
  padding: 20px;
  background: rgba(17, 20, 20, 0.54);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  color: var(--signal);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.intro-band,
.catalog-section,
.object-section,
.process-section,
.request-section {
  padding: clamp(70px, 9vw, 116px) clamp(18px, 5vw, 64px);
}

.intro-band {
  background: var(--coal);
  color: var(--white);
}

.section-grid,
.object-section,
.request-section {
  display: grid;
  max-width: 1240px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.section-grid h2,
.section-head h2,
.object-copy h2,
.request-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.section-grid p:last-child,
.object-copy p,
.request-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.7vw, 21px);
}

.catalog-section {
  background: var(--paper);
}

.section-head {
  max-width: 1240px;
  margin: 0 auto 34px;
}

.section-head h2 {
  max-width: 820px;
}

.catalog-section .section-kicker,
.process-section .section-kicker,
.object-section .section-kicker,
.request-section .section-kicker {
  color: var(--oxide);
}

.category-grid {
  display: grid;
  max-width: 1240px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.category-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  overflow: hidden;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 280ms var(--motion-snappy),
    box-shadow 280ms ease;
}

.category-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms var(--motion-ease);
}

.category-card:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.category-card:hover::after {
  transform: scaleX(1);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: var(--signal);
  border-radius: 6px;
  transition:
    transform 280ms var(--motion-snappy),
    background-color 220ms ease;
}

.category-card:hover .card-icon {
  background: #f0c642;
  transform: rotate(-4deg) scale(1.08);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.category-card h3 {
  margin: 70px 0 0;
  font-size: 24px;
  line-height: 1.06;
}

.category-card p {
  margin: 16px 0 0;
  color: var(--steel);
}

.object-section {
  background: var(--concrete);
}

.object-copy p,
.request-copy p {
  color: var(--steel);
}

.object-list {
  display: grid;
  gap: 12px;
}

.object-list div {
  display: grid;
  min-height: 82px;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid rgba(17, 20, 20, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(17, 20, 20, 0.06);
  font-size: 18px;
  font-weight: 800;
  transition:
    transform 240ms var(--motion-snappy),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.object-list div:hover {
  border-color: rgba(228, 179, 47, 0.44);
  box-shadow: 0 18px 42px rgba(17, 20, 20, 0.1);
  transform: translateX(6px);
}

.object-list span {
  color: var(--oxide);
  font-size: 14px;
  font-weight: 900;
}

.process-section {
  background: var(--ink);
  color: var(--white);
}

.process-section .section-head h2 {
  color: var(--white);
}

.process-section .section-kicker {
  color: var(--signal);
}

.timeline {
  display: grid;
  max-width: 1240px;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.timeline article {
  position: relative;
  min-height: 280px;
  padding: 26px;
  background: #1f2426;
  overflow: hidden;
  transition:
    background-color 220ms ease,
    transform 260ms var(--motion-snappy);
}

.timeline article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 620ms var(--motion-ease);
}

.timeline article:hover {
  background: #252b2d;
  transform: translateY(-4px);
}

.timeline article.is-visible::before,
.timeline article:hover::before {
  transform: scaleX(1);
}

.timeline span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: var(--signal);
  border-radius: 50%;
  font-weight: 900;
  transition:
    transform 260ms var(--motion-snappy),
    box-shadow 260ms ease;
}

.timeline article:hover span {
  box-shadow: 0 0 0 8px rgba(228, 179, 47, 0.12);
  transform: scale(1.08);
}

.timeline h3 {
  margin: 74px 0 0;
  font-size: 21px;
  line-height: 1.1;
}

.timeline p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.request-section {
  background: var(--paper);
}

.request-copy img {
  width: min(240px, 58vw);
  margin: 0 0 34px;
}

.request-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.request-tags button {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--concrete);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms var(--motion-snappy),
    background-color 180ms ease,
    border-color 180ms ease;
}

.request-tags button:hover {
  background: #e8dfc8;
  border-color: rgba(186, 125, 20, 0.3);
  transform: translateY(-2px);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid rgba(17, 20, 20, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form span {
  color: #3e464a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid #ccd1cf;
  border-radius: 6px;
  color: var(--ink);
  background: #fdfdfb;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms var(--motion-snappy);
}

.request-form input,
.request-form select {
  min-height: 48px;
  padding: 0 13px;
}

.request-form textarea {
  min-height: 136px;
  resize: vertical;
  padding: 13px;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--signal-dark);
  box-shadow: 0 0 0 3px rgba(228, 179, 47, 0.22);
  transform: translateY(-1px);
}

.wide {
  grid-column: 1 / -1;
}

.request-form .button-primary {
  width: 100%;
  min-height: 52px;
}

.request-form .button-primary:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.7);
  background: var(--coal);
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand img {
  width: 168px;
}

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

.company-details {
  display: grid;
  gap: 4px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
  line-height: 1.42;
}

.company-details strong {
  color: var(--white);
  font-size: 14px;
}

.site-footer a {
  color: var(--signal);
  font-weight: 900;
}

@keyframes motion-rise-in {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes motion-header-in {
  from {
    opacity: 0;
    transform: translate3d(0, -24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes motion-media-in {
  from {
    filter: saturate(0.82) brightness(0.84);
    transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll-y)), 0) scale(1.12);
  }

  to {
    filter: saturate(1) brightness(1);
    transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll-y)), 0) scale(1.06);
  }
}

@keyframes rates-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

body.motion-ready .site-header {
  animation: motion-header-in 720ms var(--motion-ease) both;
}

body.motion-ready .hero-media {
  animation: motion-media-in 1300ms var(--motion-ease) both;
}

body.motion-ready .hero .eyebrow,
body.motion-ready .hero h1,
body.motion-ready .hero-lead,
body.motion-ready .hero-actions,
body.motion-ready .hero-stats {
  opacity: 0;
  animation: motion-rise-in 860ms var(--motion-ease) both;
}

body.motion-ready .hero .eyebrow {
  animation-delay: 120ms;
}

body.motion-ready .hero h1 {
  animation-delay: 220ms;
}

body.motion-ready .hero-lead {
  animation-delay: 340ms;
}

body.motion-ready .hero-actions {
  animation-delay: 460ms;
}

body.motion-ready .hero-stats {
  animation-delay: 580ms;
}

body.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, var(--motion-distance, 28px), 0);
  transition:
    opacity 760ms var(--motion-ease),
    transform 760ms var(--motion-ease);
  transition-delay: calc(var(--motion-order, 0) * 70ms);
  will-change: opacity, transform;
}

body.motion-ready .motion-reveal.motion-slide-left {
  transform: translate3d(-28px, 0, 0);
}

body.motion-ready .motion-reveal.motion-slide-right {
  transform: translate3d(28px, 0, 0);
}

body.motion-ready .motion-reveal.motion-scale {
  transform: translate3d(0, 16px, 0) scale(0.97);
}

body.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 160px 1fr;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-action {
    justify-self: end;
  }

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

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

@media (max-width: 820px) {
  .currency-ticker {
    top: auto;
    bottom: 0;
    grid-template-columns: auto minmax(0, 1fr);
    height: 38px;
    gap: 12px;
    padding-inline: 14px;
    background: rgba(17, 20, 20, 0.9);
  }

  .currency-ticker__label span {
    display: none;
  }

  .currency-ticker__track,
  .currency-ticker__group {
    gap: 20px;
  }

  .site-header {
    position: absolute;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 10px 14px;
    padding: 14px 16px 12px;
    background: linear-gradient(rgba(17, 20, 20, 0.94), rgba(17, 20, 20, 0.58) 72%, rgba(17, 20, 20, 0));
  }

  .brand img {
    width: clamp(112px, 32vw, 136px);
  }

  .site-nav {
    width: 100%;
    gap: 16px;
    font-size: 12px;
  }

  .header-action {
    width: auto;
    max-width: 100%;
    min-width: 0;
    padding: 10px 13px;
    justify-self: end;
    font-size: 13px;
  }

  .header-action span {
    min-width: 0;
    text-align: center;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(12, 14, 15, 0.78) 0%, rgba(12, 14, 15, 0.72) 54%, rgba(12, 14, 15, 0.96) 100%),
      rgba(12, 14, 15, 0.22);
  }

  .hero-inner {
    min-height: auto;
    justify-content: flex-start;
    padding: 164px 20px 54px;
    transform: none;
  }

  .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.25;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 14vw, 84px);
    line-height: 0.9;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: clamp(17px, 4.2vw, 22px);
    line-height: 1.45;
  }

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

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

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero-stats div {
    display: grid;
    min-height: auto;
    grid-template-columns: minmax(88px, max-content) 1fr;
    align-items: center;
    gap: 10px 16px;
    padding: 17px 20px;
  }

  .hero-stats strong {
    font-size: clamp(24px, 7vw, 32px);
  }

  .hero-stats span {
    margin-top: 0;
  }

  .intro-band,
  .catalog-section,
  .object-section,
  .process-section,
  .request-section {
    padding-block: 58px;
  }

  .section-grid,
  .object-section,
  .request-section {
    gap: 24px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-grid h2,
  .section-head h2,
  .object-copy h2,
  .request-copy h2 {
    font-size: clamp(31px, 8.5vw, 46px);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .section-grid p:last-child,
  .object-copy p,
  .request-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

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

  .category-grid,
  .timeline,
  .request-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: auto;
    padding: 24px;
  }

  .category-card h3,
  .timeline h3 {
    margin-top: 36px;
  }

  .category-card h3 {
    font-size: 22px;
  }

  .timeline article {
    min-height: auto;
    padding: 22px;
  }

  .timeline h3 {
    font-size: 20px;
  }

  .request-copy img {
    width: min(190px, 54vw);
    margin-bottom: 24px;
  }

  .request-form {
    padding: 22px;
  }

  .site-footer {
    align-items: start;
    gap: 18px;
    padding-bottom: 80px;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding-inline: 14px;
  }

  .site-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: visible;
  }

  .site-nav a {
    padding: 4px 0;
    white-space: nowrap;
  }

  .header-action {
    gap: 8px;
    min-height: 40px;
    padding: 9px 10px;
    font-size: 12px;
  }

  .header-action span {
    display: inline;
  }

  .header-action svg {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .hero-inner {
    padding: 152px 18px 48px;
  }

  .hero-actions .button {
    min-height: 54px;
    padding-inline: 14px;
  }

  .hero-stats div {
    grid-template-columns: 100px 1fr;
    padding: 16px 18px;
  }

  .intro-band,
  .catalog-section,
  .object-section,
  .process-section,
  .request-section {
    padding-inline: 14px;
  }

  .category-card,
  .timeline article {
    padding: 20px;
  }

  .object-list div {
    grid-template-columns: 42px 1fr;
    font-size: 16px;
  }

  .request-form {
    gap: 12px;
    padding: 18px;
  }

  .footer-brand img {
    width: 146px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .scroll-progress {
    display: none;
  }

  .currency-ticker__track {
    animation: none !important;
  }

  .currency-ticker__viewport {
    overflow-x: auto;
    mask-image: none;
  }

  .hero-media,
  .hero-inner {
    transform: none;
    will-change: auto;
  }

  .category-card:hover,
  .object-list div:hover,
  .timeline article:hover,
  .request-tags button:hover,
  .header-action:hover,
  .button:hover {
    transform: none;
  }
}
