/* ─────────────────────────────────────────
   hero.css — Header & Hero section
   Fazenda dos Pinheiros
───────────────────────────────────────── */

header {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 60px var(--space-md);
  position: relative;
}

/* ── Hero grid ── */
.hero {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

/* ── Image column ── */
.hero-visual {
  position: relative;
}

.hero-img-frame {
  border-radius: var(--radius-md) var(--radius-md) 60px var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(181, 134, 42, 0.2),
    0 40px 80px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-img-frame img {
  width: 100%;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}

/* Vignette on image */
.hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(14, 18, 9, 0.45) 100%);
  pointer-events: none;
}

/* Gold corner accent */
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-md) 0;
  opacity: 0.45;
  pointer-events: none;
}

/* ── Content column ── */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-content .eyebrow {
  margin-bottom: 20px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

h1 em {
  font-style: italic;
  color: var(--sage);
  display: block;
}

.hero-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 28px 0;
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 16px;
}

.hero-claim {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(181, 134, 42, 0.10);
  border: 1px solid var(--border-gold-mid);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 40px;
}

.hero-claim::before {
  content: '✦';
  font-size: 0.8rem;
  flex-shrink: 0;
}

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

/* ── Trust bar ── */
.trust-bar {
  background: var(--surface-trust);
  border-top:    1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
  padding: 20px var(--space-md);
}

.trust-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-item span {
  color: var(--amber);
  font-size: 1rem;
  line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content { order: -1; }
}

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .btn-primary,
  .btn-ghost  { justify-content: center; }
  .trust-inner { gap: 20px; }
}
