:root {
  --bg: #f8f8f8;
  --panel: #fafafa;
  --panel-soft: #f6f6f6;
  --text: #111111;
  --muted: #494949;
  --dark: #1d1d1d;
  --border: #d8d8d8;
  --accent: #fd7e1e;
  --danger: #eb5757;
  --white: #ffffff;
  --container: min(1258px, calc(100% - 40px));
  --header-height: 96px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  text-rendering: optimizeLegibility;
  max-width: 100%;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

main {
  overflow: hidden;
}

.container {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
}

.section {
  scroll-margin-top: 124px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background:
    linear-gradient(90deg, rgba(29, 29, 29, 0.98), rgba(29, 29, 29, 0.98)),
    linear-gradient(90deg, rgba(217, 217, 217, 0.2), rgba(217, 217, 217, 0.2));
  backdrop-filter: blur(16px);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.header__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--white);
}

.brand__mark {
  font-weight: 800;
  font-size: 1.95rem;
  letter-spacing: -0.08em;
}

.brand__text {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--white);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-btn {
  min-width: 38px;
  height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--white);
}

.lang-btn.is-active {
  background: var(--white);
  color: #111111;
}

.hero {
  position: relative;
  min-height: clamp(500px, 72svh, 720px);
  background: var(--dark);
}

.hero__frame {
  position: relative;
  min-height: clamp(500px, 72svh, 720px);
  isolation: isolate;
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(7, 14, 24, 0.68) 0%, rgba(7, 14, 24, 0.34) 34%, rgba(7, 14, 24, 0.16) 58%, rgba(7, 14, 24, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 18, 28, 0.14) 0%, rgba(8, 18, 28, 0.3) 100%),
    url("./assets/fotoo_per_header.png") center 34% / cover no-repeat;
}

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 76%, rgba(0, 0, 0, 0.38), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.06) 34%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.18) 44%, rgba(255, 255, 255, 0.02) 100%);
  z-index: 1;
}

