/* HERO */

.lh-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lh-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  object-fit: cover;
}

.lh-hero-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
}

.lh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(23, 24, 25, 0.4),
    transparent 45%,
    var(--background)
  )
}

.lh-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 128px;
  padding-bottom: 128px;
}

.lh-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.lh-eyebrow span {
  width: 48px;
  height: 1px;
  background: var(--accent);
}

.lh-hero h1 {
  margin: 0 0 32px;
  font-size: clamp(64px, 10vw, 128px);
  line-height: 0.85;
  letter-spacing: -0.08em;
  font-weight: 950;
}

.lh-hero h1 span {
  color: var(--accent);
}

.lh-hero p {
  max-width: 560px;
  margin: 0 0 40px;
  color: var(--muted-foreground);
  font-size: 18px;
  line-height: 1.7;
}

.lh-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.lh-btn {
  min-height: 56px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.lh-btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.lh-btn-accent:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.lh-btn-outline {
  border-color: var(--border);
  background: transparent;
  color: var(--foreground);
}

.lh-btn-outline:hover {
  background: var(--secondary);
}

.lh-scroll {
  position: absolute;
  right: 24px;
  bottom: 32px;
  transform: rotate(90deg);
  transform-origin: bottom right;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

/* PRODUCTS */

.lh-products {
  position: relative;
  padding: 128px 0;
  border-top: 1px solid var(--border);
}

.lh-section-head {
  margin-bottom: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lh-section-label {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.lh-section-head h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.lh-count {
  color: var(--muted-foreground);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lh-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.lh-product-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  transition: var(--transition-smooth);
}

.lh-product-card:hover {
  background: var(--secondary);
}

.lh-product-number {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  color: var(--muted-foreground);
  font-size: 10px;
  letter-spacing: 0.3em;
}

.lh-product-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  color: var(--accent);
  font-size: 18px;
}

.lh-product-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--background);
}

.lh-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.lh-product-card:hover .lh-product-image img {
  transform: scale(1.05);
}

.lh-product-content {
  padding: 32px;
}

.lh-product-tagline {
  margin-bottom: 8px;
  color: var(--muted-foreground);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.lh-product-content h3 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.lh-product-content p {
  min-height: 48px;
  margin: 0 0 32px;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.7;
}

.lh-product-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lh-price {
  font-size: 28px;
  font-weight: 800;
}

.lh-price span {
  color: var(--muted-foreground);
  font-size: 14px;
}

.lh-small-btn {
  height: 40px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--foreground);
  color: var(--background);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.lh-small-btn:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}

/* MANIFEST */

.lh-manifest {
  position: relative;
  padding: 128px 0;
  border-top: 1px solid var(--border);
  background: rgba(34, 35, 36, 0.35);
}

.lh-manifest-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.lh-manifest p {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.lh-manifest p span {
  color: var(--muted-foreground);
}

.lh-manifest p strong {
  color: var(--accent);
}

.lh-stats {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.lh-stats h3 {
  margin: 0 0 8px;
  font-size: 54px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.lh-stats span {
  color: var(--muted-foreground);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .lh-nav {
    gap: 16px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .lh-products-grid {
    grid-template-columns: 1fr;
  }

  .lh-stats {
    grid-template-columns: 1fr;
  }

  .lh-footer-grid {
    grid-template-columns: 1fr;
  }

  .lh-scroll {
    display: none;
  }
}

@media (max-width: 640px) {
  body.admin-bar .lh-header {
    top: 46px;
  }

  .lh-header-inner {
    height: auto;
    min-height: 64px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .lh-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .lh-hero {
    padding-top: 110px;
  }

  .lh-hero-content {
    padding-top: 80px;
    padding-bottom: 96px;
  }

  .lh-hero h1 {
    font-size: 58px;
  }

  .lh-hero p {
    font-size: 16px;
  }

  .lh-btn {
    width: 100%;
  }

  .lh-products,
  .lh-manifest {
    padding: 88px 0;
  }

  .lh-product-content {
    padding: 24px;
  }

  .lh-footer-bottom {
    gap: 16px;
    flex-direction: column;
  }
}
