
:root {
  --accent: #ED4A05;
  --accent-dark: #cb3f04;
  --ink: #343434;
  --ink-2: #5c5c5c;
  --bg: #F5F3F4;
  --white: #ffffff;
  --line: #e8e1de;
  --line-dark: rgba(255,255,255,.18);
  --panel: #ffffff;
  --panel-soft: #f8f6f5;
  --hero-overlay: rgba(15, 15, 15, .48);
  --shadow: 0 18px 46px rgba(30, 22, 18, .10);
  --shadow-lg: 0 30px 80px rgba(30, 22, 18, .18);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-sm { padding-top: 56px; padding-bottom: 56px; }
.kicker, .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 700;
}
h1,h2,h3 { margin: 0 0 16px; line-height: 1.12; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.7rem, 5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 16px; color: var(--ink-2); }
.lead { font-size: 1.12rem; max-width: 620px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(245,243,244,.92);
  border-bottom: 1px solid rgba(52,52,52,.08);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.branding {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.branding img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .95rem;
}
.main-nav a {
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--accent); border-color: rgba(237,74,5,.65); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(52,52,52,.12);
  background: var(--white);
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 10px;
}
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(14,14,14,.68) 0%, rgba(14,14,14,.48) 34%, rgba(14,14,14,.20) 56%, rgba(14,14,14,.12) 100%),
    url('../images/hero-machine.svg') center/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,.12), rgba(15,15,15,.08));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  align-items: center;
  padding: 110px 0 120px;
}
.hero-copy { max-width: 620px; }
.hero-copy h1 { max-width: 560px; }
.hero .lead { color: rgba(255,255,255,.90); margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: .96rem;
  white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-secondary:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.78); }
.btn-secondary-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-secondary-dark:hover { background: #4a4a4a; }
.value-strip-wrap {
  position: relative;
  margin-top: -42px;
  z-index: 3;
}
.value-strip {
  background: var(--white);
  border: 1px solid rgba(52,52,52,.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 26px 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.value-item {
  padding: 6px 16px 10px;
  border-top: 4px solid var(--accent);
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 16px;
}
.value-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: rgba(237,74,5,.10);
  display: grid; place-items: center;
}
.value-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.value-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.value-item p { font-size: .94rem; margin: 0; }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 54px;
  align-items: center;
}
.panel {
  background: transparent;
}
.panel h2 { max-width: 760px; }
.panel-media img,
.intro-visual img,
.hero-visual img,
.video-thumb img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.feature-list, .product-list {
  padding-left: 20px;
  margin: 18px 0 0;
  color: var(--ink-2);
}
.feature-list li, .product-list li { margin-bottom: 8px; }
.grid-4, .grid-3, .grid-2, .product-grid, .logo-grid, .resource-grid, .office-grid, .contact-actions {
  display: grid;
  gap: 22px;
}
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2, .resource-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.logo-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
.office-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card, .support-card, .logo-card, .resource-card, .video-card, .contact-card, .office-card, .cta-panel, .highlight-band, .calculator {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.card, .support-card, .resource-card, .video-card, .contact-card, .office-card { padding: 28px; }
.card h3, .support-card h3, .resource-card h3, .video-card h3, .contact-card h3, .office-card h3 { font-size: 1.22rem; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.section-head p { max-width: 760px; }
.highlight-band {
  padding: 34px;
  color: var(--white);
  background: linear-gradient(160deg, #2e2e2e 0%, #161616 100%);
}
.highlight-band p, .highlight-band li { color: rgba(255,255,255,.84); }
.logo-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  min-height: 140px;
}
.logo-card img { width: 100%; max-width: 170px; height: auto; }
.logo-card span { font-weight: 700; }
.logo-card small { color: var(--ink-2); }
.support-card, .resource-card, .video-card { position: relative; overflow: hidden; }
.support-card::before, .resource-card::before, .video-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(237,74,5,.14));
}
.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
}
.resource-link:hover { color: var(--accent-dark); }
.page-hero {
  padding: 84px 0 54px;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: 40px;
  align-items: center;
}
.page-hero-inner .hero-visual img { background: var(--panel-soft); }
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 38px;
}
.cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,17,17,.86) 0%, rgba(17,17,17,.78) 42%, rgba(17,17,17,.46) 100%),
    url('../images/cta-machining.svg') center/cover no-repeat;
}
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2, .cta-panel p { color: var(--white); max-width: 760px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; }
.notice {
  background: rgba(237,74,5,.08);
  color: var(--ink);
  border: 1px solid rgba(237,74,5,.18);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: .94rem;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(237,74,5,.10);
  color: var(--accent-dark);
  font-size: .9rem;
  font-weight: 700;
}
.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 20px;
}
.field label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 14px;
  font: inherit;
}
.field input:focus {
  outline: none;
  border-color: rgba(237,74,5,.7);
  box-shadow: 0 0 0 4px rgba(237,74,5,.12);
}
.calc-output {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 18px;
}
.output-box {
  border-radius: 18px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  padding: 18px;
}
.output-box span { display: block; color: var(--ink-2); font-size: .9rem; margin-bottom: 8px; }
.output-box strong { font-size: 1.65rem; }
.contact-actions { grid-template-columns: 1fr; margin-top: 20px; }
.contact-actions .btn { width: auto; display: inline-flex; padding: 0 28px; white-space: nowrap; }
.site-footer {
  margin-top: 56px;
  background: #1f1f1f;
  color: var(--white);
}
.footer-grid {
  padding: 58px 0 30px;
  display: grid;
  grid-template-columns: 1.2fr .85fr .95fr;
  gap: 38px;
}
.site-footer p, .site-footer li, .site-footer a { color: rgba(255,255,255,.75); }
.site-footer ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 10px; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: .92rem;
  color: rgba(255,255,255,.72);
}

