:root {
  --cream: #f6f1e7;
  --cream-deep: #e9dfcd;
  --ink: #173f35;
  --ink-soft: #42625a;
  --green: #174d40;
  --green-light: #d6e4c8;
  --orange: #ef6b3b;
  --yellow: #f2bf4f;
  --white: #fffdf8;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.page-shell { overflow: hidden; }
.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 28px 40px;
}
.wordmark {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}
.wordmark img { display: block; height: auto; width: 142px; }
.header-link {
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 4px;
  text-decoration: none;
}
.header-link span { margin-left: 8px; }
.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  margin: 0 auto;
  max-width: 1240px;
  min-height: 690px;
  padding: 76px 40px 96px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 2.2px;
  margin: 0 0 28px;
  text-transform: uppercase;
}
.eyebrow::before {
  background: var(--orange);
  border-radius: 50%;
  content: '';
  height: 8px;
  width: 8px;
}
h1, h2 { font-family: var(--serif); font-weight: 400; }
h1 {
  font-size: clamp(62px, 7vw, 100px);
  letter-spacing: -4px;
  line-height: 0.92;
  margin: 0;
  max-width: 820px;
}
h1 em { color: var(--orange); font-weight: 400; }
.lede {
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
  margin: 38px 0 32px;
  max-width: 570px;
}
.hero-cta {
  align-items: center;
  background: var(--green);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 34px;
  padding: 18px 22px 18px 26px;
  text-decoration: none;
}
.hero-cta span { color: var(--yellow); font-size: 20px; }
.plate-scene { min-height: 500px; position: relative; }
.sun {
  background: var(--yellow);
  border-radius: 50%;
  height: 410px;
  left: 52%;
  position: absolute;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 410px;
}
.plate {
  align-items: center;
  background: var(--white);
  border: 2px solid rgba(23, 63, 53, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 0 32px var(--cream-deep), 0 34px 70px rgba(75, 60, 30, 0.18);
  display: flex;
  height: 300px;
  justify-content: center;
  left: 52%;
  position: absolute;
  top: 47%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 300px;
}
.plate-copy {
  color: var(--green);
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.02;
  text-align: center;
}
.steam {
  border-left: 3px solid rgba(23, 77, 64, 0.42);
  border-radius: 50%;
  height: 76px;
  position: absolute;
  top: 4%;
  width: 35px;
}
.steam-one { left: 45%; transform: rotate(15deg); }
.steam-two { left: 58%; top: 0; transform: rotate(-12deg); }
.leaf {
  background: var(--green);
  border-radius: 80% 12% 80% 12%;
  height: 64px;
  position: absolute;
  width: 34px;
}
.leaf-one { bottom: 7%; left: 9%; transform: rotate(-34deg); }
.leaf-two { right: 6%; top: 12%; transform: rotate(48deg); }
.spice { background: var(--orange); border-radius: 50%; height: 10px; position: absolute; width: 10px; }
.spice-one { bottom: 18%; right: 11%; }
.spice-two { bottom: 13%; right: 18%; height: 7px; width: 7px; }
.spice-three { left: 13%; top: 21%; height: 8px; width: 8px; }
.waitlist-section {
  background: var(--green);
  color: var(--white);
  display: grid;
  gap: 80px;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 112px max(40px, calc((100vw - 1160px) / 2));
}
.eyebrow-light { color: var(--green-light); }
.eyebrow-light::before { background: var(--yellow); }
.waitlist-intro h2 {
  font-size: clamp(52px, 6vw, 82px);
  letter-spacing: -2.5px;
  line-height: 0.96;
  margin: 0 0 28px;
}
.waitlist-intro > p:last-child {
  color: var(--green-light);
  font-size: 17px;
  line-height: 1.65;
  max-width: 430px;
}
.form-card {
  background: var(--white);
  border-radius: 28px;
  color: var(--ink);
  padding: 42px;
}
.field { margin-bottom: 24px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 9px; }
.field input {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid #b7b4aa;
  border-radius: 0;
  color: var(--ink);
  font: 500 18px var(--sans);
  outline: none;
  padding: 8px 0 12px;
  width: 100%;
}
.field input:focus { border-bottom-color: var(--orange); }
.field input[aria-invalid='true'] { border-bottom-color: #b83a2c; }
.phone-field { align-items: center; display: flex; gap: 12px; }
.phone-field span { border-right: 1px solid #d2cec3; font-size: 17px; padding-right: 12px; }
.field-error { color: #a62e22; font-size: 12px; margin: 6px 0 0; min-height: 15px; }
.honeypot { left: -10000px; position: absolute; }
button {
  align-items: center;
  background: var(--orange);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font: 700 16px var(--sans);
  justify-content: space-between;
  margin-top: 8px;
  padding: 18px 23px;
  width: 100%;
}
button:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
button:disabled { cursor: wait; opacity: 0.72; }
.form-notice { color: #6d756f; font-size: 11px; line-height: 1.55; margin: 14px 4px 0; }
.form-status { border-radius: 12px; display: none; font-size: 14px; font-weight: 600; margin-top: 16px; padding: 13px 15px; }
.form-status.is-visible { display: block; }
.form-status-success { background: #e0eedb; color: #205539; }
.form-status-duplicate { background: #fff0c9; color: #6e4a00; }
.form-status-error { background: #fae2de; color: #8b281f; }
footer {
  align-items: center;
  background: #10382f;
  color: var(--green-light);
  display: grid;
  font-size: 12px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 30px max(40px, calc((100vw - 1160px) / 2));
}
.wordmark-footer {
  justify-self: start;
}
.wordmark-footer img { width: 112px; }
footer p:nth-child(2) { text-align: center; }
footer p:last-child { text-align: right; }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 55px; }
  .plate-scene { margin-top: 20px; min-height: 440px; }
  .waitlist-section { gap: 50px; grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .site-header { padding: 22px 20px; }
  .header-link { font-size: 12px; }
  .hero { min-height: auto; padding: 52px 20px 70px; }
  h1 { font-size: clamp(52px, 16vw, 72px); letter-spacing: -2.6px; }
  .lede { font-size: 17px; margin-top: 28px; }
  .plate-scene { min-height: 360px; }
  .sun { height: 300px; width: 300px; }
  .plate { box-shadow: inset 0 0 0 25px var(--cream-deep), 0 28px 55px rgba(75, 60, 30, 0.18); height: 230px; width: 230px; }
  .plate-copy { font-size: 25px; }
  .waitlist-section { padding: 80px 20px; }
  .waitlist-intro h2 { font-size: 54px; }
  .form-card { border-radius: 22px; padding: 28px 22px; }
  footer { gap: 12px; grid-template-columns: 1fr; padding: 30px 20px; text-align: center; }
  .wordmark-footer { justify-self: center; }
  footer p, footer p:nth-child(2), footer p:last-child { margin: 0; text-align: center; }
}
@media (prefers-reduced-motion: no-preference) {
  .plate { animation: float 5s ease-in-out infinite; }
  @keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(-8deg); }
    50% { transform: translate(-50%, calc(-50% - 10px)) rotate(-6deg); }
  }
}
