:root {
  --ink: #202326;
  --muted: #59636d;
  --panel: #ffffff;
  --accent: #037c9d;
  --accent-dark: #1644da;
  --field: #ededed;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.55;
  background: #f4f0ec;
}

a {
  color: var(--accent);
}

.landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 36px 18px;
  background:
    linear-gradient(rgba(255, 255, 255, .78), rgba(255, 255, 255, .78)),
    url("/assets/photography-background.jpg") center / cover;
}

.signup-panel {
  width: min(100%, 540px);
  padding: 40px 28px 44px;
  text-align: center;
  background: var(--panel);
  box-shadow: 0 2px 18px rgba(0, 0, 0, .3);
}

.feature-image {
  width: min(100%, 450px);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: inset 0 0 18px rgba(0, 0, 0, .3);
}

h1 {
  margin: 24px 0 16px;
  font-size: clamp(2rem, 6vw, 2.55rem);
  line-height: 1.15;
  font-weight: 700;
}

p {
  margin: 0 0 16px;
}

.quiet {
  color: var(--muted);
}

.notify-form {
  display: grid;
  gap: 12px;
  max-width: 450px;
  margin: 34px auto 0;
  text-align: left;
}

.notify-form label {
  font-size: .88rem;
  font-weight: 700;
}

.notify-form input {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 20px 22px;
  color: #000;
  background: var(--field);
  font: inherit;
}

.notify-form button {
  justify-self: start;
  margin-top: 4px;
  border: 0;
  border-radius: 0;
  padding: 12px 22px;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
}

.notify-form button:hover {
  background: var(--accent-dark);
}

.form-note,
.small-link {
  font-size: .9rem;
}

.content-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 18px;
  background:
    linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)),
    url("/assets/photography-background.jpg") center / cover;
}

.content-page article {
  width: min(100%, 760px);
  padding: 38px 30px 42px;
  background: #fff;
  box-shadow: 0 2px 18px rgba(0, 0, 0, .22);
}

.eyebrow {
  margin-bottom: 12px;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 560px) {
  .signup-panel,
  .content-page article {
    padding: 28px 20px 32px;
  }

  .notify-form button {
    width: 100%;
  }
}
