/* ============================================================
   chalk it. — brand stylesheet
   Palette:
     Accent  Neon green  #7ED321
     Ink     Near-black  #2B2A26
     Chalk   Off-white   #F4F1EA
     Kraft   Tan         #D8D3C6
     White               #FFFFFF
   ============================================================ */

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #7ed321;
  --ink: #2b2a26;
  --chalk: #f4f1ea;
  --kraft: #d8d3c6;
  --white: #ffffff;

  --font-sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--chalk);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100dvh;
}

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Layout ---------- */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

main {
  flex: 1;
}

/* ---------- Header / Nav ---------- */
.site-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}

.wordmark .stop {
  color: var(--green);
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.5;
}

.hero__headline {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero__headline .stop {
  color: var(--green);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--ink);
  opacity: 0.72;
  max-width: 38ch;
  line-height: 1.65;
}

.hero__cta {
  display: inline-block;
  background: var(--green);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.01em;
  width: fit-content;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hero__graphic {
  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 0;
  pointer-events: none;
  opacity: 0.4;

  position: absolute;
  right: 3.75em;

  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  filter: saturate(0.6);
}

.handprint-wrap {
  color: var(--kraft);
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(43, 42, 38, 0.1));
}

.handprint-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

.handprint-wrap .chalk-hand {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Teaser strip ---------- */
.teaser {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 2rem;
}

.teaser__tagline {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 20ch;
  margin: 0 auto;
}

.teaser__tagline .highlight {
  color: var(--green);
}

/* ---------- Interest form ---------- */
.interest {
  max-width: 660px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.interest__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.interest__body {
  font-size: 1rem;
  opacity: 0.68;
  max-width: 44ch;
  line-height: 1.65;
}

/* Form card */
.eoi-form {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(43, 42, 38, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--chalk);
  border: 1.5px solid var(--kraft);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(126, 211, 33, 0.18);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select {
  background-image: url("assets/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--ink);
  opacity: 0.5;
  text-align: center;
  line-height: 1.5;
}

.btn-submit {
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  letter-spacing: 0.01em;
  width: 100%;
}

.btn-submit:hover,
.btn-submit:focus-visible {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-submit:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.form-success .success-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.form-success p {
  font-size: 1rem;
  opacity: 0.75;
}

.form-success strong {
  font-size: 1.15rem;
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--kraft);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-wordmark {
  font-size: 1.7rem;
  font-weight: 700;
  font-family: "fraunces";
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.footer-wordmark .stop {
  color: var(--green);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.45;
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 3rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero__text {
    align-items: flex-start;
    position: relative;
    z-index: 1;
  }

  .hero__sub {
    max-width: 100%;
  }

  .hero__graphic {
    position: absolute;
    top: 0.35rem;
    right: 2.75em;
    transform: translateX(50%);
    width: min(360px, 96vw);
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    filter: saturate(0.2) brightness(1.2) contrast(1.1);
  }

  .handprint-wrap {
    width: 100%;
    filter: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    padding: 1.25rem 1.5rem;
  }

  .site-footer {
    justify-content: center;
    text-align: center;
  }
}

@font-face {
  font-family: "fraunces";
  font-style: italic;
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/fraunces/v10/6NUs8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9mvIiQublWIIkfg.woff2")
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}
@font-face {
  font-family: "fraunces";
  font-style: normal;
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/fraunces/v10/6NUu8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib14c0qv8oRcTnaIM.woff2")
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}
@font-face {
  font-family: "fraunces";
  font-style: normal;
  font-weight: 400;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/fraunces/v10/6NUu8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib14c0qv8oRcTnaIM.woff2")
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}
@font-face {
  font-family: "fraunces";
  font-style: italic;
  font-weight: 400;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/fraunces/v10/6NUs8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9mvMiQublWIIkfg.woff2")
    format("woff2");
  unicode-range:
    U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
@font-face {
  font-family: "fraunces";
  font-style: italic;
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/fraunces/v10/6NUs8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9mvMiQublWIIkfg.woff2")
    format("woff2");
  unicode-range:
    U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
@font-face {
  font-family: "fraunces";
  font-style: normal;
  font-weight: 700;
  src: url("./assets/6NUu8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib14c1qv8oRcTnaIM.woff2")
    format("woff2");
  unicode-range:
    U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
@font-face {
  font-family: "fraunces";
  font-style: normal;
  font-weight: 400;
  src: url("./assets/6NUu8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib14c7qv8oRcTn.woff2")
    format("woff2");
  unicode-range:
    U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
@font-face {
  font-family: "fraunces";
  font-style: italic;
  font-weight: 400;
  src: url("./assets/6NUs8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9mv0iQublWII.woff2")
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "fraunces";
  font-style: italic;
  font-weight: 700;
  src: url("./assets/6NUs8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9mv0iQublWII.woff2")
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "fraunces";
  font-style: normal;
  font-weight: 700;
  src: url("./assets/6NUu8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib14c7qv8oRcTn.woff2")
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "fraunces";
  font-style: normal;
  font-weight: 400;
  src: url("./assets/6NUu8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib14c7qv8oRcTn.woff2")
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
  font-display: swap;
}
