*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-serif: "Instrument Serif", serif;
  --font-display: "Instrument Serif", serif;
}

body {
  font-family: var(--font-serif);
  color: #000;
  background: #fff;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 9rem;
}

/* ---- header ---- */

header {
  padding: 3rem 1rem 2rem;
}

.site-name {
  font-size: 2rem;
  letter-spacing: 0.01em;
}

/* ---- hero ---- */

.hero {
  position: relative;
  padding: 4rem 1rem 3rem;
  max-width: 50rem;
  margin: 0 auto;
}

.ornament {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.presenting {
  position: relative;
  font-size: 1.625rem;
  margin-bottom: 1.5rem;
}

h1 {
  position: relative;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 2rem;
}

.subtitle {
  position: relative;
  font-size: 1.625rem;
  line-height: 1.55;
}

/* ---- teaser ---- */

.teaser {
  padding: 4rem 1.5rem;
}

.teaser-card {
  max-width: 54rem;
  margin: 0 auto;
  aspect-ratio: 560 / 315;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 18.8px 5px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.teaser-card iframe {
  border-radius: 20px;
}

.teaser-link {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  color: #000;
  text-decoration: underline;
}

/* ---- signup ---- */

.signup {
  padding: 4rem 1.5rem 8rem;
  max-width: 44rem;
  margin: 0 auto;
}

.signup-text {
  font-size: 1.625rem;
  margin-bottom: 1.5rem;
}

.signup-form {
  display: flex;
  gap: 0.75rem;
  max-width: 40rem;
  margin: 0 auto;
}

.signup-form input {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 1.625rem;
  padding: 0.75rem 1rem;
  border: 2px solid #000;
  border-radius: 5px;
  background: transparent;
  outline: none;
}

.signup-form input::placeholder {
  color: #000;
  opacity: 1;
}

.signup-form button {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-style: italic;
  padding: 0.75rem 1.25rem;
  border: 2px solid #000;
  border-radius: 5px;
  background: transparent;
  color: #000;
  cursor: pointer;
}

.h-captcha {
	padding-top: 1rem;
}


/* ---- zine ---- */

.zine {
  padding: 8rem 1.5rem 8rem;
}

.zine-link {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  color: #000;
  text-decoration: underline;
}

a, a:visited {
	color: #000;
}

/* ---- privacy ---- */

.privacy {
  max-width: 38rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  text-align: left;
}

.privacy h1 {
  font-size: 2.5rem;
  font-style: normal;
  text-align: center;
  margin-bottom: 3rem;
}

.privacy h2 {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 400;
  font-style: italic;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.privacy h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.privacy p,
.privacy li {
  font-size: 1.125rem;
  line-height: 1.6;
}

.privacy ul {
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

.privacy li {
  margin-bottom: 0.5rem;
}

/* ---- responsive ---- */

@media (max-width: 640px) {
  .site-name {
    font-size: 1.5rem;
  }

  .presenting {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .subtitle,
  .signup-text,
  .teaser-link,
  .zine-link {
    font-size: 1.25rem;
  }

  .signup-form {
    flex-direction: column;
  }

  .signup-form input,
  .signup-form button {
    font-size: 1.25rem;
  }
}
