.hero {
  min-height: 100vh;
  background: var(--surface);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Grain overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  animation: grainShift 0.5s steps(1) infinite;
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-1%, -1%);
  }
  50% {
    transform: translate(1%, 0);
  }
  75% {
    transform: translate(0, 1%);
  }
}

/* Geometric background circles */
.hero-geo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.08);
  animation: geoRotate 20s linear infinite;
}

.geo-c1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
  animation-duration: 25s;
}

.geo-c2 {
  width: 400px;
  height: 400px;
  top: 50px;
  right: 50px;
  border-color: rgba(201, 168, 76, 0.12);
  animation-duration: 18s;
  animation-direction: reverse;
}

.geo-c3 {
  width: 200px;
  height: 200px;
  top: 150px;
  right: 200px;
  border-color: rgba(201, 168, 76, 0.18);
  animation-duration: 12s;
}

@keyframes geoRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Hero inner */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
}

/* Hero text */
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1.5px;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.hero-headline .line {
  display: block;
  color: var(--light);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-wrap {
  position: relative;
  width: 420px;
  height: 520px;
}

.photo-geo-ring {
  position: absolute;
  inset: -20px;
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  clip-path: polygon(
    10% 0%,
    100% 0%,
    90% 100%,
    0% 100%
  );
  animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.02);
  }
}

.photo-frame {
  width: 100%;
  height: 100%;
  position: relative;
  clip-path: polygon(
    10% 0%,
    100% 0%,
    90% 100%,
    0% 100%
  );
  overflow: hidden;
  background: var(--surface-3);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease);
}

.photo-frame:hover .hero-photo {
  transform: scale(1.03);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(11, 61, 46, 0.4) 100%
  );
}

/* Floating badges */
.hero-badges {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.badge {
  position: absolute;
  background: rgba(15, 26, 20, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.3);
  backdrop-filter: blur(12px);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.badge-icon {
  font-size: 0.9rem;
}

.badge-1 {
  top: 8%;
  left: -30px;
}
.badge-2 {
  top: 48%;
  right: -40px;
}
.badge-3 {
  bottom: 12%;
  left: -20px;
}

/* Float animation */
.float-anim {
  animation: floatBadge 3s ease-in-out infinite;
}
.float-anim.delay-2 {
  animation-delay: 1s;
}
.float-anim.delay-4 {
  animation-delay: 2s;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.7);
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 9rem;
    gap: 3rem;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-sub {
    margin: 0 auto 2.5rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    justify-content: center;
  }
  .hero-photo-wrap {
    width: 300px;
    height: 370px;
  }
  .badge-1 {
    left: -10px;
  }
  .badge-2 {
    right: -10px;
  }
  .badge-3 {
    left: 0;
  }
}
