:root {
  --brand-yellow: #f2c100;
  --brand-yellow-soft: #ffd84a;
  --ink: #111214;
  --ink-2: #1b1d21;
  --panel: #ffffff;
  --line: #2f333a;
  --muted: #5f6670;
  --bg: #eceff3;
  --bg-grid: #d9dfe8;
  --ok: #3a7a3f;
  --shadow-hard: 0 10px 18px rgba(15, 18, 22, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background:
    linear-gradient(var(--bg-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px),
    var(--bg);
  background-size: 24px 24px, 24px 24px, auto;
}

.container,
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  background: var(--ink);
  border-top: 6px solid var(--brand-yellow);
  border-bottom: 2px solid #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-hard);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
}

.brand-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  color: var(--brand-yellow);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  border: 1px solid #4e545e;
  background: #23262c;
  color: #f7f9fc;
  text-decoration: none;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-link:hover {
  background: var(--brand-yellow);
  color: #0f1012;
  border-color: #0f1012;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  list-style: none;
  min-width: 240px;
  border: 2px solid #111;
  background: #fcfdff;
  box-shadow: var(--shadow-hard);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.22s ease;
  z-index: 1001;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li + li {
  border-top: 1px solid #d8dde5;
}

.dropdown-link {
  display: block;
  padding: 11px 14px;
  color: #14171d;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.dropdown-link:hover {
  background: #f1f4f8;
  color: #000;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: 0;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
}

.hero-section {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-bottom: 3px solid #111;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(17, 18, 20, 0.7) 0%, rgba(17, 18, 20, 0.25) 32%, rgba(17, 18, 20, 0.52) 100%),
    repeating-linear-gradient(90deg, rgba(242, 193, 0, 0.22) 0, rgba(242, 193, 0, 0.22) 10px, transparent 10px, transparent 28px);
}

.carousel-container,
.carousel,
.carousel-item,
.carousel-image {
  height: 100%;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
}

.carousel-image {
  width: 100%;
  object-fit: cover;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #0f1012;
  background: var(--brand-yellow);
  color: #111;
  width: 46px;
  height: 46px;
  border-radius: 0;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control:hover {
  background: var(--brand-yellow-soft);
}

.carousel-control.prev { left: 20px; }
.carousel-control.next { right: 20px; }

.carousel-indicators {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: none;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.indicator {
  width: 24px;
  height: 8px;
  border: 1px solid #111;
  background: #f5f7fb;
  cursor: pointer;
}

.indicator.active {
  background: var(--brand-yellow);
}

.about-section,
.contact-section {
  padding: 72px 20px;
}

.about-section {
  background: #f6f9fd;
}

.contact-section {
  background: #e9eef5;
  border-top: 1px solid #cfd6e1;
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #13161a;
  margin-bottom: 6px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 42px;
  font-size: 16px;
  max-width: 760px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
}

.about-card {
  background: #fff;
  border: 1px solid #cdd5e1;
  border-left: 6px solid var(--brand-yellow);
  padding: 20px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background-size: cover;
  background-position: center;
}

.about-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1;
}

.about-card p {
  font-size: 14px;
  color: #1f252d;
}

.about-card--comfort::before { background-image: url("https://images.unsplash.com/photo-1610030469983-98e550d6193c?auto=format&fit=crop&w=1200&q=80"); }
.about-card--elegant::before { background-image: url("https://images.unsplash.com/photo-1595777457583-95e059d581b8?auto=format&fit=crop&w=1200&q=80"); }
.about-card--categories::before { background-image: url("https://images.unsplash.com/photo-1614252369475-531eba835eb1?auto=format&fit=crop&w=1200&q=80"); }
.about-card--bulk::before { background-image: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=1200&q=80"); }
.about-card--corporate::before { background-image: url("https://images.unsplash.com/photo-1556905055-8f358a7a47b2?auto=format&fit=crop&w=1200&q=80"); }
.about-card--quality::before { background-image: url("https://images.unsplash.com/photo-1594633312681-425c7b97ccd1?auto=format&fit=crop&w=1200&q=80"); }

.contact-wrapper {
  max-width: 740px;
  border: 2px solid #1a1d22;
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow-hard);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.form-input {
  border: 1px solid #858f9d;
  border-radius: 0;
  background: #f9fbff;
  color: #0f1319;
  font-size: 14px;
  padding: 11px 12px;
  font-family: inherit;
}

.form-input:focus {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 0;
  border-color: #111;
  background: #fff;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  border: 2px solid #111;
  background: var(--brand-yellow);
  color: #121418;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 20px;
  padding: 10px 20px;
  cursor: pointer;
}

.submit-btn:hover {
  background: var(--brand-yellow-soft);
}

.footer {
  background: #111214;
  border-top: 5px solid var(--brand-yellow);
  color: #e9eef6;
  padding: 30px 20px;
  text-align: center;
}

.footer p {
  font-size: 13px;
  opacity: 0.92;
}

.footer p + p {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #16181c;
    border-bottom: 2px solid #000;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active {
    max-height: calc(100vh - 74px);
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid #2c3038;
    background: transparent;
    border-radius: 0;
    padding: 12px 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
  }

  .dropdown-menu {
    position: static;
    min-width: unset;
    border: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-menu.active {
    max-height: 340px;
  }

  .dropdown-link {
    padding-left: 30px;
    background: #f4f7fb;
  }

  .hero-section {
    height: 360px;
  }

  .section-subtitle {
    margin-bottom: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 30px;
  }

  .hero-section {
    height: 290px;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
  }

  .about-section,
  .contact-section {
    padding: 50px 16px;
  }

  .contact-wrapper {
    padding: 20px;
  }
}

/* McMaster-inspired visual system with an apparel storefront layout. */
:root {
  --brand-yellow: #ffdc38;
  --brand-green: #226b37;
  --brand-green-dark: #174c29;
  --brand-blue: #1659a5;
  --ink: #171717;
  --muted: #626262;
  --line: #d5d5d5;
  --bg: #ffffff;
  --soft: #f4f4f1;
  --shadow-hard: 0 8px 20px rgba(0, 0, 0, 0.14);
}

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: #fff;
  background-image: none;
}

button,
input,
textarea {
  font: inherit;
}

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

.container,
.nav-container {
  width: min(100% - 40px, 1280px);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.site-header {
  position: relative;
  z-index: 100;
  background: #fff;
  border-bottom: 6px solid var(--brand-yellow);
}

.utility-bar {
  background: #f2f2ef;
  border-bottom: 1px solid #d9d9d6;
  font-size: 13px;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-bar a {
  color: #555;
  text-decoration: none;
}

.utility-bar a:hover {
  color: var(--brand-blue);
  text-decoration: underline;
}

.browse-link::before {
  content: "\2630";
  margin-right: 7px;
  color: var(--brand-green);
  font-weight: 700;
}

.utility-links {
  display: flex;
  gap: 24px;
}

.masthead {
  min-height: 108px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-text {
  color: var(--brand-green);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0;
}

.brand-tagline {
  margin-top: 7px;
  color: #555;
  font-size: 12px;
  font-weight: 600;
}

.masthead-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 58px;
}

.masthead-link {
  min-width: 190px;
  padding: 7px 24px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.masthead-link span,
.masthead-link strong {
  display: block;
}

.masthead-link span {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
}

.masthead-link strong {
  color: var(--brand-blue);
  font-size: 15px;
  font-weight: 600;
}

.masthead-link:hover strong {
  text-decoration: underline;
}

.masthead-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  padding: 0 22px;
  border: 1px solid #c59f00;
  background: var(--brand-yellow);
  color: #202010;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.masthead-cta:hover {
  background: #ffe76c;
}

.catalog-search {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 2px solid #777;
  background: #fff;
}

.catalog-search:focus-within {
  border-color: var(--brand-green);
  outline: 2px solid rgba(34, 107, 55, 0.16);
}

.catalog-search input {
  min-width: 0;
  padding: 0 14px;
  border: 0;
  outline: 0;
}

.catalog-search button {
  padding: 0 23px;
  border: 0;
  border-left: 1px solid #c5c5c5;
  background: #f4f4f2;
  color: var(--brand-green-dark);
  font-weight: 700;
  cursor: pointer;
}

.catalog-search button:hover {
  background: var(--brand-yellow);
}

.navbar {
  position: static;
  background: var(--brand-green-dark);
  border: 0;
  border-top: 1px solid var(--brand-green-dark);
  box-shadow: none;
}

.nav-row {
  min-height: 44px;
}

.nav-menu {
  align-self: stretch;
  gap: 2px;
}

.nav-link,
.nav-note {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}

.nav-link:hover {
  color: #171717;
  background: var(--brand-yellow);
  border-color: transparent;
}

.nav-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
}

.dropdown-menu {
  top: 100%;
  min-width: 250px;
  border: 1px solid #aaa;
  background: #fff;
}

.dropdown-link {
  color: var(--brand-blue);
  font-weight: 500;
}

.dropdown-link:hover {
  text-decoration: underline;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid #aaa;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  margin: 4px auto;
  background: var(--brand-green);
}

.hero-section {
  scroll-margin-top: 84px;
  min-height: min(680px, calc(100vh - 180px));
  height: auto;
  border: 0;
  background: #ddd;
}

.hero-section::before {
  display: none;
}

.carousel-container {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
}

.carousel {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  height: 100%;
  display: flex;
  will-change: transform;
  transition: transform 700ms cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-container::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 18, 11, 0.76), rgba(8, 18, 11, 0.4) 42%, rgba(8, 18, 11, 0.03) 72%);
  pointer-events: none;
}

.carousel-item {
  position: relative;
  inset: auto;
  flex: 0 0 100%;
  height: 100%;
}

.carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  left: max(20px, calc((100vw - 1280px) / 2));
  bottom: clamp(70px, 12vh, 120px);
  width: min(620px, calc(100% - 100px));
  color: #fff;
}

.hero-copy > * {
  opacity: 0;
}

.motion-ready .hero-section.hero-in-view .hero-copy > * {
  animation: hero-copy-in 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.motion-ready .hero-section.hero-in-view .hero-copy > :nth-child(2) { animation-delay: 90ms; }
.motion-ready .hero-section.hero-in-view .hero-copy > :nth-child(3) { animation-delay: 180ms; }
.motion-ready .hero-section.hero-in-view .hero-copy > :nth-child(4) { animation-delay: 270ms; }

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker,
.section-kicker {
  margin-bottom: 10px;
  color: var(--brand-yellow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 590px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 540px;
  margin-top: 20px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border: 2px solid var(--brand-yellow);
  font-weight: 700;
  text-decoration: none;
}

.primary-action {
  background: var(--brand-yellow);
  color: #171717;
}

.secondary-action {
  color: #fff;
}

.primary-action:hover,
.secondary-action:hover {
  background: #ffe768;
  border-color: #ffe768;
  color: #171717;
}

.carousel-control {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.carousel-control svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: transparent;
  color: var(--brand-yellow);
}

.carousel-indicators {
  position: absolute;
  z-index: 5;
  left: auto;
  right: max(20px, calc((100vw - 1280px) / 2));
  bottom: 35px;
  display: flex;
  gap: 8px;
}

.indicator {
  width: 26px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
}

.indicator.active {
  background: var(--brand-yellow);
}

.category-directory {
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--line);
}

.directory-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 28px;
}

.directory-heading .section-kicker {
  color: var(--brand-green);
}

.directory-heading h2,
.section-title {
  margin: 0;
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.directory-heading > p {
  color: var(--muted);
  font-size: 17px;
}

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

.directory-grid a {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  color: #fff;
  text-decoration: none;
  background: #ddd;
}

.directory-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.directory-grid img.directory-focus-top {
  object-position: center top;
}

.directory-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 24, 16, 0.76), rgba(12, 24, 16, 0.02) 65%);
}

