/* ── HERO — exact reference ad layout ── */

#hero {
  position: relative;
  height: 100svh;
  background-color: #FFFFFF;
  background-image: url('../assets/images/background.png');
  background-size: cover;
  background-position: center center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  padding-left: clamp(2rem, 6vw, 8rem);
  padding-right: clamp(2rem, 6vw, 8rem);
}

/* ── Corner stripe accents ── */

/* TOP-LEFT (dominant, large triangular block) */
.hero-corner-tl,
.hero-corner-br { display: none; }

.hero-corner-tl {
  position: absolute;
  top: 0; left: 0;
  width: clamp(180px, 26vw, 360px);
  height: clamp(180px, 26vw, 360px);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: repeating-linear-gradient(
    -45deg,
    #DC2626 0px,   #DC2626 20px,
    #ffffff 20px,  #ffffff 38px,
    #0A1628 38px,  #0A1628 56px,
    #ffffff 56px,  #ffffff 74px,
    #DC2626 74px,  #DC2626 92px,
    #c8c8c8 92px,  #c8c8c8 110px,
    #ffffff 110px, #ffffff 128px
  );
  z-index: 2;
  pointer-events: none;
}

/* BOTTOM-RIGHT (mirrored) */
.hero-corner-br {
  position: absolute;
  bottom: 0; right: 0;
  width: clamp(180px, 26vw, 360px);
  height: clamp(180px, 26vw, 360px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: repeating-linear-gradient(
    -45deg,
    #DC2626 0px,   #DC2626 20px,
    #ffffff 20px,  #ffffff 38px,
    #0A1628 38px,  #0A1628 56px,
    #ffffff 56px,  #ffffff 74px,
    #DC2626 74px,  #DC2626 92px,
    #c8c8c8 92px,  #c8c8c8 110px,
    #ffffff 110px, #ffffff 128px
  );
  z-index: 2;
  pointer-events: none;
}

/* ── LEFT column: shop building ── */
.hero-shop-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: calc(var(--nav-h) + 2rem) 0 2rem;
}

.hero-shop-img {
  width: auto;
  max-width: 95%;
  max-height: 78%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
}

/* ── RIGHT column: content ── */
.hero-content-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(0.4rem, 0.9vh, 0.85rem);
  align-items: flex-start;
  padding: calc(var(--nav-h) + 3rem + 14vh) clamp(1.5rem, 3vw, 4rem) 3rem clamp(0.5rem, 1.5vw, 2rem);
  position: relative;
  z-index: 3;
}

/* 5 stars — absolutely positioned so they float above the space-between flow */
.hero-stars {
  position: absolute;
  top: calc(var(--nav-h) + 1.25rem + 14vh);
  left: clamp(1.5rem, 3vw, 4rem);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  line-height: 1;
  z-index: 5;
}
.hero-star {
  color: #0A1628;
  line-height: 1;
}
.hero-star.is-red {
  color: #DC2626;
}

/* LEGACY — massive navy */
.hero-brand-legacy {
  font-family: var(--font-display);
  font-size: var(--t-hero);
  line-height: 0.82;
  color: #0A1628;
  letter-spacing: -0.03em;
  display: block;
  font-style: normal;
  -webkit-text-stroke: 3px #0A1628;
  text-shadow: 7px 7px 0 rgba(10, 22, 40, 0.32);
}

/* BARBERSHOP — massive red */
.hero-brand-barbershop {
  font-family: var(--font-display);
  font-size: var(--t-hero);
  line-height: 0.82;
  color: #DC2626;
  letter-spacing: -0.03em;
  display: block;
  font-style: normal;
  -webkit-text-stroke: 3px #DC2626;
  text-shadow: 7px 7px 0 rgba(220, 38, 38, 0.38);
}

/* Scissors divider: line — scissors SVG — line */
.hero-scissors-divider {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 68%;
}
.hero-scissors-divider::before,
.hero-scissors-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(10, 22, 40, 0.4);
}
.hero-scissors-divider svg {
  flex-shrink: 0;
  color: #0A1628;
  width: 20px;
  height: 20px;
}

