/* ============================================================
   GWP HERO
   ============================================================ */

.gwp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12rem var(--space-6) 6rem;
  overflow: hidden;
}

.gwp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gwp-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.05);
  display: block;
}

.gwp-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--color-surface-primary) 0%,
    rgba(18, 20, 22, 0.2) 50%,
    transparent 100%
  );
}

.gwp-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.gwp-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-6);
}

.gwp-hero__eyebrow-line {
  width: 3rem;
  height: 2px;
  background-color: var(--color-brand-secondary);
  flex-shrink: 0;
}

.gwp-hero__eyebrow-label {
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-brand-primary);
}

.gwp-hero__headline {
  font-family: var(--font-family-heading);
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-6);
  text-transform: uppercase;
}

.gwp-hero__body {
  max-width: 42rem;
  font-family: var(--font-family-body);
  font-size: var(--font-size-lg);
  font-weight: 300;
  line-height: var(--line-height-loose);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

.gwp-hero__actions {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.gwp-hero__scroll-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-white);
}

.gwp-hero__scroll-btn:hover .gwp-hero__scroll-circle {
  background-color: var(--color-brand-secondary);
  border-color: var(--color-brand-secondary);
}

.gwp-hero__scroll-circle {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-slow);
}

.gwp-hero__scroll-circle .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--color-white);
}

.gwp-hero__scroll-label {
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
}
