/* ==========================================================================
   FT · Performance Marketing — стили
   Палитра: оригинальная зелёная + #fafafa + #1a1a1a
   Шрифт: Raleway (один, играем весами 200/300/400/700/900 + italic).
   ========================================================================== */

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway/Raleway-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway/Raleway-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway/Raleway-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway/Raleway-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway/Raleway-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

/* ---------- Variables ---------- */
:root {
  --font: "Raleway", sans-serif;
  --bg: #fafafa;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-muted: rgba(26, 26, 26, 0.55);
  --line: rgba(26, 26, 26, 0.14);
  --line-strong: rgba(26, 26, 26, 0.32);
  --accent: #89a773;
  --accent-soft: rgba(137, 167, 115, 0.6);
  --accent-bg: rgba(137, 167, 115, 0.1);
  --pad: clamp(20px, 4vw, 40px);
  --max: 1280px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--font);
  font-size: 16px;
  background: var(--bg);
  color: var(--ink);
  margin: 0;
  padding: 0;
  width: 100%;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.preload { opacity: 0; pointer-events: none; transition: opacity 0.5s ease; }
body.loaded { opacity: 1; pointer-events: auto; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ---------- Noise overlay ---------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background-image: url("../img/noise.svg");
  background-size: 300px;
  opacity: 0.06;
  mix-blend-mode: multiply;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.brand__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand__text { line-height: 1; }

.site-nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-nav a:hover { color: var(--accent); }
.site-nav a:hover::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--bg);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.header-cta:hover { background: var(--ink); color: var(--bg); }
.header-cta:active { transform: scale(0.97); }

.header-cta__arrow {
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.header-cta:hover .header-cta__arrow { transform: translateX(4px); }

/* ==========================================================================
   HERO
   ========================================================================== */
#introduction {
  position: relative;
  padding: clamp(56px, 8vw, 110px) 0 clamp(80px, 10vw, 140px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
  min-height: clamp(620px, 76vh, 840px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.hero-title {
  position: relative;
  z-index: 2;
  font-size: clamp(48px, 10vw, 140px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}

.hero-title__row { display: block; }

.hero-title__row--bold {
  font-weight: 900;
}

.hero-title__row--thin {
  font-weight: 200;
  font-style: italic;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--ink-muted);
}

.hero-title__row--thin em {
  font-style: italic;
  font-weight: 200;
}

.hero-title__row--mix {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.18em;
}

.hero-title__row--mix .thin {
  font-weight: 200;
  font-style: italic;
  text-transform: lowercase;
  color: var(--ink-muted);
}

.hero-title__row--mix .bold {
  font-weight: 900;
}

.hero-title .dot {
  color: var(--accent);
  display: inline-block;
}

#briefly-about-us {
  position: relative;
  z-index: 2;
  font-size: clamp(22px, 3.4vw, 44px);
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: clamp(32px, 5vw, 56px) 0 0;
  max-width: 900px;
  color: var(--ink);
}

/* ==========================================================================
   TICKER (бегущая строка 1)
   ========================================================================== */
#running-line {
  background: var(--bg);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}

.ticker-row {
  display: flex;
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-row--bold .ticker-track {
  animation: tickerLeft 60s linear infinite;
}

.ticker-row--bold span:not(.sep) {
  font-size: clamp(34px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

.ticker-row--bold span:not(.sep) em {
  font-weight: 200;
  font-style: italic;
  text-transform: lowercase;
  color: var(--ink-muted);
}

.ticker-row .sep {
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
}

@keyframes tickerLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION SCAFFOLD
   ========================================================================== */
.section {
  padding: clamp(60px, 9vw, 120px) 0;
  position: relative;
  border-top: 1px solid var(--line);
}

#about-us-wrapper { border-top: none; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.about-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 8px 0 0;
  align-self: start;
  position: sticky;
  top: 24px;
}

.about-columns {
  column-count: 2;
  column-gap: 32px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink);
}

.about-columns p {
  margin: 0 0 18px;
  break-inside: avoid;
}

/* Manifesto pull-quote (Почему стоит выбрать) */
.manifesto-quote {
  margin-top: clamp(60px, 9vw, 120px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
}

.manifesto-quote__title {
  font-size: clamp(36px, 6.5vw, 96px);
  line-height: 0.95;
  font-weight: 200;
  letter-spacing: -0.03em;
  font-style: italic;
  margin: 0;
  text-transform: lowercase;
}

.manifesto-quote__title .under {
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0 4px;
}

.manifesto-quote__title .under::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 14px;
  background: var(--accent);
  z-index: -1;
  opacity: 0.7;
}

.manifesto-quote__body {
  max-width: 420px;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--ink);
}

.manifesto-quote__body p { margin: 0; }

/* ==========================================================================
   BENTO VALUES
   ========================================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 0;
  border: 1px solid var(--ink);
}

.bento-card {
  position: relative;
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid var(--ink);
  margin: -0.5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bg);
  transition: background 0.4s ease, transform 0.4s ease;
}

.bento-card__title {
  font-size: clamp(28px, 4.2vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 14px;
}

.bento-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 460px;
}

/* Bento layout — нерегулярная сетка */
.bento-card--feature {
  grid-column: span 4;
  grid-row: span 2;
  background: var(--accent);
  color: #fff;
  min-height: clamp(280px, 28vw, 460px);
}

.bento-card--feature p { color: rgba(255, 255, 255, 0.92); max-width: 560px; }

.bento-card--quality { grid-column: span 2; grid-row: span 1; }
.bento-card--innovate { grid-column: span 2; grid-row: span 1; }

.bento-card--drive {
  grid-column: span 6;
  grid-row: span 1;
  background: var(--ink);
  color: var(--bg);
  min-height: 200px;
}

.bento-card--drive p { color: rgba(255, 255, 255, 0.85); max-width: 720px; }

.bento-card:not(.bento-card--feature):not(.bento-card--drive):hover {
  background: var(--accent-bg);
}

.bento-card--feature:hover { transform: scale(0.995); }
.bento-card--drive:hover { transform: scale(0.995); }

/* ==========================================================================
   STATISTICS
   ========================================================================== */
.stats-title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 clamp(48px, 6vw, 80px);
}

