/* ===== Hero ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(62, 31, 0, 0.55), rgba(62, 31, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
  color: #ffffff;
}

.hero-eyebrow {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e6cfa3;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 76px;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

.hero-shine {
  background: linear-gradient(100deg, #ffffff 30%, #f5e2bd 45%, #c8a96e 55%, #ffffff 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heroShine 5s linear infinite;
}

@keyframes heroShine {
  to { background-position: 200% center; }
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #f3ece0;
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hero-btn-primary {
  background: #c8a96e;
  color: #3e1f00;
  box-shadow: 0 10px 28px rgba(200, 169, 110, 0.4);
}

.hero-btn-primary:hover {
  background: #d8bd87;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(200, 169, 110, 0.55);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

.hero-btn-secondary:hover {
  background: #ffffff;
  color: #3e1f00;
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; transform: none; }
  .hero-shine { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1280px) {
  .hero-title { font-size: 66px; }
}

@media (max-width: 1024px) {
  .hero-title { font-size: 56px; }
  .hero-subtitle { font-size: 18px; }
}

@media (max-width: 768px) {
  #hero { min-height: 520px; }
  .hero-eyebrow { font-size: 13px; letter-spacing: 0.2em; }
  .hero-title { font-size: 44px; }
  .hero-subtitle { font-size: 16px; margin-bottom: 28px; }
  .hero-btn-primary,
  .hero-btn-secondary { padding: 14px 28px; font-size: 15px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 15px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-btn-primary,
  .hero-btn-secondary { justify-content: center; }
}
