:root {
  --black: #050505;
  --cream: #fff4e6;
  --muted: rgba(255, 244, 230, .72);
  --red: #7f181d;
  --line: rgba(255, 244, 230, .2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background: var(--black);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
}

a {
  color: inherit;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(12px, calc((100vw - 1240px) / 2));
  background: linear-gradient(180deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, 0));
}

.brand {
  text-decoration: none;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}

.logo-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .5));
}

.topbar nav {
  display: flex;
  gap: 8px;
}

.topbar nav a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 244, 230, .18);
  border-radius: 999px;
  background: rgba(0, 0, 0, .18);
  color: var(--cream);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-image {
  display: block;
  width: 100%;
  margin: 0;
  background: var(--black);
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.over-section,
.schedule,
.contact {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: 88px;
}

.intro,
.over-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.label {
  margin: 0 0 14px;
  color: rgba(255, 244, 230, .58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: .98;
  letter-spacing: 0;
}

.intro p:last-child,
.over-heading p:last-child,
.contact-box p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.over-heading p:last-child {
  color: var(--cream);
  font-size: clamp(21px, 2.2vw, 28px);
}

.story-text p {
  margin: 18px 0 0;
  color: var(--cream);
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.55;
}

.over-heading strong,
.story-text strong {
  color: var(--cream);
  font-size: 1.08em;
}

.contact {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: start;
  border-top: 1px solid rgba(255, 244, 230, .12);
}

.over-section {
  border-top: 1px solid rgba(255, 244, 230, .12);
}

.over-story {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.story-text {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.story-text p:first-child {
  margin-top: 0;
}

.story-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .38);
}

.story-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-card {
  grid-column: 1 / span 5;
}

.image-large {
  grid-column: 8 / span 4;
  height: 300px;
  transform: translate(-4px, -34px);
}

.over-story > .story-text:nth-of-type(2) {
  grid-column: 2 / span 5;
}

.image-small {
  grid-column: 8 / span 3;
  height: 260px;
  transform: translate(28px, 4px);
}

.image-round {
  grid-column: 1 / span 3;
  height: 260px;
  border-radius: 50%;
  box-shadow: none;
  overflow: visible;
  transform: translate(28px, -8px) rotate(-4deg);
}

.image-round img {
  object-fit: contain;
}

.story-text.right {
  grid-column: 6 / span 6;
}

.story-text.wide {
  grid-column: 1 / span 7;
}

.image-wide {
  grid-column: 9 / span 3;
  height: 210px;
  transform: translate(-10px, 18px) rotate(2.5deg);
}

.schedule {
  border-top: 1px solid rgba(255, 244, 230, .12);
  border-bottom: 1px solid rgba(255, 244, 230, .12);
}

.cards,
.schedule-list {
  display: grid;
  gap: 14px;
}

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

.schedule-list {
  grid-template-columns: 1fr;
}

.cards article,
.contact-box {
  padding: 24px;
  border: 1px solid rgba(255, 244, 230, .14);
  border-radius: 8px;
  background: rgba(255, 244, 230, .055);
}

.schedule-list article {
  padding: 20px 22px;
  border: 1px solid rgba(255, 244, 230, .14);
  border-radius: 8px;
  background: rgba(255, 244, 230, .055);
}

.schedule-list article {
  display: grid;
  grid-template-columns: minmax(150px, .65fr) minmax(170px, .75fr) minmax(240px, 1.4fr);
  gap: 22px;
  align-items: center;
}

.day {
  color: var(--cream);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 950;
  line-height: 1;
}

.time {
  color: var(--cream);
  font-size: clamp(21px, 2.6vw, 30px);
  font-weight: 900;
  line-height: 1;
}

.location {
  display: grid;
  gap: 6px;
}

.location strong {
  color: var(--cream);
  font-size: 19px;
}

.location span {
  color: var(--muted);
  font-size: 16px;
}

h3 {
  margin: 0;
  color: var(--cream);
  font-size: 28px;
  line-height: 1.05;
}

.cards b {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--red);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.contact-box {
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 244, 230, .2);
  border-radius: 8px;
  padding: 13px 14px;
  color: #111;
  background: #fff;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 244, 230, .58);
}

.contact-form button {
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--cream);
  background: var(--red);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.contact-box .mail-link {
  justify-self: start;
  display: inline;
  width: auto;
  margin: 0;
  padding: 0;
  border-radius: 0;
  color: var(--cream);
  background: transparent;
  font-size: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-box .mail-note {
  margin: 0;
  color: var(--cream);
  font-size: 18px;
  line-height: 1.45;
}

@media (max-width: 950px) {
  .topbar {
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    align-items: flex-start;
  }

  .topbar nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .scroll-cue {
    display: none;
  }

  .schedule-list article,
  .cards,
  .contact {
    grid-template-columns: 1fr;
  }

  .over-story {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .intro-card {
    grid-column: 1 / span 4;
  }

  .image-large {
    grid-column: 4 / span 3;
    height: 210px;
    transform: translate(4px, -18px);
  }

  .over-story > .story-text:nth-of-type(2) {
    grid-column: 1 / span 4;
  }

  .image-small {
    grid-column: 4 / span 3;
    height: 210px;
    transform: translate(10px, 2px);
  }

  .image-round {
    grid-column: 1 / span 3;
    height: 220px;
    border-radius: 50%;
    transform: translate(18px, -6px) rotate(-4deg);
  }

  .story-text.right {
    grid-column: 3 / span 4;
  }

  .story-text.wide {
    grid-column: 1 / span 4;
  }

  .image-wide {
    grid-column: 5 / span 2;
    height: 150px;
    transform: translate(-8px, 14px) rotate(2.5deg);
  }

  .story-image img {
    object-fit: contain;
  }

  .image-large img,
  .image-small img,
  .image-wide img {
    background: rgba(255, 244, 230, .04);
  }
}

@media (max-width: 620px) {
  .over-story {
    grid-template-columns: 1fr;
  }

  .intro-card,
  .image-large,
  .over-story > .story-text:nth-of-type(2),
  .image-small,
  .image-round,
  .story-text.right,
  .story-text.wide,
  .image-wide {
    grid-column: auto;
    transform: none;
  }

  .image-large,
  .image-small,
  .image-round,
  .image-wide {
    width: min(360px, 82%);
    height: auto;
    justify-self: center;
    border-radius: 8px;
  }

  .image-round {
    border-radius: 50%;
  }
}

@media (max-width: 560px) {
  .logo-link {
    width: 48px;
    height: 48px;
  }

  .topbar nav a {
    padding: 7px 9px;
    font-size: 12px;
  }

  .over-section,
  .schedule,
  .contact {
    width: calc(100% - 28px);
    padding: 68px 0;
  }

  .intro p:last-child,
  .over-heading p:last-child,
  .story-text p,
  .cards p,
  .contact-box p {
    font-size: 18px;
  }
}
