/* ================================================================
   HERO SECTIONS
   ================================================================ */

/* Home hero */
.hero {
  background: linear-gradient(160deg, var(--warm-white) 0%, var(--blush) 50%, var(--rose) 100%);
  padding: 80px var(--page-gutter) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--terracotta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--deep);
  margin-bottom: 20px;
}

.hero h1 em { font-style: italic; color: var(--terracotta); }

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.hero-card-stack {
  position: relative;
  width: 340px;
  height: 340px;
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 20px;
  overflow: hidden;
}

.hc1 { width: 280px; height: 200px; top: 60px; left: 30px; transform: rotate(-3deg); z-index: 1; }
.hc3 { width: 270px; height: 190px; top: 40px; left: 40px; z-index: 3; }

.hero-card-img {
  width: 100%;
  height: 110px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 10px;
}

.hero-card-label {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--ff-mono);
  margin-bottom: 4px;
}

.hero-card-title {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--deep);
}

.hero-rating {
  display: flex;
  gap: 2px;
  margin-top: 6px;
  align-items: center;
}

.hero-rating .star { color: var(--gold); font-size: 11px; }

/* Deals hero */
.deals-hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--mid) 100%);
  padding: 52px var(--page-gutter) 44px;
  color: white;
}

.deals-hero h1 {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
}

.deals-hero h1 em { font-style: italic; color: var(--rose); }
.deals-hero p { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 10px; }

/* Author hero */
.author-hero {
  background: linear-gradient(160deg, var(--warm-white), var(--blush));
  padding: 56px var(--page-gutter);
}

.author-hero__inner {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 900px;
}

.author-av-big {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 40px;
  color: var(--terracotta);
  font-weight: 300;
}

.author-info h1 {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--deep);
}

.author-info .author-title {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--ff-mono);
  margin: 6px 0 12px;
}

.author-bio {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 560px;
}

.author-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.author-tag {
  background: white;
  border: 1px solid var(--border-mid);
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  color: var(--muted);
}

/* ---- Additions ---- */

/* Hero Home — BEM naming used in index.html */
.hero-home {
  background: linear-gradient(160deg, var(--warm-white) 0%, var(--blush) 50%, var(--rose) 100%);
  padding: 80px var(--page-gutter) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
}
.hero-home__text {}
.hero-home__tag {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-home__title {
  font-family: var(--ff-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--deep);
  margin-bottom: 20px;
}
.hero-home__subtitle {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}
.hero-home__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-home__card-stack {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero card BEM variants */
.hero-card--1 {
  position: absolute;
  width: 260px; height: 190px;
  top: 70px; left: 10px;
  transform: rotate(-4deg);
  z-index: 1;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.hero-card--2 {
  position: absolute;
  width: 230px; height: 175px;
  top: 10px; right: 0;
  transform: rotate(3deg);
  z-index: 2;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.hero-card--3 {
  position: absolute;
  width: 260px; height: 185px;
  top: 50px; left: 30px;
  z-index: 3;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.hero-card__score {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: auto;
}
.hero-card__emoji {
  font-size: 34px;
  line-height: 1;
  margin: auto 0 8px;
}
.hero-card__name {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--deep);
  line-height: 1.2;
}

/* Stats strip BEM aliases */
.stat-item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-item__value {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--rose);
}
.stat-item__label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
  font-family: var(--ff-mono);
}

/* Deals hero BEM additions */
.deals-hero__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.deals-hero__tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose);
}
.deals-hero__update { font-size: 12px; color: rgba(255,255,255,0.4); font-family: var(--ff-mono); }
.deals-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 10px;
}
.deals-hero__sub { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* Author hero BEM additions */
.author-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--deep);
  margin: 10px 0 16px;
  letter-spacing: -0.02em;
}
.author-hero__sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}
