:root {
  --champagne: #fbf8f1;
  --ivory: #f6f1e8;
  --ink: #151515;
  --charcoal: #141414;
  --black: #080808;
  --bronze: #b88a45;
  --gold: #d7b46a;
  --bronze-deep: #7a5528;
  --muted: #6f675c;
  --ivory-text: #f3eee5;
  --dark-muted: #afa79a;
  --line: rgba(122, 85, 40, 0.18);
  --line-soft: rgba(122, 85, 40, 0.11);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--champagne), var(--ivory) 44%, var(--champagne));
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 5px;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 680px;
  font-size: clamp(40px, 5.2vw, 70px);
}

h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.4vw, 51px);
}

h3 {
  font-size: clamp(23px, 2vw, 32px);
}

p {
  color: var(--muted);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(122, 85, 40, 0.12);
  background: rgba(251, 248, 241, 0.82);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 241, 0.96);
  border-color: rgba(122, 85, 40, 0.2);
}

.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 134px;
  max-height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-fallback,
.footer-brand {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(21, 21, 21, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

.mobile-menu {
  position: fixed;
  inset: 78px 0 0;
  z-index: 25;
  display: none;
  padding: 28px 24px;
  background: rgba(251, 248, 241, 0.98);
}

.mobile-menu a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 7vw, 2rem);
}

.button {
  min-height: 43px;
  padding: 12px 21px;
  border: 1px solid var(--bronze);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  background: var(--bronze);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.button:hover {
  color: var(--champagne);
  background: var(--bronze-deep);
  border-color: var(--bronze-deep);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(122, 85, 40, 0.32);
}

.button.secondary:hover {
  color: var(--champagne);
  background: var(--ink);
  border-color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--champagne);
}

.ai-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(122, 85, 40, 0.08) 18.1%, transparent 18.26%),
    linear-gradient(180deg, transparent 0 42%, rgba(122, 85, 40, 0.055) 42.1%, transparent 42.25%),
    linear-gradient(135deg, transparent 0 62%, rgba(215, 180, 106, 0.08) 62.08%, transparent 62.28%);
  pointer-events: none;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  right: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center right;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.hero-layout {
  position: relative;
  z-index: 2;
  padding: clamp(102px, 13vw, 172px) 0 clamp(102px, 12vw, 156px);
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  color: var(--bronze-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 22px;
}

.hero-lead {
  max-width: 470px;
  margin-top: 24px;
  color: rgba(21, 21, 21, 0.72);
  font-size: clamp(18px, 1.6vw, 22px);
}

.actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.section {
  position: relative;
  padding: clamp(104px, 12vw, 174px) 0;
}

.two-columns,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.43fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: start;
}

.section-title {
  position: relative;
}

.section-title .eyebrow,
.section-heading .eyebrow,
.about-copy .eyebrow {
  margin-bottom: 18px;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack p,
.section-heading p,
.about-copy p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.intro-copy {
  padding-left: clamp(0px, 4vw, 54px);
  border-left: 1px solid var(--line);
}

.section-heading {
  margin-bottom: clamp(44px, 7vw, 82px);
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading.wide {
  max-width: 920px;
}

.section-heading p + p {
  margin-top: 10px;
}

.expertise-section {
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.92), rgba(246, 241, 232, 0.94)),
    var(--ivory);
}

.expertise-switcher {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(38px, 8vw, 108px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.expertise-list {
  display: grid;
}

.expertise-tab {
  width: 100%;
  padding: 23px 0;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  gap: 16px;
  align-items: baseline;
  color: rgba(21, 21, 21, 0.58);
  background: transparent;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.12;
  text-align: left;
  cursor: pointer;
  transition: color 0.22s ease, padding-left 0.22s ease;
}

.expertise-tab span,
.detail-number,
.method-line span {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.expertise-tab:hover,
.expertise-tab.is-active {
  padding-left: 10px;
  color: var(--ink);
}

.expertise-detail {
  min-height: 360px;
  padding: clamp(34px, 5vw, 58px) 0 clamp(34px, 5vw, 58px) clamp(28px, 5vw, 70px);
  border-left: 1px solid var(--line);
  display: grid;
  align-content: center;
}

.expertise-detail h3 {
  margin-top: 20px;
  margin-bottom: 18px;
  max-width: 540px;
}

.expertise-detail p {
  max-width: 620px;
}

.expertise-keywords {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--bronze-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-transform: uppercase;
}

.ai-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.97), rgba(246, 241, 232, 0.98)),
    var(--champagne);
}

