
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f4fb;
  color: #26163a;
}
a { text-decoration: none; color: inherit; }

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header.navbar {
  background: #26163a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.navbar nav a {
  margin-left: 1.25rem;
  font-size: 0.9rem;
  opacity: 0.9;
}
.navbar nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  height: 75vh;
  max-height: 640px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
}
.hero-overlay h1 {
  font-size: 2.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero-overlay h2 {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
.hero-overlay p {
  margin-top: 0.35rem;
  font-size: 0.95rem;
}
.hero-overlay .pill {
  margin-top: 1.25rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.main {
  flex: 1;
  padding: 2.5rem 1.5rem 3rem;
}
.section {
  max-width: 900px;
  margin: 0 auto 2.25rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(37, 11, 66, 0.08);
  padding: 2rem 1.75rem;
}
.section h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.section p {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.section.gold-strip {
  background: linear-gradient(135deg, #6d37b6, #f0c75e);
  color: #fff;
}
.section.gold-strip h2 {
  margin-bottom: 0.25rem;
}
.section.gold-strip p {
  margin-bottom: 0.25rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
}
.count-box {
  text-align: center;
}
.count-box .num {
  font-size: 1.4rem;
  font-weight: 600;
}
.count-box .label {
  font-size: 0.75rem;
  opacity: 0.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.gallery img {
  width: 260px;
  max-width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.two-col img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.chip {
  border-radius: 999px;
  border: 1px solid rgba(38, 22, 58, 0.2);
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  background: #f7f4fb;
}

.timeline {
  margin-top: 1rem;
}
.timeline-item {
  margin-bottom: 0.85rem;
}
.timeline-item strong {
  display: block;
  font-size: 0.96rem;
}
.timeline-item span {
  font-size: 0.9rem;
}

.registry-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.registry-buttons a {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid #6d37b6;
  color: #fff;
  background: #6d37b6;
}
.registry-buttons a.secondary {
  background: #f0c75e;
  border-color: #f0c75e;
  color: #26163a;
}

.footer {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(38,22,58,0.7);
  padding: 1rem 1.5rem 1.75rem;
}

@media (max-width: 768px) {
  .navbar nav {
    display: none;
  }
  .hero-overlay h1 {
    font-size: 2rem;
    letter-spacing: 0.18em;
  }
  .hero-overlay h2 {
    font-size: 1rem;
  }
  .main {
    padding: 1.75rem 1rem 2.25rem;
  }
  .section {
    padding: 1.5rem 1.25rem;
  }
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
}
