@font-face {
  font-family: Outfit;
  src: url("/outfit.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Nunito;
  src: url("/nunito.ttf") format("truetype");
  font-display: swap;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: #253c36;
  background: #eee5d4;
  font-family: Nunito, sans-serif;
}
body:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 920px;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(241, 233, 214, 0.97) 0%,
      rgba(241, 233, 214, 0.88) 37%,
      rgba(241, 233, 214, 0.1) 76%
    ),
    url("/workshop.jpg") center / cover no-repeat;
}
header,
main,
footer {
  width: min(1320px, 90%);
  margin: auto;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}
.brand {
  font:
    600 31px Outfit,
    sans-serif;
  letter-spacing: -1.4px;
  text-decoration: none;
}
.brand span {
  font-weight: 350;
}
.brand i {
  color: #23655e;
  font-style: normal;
}
.event-link {
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid #7a9687;
  padding: 8px 0;
}
a {
  color: inherit;
}
a:focus-visible {
  outline: 3px solid #23655e;
  outline-offset: 5px;
}
.intro {
  padding: 72px 0 100px;
  max-width: 790px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2.3px;
  color: #28635c;
  margin-bottom: 28px;
}
h1 {
  font:
    600 clamp(48px, 5.8vw, 82px) / 1.05 Outfit,
    sans-serif;
  letter-spacing: -2.8px;
  margin: 0 0 30px;
}
h1 em {
  font-style: normal;
  color: #23655e;
}
.lead {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.6;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  margin-top: 26px;
  background: #245f57;
  color: #fff6e5;
  padding: 17px 22px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}
.button svg {
  width: 36px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}
.caption {
  font-size: 13px;
  color: #52665d;
  margin-top: 12px;
}
.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding: 34px 38px;
  background: rgba(248, 243, 232, 0.87);
  border: 1px solid rgba(110, 117, 91, 0.23);
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
article {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}
article svg {
  width: 44px;
  height: 54px;
  flex-shrink: 0;
  fill: none;
  stroke: #28635c;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
h2 {
  font:
    500 26px Outfit,
    sans-serif;
  margin: 0 0 10px;
}
h2 span {
  font-size: 16px;
  font-weight: 350;
  color: #55675b;
}
article p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 35px 0;
  font-size: 13px;
  color: #52665d;
}
@media (max-width: 700px) {
  body:before {
    height: 740px;
    background:
      linear-gradient(
        180deg,
        rgba(241, 233, 214, 0.95),
        rgba(241, 233, 214, 0.82) 65%,
        rgba(241, 233, 214, 0.35)
      ),
      url("/workshop.jpg") 65% center / cover;
  }
  .brand {
    font-size: 26px;
  }
  .event-link {
    font-size: 12px;
  }
  .intro {
    padding: 42px 0 70px;
  }
  h1 {
    letter-spacing: -1.7px;
  }
  .paths {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 26px 22px;
  }
  article {
    gap: 18px;
  }
  .button {
    gap: 12px;
    font-size: 14px;
  }
  footer {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
}
