/* ==========================================================================
   1232 East Shelby Drive — Industrial Property Landing Page
   Design system: navy-dominant, restrained gold accent, editorial headings.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Navy scale — brand deep blue */
  --navy-900: #06283f;
  --navy-800: #0a3151;
  --navy-700: #0d3b5f;   /* logo deep navy */
  --navy-600: #11507f;
  --navy-500: #1666a0;
  --navy-400: #2f80bb;

  /* Accent — brand bright blue (from the C logo) */
  --accent:      #159fd9;
  --accent-soft: #4fb8e6;
  --gold:      var(--accent);      /* alias kept so existing refs use brand blue */
  --gold-soft: var(--accent-soft);

  /* Neutrals */
  --ink:    #16202e;
  --slate:  #5a6678;
  --line:   #e3e7ef;
  --mist:   #f5f7fb;
  --white:  #ffffff;

  /* Type */
  --serif: Georgia, "Times New Roman", "Iowan Old Style", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --maxw: 1180px;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(16, 32, 54, .08), 0 1px 2px rgba(16, 32, 54, .06);
  --shadow-md: 0 12px 30px rgba(11, 32, 54, .12);
  --shadow-lg: 0 24px 60px rgba(8, 23, 38, .22);
}

/* ---- Base ---------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.eyebrow--muted { color: var(--navy-400); }

.section { padding: 92px 0; }
.section--tint { background: var(--mist); }
.section__head { max-width: 720px; margin-bottom: 48px; }
.section__head h2 { font-size: 36px; color: var(--navy-700); }
.section__head p { color: var(--slate); font-size: 18px; margin: 16px 0 0; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans);
  font-size: 14.5px; font-weight: 600; letter-spacing: .02em;
  padding: 14px 26px; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }

.btn--gold { background: var(--gold); color: var(--navy-900); }
.btn--gold:hover { background: var(--accent-soft); box-shadow: 0 8px 22px rgba(21, 159, 217, .34); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .4); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .08); }

.btn--navy { background: var(--navy-700); color: var(--white); }
.btn--navy:hover { background: var(--navy-600); box-shadow: var(--shadow-md); }

.btn--full { width: 100%; justify-content: center; }

/* ---- Top bar ------------------------------------------------------------- */
.topbar {
  background: var(--navy-900); color: rgba(255, 255, 255, .78);
  font-size: 13px; letter-spacing: .02em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 42px; }
.topbar a:hover { color: var(--white); }
.topbar .avail { color: var(--gold); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: 11.5px; }
.topbar__contact { display: flex; gap: 22px; }

/* ---- Header / nav -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 40px; height: 40px; display: block; flex: 0 0 auto; }
.brand__logo { height: 44px; width: auto; display: block; flex: 0 0 auto; }
.footer__brandmark { background: #fff; padding: 12px 16px; border-radius: 10px; box-shadow: var(--shadow-sm); }
.footer__brandmark .brand__logo { height: 40px; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--navy-700); line-height: 1.1; }
.brand__sub { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--ink); position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }
.nav .btn { padding: 11px 20px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-700); margin: 5px 0; transition: .25s; }

/* ---- Hero ---------------------------------------------------------------- */
/* No overflow:hidden here — the stat strip intentionally overhangs the hero's
   bottom edge, and clipping would cut off the stat labels. The background layers
   below are all inset:0, so they stay within bounds without clipping. */
.hero { position: relative; color: var(--white); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 120% at 70% 10%, rgba(47, 102, 153, .55), transparent 60%),
    linear-gradient(155deg, var(--navy-700) 0%, var(--navy-900) 78%);
}
/* When a real hero photo is present it sits above the gradient with an overlay */
.hero__photo { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(8, 23, 38, .55) 0%, rgba(8, 23, 38, .78) 100%);
}
.hero__inner { position: relative; z-index: 3; padding: 118px 0 0; }

.hero h1 { font-size: clamp(40px, 6vw, 68px); letter-spacing: -.01em; }
.hero__lede { font-size: clamp(18px, 2.2vw, 22px); color: rgba(255, 255, 255, .84); max-width: 620px; margin: 22px 0 0; line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 38px 0 0; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 34px 0 0; color: rgba(255,255,255,.75); font-size: 14.5px; }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 17px; height: 17px; stroke: var(--gold); }

/* Stat strip overlapping the bottom of the hero */
.stats {
  position: relative; z-index: 3;
  margin: 74px auto -56px; max-width: calc(var(--maxw) - 0px);
  background: var(--white); border-radius: 8px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 30px 26px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--serif); font-size: 40px; color: var(--navy-700); line-height: 1; }
.stat__num small { font-size: 20px; color: var(--gold); }
.stat__label { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); font-weight: 600; margin-top: 10px; }