.stats-editorial {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: stretch;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.stats-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-start;
}

.stats-hero__number {
  font-size: clamp(96px, 16vw, 240px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--ink);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.stats-hero__label {
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink);
  align-self: stretch;
  grid-auto-rows: minmax(140px, 1fr);
}

.stat-tile {
  position: relative;
  padding: clamp(20px, 2vw, 28px);
  border: 1px solid var(--ink);
  margin: -0.5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bg);
  min-height: 160px;
}

.stat-tile__value {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.stat-tile__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 8px;
}

.stat-tile--accent {
  background: var(--accent);
  color: #fff;
}
.stat-tile--accent .stat-tile__value,
.stat-tile--accent .stat-tile__label { color: #fff; }

.stat-tile--dark {
  background: var(--ink);
  color: var(--bg);
}
.stat-tile--dark .stat-tile__value,
.stat-tile--dark .stat-tile__label { color: var(--bg); }

/* Geography */
#geography {
  display: flex;
  justify-content: center;
  padding-top: clamp(30px, 4vw, 60px);
  border-top: 1px solid var(--line);
}

#geography img {
  width: 100%;
  max-width: 640px;
  height: auto;
  user-select: none;
}

/* ==========================================================================
   TIER MARQUEE
   ========================================================================== */
#running-line-2 {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 18px 0;
}

.tier-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  white-space: nowrap;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 900;
  letter-spacing: 0.14em;
  animation: tickerLeft 32s linear infinite;
  text-transform: uppercase;
}

.tier-track .sep {
  color: var(--accent);
}

/* ==========================================================================
   CASES
   ========================================================================== */
.cases-title {
  font-size: clamp(36px, 6.5vw, 90px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 clamp(36px, 5vw, 64px);
}

.case-stack {
  display: flex;
  flex-direction: column;
}

.case-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--ink);
  position: relative;
  transition: padding-left 0.4s ease, background 0.4s ease;
}

.case-row:last-child {
  border-bottom: 1px solid var(--ink);
}

.case-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--accent);
  transition: width 0.4s ease;
}

.case-row:hover { padding-left: 16px; }
.case-row:hover::before { width: 4px; }

.case-row__role {
  font-size: clamp(24px, 3.4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin: 0;
}

.case-row__role .thin {
  font-weight: 200;
  font-style: italic;
  text-transform: lowercase;
  color: var(--ink-muted);
  display: block;
  margin-top: 6px;
  font-size: 0.55em;
}

.case-row__story {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  margin: 0;
  color: var(--ink);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-block {
  display: flex;
  flex-direction: column;
}

.contact-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--ink);
}

.contact-row:last-child { border-bottom: 1px solid var(--ink); }

.contact-row--alt {
  grid-template-columns: 1fr 1.4fr;
}

.contact-text { display: flex; flex-direction: column; }

.contact-text--right { text-align: right; }

.contact-text h3 {
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

.contact-text h3 em {
  font-weight: 200;
  font-style: italic;
  text-transform: lowercase;
  color: var(--ink-muted);
}

.contact-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  border: 1px solid var(--ink);
  background: var(--bg);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  color: var(--ink);
}

.contact-row--alt .contact-action { justify-self: start; }

