:root {
  --green: #0d493b;
  --mauve: #6f3657;
  --cream: #f7f2e8;
  --ink: #173f35;
  --gold: #b79b5b;
  --sage: #c9cbb4;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--cream);
  color: var(--ink);
}
body {
  font-family: Georgia, "Times New Roman", serif;
}
.coming-soon {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 52% 48%;
  overflow: hidden;
}
.copy-panel {
  position: relative;
  padding: 4.2vh 6vw 2.8vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(
    circle at 30% 30%,
    #fffdf7 0,
    #f7f2e8 56%,
    #eee6d6 100%
  );
}
.brand {
  text-align: center;
  max-width: 640px;
}
.leaf-mark {
  height: 55px;
  display: flex;
  justify-content: center;
  gap: 3px;
  align-items: flex-end;
  margin-bottom: 4px;
}
.leaf-mark span {
  display: block;
  width: 34px;
  height: 48px;
  border-radius: 90% 0 90% 0;
  transform: rotate(-20deg);
  background: var(--mauve);
}
.leaf-mark span + span {
  transform: scaleX(-1) rotate(-20deg);
  background: var(--green);
}
.brand-name {
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  letter-spacing: 0.015em;
  color: var(--green);
}
.brand-line {
  font:
    600 0.72rem/1.65 Arial,
    sans-serif;
  letter-spacing: 0.28em;
  color: var(--green);
}
.intro {
  max-width: 680px;
  margin: auto 0;
  padding: 3vh 0;
}
.eyebrow {
  font:
    600 clamp(0.65rem, 0.85vw, 0.86rem)/1.5 Arial,
    sans-serif;
  letter-spacing: 0.22em;
}
.eyebrow i {
  font-style: normal;
  padding: 0 0.45rem;
}
h1 {
  margin: 3vh 0 1.4vh;
  font-size: clamp(3.2rem, 6.1vw, 7.3rem);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: 0.035em;
  color: var(--mauve);
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 4rem);
  line-height: 1.05;
  font-weight: 400;
  color: var(--green);
}
.rule {
  width: 84px;
  height: 4px;
  background: var(--mauve);
  margin: 2.6vh 0;
}
.description {
  font-size: clamp(1.1rem, 1.45vw, 1.55rem);
  line-height: 1.35;
  max-width: 650px;
}
.notify-copy {
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  margin: 3vh 0 1.4vh;
}
.signup {
  display: flex;
  width: min(100%, 620px);
  border: 1.5px solid var(--green);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}
.signup input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 1rem 1.5rem;
  font:
    1rem Georgia,
    serif;
  color: var(--ink);
}
.signup button {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: white;
  padding: 0.9rem 2.3rem;
  font:
    1.15rem Georgia,
    serif;
  cursor: pointer;
}
.signup button:hover {
  filter: brightness(1.08);
}
.form-note {
  font:
    1rem/1.4 Arial,
    sans-serif;
  color: #5c6b66;
}
.form-note a,
footer a {
  color: inherit;
}
footer {
  border-top: 1px solid rgba(13, 73, 59, 0.35);
  padding-top: 2vh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  font:
    clamp(0.68rem, 0.78vw, 0.82rem)/1.45 Arial,
    sans-serif;
}
.image-panel {
  position: relative;
  min-height: 100vh;
  background: #ddd;
}
.image-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 73, 59, 0.08),
    transparent 35%,
    rgba(0, 0, 0, 0.08)
  );
}
.script {
  position: absolute;
  top: 6%;
  right: 7%;
  margin: 0;
  color: white;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  font:
    italic clamp(1.8rem, 3.1vw, 3.8rem)/0.92 Georgia,
    serif;
  transform: rotate(-4deg);
}
.image-label {
  position: absolute;
  right: 5%;
  bottom: 4%;
  margin: 0;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(13, 73, 59, 0.72);
  color: white;
  font:
    600 0.68rem Arial,
    sans-serif;
  letter-spacing: 0.2em;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 900px) {
  .coming-soon {
    grid-template-columns: 1fr;
  }
  .copy-panel {
    padding: 2.2rem 1.5rem;
  }
  .brand {
    margin: auto;
  }
  .intro {
    text-align: center;
    margin: 2.5rem auto;
  }
  .rule {
    margin: 1.5rem auto;
  }
  .description {
    margin-left: auto;
    margin-right: auto;
  }
  .signup {
    margin: auto;
  }
  .image-panel {
    min-height: 48vh;
    order: -1;
  }
  .image-panel > img {
    object-position: center 52%;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
  .script {
    font-size: 2.3rem;
  }
}
@media (max-width: 520px) {
  .image-panel {
    min-height: 40vh;
  }
  .copy-panel {
    padding: 1.7rem 1rem;
  }
  .leaf-mark {
    height: 42px;
  }
  .leaf-mark span {
    width: 27px;
    height: 37px;
  }
  .brand-line {
    font-size: 0.58rem;
  }
  .eyebrow {
    font-size: 0.58rem;
  }
  .eyebrow i {
    padding: 0 0.18rem;
  }
  h1 {
    font-size: 3.15rem;
  }
  .signup {
    display: grid;
    border-radius: 22px;
    border: 0;
    background: transparent;
    gap: 0.55rem;
  }
  .signup input {
    border: 1.5px solid var(--green);
    border-radius: 999px;
    background: white;
  }
  .signup button {
    width: 100%;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .script {
    top: 8%;
    font-size: 1.8rem;
  }
  .image-label {
    font-size: 0.55rem;
  }
}