.ai-section::after {
  content: "";
  position: absolute;
  top: 74px;
  right: 0;
  width: 100vw;
  height: min(500px, 46vw);
  background:
    linear-gradient(115deg, rgba(251, 248, 241, 0.3), rgba(246, 241, 232, 0.8)),
    url("assets/hero-abstract.png") center right / contain no-repeat;
  opacity: 0.23;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 90%, transparent 100%);
  pointer-events: none;
}

.ai-section > .container {
  position: relative;
  z-index: 1;
}

.section-subtitle {
  max-width: 520px;
  margin-top: 22px;
  color: var(--bronze);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.14;
}

.ai-flow {
  margin-top: clamp(62px, 9vw, 112px);
  display: grid;
  gap: clamp(52px, 8vw, 92px);
}

.ai-statement {
  max-width: 970px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.ai-statement h3 {
  max-width: 820px;
  margin-bottom: 18px;
}

.ai-statement p {
  max-width: 880px;
}

.ai-statement strong {
  display: block;
  max-width: 820px;
  margin-top: 26px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.12;
}

.flow-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.flow-block h3 {
  max-width: 480px;
  margin-top: 14px;
  font-size: clamp(25px, 2.2vw, 35px);
}

.steps-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.steps-line li {
  position: relative;
  min-height: 72px;
  padding: 28px 22px 0 0;
  border-top: 1px solid rgba(122, 85, 40, 0.22);
  color: var(--muted);
}

.steps-line li::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bronze);
}

.steps-line span,
.audiences span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steps-line small {
  display: block;
  margin-bottom: 12px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.audiences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 6vw, 88px);
}

.audiences p {
  min-height: 68px;
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
}

.ai-quote {
  margin: 0;
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
}

.ai-quote strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 500;
  line-height: 1.1;
}

