:root {
  --forest: #154212;
  --orange: #fd8a3e;
  --deep-blue: #003e50;
  --wood: #9a4600;
  --sunny: #c2ba22;
  --paper: #fffaf0;
  --sky: #e9f6f6;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 62, 80, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--deep-blue);
  font-family: "Poppins", Arial, sans-serif;
  background:
    radial-gradient(circle at 16% 14%, rgba(194, 186, 34, 0.24), transparent 28%),
    linear-gradient(180deg, var(--sky) 0%, var(--paper) 72%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: stretch;
  min-height: 440px;
  padding: 36px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.78);
  border: 3px solid rgba(21, 66, 18, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.eyebrow,
.card-label {
  margin: 0 0 10px;
  color: var(--wood);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Passion One", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.7rem, 10vw, 7.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.lead {
  max-width: 650px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(253, 138, 62, 0.42);
  outline-offset: 3px;
}

.button--primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 12px 26px rgba(21, 66, 18, 0.24);
}

.button--secondary {
  color: var(--deep-blue);
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(154, 70, 0, 0.2);
}

.logo-panel {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 26px;
  border-radius: 8px;
  background: transparent;
}

.logo-panel img {
  display: block;
  width: min(100%, 380px);
  height: auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.info-card {
  min-width: 0;
  padding: 24px;
  border: 2px solid rgba(21, 66, 18, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(0, 62, 80, 0.09);
}

.info-card--wide,
.opening-card,
.helper-card {
  grid-column: span 2;
}

.info-card p {
  margin: 14px 0 0;
  line-height: 1.65;
}

.info-card p + p {
  margin-top: 4px;
}

.times-list {
  margin-top: 14px;
}

.times-list p {
  margin: 0;
}

.times-list strong {
  display: inline-block;
  min-width: 96px;
  color: var(--forest);
}

.event-card {
  background: rgba(253, 138, 62, 0.16);
}

.helper-card {
  background: rgba(194, 186, 34, 0.18);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--wood);
  font-weight: 700;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  transition: transform 160ms ease;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .logo-panel {
    min-height: 300px;
  }

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

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 22px, 1120px);
    padding: 12px 0;
  }

  .hero {
    gap: 24px;
    min-height: auto;
    padding: 24px 18px;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5.1rem);
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card--wide,
  .opening-card,
  .helper-card {
    grid-column: auto;
  }

  .logo-panel {
    min-height: 260px;
  }

  .logo-panel img {
    width: min(100%, 300px);
  }
}
