/* ── HERO LAYER — body level, not clipped by any parent ── */
#hero-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 315px;
  z-index: 10;
  pointer-events: none;
}

/* ── A+B: HERO SVG — full width, curves down over left panel ── */
.hero-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ── G: PHOTO — softened with brightness lift and bottom fade ── */
.hero-photo {
  position: absolute;
  top: 0;
  left: 60px;
  width: 260px;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  z-index: 3;
  pointer-events: none;
  filter: brightness(1.12) contrast(1.05) saturate(1.1);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}

/* ── H: NAME + TITLE BLOCK with gradient backdrop ── */
.hero-text {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 340px;
  right: 1.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: auto;
  padding: 14px 22px;
  border-radius: 8px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: #2B1D10;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-shadow:
    -2px -1px 3px rgba(0, 0, 0, 0.75),
    2px 1px 6px rgba(212, 168, 75, 0.55);
}

.hero-title {
  font-family: var(--font-sans);
  font-size: 20px;
  color: #A63D2F;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.7),
    0 0 10px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #2B1D10;
  font-style: italic;
  font-weight: 500;
  margin-top: 2px;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.6),
    0 0 8px rgba(0, 0, 0, 0.3);
}

.hero-badge {
  margin-top: 8px;
  display: inline-block;
  border: 1px solid #D4A84B;
  border-radius: 6px;
  padding: 3px 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #D4A84B;
  letter-spacing: 0.06em;
  background: rgba(58, 53, 53, 0.3);
  width: fit-content;
}
