body {
  min-height: 100vh;
  background: #f6f4ee;
  color: #242628;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.page {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  gap: 26px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0;
}

.hero,
.details,
.footer {
  grid-column: 1 / -1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  min-height: 360px;
  padding: 42px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(24, 72, 86, 0.92), rgba(24, 72, 86, 0.7)),
    repeating-linear-gradient(135deg, #c86f42 0 10px, #e4b25d 10px 20px, #2e8f88 20px 30px);
  color: #ffffff;
}

.hero .eyebrow,
.hero h1,
.hero .summary {
  max-width: 680px;
  color: inherit;
}

.eyebrow,
.time {
  margin: 0 0 10px;
  color: #5d6965;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: #25282a;
  line-height: 1.15;
  font-weight: 800;
}

h1 {
  margin-bottom: 18px;
  font-size: 52px;
  max-width: 760px;
}

h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.summary,
p,
li {
  color: #4a4f51;
  font-size: 17px;
}

.summary {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

p {
  margin: 0 0 16px;
}

p:last-child,
li:last-child {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid #1f645f;
  border-radius: 6px;
  color: #ffffff;
  background: #1f645f;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.button:hover,
.button:focus-visible {
  border-color: #164944;
  background: #164944;
}

.button:focus-visible {
  outline: 3px solid #e4b25d;
  outline-offset: 3px;
}

.hero .button {
  min-width: 210px;
  border-color: #ffffff;
  color: #184856;
  background: #ffffff;
}

.hero .button:hover,
.hero .button:focus-visible {
  color: #ffffff;
  background: transparent;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #d8d3c8;
  border-radius: 8px;
  background: #d8d3c8;
}

.detail {
  padding: 22px 24px;
  background: #ffffff;
}

.detail h2 {
  margin-bottom: 8px;
  color: #687068;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail p {
  color: #25282a;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
}

.section,
.footer {
  padding: 30px;
  border: 1px solid #ded8cf;
  border-radius: 8px;
  background: #ffffff;
}

.section:not(.callout) {
  grid-column: 1;
}

.section h2 {
  padding-bottom: 12px;
  border-bottom: 2px solid #e4b25d;
}

.schedule {
  display: grid;
  gap: 0;
}

.schedule-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  column-gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid #e4e0d8;
}

.schedule-item:first-child {
  padding-top: 6px;
}

.schedule-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.schedule-item .time {
  margin: 2px 0 0;
  color: #1f645f;
}

.schedule-item h3,
.schedule-item p:not(.time) {
  grid-column: 2;
}

.callout {
  grid-column: 2;
  grid-row: 3 / span 2;
  align-self: start;
  position: sticky;
  top: 24px;
  border-color: #1f645f;
  background: #f3fbf8;
}

.callout h2 {
  border-bottom-color: #1f645f;
}

.callout .button {
  width: 100%;
  margin-top: 6px;
}

.page > .section:last-of-type {
  grid-column: 2;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin: 0 0 10px;
  padding-left: 4px;
}

.footer {
  color: #5d5d5d;
  text-align: center;
}

.footer p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
}

@media (max-width: 860px) {
  .page {
    display: block;
    width: min(100% - 28px, 680px);
    padding: 22px 0;
  }

  .hero,
  .details,
  .section,
  .footer {
    margin-bottom: 18px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 30px 24px;
  }

  h1 {
    font-size: 38px;
  }

  .summary {
    font-size: 18px;
  }

  .hero .button {
    width: 100%;
    margin-top: 24px;
  }

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

  .section,
  .footer {
    padding: 24px;
  }

  .callout {
    position: static;
  }
}

@media (max-width: 520px) {
  .page {
    width: min(100% - 20px, 680px);
    padding: 10px 0;
  }

  .hero,
  .details,
  .section,
  .footer {
    border-radius: 6px;
  }

  .hero {
    padding: 24px 20px;
  }

  h1 {
    font-size: 32px;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .schedule-item h3,
  .schedule-item p:not(.time) {
    grid-column: 1;
  }
}