.directory-grid a:hover,
.directory-grid a:focus-visible {
  background: inherit;
}

.directory-grid a:hover img,
.directory-grid a:focus-visible img {
  transform: scale(1.025);
}

.directory-grid .collection-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.directory-grid strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.directory-grid small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.about-section,
.contact-section {
  padding: 72px 0 80px;
}

.about-section {
  padding: 88px 0 96px;
  background: #173d27;
  color: #fff;
}

.contact-section {
  background: #fff;
  border-top: 0;
}

.section-subtitle {
  margin: 8px 0 32px;
  font-size: 17px;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(560px, 1.2fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
}

.about-section .section-kicker {
  color: var(--brand-yellow);
}

.why-intro h2 {
  max-width: 560px;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.why-lede {
  max-width: 520px;
  margin-top: 24px;
  color: #d6e2d9;
  font-size: 18px;
  line-height: 1.6;
}

.why-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--brand-yellow);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.why-action span {
  color: var(--brand-yellow);
  font-size: 20px;
  line-height: 1;
  transition: transform 220ms ease;
}

.why-action:hover,
.why-action:focus-visible {
  color: var(--brand-yellow);
}

.why-action:hover span,
.why-action:focus-visible span {
  transform: translateX(6px);
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.why-point {
  position: relative;
  min-height: 230px;
  padding: 28px 30px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background-image: linear-gradient(var(--brand-yellow), var(--brand-yellow));
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 0 3px;
  transition: background-size 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.why-point:hover {
  background-size: 100% 3px;
}

.why-index {
  display: block;
  margin-bottom: 48px;
  color: var(--brand-yellow);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.why-point h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
}

.why-point p {
  color: #c9d7cd;
  font-size: 15px;
  line-height: 1.5;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.contact-wrapper {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.form-label {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.form-input {
  min-height: 46px;
  border: 1px solid #999;
  background: #fff;
}

.form-input:focus {
  border-color: var(--brand-green);
  outline: 2px solid rgba(34, 107, 55, 0.18);
}

.submit-btn {
  align-self: flex-start;
  min-height: 46px;
  padding: 0 25px;
  border: 1px solid var(--brand-green-dark);
  background: var(--brand-green);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.submit-btn:hover {
  background: var(--brand-green-dark);
}

.footer {
  padding: 54px 0 0;
  border-top: 6px solid var(--brand-yellow);
  background: #17231b;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
}

.footer-brand {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  text-decoration: none;
}

.footer a:hover {
  color: var(--brand-yellow);
}

.footer p {
  max-width: 360px;
  font-size: 14px;
}

.footer-bottom {
  margin-top: 44px;
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 960px) {
  .masthead {
    grid-template-columns: 1fr 44px;
    gap: 16px;
  }

  .masthead-actions {
    display: none;
  }

  .brand-text {
    font-size: 40px;
  }

  .nav-toggle {
    display: block;
  }

  .navbar {
    position: relative;
  }

  .nav-row {
    min-height: 0;
  }

  .nav-menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 0;
    box-shadow: var(--shadow-hard);
  }

  .nav-menu.active {
    max-height: 520px;
  }

  .nav-link {
    border-bottom: 1px solid var(--line);
    background: #fff;
    color: #292929;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    border: 0;
    box-shadow: none;
  }

  .dropdown-menu.active {
    max-height: 360px;
  }

  .nav-note {
    display: none;
  }

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

  .why-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .why-intro {
    max-width: 700px;
  }

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

@media (max-width: 660px) {
  .container,
  .nav-container {
    width: min(100% - 28px, 1280px);
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-links,
  .brand-tagline {
    display: none;
  }

  .masthead {
    min-height: 72px;
    grid-template-columns: 1fr 44px;
    grid-template-rows: 56px;
    gap: 8px 12px;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-section {
    scroll-margin-top: 68px;
    min-height: 580px;
  }

  .hero-copy {
    left: 20px;
    bottom: 62px;
    width: calc(100% - 40px);
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-copy > p:not(.hero-kicker) {
    font-size: 16px;
  }

  .carousel-control {
    display: none;
  }

  .carousel-indicators {
    left: auto;
    right: 20px;
    bottom: 28px;
  }

  .directory-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .directory-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-points {
    grid-template-columns: 1fr;
  }

  .why-point {
    min-height: 0;
  }

  .directory-grid a {
    min-height: 360px;
  }

  .about-section,
  .contact-section,
  .category-directory {
    padding: 50px 0;
  }
}

