/* ── HERO — Composite background + grunge headline ── */

#hero {
  position: relative;
  min-height: 100svh;
  background-image: url('../assets/images/hero-composite.jpg');
  background-size: cover;
  background-position: 65% center;
  background-color: #02040c;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Left-heavy gradient overlay — strong fade to protect headline */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(2, 4, 12, 0.95) 0%,
      rgba(2, 4, 12, 0.85) 25%,
      rgba(2, 4, 12, 0.55) 45%,
      rgba(2, 4, 12, 0.18) 65%,
      rgba(2, 4, 12, 0) 85%
    ),
    radial-gradient(ellipse at 20% 40%, rgba(2,4,12,0.45) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Bottom vignette so feature bar transition is smooth */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(2,4,12,0.95));
  z-index: 2;
  pointer-events: none;
}

/* ── Content column (left ~45%) ── */
.hero-content-col {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.85rem, 1.5vh, 1.3rem);
  width: min(50%, 720px);
  padding: calc(var(--nav-h) + 4rem) clamp(1rem, 3vw, 3rem) 6rem clamp(2rem, 6vw, 7rem);
}

/* ── Overline: stars row above + striped row with label ── */
.hero-overline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.hero-overline-stars {
  display: flex;
  gap: clamp(0.5rem, 1vw, 0.85rem);
  color: #E63946;
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1;
}

.hero-overline-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-overline-stripe {
  display: flex;
  height: 4px;
  width: clamp(50px, 7vw, 90px);
  border-radius: 2px;
  overflow: hidden;
}
.hero-overline-stripe .s-red   { flex: 2; background: #E63946; }
.hero-overline-stripe .s-white { flex: 1; background: rgba(255,255,255,0.55); }
.hero-overline-stripe .s-blue  { flex: 2; background: #1D4ED8; }

.hero-overline-text {
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 0.78vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

/* ── Headline — stacked 3-line billboard with grunge filter ── */
.hero-headline {
  display: flex;
  flex-direction: column;
  line-height: 0.87;
  letter-spacing: -0.01em;
}

.hero-hl-white,
.hero-hl-red {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.6vw, 6.2rem);
  display: block;
  filter: url(#grunge-filter);
}
.hero-hl-white {
  color: #FFFFFF;
  text-shadow: 2px 6px 24px rgba(0, 0, 0, 0.5);
}
.hero-hl-red {
  color: #E63946;
  text-shadow: 2px 6px 24px rgba(220, 38, 38, 0.4);
}

/* ── Description ── */
.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.1vw, 1.02rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: min(100%, 460px);
  letter-spacing: 0.01em;
}

/* ── Button row ── */
.hero-btn-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: clamp(0.78rem, 1.2vw, 0.95rem) clamp(1.5rem, 2.5vw, 2.1rem);
  background: #E63946;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 0.85vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  text-decoration: none;
  border: 1.5px solid #E63946;
  transition: background var(--dur-fast), border-color var(--dur-fast),
              transform var(--dur-fast), box-shadow var(--dur-fast);
  white-space: nowrap;
}
.hero-cta-primary:hover {
  background: #c0313d;
  border-color: #c0313d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.45);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: clamp(0.78rem, 1.2vw, 0.95rem) clamp(1.5rem, 2.5vw, 2.1rem);
  background: transparent;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 0.85vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
  white-space: nowrap;
}
.hero-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ── Pillars ── */
.hero-pillars {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}
.hero-pillar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 clamp(0.55rem, 1.1vw, 1.1rem);
}
.hero-pillar:first-child { padding-left: 0; }
.hero-pillar + .hero-pillar { border-left: 1px solid rgba(255, 255, 255, 0.18); }
.hero-pillar svg {
  width: clamp(13px, 1.3vw, 17px);
  height: clamp(13px, 1.3vw, 17px);
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}
.hero-pillar-label {
  font-family: var(--font-body);
  font-size: clamp(0.52rem, 0.62vw, 0.62rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: clamp(2rem, 6vw, 8rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 4;
}
.hero-scroll-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(230, 57, 70, 0.8);
  animation: scroll-drip 2s ease-in-out infinite;
}
@keyframes scroll-drip {
  0%   { top: -100%; }
  80%  { top: 100%; }
  100% { top: 100%; }
}

/* ── Hide all old hero decoratives (no-op safety net) ── */
.hero-corner-tl,
.hero-corner-br,
.hero-stars,
.hero-brand-legacy,
.hero-brand-barbershop,
.hero-scissors-divider,
.hero-tagline,
.hero-deco,
.hero-shop-col { display: none !important; }

/* ── FEATURE BAR ── */
#feature-bar {
  background: #07070f;
  border-top: 2px solid #E63946;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.feature-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
}
.feature-bar-col {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1.4rem, 2.8vw, 2.2rem) clamp(1.2rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--dur-med);
}
.feature-bar-col:last-child { border-right: none; }
.feature-bar-col:hover { background: rgba(255,255,255,0.025); }
.feature-bar-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.45);
  width: clamp(28px, 2.8vw, 38px);
  height: clamp(28px, 2.8vw, 38px);
}
.feature-bar-title {
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 0.82vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.28rem;
}
.feature-bar-desc {
  font-family: var(--font-body);
  font-size: clamp(0.76rem, 0.88vw, 0.85rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.55;
}
