:root {
  color-scheme: light;
  --ink: #1d2522;
  --muted: #66716c;
  --paper: #fffaf1;
  --moss: #263f35;
  --moss-deep: #142720;
  --sun: #f0b85b;
  --coral: #d9795d;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 112px clamp(20px, 6vw, 84px) 76px;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 30, 25, 0.88), rgba(14, 30, 25, 0.44) 52%, rgba(14, 30, 25, 0.2)),
    linear-gradient(0deg, rgba(14, 30, 25, 0.54), rgba(14, 30, 25, 0.06) 48%, rgba(14, 30, 25, 0.38));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p,
span {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.28;
}

.event-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.event-notes span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.photo-credit {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 6vw, 84px);
  bottom: 18px;
  max-width: min(420px, calc(100% - 40px));
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: right;
}

.photo-credit a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.coming-soon {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) clamp(20px, 6vw, 84px);
}

.coming-soon h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.coming-soon p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.intake-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 18px;
  border: 1px solid var(--moss);
  border-radius: 6px;
  color: #fff;
  background: var(--moss);
  font-weight: 850;
  text-decoration: none;
}

.intake-link:hover {
  background: var(--moss-deep);
}

@media (max-width: 680px) {
  .hero {
    min-height: 90vh;
    padding-top: 92px;
  }

  h1 {
    font-size: clamp(3.45rem, 19vw, 5.5rem);
  }

  .event-notes span {
    width: 100%;
  }

  .intake-link {
    width: 100%;
  }

  .photo-credit {
    right: 20px;
    left: 20px;
    text-align: left;
  }
}
