/* Alpë Workwear — Accueil */
.page-home {
  background: var(--color-bg);
  overflow-x: clip;
  max-width: 100%;
}

.page-home #main {
  overflow-x: clip;
  max-width: 100%;
}

/* Lang switch styles live in main.css (sitewide) */

/* ── Hero Z-pattern + above the fold ── */
.home-hero {
  position: relative;
  /* Ligne de flottaison : tout le message critique tient dans le viewport */
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
  background: var(--color-surface-dark);
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__bg-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 120% at 18% 50%, var(--color-surface-dark-soft) 0%, var(--color-surface-dark) 55%),
    var(--color-surface-dark);
}

.home-hero__bg-emblem {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  object-fit: cover;
  /* Broderie à droite : zone texte à gauche reste sombre et lisible */
  object-position: 78% center;
}

.home-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 33, 56, 0.97) 0%,
    rgba(15, 33, 56, 0.94) 34%,
    rgba(15, 33, 56, 0.72) 52%,
    rgba(15, 33, 56, 0.4) 70%,
    rgba(15, 33, 56, 0.18) 100%
  );
  pointer-events: none;
}

.home-hero__bg img {
  display: block;
}

/* Cadre Z : même colonne que logo (gauche) / langues (droite) du header */
.home-hero__frame.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  /* Ne pas écraser .container — sinon le hero déborde plus large que le header */
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  max-width: 100%;
  min-height: calc(100svh - var(--nav-height));
  padding-block: 1.75rem 2rem;
  padding-inline: 0;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .home-hero__frame.container {
    width: min(100% - 2rem, var(--container));
  }
}

.home-hero__mid {
  /* Emplacement diagonale du Z : milieu vertical, aligné au logo à gauche */
  margin-top: auto;
  margin-bottom: auto;
  margin-inline: 0;
  max-width: min(32rem, 100%);
  min-width: 0;
  padding: 0;
}

.home-hero__brand {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.home-hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin: 0;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(0, 0, 0, 0.35);
}

.home-hero__title span {
  display: block;
}

.home-hero__lede {
  margin: 1.1rem 0 0;
  max-width: 24rem;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.8);
}

.home-hero__lede span {
  display: inline;
}

.home-hero__lede span + span::before {
  content: ' ';
}

/* Base du Z : secondaire sous le logo, primaire sous les langues */
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.home-hero__btn {
  box-sizing: border-box;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.95rem 1.35rem;
  text-decoration: none;
  border-radius: var(--radius);
}

.home-hero__btn--primary {
  min-width: min(100%, 17rem);
  box-shadow: 0 4px 20px rgba(196, 30, 110, 0.42);
}

.home-hero__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: background 0.15s, border-color 0.15s;
}

.home-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

.home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  width: 100%;
  flex-shrink: 0;
}

