/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--honey-dark);
}

.hero-sub {
  font-family: 'EB Garamond', serif;
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 420px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  background: var(--honey);
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--honey-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 154, 42, 0.35);
}

.btn-secondary {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  background: transparent;
  color: var(--warm-brown);
  border: 1px solid var(--beige-dark);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--honey);
  color: var(--honey-dark);
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 50%, #DDB96A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative honeycomb SVG art */
.hero-art {
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fadeIn 1.4s ease 0.6s forwards;
}

.hero-badge {
  position: absolute;
  bottom: 3rem;
  left: -1.5rem;
  background: var(--cream);
  border: 1px solid var(--beige-dark);
  padding: 1.2rem 1.5rem;
  max-width: 200px;
  box-shadow: 0 12px 40px rgba(122, 92, 46, 0.12);
  animation: fadeUp 1s ease 1.1s both;
  opacity: 0;
}

.badge-label {
  font-family: 'EB Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 0.3rem;
}

.badge-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.4;
}