.footer-bottom-single {
  justify-content: center;
  text-align: center;
}
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .intro-grid, .page-hero-inner, .footer-grid, .resource-grid, .office-grid, .grid-3 { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-actions { grid-template-columns: 1fr; }
}
@media (max-width: 840px) {
  .header-inner { min-height: 78px; }
  .branding img { height: 42px; }
  .nav-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 12px);
    background: rgba(245,243,244,.98);
    border: 1px solid rgba(52,52,52,.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 12px 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .main-nav.is-open { display: flex; }
  .hero-inner { min-height: 560px; padding-top: 86px; padding-bottom: 82px; }
  .value-strip { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .product-grid, .grid-4, .grid-2, .calc-grid, .calc-output { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .footer-bottom-inner { flex-direction: column; justify-content: center; padding: 12px 0; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .section-sm { padding-top: 44px; padding-bottom: 44px; }
  .hero { background-position: 70% center; }
  .hero-copy h1 { max-width: 100%; }
  .btn { width: 100%; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .value-item { grid-template-columns: 40px 1fr; padding-left: 12px; padding-right: 12px; }
  .branding img { height: 36px; }
}

/* Home refinement v6 */
.home-hero-image {
  background:
    linear-gradient(90deg, rgba(14,14,14,.70) 0%, rgba(14,14,14,.50) 34%, rgba(14,14,14,.24) 58%, rgba(14,14,14,.16) 100%),
    url('../images/hero-photo.png') center/cover no-repeat;
}
.value-strip-clean .value-item {
  border-top: 0;
  padding-top: 8px;
}
.value-item-image {
  grid-template-columns: 52px 1fr;
}
.value-icon-image {
  background: transparent;
  border-radius: 0;
  width: 52px;
  height: 52px;
  padding: 0;
}
.value-icon-image img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.intro-grid-refined .panel {
  max-width: 680px;
}
.intro-actions {
  margin-top: 24px;
}
.refined-media img {
  object-fit: cover;
  min-height: 540px;
}
.home-products-muted {
  background: #F1EBEA;
  border-top: 1px solid rgba(52,52,52,.06);
  border-bottom: 1px solid rgba(52,52,52,.06);
}
.manufacturers-home-section .logo-marquee-shell {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 18px 0;
}
.manufacturers-home-section .logo-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: home-marquee 34s linear infinite;
}
.manufacturers-home-section .logo-slide {
  width: 230px;
  min-height: 118px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #fcf8f7);
  border: 1px solid var(--line);
  padding: 20px;
  box-shadow: 0 8px 20px rgba(52,52,52,.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.manufacturers-home-section .logo-slide img {
  width: 100%;
  max-width: 160px;
  height: auto;
}
@keyframes home-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 840px) {
  .refined-media img {
    min-height: 360px;
  }
  .manufacturers-home-section .logo-slide {
    width: 180px;
    min-height: 100px;
  }
}
@media (max-width: 640px) {
  .value-item-image {
    grid-template-columns: 44px 1fr;
  }
  .value-icon-image {
    width: 44px;
    height: 44px;
  }
  .value-icon-image img {
    width: 28px;
    height: 28px;
  }
  .home-hero-image {
    background-position: 62% center;
  }
  .refined-media img {
    min-height: 280px;
  }
}


/* Home/products refinement v7 */
.home-footer-cta::before {
  background:
    linear-gradient(90deg, rgba(17,17,17,.88) 0%, rgba(17,17,17,.80) 38%, rgba(17,17,17,.55) 100%),
    url('../images/final-banner.png') center/cover no-repeat;
}
.page-hero-products {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 0;
  background:
    linear-gradient(90deg, rgba(14,14,14,.76) 0%, rgba(14,14,14,.56) 34%, rgba(14,14,14,.26) 60%, rgba(14,14,14,.18) 100%),
    url('../images/hero-products-page.png') center/cover no-repeat;
}
.page-hero-products::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,.10), rgba(15,15,15,.08));
  pointer-events: none;
}
.page-hero-banner-inner {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: grid;
  align-items: center;
  padding: 88px 0 94px;
}
.page-hero-copy {
  max-width: 640px;
}
.page-hero-products .lead {
  color: rgba(255,255,255,.9);
  max-width: 620px;
}
.product-grid-refined {
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}
.product-category-card {
  padding: 30px;
  background: linear-gradient(180deg, #fff, #fdfbfb);
}
.product-category-card .kicker {
  margin-bottom: 10px;
}
.product-category-card h3 {
  margin-bottom: 12px;
}
.product-category-card p {
  margin-bottom: 18px;
}
.compact-list {
  margin-top: 0;
  margin-bottom: 0;
}
.two-column-list {
  columns: 2;
  column-gap: 28px;
  padding-left: 18px;
}
.two-column-list li {
  break-inside: avoid;
  margin-bottom: 7px;
}
@media (max-width: 840px) {
  .page-hero-banner-inner {
    min-height: 360px;
    padding: 74px 0 80px;
  }
  .product-grid-refined {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .page-hero-products {
    background-position: 62% center;
  }
  .page-hero-banner-inner {
    min-height: 320px;
    padding: 66px 0 70px;
  }
  .two-column-list {
    columns: 1;
  }
}


/* Refinement v8 */
.cta-panel--final-banner::before {
  background:
    linear-gradient(90deg, rgba(16,16,16,.88) 0%, rgba(16,16,16,.74) 42%, rgba(16,16,16,.54) 100%),
    url('../images/final-banner.png') center/cover no-repeat;
}
.product-grid-refined-clean {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-category-card--clean {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fcf7f5 100%);
  border: 1px solid rgba(52,52,52,.08);
  position: relative;
  overflow: hidden;
}
.product-category-card--clean::after {
  content: '';
  position: absolute;
  inset: auto -20px -20px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,74,5,.12) 0%, rgba(237,74,5,0) 72%);
}
.product-category-card--clean p {
  max-width: 36ch;
}
.office-grid-maps {
  align-items: stretch;
}
.office-card--map {
  display: grid;
  gap: 16px;
}
.office-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(52,52,52,.1);
  min-height: 260px;
  box-shadow: 0 10px 24px rgba(30, 22, 18, .10);
}
.office-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}
@media (max-width: 840px) {
  .product-grid-refined-clean {
    grid-template-columns: 1fr;
  }
}