/* WHERE LEGENDS GET SHARP */
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0A1628;
  font-style: normal;
}

/* 4 icon pillars */
.hero-pillars {
  display: flex;
  align-items: stretch;
  width: 68%;
}

.hero-pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0 clamp(0.3rem, 0.6vw, 0.6rem);
}

.hero-pillar + .hero-pillar {
  position: relative;
}
.hero-pillar + .hero-pillar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 55%;
  width: 1px;
  background: rgba(10, 22, 40, 0.2);
}

.hero-pillar:first-child {
  padding-left: 0;
}

.hero-pillar svg {
  width: clamp(16px, 1.6vw, 22px);
  height: clamp(16px, 1.6vw, 22px);
  color: #0A1628;
  flex-shrink: 0;
}

.hero-pillar-label {
  font-family: var(--font-body);
  font-size: clamp(0.44rem, 0.52vw, 0.56rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0A1628;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

/* Hero description text */
.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(10, 22, 40, 0.72);
  max-width: min(100%, 480px);
  letter-spacing: 0.01em;
}

/* Button row — Get Directions + About Us side by side */
.hero-btn-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Secondary About Us button */
.hero-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.7rem, 1.2vw, 0.9rem) clamp(1.2rem, 2vw, 1.75rem);
  background: transparent;
  color: #0A1628;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 0.9vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1.5px solid rgba(10, 22, 40, 0.35);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.hero-about-btn:hover {
  border-color: #0A1628;
  background: rgba(10, 22, 40, 0.06);
  transform: translateY(-2px);
}
.hero-about-btn svg { flex-shrink: 0; }

/* Scroll indicator — absolutely positioned, never affects layout flow */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: clamp(0.5rem, 1.5vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  z-index: 4;
}
.hero-scroll-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(10, 22, 40, 0.4);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(10,22,40,0.35), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(220, 38, 38, 0.8);
  animation: scroll-drip 2s ease-in-out infinite;
}
@keyframes scroll-drip {
  0%   { top: -100%; }
  80%  { top: 100%; }
  100% { top: 100%; }
}

/* Decorative elements in left (shop) column */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}
.hero-deco-scissors {
  position: absolute;
  top: clamp(6rem, 15vh, 10rem);
  right: 1.5rem;
  color: #0A1628;
  opacity: 0.1;
  transform: rotate(-28deg);
  width: clamp(28px, 3.5vw, 50px);
  height: clamp(28px, 3.5vw, 50px);
}
.hero-deco-scissors-2 {
  position: absolute;
  bottom: clamp(6rem, 14vh, 12rem);
  left: 1.5rem;
  color: #DC2626;
  opacity: 0.08;
  transform: rotate(55deg) scaleX(-1);
  width: clamp(20px, 2.5vw, 36px);
  height: clamp(20px, 2.5vw, 36px);
}
.hero-deco-stars {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hero-deco-star {
  width: 6px;
  height: 6px;
  background: #0A1628;
  opacity: 0.12;
  transform: rotate(45deg);
}
.hero-deco-rule {
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(10,22,40,0.08) 30%, rgba(10,22,40,0.08) 70%, transparent);
}
.hero-deco-num {
  position: absolute;
  bottom: clamp(3rem, 8vh, 6rem);
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 1;
  color: #0A1628;
  opacity: 0.04;
  letter-spacing: 0.05em;
  user-select: none;
}

/* BOOK YOUR APPOINTMENT → pill */
.hero-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(0.7rem, 1.2vw, 0.9rem) clamp(1.5rem, 2.5vw, 2.2rem);
  background: #0A1628;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 0.9vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast);
  align-self: flex-start;
  white-space: nowrap;
}
.hero-cta-pill:hover {
  background: #1D3A6B;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 22, 40, 0.35);
}