.home-hero__trust li {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.home-hero__trust a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.home-hero__trust a:hover {
  border-bottom-color: #fff;
}

@media (max-width: 719px) {
  .home-hero__frame.container {
    padding-block: 1.35rem 1.5rem;
  }

  .home-hero__mid {
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .home-hero__brand {
    font-size: 0.6875rem;
    margin-bottom: 0.55rem;
  }

  .home-hero__title {
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
  }

  .home-hero__lede {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
  }

  .home-hero__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .home-hero__btn--primary,
  .home-hero__btn--ghost {
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 900px) {
  .home-hero__frame.container {
    padding-block: 2.5rem 2.75rem;
  }

  .home-hero__mid {
    max-width: 34rem;
  }

  .home-hero__bg-emblem {
    object-position: 82% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__btn--primary {
    box-shadow: none;
  }
}

/* ── Alliance (maquette 3 colonnes) ── */
.home-alliance {
  padding: 4rem 0 3.75rem;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.home-alliance__inner {
  max-width: var(--container);
}

.home-alliance__title {
  text-align: center;
  font-size: clamp(0.75rem, 1.4vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-steel-muted);
  margin: 0 0 2.75rem;
}

.home-alliance__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.home-alliance__col {
  max-width: 22rem;
}

.home-alliance__pole-label {
  margin: 0 0 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-steel);
}

.home-alliance__heading {
  margin: 0 0 0.85rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-textile);
  line-height: 1.25;
}

.home-alliance__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-steel-muted);
}

.home-alliance__spine {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding-block: 0.25rem;
}

.home-alliance__spine-line {
  display: block;
  height: 1px;
  flex: 1;
  max-width: 4.5rem;
  background: linear-gradient(90deg, transparent, var(--color-steel-pale), transparent);
}

.home-alliance__spine-mark {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  border: 1px solid var(--color-steel);
  background: var(--color-bg-alt);
  flex-shrink: 0;
}

@media (min-width: 800px) {
  .home-alliance {
    padding: 5rem 0 4.5rem;
  }

  .home-alliance__grid {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 2.5rem 3rem;
    align-items: center;
  }

  .home-alliance__col--swiss {
    justify-self: end;
    text-align: right;
  }

  .home-alliance__col--kosovo {
    justify-self: start;
  }

  .home-alliance__spine {
    flex-direction: column;
    min-height: 7.5rem;
    padding-block: 0;
    gap: 0.75rem;
  }

  .home-alliance__spine-line {
    width: 1px;
    height: auto;
    flex: 1;
    max-width: none;
    background: linear-gradient(180deg, transparent, var(--color-steel-pale), transparent);
  }
}

@media (min-width: 1100px) {
  .home-alliance__grid {
    gap: 2.5rem 4.5rem;
  }

  .home-alliance__col {
    max-width: 24rem;
  }
}

/* ── Collections (grille sombre — même navy que hero/footer) ── */
.home-collections {
  background: var(--color-surface-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (max-width: 359px) {
  .home-collections__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.home-collections__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 15rem;
  padding: 1.35rem 1.25rem 1.5rem;
  color: #fff;
  text-decoration: none;
  background: var(--color-surface-dark-soft);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.home-collections__card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 33, 56, 0.72) 0%,
    rgba(15, 33, 56, 0.28) 42%,
    rgba(15, 33, 56, 0.78) 100%
  );
  transition: background 0.25s ease;
  pointer-events: none;
}

.home-collections__card:hover::after {
  background: linear-gradient(
    180deg,
    rgba(15, 33, 56, 0.58) 0%,
    rgba(15, 33, 56, 0.18) 42%,
    rgba(15, 33, 56, 0.7) 100%
  );
}

.home-collections__card-head {
  position: relative;
  z-index: 2;
}

.home-collections__card-head h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.home-collections__card-head p {
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  max-width: 12rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.home-collections__card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home-collections__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-collections__card:hover .home-collections__card-media img {
  transform: scale(1.04);
}

.home-collections__card-cta {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  align-self: flex-start;
  background: rgba(15, 33, 56, 0.35);
  backdrop-filter: blur(4px);
}

.home-collections__card-cta [data-lucide] {
  display: inline-flex;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-collections__card:hover .home-collections__card-cta {
  border-color: #fff;
  background: rgba(15, 33, 56, 0.55);
}

.home-collections__card:hover .home-collections__card-cta [data-lucide] {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .home-collections__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .home-collections__card {
    min-height: 17.5rem;
    border-bottom: none;
  }

  .home-collections__card:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }

  .home-collections__card:last-child {
    border-right: none;
  }
}

/* ── Sections communes ── */
.home-section {
  padding: 3.5rem 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.home-section--alt {
  background: var(--color-bg-alt);
}

.home-section__header {
  margin-bottom: 2rem;
}

.home-section__header h2 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-charcoal);
}

.home-section__header p {
  margin-top: 0.65rem;
  color: var(--color-muted);
  font-size: 0.9375rem;
  max-width: 40rem;
  line-height: 1.65;
}

/* ── Carousel (legacy, autres pages) ── */
.home-carousel__track {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
}

.home-carousel__track::-webkit-scrollbar {
  display: none;
}

.home-carousel__slide {
  flex: 0 0 min(78vw, 15rem);
  max-width: min(78vw, 15rem);
  min-width: 0;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.home-carousel__slide:hover {
  border-color: var(--color-cta);
  box-shadow: 0 6px 20px rgba(43, 43, 43, 0.06);
}

.home-carousel__media {
  aspect-ratio: 3/4;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.home-carousel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-carousel__body {
  padding: 1rem 1.1rem 1.15rem;
}

.home-carousel__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cta);
}

.home-carousel__body h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.35rem;
  color: var(--color-charcoal);
}

.home-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  gap: 1rem;
}

.home-carousel__dots {
  display: flex;
  gap: 0.4rem;
}

.home-carousel__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--color-silver);
  cursor: pointer;
}

.home-carousel__dot[aria-current='true'] {
  background: var(--color-cta);
}

.home-carousel__arrows {
  display: flex;
  gap: 0.35rem;
}

