*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #ffeef4;
  color: #2b1e33;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 2px solid #f3c1d2;
  background-color: #fff7fb;
}

.brand {
  display: flex;
  flex-direction: column;
}

.site-title {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.site-subtitle {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9d6c84;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5d4052;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #bf3f7f;
  border-color: #bf3f7f;
}

.nav-link.is-active {
  border-color: #2b1e33;
  color: #2b1e33;
}

.site-main {
  flex: 1;
  padding: 2rem 1.75rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-banner {
  max-width: 1100px;
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.hero-banner-image {
  width: 100%;
  display: block;
}

.hero,
.hero-cta,
.intro,
.lineup-table-wrapper,
.feature,
.why,
.contact {
  max-width: 900px;
  width: 100%;
  background-color: #ffffff;
  padding: 2rem 2.25rem;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
}

.hero p,
.intro p,
.feature p,
.why p,
.contact p {
  line-height: 1.6;
  font-size: 1rem;
  margin: 0 0 1rem;
}

.hero-cta h2,
.intro h1,
.feature h2,
.why h1,
.contact h1 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-cta p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.hero-cta {
  text-align: left;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  background-color: #bf3f7f;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  background-color: #9c315f;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(191, 63, 127, 0.35);
}

/* Lineup table */

.lineup-table-wrapper {
  overflow-x: auto;
}

.lineup-label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7d5568;
  margin: 0 0 0.5rem;
}

.lineup-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  border: 2px solid #2b1e33;
  background-color: #ffffff;
}

.lineup-table th,
.lineup-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid #f3c1d2;
}

.lineup-table thead {
  border-bottom: 2px solid #f3c1d2;
}

.lineup-table th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #7d5568;
}

.lineup-table td:first-child {
  width: 3rem;
  text-align: center;
  font-weight: 600;
}

.lineup-table tbody tr:nth-child(-n+9) td {
  background-color: #fffdfc;
}

.lineup-table tbody tr:nth-child(n+10) td {
  background-color: #fff7fb;
}

.lineup-table tbody tr:nth-child(10) td {
  border-top: 2px dashed #bf3f7f;
}

.lineup-table tbody tr:last-child td {
  border-bottom: none;
}

.lineup-link {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #5d4052;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
}

.lineup-link:hover,
.lineup-link:focus-visible {
  color: #bf3f7f;
  text-decoration-style: solid;
}

/* Contact form */

.contact-form {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7d5568;
}

.form-field input,
.form-field textarea {
  border-radius: 10px;
  border: 1px solid #f3c1d2;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid #bf3f7f;
  border-color: #bf3f7f;
}

/* Modals */

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 50;
}

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

.modal-dialog {
  position: relative;
  max-width: 480px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.modal h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.modal p {
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.modal-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #7d5568;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: #bf3f7f;
}

.modal-btn {
  margin-top: 0.25rem;
}

/* Responsive tweaks */

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-main {
    padding: 1.5rem 1rem 2.25rem;
  }

  .hero-banner {
    margin-bottom: 1.25rem;
  }

  .hero,
  .hero-cta,
  .intro,
  .lineup-table-wrapper,
  .feature,
  .why,
  .contact {
    padding: 1.5rem 1.25rem;
  }

  .modal-dialog {
    padding: 1.5rem 1.25rem 1.25rem;
  }
}


.site-logo {
  display: block;
  margin-right: 1rem;
}
.site-logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
  transition: opacity 0.2s ease;
}
.site-logo:hover img,
.site-logo:focus-visible img {
  opacity: 0.8;
}


.lineup-note {
  font-size: 0.9rem;
  font-style: italic;
  color: #7d5568;
  margin-top: -0.25rem;
  margin-bottom: 1rem;
}
