.home .site-header,
.home .site-footer {
  display: none;
}

.home .site-main {
  padding: 0;
}

.event-landing {
  min-height: 100vh;
  background: #1b1f23;
  color: #cbbfa6;
}

.event-landing__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  min-height: 100vh;
}

.event-landing__media {
  position: relative;
  min-height: 50vh;
  background-color: #0b3d2e;
  background-size: cover;
  background-position: center;
}

.event-landing__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 61, 46, 0.1) 55%, #0b3d2e 100%);
}

.event-landing__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  min-width: 0;
  width: 100%;
  padding: clamp(2rem, 4vw, 4.25rem) clamp(1.25rem, 3vw, 3rem);
  background: #0b3d2e;
  border-left: 4px solid #2f7d5b;
}

.event-landing__title {
  margin: 0;
  max-width: none;
  width: 100%;
  color: #cbbfa6;
  font-size: clamp(1.3rem, 1.9vw, 2.15rem);
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

.event-landing__details {
  display: grid;
  gap: 0.8rem;
}

.event-landing__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.94rem;
}

.event-landing__item strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  background: #cbbfa6;
  color: #145a3a;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.event-landing__address {
  margin: -0.25rem 0 0 72px;
  color: rgba(203, 191, 166, 0.84);
  font-size: 0.8rem;
}

.event-landing__speaker {
  padding: 1rem 1.1rem;
  border-left: 3px solid #cbbfa6;
  border-radius: 6px;
  background: #145a3a;
}

.event-landing__speaker h2 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1rem;
}

.event-landing__speaker p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  line-height: 1.5;
}

.event-landing__speaker-description {
  margin-top: 0.55rem !important;
  color: rgba(203, 191, 166, 0.95) !important;
  font-size: 0.8rem !important;
}

.event-landing__price {
  padding: 0.75rem 0;
  border-top: 1px solid #2f7d5b;
  border-bottom: 1px solid #2f7d5b;
  font-size: 1.05rem;
  font-weight: 700;
}

.event-landing__price span {
  color: #fff;
  font-size: 1.4rem;
}

.event-registration-form {
  width: 100%;
  border-radius: 10px;
  background: rgba(20, 90, 58, 0.92);
  padding: 1.1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  max-width: none;
}

.event-registration-form h2 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
}

.event-registration-form__message {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid #cbbfa6;
  border-radius: 6px;
  background: rgba(27, 31, 35, 0.55);
  color: #fff;
}

.event-registration-form__grid {
  display: grid;
  gap: 0.75rem;
}

.event-registration-form__full {
  grid-column: 1 / -1;
}

.event-registration-form__field label {
  display: block;
  margin-bottom: 0.4rem;
  color: #fff;
  font-size: 0.83rem;
  font-weight: 600;
}

.event-registration-form__field input,
.event-registration-form__field textarea,
.event-registration-form__field select {
  width: 100%;
  border: 1px solid rgba(203, 191, 166, 0.45);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  color: #1b1f23;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.92rem;
}

.event-registration-form__field textarea {
  min-height: 90px;
  resize: vertical;
}

.event-registration-form__notice {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  line-height: 1.5;
}

.event-registration-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: #cbbfa6;
  color: #0b3d2e;
  padding: 0.82rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.event-registration-form__submit:hover,
.event-registration-form__submit:focus {
  background: #fff;
  color: #1b1f23;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .event-landing__grid {
    grid-template-columns: 1fr;
  }

  .event-landing__content {
    padding: 2.25rem 1.25rem;
    border-left: 0;
    border-top: 4px solid #2f7d5b;
  }

  .event-landing__media {
    min-height: 38vh;
  }

  .event-landing__media::after {
    background: linear-gradient(to bottom, rgba(11, 61, 46, 0.1) 45%, #0b3d2e 100%);
  }

  .event-registration-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .event-landing__title {
    font-size: 1.7rem;
  }

  .event-landing__address {
    margin-left: 0;
  }

  .event-landing__item {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .event-registration-form__grid {
    grid-template-columns: 1fr;
  }
}