.ai-quote ul {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.ai-quote li {
  padding: 7px 12px;
  border: 1px solid rgba(122, 85, 40, 0.2);
  border-radius: 999px;
  color: var(--bronze-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-cta {
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.ai-cta h3 {
  margin-top: 10px;
  margin-bottom: 12px;
}

.method-section {
  background: var(--ivory);
}

.method-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-line article {
  min-height: 220px;
  padding: 30px 26px;
}

.method-line article + article {
  border-left: 1px solid var(--line);
}

.method-line h3 {
  margin-top: 42px;
  font-size: clamp(24px, 2.2vw, 34px);
}

.signature {
  margin-top: clamp(46px, 6vw, 72px);
  padding-left: 28px;
  border-left: 2px solid var(--bronze);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(29px, 3.2vw, 48px);
  line-height: 1.12;
}

.about-section {
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.96), rgba(246, 241, 232, 0.96)),
    var(--champagne);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: start;
}

.portrait {
  margin: 0;
  width: min(265px, 100%);
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: 3px;
  filter: saturate(0.92) contrast(1.02);
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy h2 {
  margin-bottom: 10px;
}

.personal-note {
  margin-top: 26px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.personal-note h3 {
  margin-bottom: 14px;
  font-size: clamp(25px, 2.2vw, 34px);
}

.personal-note strong {
  display: inline-block;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--bronze);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.14;
}

.references-section {
  background: var(--ivory);
}

.logo-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
  padding: 34px 0;
  animation: logo-scroll 48s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 150px;
  display: grid;
  place-items: center;
}

.logo-item img {
  max-width: 150px;
  max-height: 70px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) sepia(0.08);
  opacity: 0.42;
  transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.logo-item:hover img {
  filter: grayscale(0) sepia(0);
  opacity: 0.86;
  transform: translateY(-2px);
}

.references-note {
  margin-top: 34px;
  color: var(--muted);
  font-size: 18px;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.contact-section {
  background: var(--champagne);
}

.contact-layout {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
}

.contact-layout h2 {
  max-width: 560px;
  font-size: clamp(30px, 3vw, 44px);
}

.contact-main p {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.14;
}

.contact-line {
  grid-column: 1 / -1;
  margin-top: clamp(32px, 5vw, 58px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-style: normal;
}

.contact-line a,
.contact-line span {
  color: var(--muted);
}

.contact-line a:hover {
  color: var(--ink);
}

.site-footer {
  padding: 56px 0 34px;
  border-top: 1px solid var(--line);
  background: var(--champagne);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: start;
}

.footer-layout p,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 8px;
  text-align: right;
}

.footer-links a:hover {
  color: var(--ink);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .menu-toggle {
    display: block;
  }

  .menu-open .mobile-menu {
    display: block;
  }

  .mobile-menu {
    overflow-y: auto;
  }

  .two-columns,
  .contact-layout,
  .flow-block,
  .expertise-switcher,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-left: 0;
    padding-top: 26px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .steps-line {
    grid-template-columns: 1fr;
  }

  .steps-line li {
    padding: 22px 0;
  }

  .ai-cta {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .container,
  .nav-shell {
    width: min(100% - 30px, var(--max));
  }

  .brand-logo {
    width: 112px;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 8.5vw, 2.55rem);
    line-height: 1;
  }

  h3 {
    font-size: 1.35rem;
    line-height: 1.12;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .hero-visual {
    top: 0;
    height: 520px;
    align-items: start;
  }

  .hero-visual img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
  }

  .hero-layout {
    padding: 430px 0 70px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-lead {
    max-width: 25rem;
    font-size: 1rem;
  }

  .section {
    padding: 72px 0;
  }

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

  .audiences,
  .method-line,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .expertise-tab {
    padding: 18px 0;
    gap: 12px;
    font-size: 1.35rem;
  }

  .expertise-detail {
    min-height: auto;
    padding: 28px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .expertise-detail h3 {
    margin-top: 14px;
  }

  .expertise-keywords {
    font-size: 0.75rem;
    line-height: 1.7;
  }

  .flow-block {
    gap: 24px;
  }

  .method-line article + article {
    border-top: 1px solid var(--line);
  }

  .method-line article {
    min-height: auto;
    padding: 28px 0;
  }

  .method-line h3 {
    margin-top: 24px;
  }

  .portrait {
    width: min(78%, 245px);
    margin: 0 auto;
  }

  .logo-track {
    gap: 42px;
    animation-duration: 56s;
  }

  .logo-item {
    flex-basis: 132px;
  }

  .footer-layout,
  .footer-links {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container,
  .nav-shell {
    width: min(100% - 24px, var(--max));
  }

  .nav-shell {
    min-height: 70px;
  }

  .mobile-menu {
    inset: 70px 0 0;
    padding: 22px 18px;
  }

  .mobile-menu a {
    font-size: 1.65rem;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    height: 450px;
  }

  .hero-visual img {
    height: 450px;
    object-position: 58% top;
  }

  .hero-layout {
    padding: 360px 0 58px;
  }

  .section {
    padding: 58px 0;
  }

  .copy-stack p,
  .section-heading p,
  .about-copy p {
    font-size: 1rem;
  }

  .expertise-tab {
    font-size: 1.2rem;
  }

  .steps-line li,
  .audiences p {
    min-height: auto;
  }

  .contact-main p {
    font-size: 1.75rem;
  }

  .contact-line {
    display: grid;
    gap: 6px;
  }

  .contact-line span {
    display: none;
  }

  .logo-track {
    gap: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .logo-marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .logo-track {
    width: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }

  .logo-track .logo-item:nth-child(n + 10) {
    display: none;
  }
}