.home-carousel__arrow {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--color-border-strong);
  background: var(--color-bg);
  color: var(--color-charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.home-carousel__arrow:hover:not(:disabled) {
  border-color: var(--color-cta);
  color: var(--color-cta);
}

.home-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.home-carousel__nav--hidden {
  display: none;
}

/* ── Timeline ── */
.home-timeline {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  -webkit-overflow-scrolling: touch;
}

.home-timeline::-webkit-scrollbar {
  display: none;
}

.home-timeline__step {
  flex: 1 0 auto;
  min-width: 5.5rem;
  padding: 0 0.5rem 1rem;
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  color: var(--color-silver);
}

.home-timeline__step[aria-selected='true'] {
  color: var(--color-cta);
  box-shadow: inset 0 -2px 0 var(--color-cta);
}

.home-timeline__num {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
}

.home-timeline__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.home-timeline__visual {
  position: relative;
  aspect-ratio: 16/7;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.home-timeline__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  position: absolute;
  inset: 0;
}

.home-timeline__visual img.is-active {
  opacity: 1;
  position: relative;
}

.home-timeline__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.home-timeline__thumb {
  border: 2px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
  aspect-ratio: 40 / 16;
  overflow: hidden;
}

.home-timeline__thumb[aria-selected='true'] {
  border-color: var(--color-cta);
}

.home-timeline__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-realisations__carousel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.home-realisations__carousel .home-realisations__track {
  gap: 0.85rem;
  align-items: stretch;
  min-width: 0;
}

.home-realisations__slide {
  flex: 0 0 min(72vw, 17.5rem);
  max-width: min(72vw, 17.5rem);
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  overflow: hidden;
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.home-realisations__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: var(--color-bg-alt);
}

.home-realisations__nav {
  margin-top: 1rem;
}

.home-realisations__nav .home-carousel__dots {
  flex-wrap: wrap;
  max-width: 70%;
}

.home-certs__logos-marquee {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
}

.home-certs__logos-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 3.75rem;
  contain: layout paint size;
  isolation: isolate;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.home-certs__logos-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
  width: max-content;
  height: 3.25rem;
  animation: home-certs-marquee 38s linear infinite;
  will-change: transform;
}

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

@keyframes home-certs-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.home-certs__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 9.5rem;
  width: 9.5rem;
  height: 3.25rem;
  min-width: 9.5rem;
  min-height: 3.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.4rem;
  padding: 0.35rem 0.55rem;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

a.home-certs__logo:focus-visible {
  outline: 2px solid var(--color-steel, #49657f);
  outline-offset: 2px;
}

.home-certs__logo--on-dark {
  background: var(--color-surface-dark);
  border-color: rgba(0, 0, 0, 0.12);
}

.home-certs__logo--on-dark img {
  filter: none;
  opacity: 1;
}

.home-certs__logos-marquee img {
  display: block;
  width: auto;
  height: auto;
  max-width: 8.4rem;
  max-height: 2.55rem;
  object-fit: contain;
  object-position: center;
  opacity: 0.88;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.home-certs__logos-marquee img:hover {
  opacity: 1;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .home-certs__logos-viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: thin;
  }

  .home-certs__logos-track {
    animation: none;
    padding-inline: 0.25rem;
  }
}

@media (min-width: 768px) {
  .home-realisations__slide {
    flex-basis: min(42vw, 20rem);
    max-width: min(42vw, 20rem);
  }
}

@media (min-width: 1100px) {
  .home-realisations__slide {
    flex-basis: calc((100% - 2.55rem) / 4);
    max-width: calc((100% - 2.55rem) / 4);
  }
}

/* ── Certifications ── */
.home-certs__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}

.home-certs__badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-muted);
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  border-radius: var(--radius);
}

.home-section--alt .home-certs__badge {
  background: var(--color-bg);
}

/* ── Formulaire ── */
.home-equip__inner {
  display: grid;
  gap: 2rem;
  align-items: start;
  min-width: 0;
}

.home-equip__inner > * {
  min-width: 0;
  max-width: 100%;
}

.home-equip__teaser {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.home-equip__form {
  display: grid;
  gap: 0.75rem;
}

.home-equip__form label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.home-equip__form input:not(.visually-hidden),
.home-equip__form textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 1rem; /* ≥16px : évite le zoom iOS au focus */
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius);
  background: var(--color-bg);
}

.home-equip__form textarea {
  min-height: 4.5rem;
  resize: vertical;
}

.home-equip__form .btn-primary {
  justify-self: start;
  margin-top: 0.35rem;
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
}

.home-equip__full-form {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
}

.home-equip__full-form a {
  color: var(--color-charcoal);
}

.home-form-status {
  font-size: 0.875rem;
  margin-top: 0.35rem;
}

.home-form-status--error {
  color: var(--color-cta-dark);
}

@media (min-width: 768px) {
  .home-equip__inner {
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
  }

  .home-carousel__slide {
    flex-basis: calc((100% - 3rem) / 4);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-child] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
