:root {
  --bg: #4A1418;
  --bg-deep: #3A0F12;
  --gold: #C9A961;
  --gold-soft: #B8975A;
  --gold-bright: #E0C275;
  --gold-dim: rgba(201, 169, 97, 0.4);
  --text: #E8D9B8;
  --text-soft: #B8A584;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}

.hero-slides { position: absolute; inset: 0; z-index: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 12s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(58, 15, 18, 0.55) 0%,
      rgba(58, 15, 18, 0.35) 30%,
      rgba(58, 15, 18, 0.55) 70%,
      rgba(58, 15, 18, 0.85) 100%);
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(58, 15, 18, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 480px;
  text-align: center;
  animation: fadeUp 1.2s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: 240px;
  max-width: 75vw;
  height: auto;
  color: var(--gold);
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold-bright);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 36px;
  width: 80%;
  max-width: 240px;
}

.hero-divider::before, .hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-dim);
}

.hero-divider span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.cta-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 360px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px;
  background: rgba(74, 20, 24, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold-dim);
  color: var(--text);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(201, 169, 97, 0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta:hover::before, .cta:active::before { transform: translateX(100%); }

.cta:hover, .cta:active {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(74, 20, 24, 0.7);
  transform: translateY(-1px);
}

.cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: color 0.3s ease;
}

.cta-label { flex: 1; text-align: left; }

.cta-arrow {
  width: 14px;
  height: 14px;
  color: var(--gold);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.cta:hover .cta-arrow, .cta:active .cta-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.cta.primary {
  background: rgba(201, 169, 97, 0.15);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.cta.primary .cta-icon, .cta.primary .cta-arrow {
  color: var(--gold-bright);
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.open { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--bg);
  border: 1px solid var(--gold-dim);
  width: 100%;
  max-width: 360px;
  padding: 32px 24px 24px;
  text-align: center;
  position: relative;
  animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.modal-close:hover, .modal-close:active { background: rgba(201, 169, 97, 0.12); }

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-soft);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.modal-options { display: flex; flex-direction: column; gap: 12px; }

.modal-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid var(--gold-dim);
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.modal-option:hover, .modal-option:active {
  background: rgba(201, 169, 97, 0.18);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.modal-option-icon { width: 18px; height: 18px; color: var(--gold); }

.modal-number {
  margin-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px 24px 28px;
  background: var(--bg-deep);
}

.footer-text {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--text-soft);
  text-transform: uppercase;
  opacity: 0.7;
}

.footer-text a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.footer-text a:hover { border-bottom-color: var(--gold-soft); }

.hero-indicators {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(232, 217, 184, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .hero-logo { width: 300px; }
  .hero-tagline { font-size: 16px; }
  .cta-list { max-width: 420px; }
  .cta { padding: 18px 26px; font-size: 13px; }
}

@media (min-width: 1024px) {
  .hero-content { max-width: 520px; }
  .hero-logo { width: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.active { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
