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

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* Header / Title section */

.hero {
  width: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 36px 20px 24px;
}

.small-hero {
  min-height: auto;
  padding: 36px 20px 24px;
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
}

/* Links */

.contact-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.contact-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.contact-links a:hover {
  opacity: 1;
}

/* Main */

main {
  width: 100%;
}

section {
  width: 100%;
  padding: 22px 4%;
}

section h2 {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.75;
}

/* Vimeo embeds */

.video-section {
  padding-top: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
}

.vimeo-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050505;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.vimeo-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Photo preview */

.photo-preview {
  padding-top: 40px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
}

.photo-box {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050505;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.photo-box:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: #080808;
}

/* About page */

.about-image-section {
  padding: 20px 6% 35px;
}

.about-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6% 100px;
}

.about-section p {
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  max-width: 1150px;
}

/* Footer */

footer {
  width: 100%;
  text-align: center;
  padding: 45px 20px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.75rem;
}

/* Tablet */

@media (max-width: 950px) {
  .video-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .hero {
    padding: 26px 18px 18px;
    gap: 14px;
  }

  .small-hero {
    padding: 28px 18px 20px;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 8vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: 0.1em;
  }

  .contact-links {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .contact-links a {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  section {
    width: 100%;
    padding: 18px 14px;
  }

  .video-section {
    padding-top: 12px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .vimeo-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .photo-preview {
    padding-top: 34px;
  }

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

  .photo-box {
    width: 100%;
    min-height: 320px;
  }

  .about-image-section {
    width: 100%;
    padding: 20px 0 30px;
  }

  .about-image {
    width: 100%;
    max-width: none;
  }

  .about-section {
    width: 100%;
    padding: 20px 22px 80px;
  }

  .about-section p {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  footer {
    width: 100%;
    padding: 36px 20px;
  }
}
/* Rolling brand list */

.brand-section {
  width: 100%;
  padding: 20px 0 100px;
  overflow: hidden;
}

.brand-title {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 26px;
}

.brand-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px 0;
}

.brand-track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  animation: brandScroll 22s linear infinite;
}

.brand-track span {
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

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

@keyframes brandScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Mobile rolling brand list */

@media (max-width: 700px) {
  .brand-section {
    padding: 10px 0 80px;
  }

  .brand-marquee {
    padding: 18px 0;
  }

  .brand-track {
    gap: 34px;
    animation-duration: 18s;
  }

  .brand-track span {
    font-size: 1.3rem;
  }
}
