/* ============================================================
   BILDWERK – Equipment Page
   Styles for Equipment showcase
   ============================================================ */

/* ─── HERO ─── */

.equipment-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  padding: var(--sp-8) var(--container-pad) var(--sp-12);
  overflow: hidden;
  margin-top: var(--header-height);
}

.equipment-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--clr-dark-800);
}

.equipment-hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 120%,
    rgba(35, 97, 61, 0.08) 0%,
    transparent 70%
  );
  animation: ambientGlow 6s ease-in-out infinite;
}

.equipment-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 85ch;
}

.equipment-hero__headline {
  font-family: var(--font-serif);
  font-size: var(--fs-6xl);
  font-weight: 400;
  line-height: 1.1;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
}

.equipment-hero__line {
  display: block;
  overflow: hidden;
}

.equipment-hero__line-inner {
  display: inline-block;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.equipment-hero__line:nth-child(2) .equipment-hero__line-inner {
  animation-delay: 0.1s;
}

.equipment-hero__line:nth-child(3) .equipment-hero__line-inner {
  animation-delay: 0.2s;
}

.equipment-hero__sub {
  font-size: var(--fs-lg);
  line-height: 1.7;
  color: var(--clr-text-secondary);
  margin-bottom: var(--sp-8);
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.equipment-hero__sub strong {
  color: var(--clr-gold-light);
  font-weight: 600;
}


/* ─── SONY PARTNERSHIP ─── */

.sony-partnership {
  padding: var(--sp-16) var(--container-pad);
  background: linear-gradient(180deg, var(--clr-dark-900) 0%, var(--clr-dark-800) 100%);
  border-top: 1px solid var(--clr-dark-border);
  border-bottom: 1px solid var(--clr-dark-border);
}

.sony-partnership__content {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 2fr;
  gap: var(--sp-12);
  align-items: center;
}

.sony-partnership__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.sony-partnership__logo svg {
  width: 120px;
  height: 120px;
  color: var(--clr-gold-light);
  filter: drop-shadow(0 0 24px rgba(155, 200, 175, 0.15));
}

.sony-partnership__label {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-gold-light);
}

.sony-partnership__text {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.sony-partnership__text h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: 400;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}

.sony-partnership__text p {
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--clr-text-secondary);
  margin-bottom: var(--sp-6);
}

.sony-partnership__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .sony-partnership__content {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .equipment-hero__headline {
    font-size: var(--fs-4xl);
  }
}


/* ─── GEAR CATEGORIES ─── */

.gear-category {
  padding: var(--sp-20) var(--container-pad);
  border-bottom: 1px solid var(--clr-dark-border);
}

.gear-category:nth-child(odd) {
  background: var(--clr-dark-800);
}

.gear-category--alt {
  background: linear-gradient(180deg, var(--clr-dark-700) 0%, var(--clr-dark-800) 100%);
}

.gear-category__header {
  text-align: center;
  margin-bottom: var(--sp-16);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.gear-category__title {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: 400;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}

.gear-category__intro {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  max-width: 70ch;
  margin: 0 auto;
  line-height: 1.7;
}


/* ─── GEAR GRID ─── */

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-8);
}

.gear-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 768px) {
  .gear-grid {
    grid-template-columns: 1fr;
  }

  .gear-grid--three {
    grid-template-columns: 1fr;
  }
}


/* ─── GEAR ITEM ─── */

.gear-item {
  background: var(--clr-dark-700);
  border: 1px solid var(--clr-dark-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--dur-state) var(--ease-out-quint);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) both;
}

.gear-item:hover {
  border-color: var(--clr-gold-light);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(155, 200, 175, 0.08);
  transform: translateY(-4px);
}

.gear-item__image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--clr-dark-600);
  overflow: hidden;
}

.gear-item__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-3xl);
  opacity: 0.5;
  transition: transform var(--dur-state) var(--ease-out-quint);
}

.gear-item:hover .gear-item__image-placeholder {
  transform: scale(1.05);
}

.gear-item__content {
  padding: var(--sp-6);
  background: var(--clr-dark-700);
}

.gear-item__name {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}

.gear-item__role {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-gold-light);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.gear-item__description {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--clr-text-secondary);
  margin: 0;
}


/* ─── GEAR LIST ─── */

.gear-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-8);
}

.gear-list-item {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-6);
  background: var(--clr-dark-700);
  border: 1px solid var(--clr-dark-border);
  border-radius: var(--radius-sm);
  transition: all var(--dur-state) var(--ease-out-quint);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) both;
}

.gear-list-item:hover {
  border-color: var(--clr-gold-light);
  background: var(--clr-dark-600);
  transform: translateX(8px);
}

.gear-list-item__icon {
  font-size: 2rem;
  flex-shrink: 0;
  opacity: 0.8;
}

.gear-list-item__content {
  flex: 1;
}

.gear-list-item__title {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-2);
}

.gear-list-item__content p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .gear-list {
    grid-template-columns: 1fr;
  }
}


/* ─── EQUIPMENT PHILOSOPHY ─── */

.equipment-philosophy {
  padding: var(--sp-20) var(--container-pad);
  background: linear-gradient(180deg, var(--clr-dark-900) 0%, var(--clr-dark-800) 100%);
  border-top: 1px solid var(--clr-dark-border);
}

.equipment-philosophy__content {
  text-align: center;
  max-width: 85ch;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.equipment-philosophy__content h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: 400;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-8);
  letter-spacing: -0.02em;
}

.equipment-philosophy__content p {
  font-size: var(--fs-base);
  line-height: 1.9;
  color: var(--clr-text-secondary);
  margin-bottom: var(--sp-6);
}

.equipment-philosophy__content p:last-child {
  margin-bottom: 0;
  color: var(--clr-gold-light);
  font-weight: 500;
}


/* ─── RESPONSIVE ─── */

@media (max-width: 768px) {
  .equipment-hero {
    min-height: 80vh;
    padding: var(--sp-6) var(--container-pad) var(--sp-8);
    gap: var(--sp-8);
  }

  .equipment-hero__headline {
    font-size: var(--fs-4xl);
  }

  .equipment-hero__sub {
    font-size: var(--fs-base);
  }

  .gear-category {
    padding: var(--sp-12) var(--container-pad);
  }

  .gear-category__header {
    margin-bottom: var(--sp-8);
  }

  .gear-category__title {
    font-size: var(--fs-2xl);
  }

  .equipment-philosophy__content h2 {
    font-size: var(--fs-2xl);
  }
}