.page-hero-manufacturers {
  background:
    linear-gradient(90deg, rgba(14,14,14,.76) 0%, rgba(14,14,14,.56) 34%, rgba(14,14,14,.26) 60%, rgba(14,14,14,.18) 100%),
    url('../images/manufacturer-hero-image.png') center/cover no-repeat;
}
.page-hero-manufacturers .lead {
  color: rgba(255,255,255,.9);
  max-width: 620px;
}


/* Refinement v11 */
.page-hero-techsupport {
  background:
    linear-gradient(90deg, rgba(14,14,14,.76) 0%, rgba(14,14,14,.56) 34%, rgba(14,14,14,.26) 60%, rgba(14,14,14,.18) 100%),
    url('../images/hero-technical-support.png') center/cover no-repeat;
}
.page-hero-videos-custom {
  background:
    linear-gradient(90deg, rgba(14,14,14,.76) 0%, rgba(14,14,14,.56) 34%, rgba(14,14,14,.26) 60%, rgba(14,14,14,.18) 100%),
    url('../images/hero-videos-new.png') center/cover no-repeat;
}
.page-hero-contact-custom {
  background:
    linear-gradient(90deg, rgba(14,14,14,.76) 0%, rgba(14,14,14,.56) 34%, rgba(14,14,14,.26) 60%, rgba(14,14,14,.18) 100%),
    url('../images/hero-contact-new.png') center/cover no-repeat;
}
.page-hero-techsupport .lead,
.page-hero-videos-custom .lead,
.page-hero-contact-custom .lead {
  color: rgba(255,255,255,.9);
  max-width: 620px;
}


/* Manufacturer home section: highlights strip */
.mfr-highlight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-bottom: 26px;
  padding: 16px 22px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.mfr-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink);
}
.mfr-highlight-item svg {
  color: var(--accent);
  flex-shrink: 0;
}


/* Video embeds: responsive 16:9 thumbnail + click-to-play */
.video-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #111;
  flex-shrink: 0;
  cursor: pointer;
}
.video-embed-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .2s ease;
}
.video-embed-wrap:hover img { opacity: .82; }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video-play-btn svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
  transition: transform .2s ease;
}
.video-embed-wrap:hover .video-play-btn svg { transform: scale(1.1); }
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-card--embed {
  display: flex;
  flex-direction: column;
  padding: 18px;
}
.video-card--embed h3 { margin-top: 4px; }


/* Videos page: 3-col grid that steps down to 2, then 1 */
.grid-videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
@media (max-width: 1080px) {
  .grid-videos { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .grid-videos { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