.hero__scene {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: clamp(500px, 72svh, 720px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 118px;
  padding-bottom: 34px;
}

.hero__headline {
  max-width: min(720px, 100%);
}

.hero__headline h1 {
  margin: 0;
  font-size: clamp(3.3rem, 5.7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--white);
  text-wrap: balance;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.hero__aside {
  max-width: 290px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
  line-height: 1.65;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.hero__aside p {
  margin: 0;
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
}

.scroll-link__arrow {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  position: relative;
}

.scroll-link__arrow::before,
.scroll-link__arrow::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.scroll-link__arrow::before {
  width: 16px;
  height: 2px;
}

.scroll-link__arrow::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  background: transparent;
  transform: translate(-40%, -50%) rotate(-45deg);
}

.about {
  background: var(--panel-soft);
  padding: 72px 0 104px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 32px;
}

.section-kicker__line {
  display: inline-block;
  width: 86px;
  height: 14px;
  border: 1px solid var(--text);
  border-radius: 999px;
}

.section-kicker p {
  margin: 0;
  color: var(--accent);
  font-size: 1.125rem;
  font-weight: 700;
}

.about__content {
  display: grid;
  gap: 28px;
  max-width: 1160px;
  font-size: clamp(1.2rem, 2vw, 2.36rem);
  font-weight: 300;
  line-height: 1.5;
}

.about__content p {
  margin: 0;
}

.stats {
  position: relative;
  background:
    radial-gradient(circle at 14% 18%, rgba(253, 126, 30, 0.08), transparent 18%),
    radial-gradient(circle at 90% 75%, rgba(253, 126, 30, 0.08), transparent 24%),
    linear-gradient(180deg, #1f1f1f, #171717);
  color: var(--white);
  padding: 110px 0;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 28px);
  opacity: 0.5;
  pointer-events: none;
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats h2 {
  max-width: 1030px;
  margin: 0 auto 72px;
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.stat-card {
  padding: 18px 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.stat-card__value {
  display: block;
  color: #ff5a1f;
  font-size: clamp(3rem, 5vw, 5.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card__value--text {
  font-weight: 700;
}

.stat-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.brands {
  background: var(--panel);
  padding: 96px 0 88px;
}

.brands--secondary {
  padding-top: 54px;
}

.section-heading {
  text-align: center;
  margin-bottom: 46px;
}

.section-heading__eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.brand-card {
  display: grid;
  place-items: center;
  min-height: 122px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 15, 15, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(17, 17, 17, 0.08);
  border-color: rgba(253, 126, 30, 0.24);
}

.brand-card img {
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.location {
  background:
    radial-gradient(circle at 82% 18%, rgba(253, 126, 30, 0.1), transparent 18%),
    linear-gradient(180deg, #f7f7f7, #f2f2f2);
  padding: 92px 0;
}

.location__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
}

.location__copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.location__copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.location__copy > p {
  margin: 0;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 1.06rem;
  line-height: 1.8;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.action-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.action-chip:hover,
.action-chip:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.08);
}

.action-chip--dark {
  background: #252525;
  color: var(--white);
}

.location__meta {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.location__meta-card {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.location__meta-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.location__meta-card p {
  margin: 0;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  line-height: 1.65;
}

.location__meta-link {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  line-height: 1.65;
}

.location__meta-link:hover,
.location__meta-link:focus-visible {
  color: var(--text);
}

.location__map-shell {
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.08);
  background: #d9d9d9;
}

.location__map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.contact {
  position: relative;
  background:
    radial-gradient(circle at 16% 70%, rgba(253, 126, 30, 0.08), transparent 16%),
    radial-gradient(circle at 82% 20%, rgba(253, 126, 30, 0.08), transparent 18%),
    radial-gradient(circle at 48% 84%, rgba(253, 126, 30, 0.06), transparent 12%),
    var(--bg);
  padding: 104px 0 72px;
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.contact__copy {
  max-width: 1180px;
}

.contact__copy h2 {
  margin: 0 0 22px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.6rem, 4.4vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact__copy > p {
  max-width: 520px;
  margin: 0 0 38px;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 1.33rem;
  line-height: 1.65;
}

.contact__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.contact__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(253, 126, 30, 0.1);
  color: var(--accent);
  flex: 0 0 auto;
}

.contact__icon svg,
.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact__item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.contact__item p {
  margin: 0;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  line-height: 1.5;
}

.contact__link {
  display: inline-block;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  line-height: 1.6;
  text-decoration: none;
}

.contact__link:hover,
.contact__link:focus-visible {
  color: var(--text);
}

.contact__link--accent {
  color: #0f9d58;
  font-weight: 600;
}

.contact__phone-links {
  display: grid;
  gap: 6px;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(220px, 1fr) auto auto;
  gap: 28px;
  align-items: end;
  margin-top: 86px;
  padding-top: 36px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.footer-shell__company,
.footer-shell__links {
  display: grid;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
}

.footer-shell__title,
.footer-shell__links > p {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 600;
}

.footer-shell__company a,
.footer-shell__links a {
  color: var(--muted);
}

.footer-shell__links div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-shell__signature {
  display: grid;
  justify-items: start;
  gap: 6px;
}

.footer-shell__mark {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
}

.footer-shell__submark {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.footer-shell__socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1100px) {
  .hero__content {
    padding-top: 112px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 20px;
  }

  .hero__aside {
    max-width: 520px;
  }

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

  .location__layout {
    grid-template-columns: 1fr;
  }

  .contact__layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 860px) {
  :root {
    --header-height: 84px;
  }

  .brand__text {
    display: none;
  }

  .header__controls {
    gap: 10px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, calc(100vw - 28px));
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(29, 29, 29, 0.96);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero__frame {
    min-height: 500px;
    background:
      linear-gradient(180deg, rgba(10, 16, 22, 0.14), rgba(10, 16, 22, 0.76)),
      url("./assets/fotoo_per_header.png") center 22% / cover no-repeat;
  }

  .hero__headline h1 {
    font-size: clamp(2.9rem, 8.8vw, 4.4rem);
  }

  .about,
  .brands,
  .location,
  .contact {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .stats {
    padding: 86px 0;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .location__map-shell,
  .location__map-shell iframe {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
  }

  .hero {
    min-height: 0;
  }

  .header__inner {
    gap: 10px;
  }

  .header__controls {
    gap: 8px;
  }

  .header__actions {
    gap: 8px;
  }

  .brand {
    gap: 0;
  }

  .brand__mark {
    font-size: 1.75rem;
  }

  .hero__frame,
  .hero__content {
    min-height: 0;
  }

  .hero__content {
    justify-content: flex-end;
    gap: 12px;
    padding-top: 92px;
    padding-bottom: 28px;
  }

  .hero__aside {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero__frame {
    background:
      linear-gradient(180deg, rgba(10, 16, 22, 0.08), rgba(10, 16, 22, 0.74)),
      url("./assets/fotoo_per_header.png") center 24% / cover no-repeat;
  }

  .hero__headline h1 {
    max-width: 7.4ch;
    font-size: clamp(2.45rem, 12vw, 3.6rem);
    line-height: 0.94;
  }

  .scroll-link {
    gap: 10px;
    margin-top: 12px;
  }

  .scroll-link__arrow {
    width: 42px;
    height: 42px;
  }

  .language-switcher {
    gap: 1px;
    padding: 3px;
  }

  .lang-btn {
    min-width: 32px;
    height: 30px;
    padding: 0 7px;
    font-size: 0.72rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  .section-kicker {
    gap: 14px;
    flex-wrap: wrap;
  }

  .section-kicker__line {
    width: 58px;
    height: 10px;
  }

  .about__content {
    font-size: 1.05rem;
    line-height: 1.85;
  }

  .stats h2,
  .section-heading h2,
  .location__copy h2,
  .contact__copy h2 {
    text-wrap: balance;
  }

  .location__actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .contact__details {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: 112px;
    padding: 16px 14px;
    border-radius: 20px;
  }

  .brand-card img {
    max-height: 62px;
  }

  .location__meta-card,
  .contact__item {
    border-radius: 20px;
  }

  .contact__copy > p,
  .location__copy > p,
  .contact__item p {
    font-size: 1rem;
  }

  .location__map-shell,
  .location__map-shell iframe {
    min-height: 320px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-shell__links div {
    gap: 10px 14px;
  }

  .footer-shell__socials {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  :root {
    --container: calc(100% - 24px);
  }

  .site-nav {
    width: calc(100vw - 24px);
    max-width: 280px;
    gap: 8px;
    padding: 12px;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .hero {
    min-height: 0;
  }

  .header__inner {
    gap: 8px;
  }

  .header__controls,
  .header__actions {
    gap: 6px;
  }

  .brand__mark {
    font-size: 1.62rem;
  }

  .language-switcher {
    padding: 2px;
  }

  .lang-btn {
    min-width: 30px;
    height: 28px;
    padding: 0 6px;
    font-size: 0.68rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .hero__content {
    gap: 10px;
    padding-top: 88px;
    padding-bottom: 24px;
  }

  .hero__headline h1 {
    font-size: clamp(2.2rem, 11.6vw, 3.1rem);
    max-width: 7ch;
  }

  .hero__aside {
    font-size: 0.92rem;
  }

  .scroll-link__arrow {
    width: 40px;
    height: 40px;
  }

  .about,
  .brands,
  .location,
  .contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .stats {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading__eyebrow {
    margin-bottom: 8px;
    font-size: 0.74rem;
  }

  .section-heading h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
    line-height: 1.08;
  }

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

  .brand-card {
    min-height: 104px;
    padding: 14px 10px;
    border-radius: 18px;
  }

  .brand-card img {
    max-height: 58px;
  }
}
