/* ===== 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(23, 18, 15, 0.6), rgba(23, 18, 15, 0.88));
}

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

.hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #dcb945;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 68px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.hero-shine {
  background: linear-gradient(100deg, #ffffff 30%, #f0d98a 45%, #c9a227 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-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: #e8dfd0;
  max-width: 580px;
  margin: 0 auto 40px;
}

.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-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hero-btn-primary {
  background: #c9a227;
  color: #17120f;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.4);
}

.hero-btn-primary:hover {
  background: #ddb941;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(201, 162, 39, 0.55);
}

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

.hero-btn-secondary:hover {
  background: #ffffff;
  color: #17120f;
  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: 58px; }
}

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

@media (max-width: 768px) {
  #hero { min-height: 540px; }
  .hero-eyebrow { font-size: 12.5px; letter-spacing: 0.22em; }
  .hero-title { font-size: 40px; }
  .hero-subtitle { font-size: 16px; margin-bottom: 32px; }
  .hero-btn-primary,
  .hero-btn-secondary { padding: 14px 28px; font-size: 14px; }
}

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