/* ---- Overview ------------------------------------------------------------ */
.overview { padding-top: 148px; } /* room for the overlapping stat strip */
.overview__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.overview__body p { color: var(--slate); font-size: 18px; margin: 0 0 20px; }
.overview__body p:first-of-type { color: var(--ink); font-size: 20px; line-height: 1.6; }
.overview__list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.overview__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.overview__list svg { width: 20px; height: 20px; stroke: var(--gold); flex: 0 0 auto; margin-top: 2px; }

/* ---- Specifications ------------------------------------------------------ */
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.spec {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.spec:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d3dae6; }
.spec__icon {
  width: 44px; height: 44px; border-radius: 8px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--navy-500), var(--navy-800)); margin-bottom: 18px;
}
.spec__icon svg { width: 22px; height: 22px; stroke: var(--gold-soft); }
.spec__value { font-family: var(--serif); font-size: 27px; color: var(--navy-700); line-height: 1.1; }
.spec__label { font-size: 13px; letter-spacing: .09em; text-transform: uppercase; color: var(--slate); font-weight: 600; margin-top: 7px; }

/* ---- Product categories -------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 16px 22px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d3dae6; }
.cat__img {
  position: relative; height: 190px; border-radius: 8px; overflow: hidden; background: #fff;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.cat__img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.cat__ph { display: none; }
.cat__img.cat--noimg { background: linear-gradient(160deg, var(--navy-600), var(--navy-800)); }
.cat__img.cat--noimg .cat__ph { display: grid; place-items: center; }
.cat__ph svg { width: 54px; height: 54px; stroke: var(--accent-soft); opacity: .95; fill: none; }
.cat h3 { font-family: var(--sans); font-size: 17px; font-weight: 700; color: var(--navy-500); margin-bottom: 6px; }
.cat p { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.5; }

/* ---- Services ------------------------------------------------------------ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.svc {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); color: var(--white);
  border-radius: 10px; padding: 34px 30px; box-shadow: var(--shadow-md);
}
.svc__num { position: absolute; top: 14px; right: 22px; font-family: var(--serif); font-size: 62px; color: rgba(255,255,255,.06); line-height: 1; }
.svc__icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(79,184,230,.16); border: 1px solid rgba(79,184,230,.36); margin-bottom: 20px;
}
.svc__icon svg { width: 26px; height: 26px; stroke: var(--accent-soft); }
.svc h3 { font-family: var(--serif); font-size: 23px; color: var(--white); margin-bottom: 10px; }
.svc p { margin: 0; color: rgba(255,255,255,.8); font-size: 15.5px; line-height: 1.6; }

/* ---- Mid-page CTA band --------------------------------------------------- */
.cta-band { background: linear-gradient(160deg, var(--navy-600), var(--navy-900)); color: #fff; position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(43,176,230,.22), transparent 70%);
}
.cta-band .wrap { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 52px 28px; flex-wrap: wrap; }
.cta-band__text h2 { font-size: 30px; color: #fff; }
.cta-band__text p { margin: 10px 0 0; color: rgba(255,255,255,.82); font-size: 16.5px; max-width: 560px; }
.cta-band .btn { flex: 0 0 auto; }

/* ---- Info card (visit / hours) ------------------------------------------- */
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-md); overflow: hidden; }
.info-card__head { background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); color: #fff; padding: 24px 26px; }
.info-card__head h3 { font-family: var(--serif); font-size: 22px; color: #fff; }
.info-card__head p { margin: 6px 0 0; color: rgba(255,255,255,.75); font-size: 14.5px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 17px 26px; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row svg { width: 20px; height: 20px; stroke: var(--navy-500); flex: 0 0 auto; margin-top: 2px; }
.info-row .k { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); font-weight: 700; }
.info-row .v { font-size: 15.5px; color: var(--ink); font-weight: 500; }
.info-row .v small { display: block; color: var(--slate); font-weight: 400; font-size: 14px; }

/* ---- Location ------------------------------------------------------------ */
.loc-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: stretch; }
.loc-list { display: grid; gap: 16px; }
.loc-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.loc-item__ic { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 8px; display: grid; place-items: center; background: var(--navy-700); }
.loc-item__ic svg { width: 21px; height: 21px; stroke: var(--gold-soft); }
.loc-item h3 { font-family: var(--sans); font-size: 16px; font-weight: 700; color: var(--navy-700); margin-bottom: 3px; }
.loc-item p { margin: 0; color: var(--slate); font-size: 15px; }

.map-frame {
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-md); min-height: 420px; background: var(--mist);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---- Gallery ------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; grid-auto-rows: 240px; }
.shot {
  position: relative; margin: 0; border-radius: 8px; overflow: hidden;
  background: var(--navy-800); box-shadow: var(--shadow-sm);
}
.shot--wide { grid-column: span 2; }
.shot--tall { grid-row: span 2; }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 14px 18px; color: var(--white); font-size: 14px; font-weight: 600; letter-spacing: .02em;
  background: linear-gradient(0deg, rgba(8,23,38,.82), transparent);
}
/* Placeholder shown until a real photo file exists (see onerror in HTML) */
.shot.is-empty {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--navy-600), var(--navy-900));
}
.shot.is-empty::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  width: 46px; height: 46px; opacity: .55;
  background: no-repeat center/contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234fb8e6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Ccircle cx='9' cy='10' r='2'/%3E%3Cpath d='M21 16l-5-5L5 20'/%3E%3C/svg%3E");
}
.shot.is-empty figcaption { background: none; color: rgba(255,255,255,.7); font-weight: 500; }

