/* ═══════════════════════════════════════════════
   HERO.CSS — Full-screen hero banner
═══════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 24px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 10, 6, 0.62) 0%,
    rgba(18, 10, 6, 0.42) 50%,
    rgba(18, 10, 6, 0.32) 100%
  );
  z-index: 1;
}

/* ── KY tree mark ── */
.hero__mark-wrap {
  position: absolute;
  top: 100px;
  left: clamp(24px, 5vw, 56px);
  z-index: 3;
  pointer-events: none;
}
.hero__mark {
  height: clamp(48px, 6vw, 72px);
  width: auto;
  opacity: 0.88;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
}

/* ── Content ── */
.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 860px);
  color: #fff9f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Eyebrow above brand */
.hero__eyebrow {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(229, 194, 103, 0.75);
  margin-bottom: 18px;
}

/* Brand name */
.hero__brand {
  margin: 0 0 10px;
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff9f2;
}

/* "Knew" — gold gradient italic */
.hero__brand-knew {
  font-style: italic;
  font-weight: 400;
  font-family: var(--f-display);
  font-size: 1.1em;
  letter-spacing: 0.02em;
  background: linear-gradient(
    160deg,
    #f5e27a 0%,
    #d4a017 28%,
    #f0c94a 52%,
    #b8860b 78%,
    #e8c94a 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 16px rgba(212, 160, 23, 0.4));
}

/* Primary headline */
.hero__headline {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  line-height: 1.22;
  font-weight: 500;
  color: rgba(255, 249, 242, 0.92);
}

/* Gold divider */
.hero__divider {
  margin: 24px auto 20px;
  width: min(100%, 360px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__divider span {
  flex: 1;
  height: 1px;
  background: rgba(229, 194, 103, 0.55);
}
.hero__divider i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  display: block;
  background: #e5c267;
  box-shadow: 0 0 0 3px rgba(229, 194, 103, 0.15);
}

/* Secondary headline */
.hero__subhead {
  margin: 0 0 10px;
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1.25;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 249, 242, 0.88);
}

/* Supporting tagline */
.hero__small {
  margin: 0 0 36px;
  font-family: var(--f-elegant);
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  line-height: 1.4;
  font-style: italic;
  color: rgba(229, 194, 103, 0.82);
  letter-spacing: 0.02em;
}

/* ── Buttons ── */
.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  min-width: 190px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  transition: 0.2s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.btn--gold {
  color: #fff;
  background: linear-gradient(180deg, #d7ae54 0%, #b7872f 100%);
  box-shadow: 0 10px 24px rgba(112, 72, 8, 0.28);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(112, 72, 8, 0.32);
}
.btn--outline {
  color: #fff;
  border: 1px solid rgba(229, 194, 103, 0.65);
  background: rgba(30, 16, 12, 0.15);
}
.btn--outline:hover {
  background: rgba(229, 194, 103, 0.1);
  border-color: rgba(229, 194, 103, 0.95);
}

/* ── Nav logo ── */
.nav-logo-img {
  height: clamp(90px, 13vw, 140px);
  width: auto;
  display: block;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero__mark {
    height: clamp(40px, 9vw, 56px);
  }
  .hero__mark-wrap {
    top: 80px;
  }
  .btn {
    width: 100%;
    min-width: 0;
    font-size: 0.7rem;
    padding: 14px 20px;
  }
}
