:root {
  --cream: #d8cebd;
  --cream-light: #e3dacb;
  --ink: #173d35;
  --green: #173d35;
  --warm-black: #171711;
  --gold: #a88652;
  --line: rgba(23, 61, 53, 0.38);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  background: var(--cream);
}

.copy-panel {
  min-height: 100vh;
  position: relative;
  padding: 42px 70px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    radial-gradient(circle at 5% 58%,
     rgba(255,255,255,.18), 
     transparent 26%),
    linear-gradient(120deg, var(--cream-light), var(--cream));
}

.copy-panel::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: 10%;
  width: 30%;
  height: 34%;
  opacity: .12;
  filter: blur(12px);
  background:
    radial-gradient(ellipse at center, var(--green) 0 4%, transparent 5%),
    linear-gradient(70deg, transparent 42%, var(--green) 43% 45%, transparent 46%);
  transform: rotate(-12deg);
  pointer-events: none;
}

.brand {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.message {
  width: 100%;
  max-width: 580px;
  text-align: center;
  margin: 34px auto auto;
}

.eyebrow {
  display: none;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(58px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: .025em;
  margin: 0;
  line-height: 0.95;
}

.rule {
  width: 54px;
  height: 1px;
  background: var(--green);
  margin: 32px auto 30px;
}

.intro {
  max-width: 540px;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: .01em;
}

.tagline {
  margin: 28px 0 0;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .30em;
}

.notify {
  width: 100%;
  max-width: 500px;
  margin-top: auto;
  align-self: flex-start;
}

.notify-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .27em;
  margin: 0 0 14px;
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  width: 100%;
  min-height: 52px;
}

.signup input {
  min-width: 0;
  border: 1px solid rgba(23, 61, 53, .20);
  background: rgba(255,255,255,.44);
  color: var(--ink);
  padding: 0 20px;
  outline: none;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
}

.signup input::placeholder {
  color: rgba(23, 61, 53, .58);
  letter-spacing: .14em;
}

.signup input:focus {
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
}

.signup button {
  border: 0;
  background: var(--green);
  color: #f1eadf;
  padding: 0 20px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .14em;
  transition: opacity .2s ease;
}

.signup button:hover {
  opacity: .9;
}

.footer {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 24px 0 0;
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .15em;
  position: relative;
  z-index: 2;
}

.footer a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.footer-rule {
  width: 24px;
  height: 1px;
  background: var(--line);
}

.image-panel {
  min-height: 100vh;
  position: relative;
  background-image: url("assets/hero.webp");
  background-size: cover;
  background-position: 48% center;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31,26,18,.16), transparent 22%),
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.10));
}

.hidden,
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 850px) {
  .coming-soon {
    grid-template-columns: 1fr;
  }

  .copy-panel {
    min-height: auto;
    padding: 38px 24px 36px;
    order: 2;
  }

  .image-panel {
    min-height: 48vw;
    max-height: 520px;
    height: 52vh;
    order: 1;
    background-position: center 45%;
  }

  .brand {
    margin: 0 auto 52px;
  }

  .message {
    margin: 0 auto 54px;
  }

  .notify {
    margin: 0 auto;
  }

  .footer {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .image-panel {
    height: 42vh;
    min-height: 330px;
  }

  .copy-panel {
    padding-inline: 20px;
  }

  .brand {
    max-width: 280px;
    margin-bottom: 42px;
  }

  h1 {
    font-size: 48px;
  }

  .intro {
    font-size: 15px;
    line-height: 1.7;
  }

  .tagline {
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .signup {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .signup input,
  .signup button {
    min-height: 52px;
  }
}