/* ---- Contact ------------------------------------------------------------- */
.contact { background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); color: var(--white); }
.contact .eyebrow { color: var(--gold); }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.contact h2 { font-size: 36px; color: var(--white); }
.contact__intro { color: rgba(255,255,255,.8); font-size: 18px; margin: 16px 0 30px; }
.contact__cards { display: grid; gap: 14px; }
.contact__card {
  display: flex; gap: 14px; align-items: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 16px 18px;
}
.contact__card svg { width: 22px; height: 22px; stroke: var(--gold-soft); flex: 0 0 auto; }
.contact__card span { display: block; }
.contact__card .k { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.contact__card .v { font-size: 16px; font-weight: 600; }

.form {
  background: var(--white); color: var(--ink); border-radius: 10px; padding: 34px;
  box-shadow: var(--shadow-lg);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .03em; color: var(--navy-700); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--mist); transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: 0; border-color: var(--navy-400); background: var(--white);
  box-shadow: 0 0 0 3px rgba(47, 102, 153, .15);
}
.field textarea { resize: vertical; min-height: 118px; }
.form__note { font-size: 13px; color: var(--slate); margin: 14px 0 0; text-align: center; }
.form__done { text-align: center; padding: 26px 8px; }
.form__done h3 { font-family: var(--serif); color: var(--navy-700); font-size: 23px; margin: 0 0 8px; }
.form__done p { color: var(--slate); font-size: 15px; margin: 0; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.62); font-size: 14.5px; }
.site-footer .wrap { padding: 56px 28px 30px; }
.footer__top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand .brand__name { color: var(--white); }
.footer__brand p { max-width: 340px; margin: 14px 0 0; }
.footer__links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer__col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.footer__col a { display: block; padding: 5px 0; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.45); }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 940px) {
  .nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
         background: var(--white); border-bottom: 1px solid var(--line); padding: 12px 28px 24px;
         transform: translateY(-140%); transition: transform .28s ease; box-shadow: var(--shadow-md); }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 14px; justify-content: center; }
  .nav-toggle { display: block; }

  .overview__grid, .loc-grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .topbar__contact { gap: 16px; }
}

@media (max-width: 680px) {
  .section { padding: 68px 0; }
  .stats { grid-template-columns: repeat(2, 1fr); margin-bottom: -40px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .overview { padding-top: 120px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .brand__logo { height: 36px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .shot--wide, .shot--tall { grid-column: auto; grid-row: auto; }
  .form__row { grid-template-columns: 1fr; }
  .topbar__contact .hide-sm { display: none; }
  .hero__inner { padding-top: 84px; }
}

@media (max-width: 460px) {
  .spec-grid, .gallery { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
}

/* ---- WhatsApp ---------------------------------------------------------- */
.wa-btn { background: #25d366; color: #073a1e; margin-top: 22px; }
.wa-btn:hover { background: #1fbe5a; box-shadow: 0 8px 22px rgba(37, 211, 102, .34); }
.wa-btn svg { width: 22px; height: 22px; }
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  transition: transform .15s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(37, 211, 102, .5); }
.wa-float svg { width: 32px; height: 32px; }
@media (max-width: 680px) {
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ---- Brands marquee ---------------------------------------------------- */
.brands { padding: 48px 0 54px; background: var(--white); border-top: 1px solid var(--line); overflow: hidden; }
.brands__title { text-align: center; font-family: var(--serif); color: var(--navy-700); font-size: 26px; margin: 0 0 34px; }
.brands__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.brands__track { display: flex; align-items: center; gap: 56px; width: max-content; animation: brandscroll 22s linear infinite; }
.brands__marquee:hover .brands__track { animation-play-state: paused; }
.brand-item { display: flex; align-items: center; justify-content: center; width: 150px; height: 66px; flex: 0 0 auto; }
.brand-logo { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.brand-name { display: none; font-family: var(--sans); font-weight: 800; font-size: 23px; color: var(--navy-500); letter-spacing: .01em; white-space: nowrap; }
.brand-item--text .brand-name { display: inline; }
@keyframes brandscroll { from { transform: translateX(0); } to { transform: translateX(-25%); } }
@media (max-width: 680px) {
  .brands__title { font-size: 21px; }
  .brand-item { width: 112px; height: 52px; }
  .brand-name { font-size: 18px; }
  .brands__track { gap: 34px; }
}
