* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Georgia', serif;
  color: #f6f0e8;
  background: #210f05;
  line-height: 1.4;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translateX(-50%);
  z-index: 3;
  width: min(90%, 760px);
  margin: 0;
}

.hero-content.top-title {
  top: 12%;
}

.hero-content.bottom-info {
  bottom: 18%;
  text-align: center;
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  font-size: 2.1rem;
  color: #8e715d;
  opacity: .9;
  animation: float 1.6s ease-in-out infinite;
}

.subheading {
  margin: 0 0 0.4rem;
  letter-spacing: .32em;
  font-size: 0.92rem;
  color: #b9a08f;
  text-transform: uppercase;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(255,255,255,0.64);
}

.hero h1 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 12vw, 6.2rem);
  padding-top: 6rem;
  margin: 2rem 0 1rem;
  color: #d9bea8;
  font-weight: 400;
  letter-spacing: .03em;
  text-shadow: 0 4px 10px rgba(255,255,255,0.72);
}

.date {
  margin: 1rem 0 1rem;
  font-size: 1.1rem;
  color: #b89a7a;
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  text-shadow: 0 2px 9px rgba(255,255,255,0.72);
}


.actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.btn, .btn-secondary {
  text-decoration: none;
  color: #f9f6f1;
  border: 1px solid #e0d6c8;
  padding: .7rem 1.1rem;
  border-radius: 99px;
  font-size: .92rem;
  letter-spacing: .05em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover, .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}


@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.countdown-section {
  text-align: center;
  padding: 3rem 1.2rem 1.2rem;
  background: linear-gradient(180deg, #1c0f06 0%, #1a0d04 100%);
}

.countdown-section .small {
  letter-spacing: .25em;
  color: #b8a88f;
  margin: 0;
  font-size: .95rem;
}

.countdown-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: .4rem 0 1.8rem;
  color: #f7f1e9;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.countdown div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 1.2rem .5rem;
}

.countdown span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #f8f4ea;
}

.countdown small {
  font-size: .74rem;
  color: #d5c8b3;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.details {
  padding: 1.5rem 1rem 2.3rem;
  max-width: 1020px;
  margin: 0 auto;
}

.details h2 {
  font-size: 3rem;
  margin: 0;
  color: #f6efe4;
  text-align: center;
}

.details p {
  color: #d8ccb5;
  text-align: center;
  margin-top: .35rem;
  font-size: 1.07rem;
}

.card {
  margin-top: 1.7rem;
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(5,2,0,.5);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: inset 0 0 80px rgba(0,0,0,.25), 0 8px 30px rgba(0,0,0,.35);
}

.location-card h3 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.6rem;
  color: #faefe2;
}

.location-card p {
  margin: .15rem 0;
  color: #dbd0bd;
}

.map-wrap {
  margin: 1rem 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
}

.action-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  border-color: #b09f87;
  color: #fef9f0;
  background: rgba(24,18,14,.35);
}

audio {
  width: min(420px, 90%);
  margin: 2rem auto 1.8rem;
  display: block;
  outline: none;
  opacity: .95;
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2.5rem; }
  .date { font-size: .95rem; }
  .actions { gap: .6rem; }
}
