/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 72px;
  padding: 80px 72px 64px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* Subtle decorative orb behind content */
#hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -180px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg {
  position: relative;
  z-index: 1;
  order: 2;
  align-self: center;
  display: flex;
  align-items: center;
}

.hero-grain { display: none; }

.hero-content { 
  position: relative;
  z-index: 2;
  max-width: 100%;
  text-align: left;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pill-bg); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 500; color: var(--text);
  letter-spacing: 0.5px; margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
  align-self: flex-start;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  flex-shrink: 0;
}
.hero-badge-new { display: none; }

/* ── Title ── */
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 4.8vw, 80px);
  font-weight: 300; line-height: 1.06;
  color: var(--dark); letter-spacing: -2px;
  animation: fadeUp 0.8s ease 0.1s both;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--accent); }

/* ── Subtitle ── */
.hero-sub {
  margin-bottom: 0;
  font-size: 16px; font-weight: 300;
  color: var(--muted); line-height: 1.8;
  max-width: 440px;
  animation: fadeUp 0.8s ease 0.2s both;
}

/* unused feature list */
.hero-features { display: none; }
.hero-feature-item { display: none; }
.hero-feature-icon { display: none; }

/* ── CTA actions ── */
.hero-actions {
  margin-top: 32px;
  display: flex; 
  gap: 14px; 
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  padding: 15px 36px; border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  text-decoration: none; cursor: pointer; border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 28px rgba(160,120,64,0.38);
}
.btn-primary:hover { background: #d4b077; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(160,120,64,0.45); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 15px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  text-decoration: none; cursor: pointer;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, background 0.2s, color 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(201,169,110,0.07); color: var(--accent-dark); transform: translateY(-2px); }

/* unused social proof / stats */
.hero-social-proof { display: none; }
.hero-avatars { display: none; }
.hero-proof-text { display: none; }
.hero-stats { display: none; }

/* ── Trust pills ── */
.hero-trust {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s ease 0.4s both;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.trust-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.trust-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-pill {
  background: var(--pill-bg); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 100px;
  font-size: 12.5px; color: var(--text); font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.trust-pill:hover { border-color: var(--accent-light); background: rgba(201,169,110,0.06); }
