.header-actions-right,
.header-socials,
.footer-social-icons,
.carousel-controls,
.carousel-dots {
  display: flex;
  align-items: center;
}

.header-actions-right {
  gap: 18px;
}

.header-socials,
.footer-social-icons {
  gap: 9px;
}

.header-socials a,
.footer-social-icons a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.header-socials a:hover,
.footer-social-icons a:hover {
  color: var(--terracotta);
  border-color: currentColor;
  transform: translateY(-2px);
}

.header-socials svg,
.footer-social-icons svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.header-socials path:not(.social-play),
.footer-social-icons path:not(.social-play) {
  fill: currentColor;
  stroke: none;
}

.header-socials .social-dot,
.footer-social-icons .social-dot {
  fill: currentColor;
  stroke: none;
}

.header-socials .social-play,
.footer-social-icons .social-play {
  fill: currentColor;
  stroke: none;
}

.media-carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  column-gap: 18px;
}

.carousel-slide {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--brown);
  scroll-snap-align: start;
}

.carousel-slide img,
.carousel-slide video {
  display: block;
  width: 100%;
  height: 100%;
}

.carousel-slide img {
  object-fit: cover;
}

.carousel-slide video {
  object-fit: contain;
  background: #2f221c;
}

.carousel-controls {
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(63,43,32,.28);
  border-radius: 50%;
  background: transparent;
  color: var(--brown);
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.carousel-arrow:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-2px);
}

.carousel-dots {
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(63,43,32,.28);
  cursor: pointer;
}

.carousel-dots button.active {
  width: 24px;
  border-radius: 999px;
  background: var(--terracotta);
}

.footer-logo {
  width: 205px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--cream);
}

.footer-brand .footer-logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: none;
  opacity: 1;
}

.footer-social-icons a {
  color: var(--cream);
  border-color: rgba(255,255,255,.3);
}

@media (max-width: 980px) {
  .main-nav {
    gap: 20px;
  }

  .header-actions-right {
    gap: 12px;
  }
}

@media (max-width: 620px) {
  .header-socials {
    display: none;
  }

  .carousel-slide {
    aspect-ratio: 3 / 4;
  }

  .footer-logo {
    width: min(240px, 100%);
  }
}

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

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

.inquiry-form button:disabled {
  opacity: .65;
  cursor: wait;
}

.form-success.form-error {
  color: var(--terracotta);
}