.contact-action:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.contact-action__arrow { font-size: 18px; font-weight: 900; transition: transform 0.25s ease; }
.contact-action:hover .contact-action__arrow { transform: translateX(6px); }

.contact-action--green {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.contact-action--green:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--ink);
  background: var(--bg);
  margin-top: 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
  padding: clamp(36px, 5vw, 56px) var(--pad);
  border-bottom: 1px solid var(--line);
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }

.brand--footer { font-size: 30px; }
.brand--footer .brand__icon { width: 36px; height: 36px; }

.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  justify-self: center;
}

.footer-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.footer-nav a:hover { color: var(--accent); }

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-self: end;
  text-align: right;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.contact-item__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}

.contact-item__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.contact-item__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.contact-item__link:hover { color: var(--accent); }
.contact-item__link:hover::after { transform: scaleX(1); transform-origin: left; }

.contact-item__link img { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px var(--pad);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}

.footer-bottom a:hover { color: var(--accent); }

/* ==========================================================================
   FADE-IN-UP
   ========================================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { opacity: 0; }
.fade-in-up.animated { animation: fadeInUp 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-title { font-size: clamp(44px, 10vw, 110px); }
}

@media (max-width: 900px) {
  .site-nav { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-label { position: static; }
  .about-columns { column-count: 2; column-gap: 24px; }
  .manifesto-quote {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 0;
  }

  .stats-editorial { grid-template-columns: 1fr; gap: 36px; }
  .stats-hero__number { font-size: clamp(120px, 32vw, 280px); }

  .case-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .contact-row,
  .contact-row--alt {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-row .contact-action,
  .contact-row--alt .contact-action {
    justify-self: start;
  }
  .contact-text--right { text-align: left; }

  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bento-card--feature { grid-column: span 2; grid-row: auto; min-height: 280px; }
  .bento-card--quality { grid-column: span 2; min-height: 200px; }
  .bento-card--innovate { grid-column: span 2; min-height: 200px; }
  .bento-card--drive { grid-column: span 2; min-height: 200px; }
}

@media (max-width: 640px) {
  .site-header { padding: 16px 0; gap: 12px; }
  .brand { font-size: 22px; }
  .brand__icon { width: 26px; height: 26px; }
  .header-cta {
    padding: 9px 14px;
    font-size: 11px;
    gap: 6px;
    letter-spacing: 0.1em;
  }
  .header-cta__arrow { font-size: 12px; }

  .hero-title { font-size: clamp(36px, 12vw, 72px); }
  #briefly-about-us { font-size: clamp(18px, 5vw, 26px); }
  #introduction { min-height: clamp(440px, 60vh, 580px); }

  .ticker-row--bold span:not(.sep) { font-size: clamp(24px, 7vw, 36px); }

  .about-label { font-size: 12px; }
  .about-columns { column-count: 1; font-size: 15px; }

  .manifesto-quote__title { font-size: clamp(30px, 9vw, 52px); }
  .manifesto-quote__title .under::after { height: 8px; bottom: 2px; }

  .bento-card__title { font-size: clamp(24px, 7vw, 36px); }
  .bento-card p { font-size: 13px; }

  .stats-title { font-size: clamp(30px, 9vw, 56px); }
  .stats-hero__number { font-size: clamp(100px, 38vw, 200px); }
  .stat-tile__value { font-size: clamp(40px, 12vw, 64px); }
  .stats-grid { grid-template-columns: 1fr; }

  .cases-title { font-size: clamp(30px, 9vw, 52px); }
  .case-row__role { font-size: clamp(22px, 7vw, 30px); }
  .case-row__role .thin { font-size: 0.6em; }
  .case-row__story { font-size: 14px; }
  .case-row:hover { padding-left: 8px; }

  .contact-text h3 { font-size: clamp(26px, 8vw, 40px); }
  .contact-action {
    font-size: 11px;
    padding: 14px 20px;
    gap: 8px;
    letter-spacing: 0.1em;
  }
  .contact-action__arrow { font-size: 14px; }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
  }
  .footer-nav { justify-self: start; flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .footer-contacts { justify-self: stretch; flex-direction: column; gap: 14px; align-items: flex-start; }
  .contact-item { align-items: flex-start; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; padding: 14px 16px; }
}

@media (max-width: 420px) {
  .hero-foundation { align-items: flex-start; text-align: left; }
  .section { padding: 56px 0; }
  .bento-card { padding: 18px; min-height: 180px; }
}

@media (min-width: 1600px) {
  :root { --max: 1480px; }
  .hero-title { font-size: clamp(48px, 9vw, 170px); }
  #introduction { min-height: clamp(700px, 75vh, 920px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-track,
  .tier-track { animation: none !important; }
}
