/* HERO CAROUSEL */
.hero {
  position: relative;
  height: 70vh;
  height: 70dvh;
  max-height: 700px;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-12);
  overflow: hidden;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero__slide.active {
  opacity: 1;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

/* Arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.2s;
}
.hero__arrow:hover { background: rgba(255,255,255,0.25); }
.hero__arrow--prev { left: var(--page-pad, 24px); }
.hero__arrow--next { right: var(--page-pad, 24px); }

/* Dots */
.hero__dots {
  position: absolute;
  bottom: var(--space-4, 16px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hero__dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* hide arrows when only one slide */
.hero--single .hero__arrow,
.hero--single .hero__dots { display: none; }
.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--page-pad);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  color: #fff;
}
.hero__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: var(--space-2);
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
  white-space: pre-line;
}
.hero__sub {
  font-size: var(--text-base);
  opacity: 0.8;
  margin-bottom: var(--space-4);
  font-weight: 300;
}

/* BRAND STATEMENT */
.brand-statement__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.brand-statement__quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text);
  border-left: 2px solid var(--color-accent-alt);
  padding-left: var(--space-4);
}
.brand-statement__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.pillar__title {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pillar__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* PROCESS */
.process-section { background: var(--color-accent); color: #fff; }
.process-section .section-header__title { color: #fff; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: var(--space-4);
  border-left: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.process-step:first-child { border-left: none; }
.process-step__num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  opacity: 0.4;
  margin-bottom: var(--space-2);
}
.process-step__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
}

/* CERTS BAR */
.certs-bar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
}
.certs-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.certs-bar__label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.certs-bar__logos { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.cert-badge {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 4px 12px;
}

@media (max-width: 900px) {
  .brand-statement__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .brand-statement__pillars { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hero {
    height: 55vh;
    height: 55dvh;
    max-height: none;
    min-height: 380px;
    padding-bottom: var(--space-6);
  }
  .hero__slide {
    background: #000;
  }
  .hero__slide img {
    object-fit: cover;
  }
  .hero__content {
    padding-bottom: 0;
  }
  .hero__title {
    font-size: clamp(1.6rem, 7vw, 2.8rem);
  }
  .hero-video {
    height: 40vh;
    max-height: 350px;
  }
}
@media (max-width: 500px) {
  .hero {
    height: 50vh;
    height: 50dvh;
    min-height: 320px;
  }
  .hero__arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .hero-video {
    height: 35vh;
    max-height: 280px;
  }
  .brand-statement__pillars { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); }
  .process-step:first-child { border-top: none; }
}

/* BRAND FILM */
.hero-video {
  position: relative;
  width: 100%;
  height: 60vh;
  max-height: 600px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video__container {
  position: relative;
  width: auto;
  height: 100%;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Blurred background video — fills entire section (full viewport width) */
.hero-video__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px);
  transform: scale(1.2);
  opacity: 1;
}
/* Dark veil over the blur — creates the frosted look */
.hero-video__blur-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}
/* Foreground video — exact aspect ratio, no black bars */
.hero-video__media {
  display: block;
  height: 100%;
  width: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  background: transparent !important;
  border-radius: 4px;
}
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 3;
}
.hero-video__content {
  position: absolute;
  bottom: var(--space-8);
  left: 0;
  right: 0;
  text-align: center;
  z-index: 4;
  padding: 0 var(--page-pad);
}
.hero-video__label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
