/* HH Power home redesign v6 */
.page-home .hero--home {
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
}

.page-home .hero__overlay {
  background:
    linear-gradient(105deg, rgba(12, 12, 14, 0.94) 0%, rgba(12, 12, 14, 0.72) 38%, rgba(12, 12, 14, 0.28) 72%, rgba(12, 12, 14, 0.4) 100%),
    linear-gradient(to top, rgba(12, 12, 14, 0.7) 0%, transparent 45%);
}

.page-home .hero__media img {
  object-position: center 40%;
  filter: saturate(0.92) contrast(1.05);
}

.page-home .hero__content--home {
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  max-width: min(92vw, 720px);
  margin-inline: 0;
  margin-left: max(4vw, calc((100vw - min(92vw, 1200px)) / 2));
  animation: heroRise 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin: 0 0 0.85rem;
}

.hero__wordmark {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 7rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--white);
  margin: 0 0 1.35rem;
}

.page-home .hero__title--home {
  max-width: 12ch;
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(250, 249, 247, 0.92);
  margin-bottom: 1rem;
}

.page-home .hero__lead--home {
  max-width: 28rem;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: rgba(236, 232, 226, 0.78);
}

.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 3rem;
  overflow: hidden;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--brass-light));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Dual project stage */
.work-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 78vh;
}

.work-panel {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 520px;
  color: var(--white);
}

.work-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-panel:hover img {
  transform: scale(1.06);
}

.work-panel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.9) 0%, rgba(12, 12, 14, 0.2) 55%, rgba(12, 12, 14, 0.35) 100%);
  transition: background 0.5s ease;
}

.work-panel:hover .work-panel__shade {
  background: linear-gradient(to top, rgba(12, 12, 14, 0.92) 0%, rgba(12, 12, 14, 0.35) 60%, rgba(12, 12, 14, 0.45) 100%);
}

.work-panel__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1.75rem, 4vw, 3rem);
  z-index: 1;
}

.work-panel__meta {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 0.65rem;
}

.work-panel__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.work-panel__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.75);
  border-bottom: 1px solid rgba(184, 148, 90, 0.55);
  padding-bottom: 0.2rem;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.work-panel:hover .work-panel__link {
  color: var(--brass-light);
  border-color: var(--brass-light);
}

/* Craft */
.craft {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(184, 148, 90, 0.08), transparent 45%),
    var(--white);
}

.craft__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.craft__list {
  margin: 0 0 2rem;
  display: grid;
  gap: 0.85rem;
}

.craft__list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
  font-size: 0.98rem;
}

.craft__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 1px;
  background: var(--brass);
}

.craft__visual {
  position: relative;
  min-height: 520px;
}

.craft__visual > img:first-child {
  width: 78%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-left: auto;
}

.craft__visual-secondary {
  position: absolute;
  left: 0;
  bottom: 1.5rem;
  width: 48%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(20, 20, 22, 0.28);
  border: 6px solid var(--white);
}

/* Proof band */
.proof {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.proof__media {
  position: absolute;
  inset: 0;
}

.proof__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
}

.proof__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 14, 0.92) 0%, rgba(12, 12, 14, 0.78) 55%, rgba(12, 12, 14, 0.65) 100%);
}

.proof__inner {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.proof__line {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-style: italic;
  max-width: 18ch;
  line-height: 1.25;
  margin-bottom: 2.75rem;
  color: rgba(250, 249, 247, 0.95);
}

.proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(184, 148, 90, 0.28);
  padding-top: 2rem;
}

.proof .stat__number {
  color: var(--brass-light);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.proof .stat__label {
  color: rgba(236, 232, 226, 0.62);
}

/* Atmosphere strip */
.atmosphere {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}

.atmosphere__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 0.5rem;
  padding: 0.5rem;
}

.atmosphere__shot {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.atmosphere__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  opacity: 0.92;
}

.atmosphere__shot:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.cta-band--home {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 148, 90, 0.18), transparent 50%),
    var(--ink);
}

.page-home .footer-taglines { display: none; }

.page-home .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .work-stage { grid-template-columns: 1fr; min-height: 0; }
  .work-panel { min-height: 420px; }
  .craft__grid { grid-template-columns: 1fr; }
  .craft__visual { min-height: 420px; max-width: 520px; }
  .proof__stats { grid-template-columns: repeat(2, 1fr); }
  .atmosphere__track { grid-template-columns: repeat(3, 1fr); }
  .atmosphere__shot:nth-child(4),
  .atmosphere__shot:nth-child(5) { display: none; }
}

@media (max-width: 640px) {
  .page-home .hero__content--home {
    margin-left: 4vw;
    max-width: 92vw;
  }
  .craft__visual-secondary { width: 55%; bottom: 0.75rem; border-width: 4px; }
  .proof__stats { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .atmosphere__track { grid-template-columns: 1fr 1fr; }
  .atmosphere__shot:nth-child(3) { display: none; }
}
