/* Cluck & Crunch — Coming Soon landing page
   Fixed 4-color palette. Contrast notes:
   - cream-bright / cream text on red is used only for large or bold
     headings/taglines (~4:1, clears WCAG AA "large text" 3:1).
   - small body copy (descriptions, fine print) always sits on ink/cream
     for full 4.5:1+ AA compliance.
   - the brand-specified "cream pill / red text" label is small text at
     ~3.9:1 — an intentional, minor trade-off to match the exact brand
     spec; every other small-text pairing on the page hits full AA. */

:root {
  --crunch-red: #E23A34;
  --crunch-red-deep: #C82D22;
  --cream: #FBF4E4;
  --cream-bright: #FEFCF0;
  --ink: #1A1A1A;

  --font-display: "Titan One", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body.cc-landing {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

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

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

/* ---------- layout bands ---------- */

.band {
  padding: clamp(2.75rem, 8vw, 5rem) 0;
  position: relative;
}

.band--red {
  background-color: var(--crunch-red);
  color: var(--cream-bright);
}

.band--cream {
  background-color: var(--cream);
  color: var(--ink);
}

.wrap {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 960px) {
  .wrap { max-width: 60rem; padding: 0 2.5rem; }
}

/* subtle same-tone checkerboard texture on section backgrounds */
.checker-bg {
  background-image: repeating-conic-gradient(
    var(--checker-tone) 0% 25%,
    transparent 0% 50%
  );
  background-size: 34px 34px;
}

.band--cream.checker-bg { --checker-tone: rgba(26, 26, 26, 0.035); }
.band--red.checker-bg { --checker-tone: rgba(255, 255, 255, 0.06); }

/* bold two-tone checkerboard divider strip, reused at every band edge */
.checker--strip {
  height: 16px;
  background: repeating-conic-gradient(
    var(--cream) 0% 25%,
    var(--crunch-red) 0% 50%
  ) 0 0 / 32px 32px;
}

@media (min-width: 640px) {
  .checker--strip { height: 22px; background-size: 44px 44px; }
}

/* ---------- type ---------- */

.h2, .wordmark {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crunch-red);
  background: var(--cream);
  border: 1.5px solid var(--crunch-red-deep);
  border-radius: 999px;
  padding: 0.45em 1.1em;
  margin: 0 0 1rem;
}

.h2 {
  font-size: clamp(2rem, 6.5vw, 3.4rem);
  margin-bottom: 0.6rem;
}

.section-tagline {
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  max-width: 34rem;
  margin: 0 0 2rem;
}

.band--red .section-tagline,
.band--red .hero__tagline { color: var(--cream-bright); }

.subhead {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin: 2rem 0 0.9rem;
}

/* ---------- hero ---------- */

.hero { text-align: center; overflow: hidden; }

.hero__inner { display: flex; flex-direction: column; align-items: center; }

.wordmark {
  font-size: clamp(3rem, 15vw, 7rem);
  color: var(--cream-bright);
}

.wordmark__amp {
  display: block;
  font-size: 0.5em;
  margin: 0.05em 0;
}

.hero__tagline {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.15rem, 4vw, 1.6rem);
  margin: 0.75rem 0 2.5rem;
}

.starburst {
  position: relative;
  width: clamp(150px, 32vw, 220px);
  aspect-ratio: 1 / 1;
  transform: rotate(-9deg);
}

.starburst__svg {
  width: 100%;
  height: 100%;
  fill: var(--cream);
  filter: drop-shadow(0 6px 0 var(--crunch-red-deep));
}

.starburst__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(0.95rem, 3vw, 1.3rem);
  color: var(--crunch-red-deep);
  line-height: 1.15;
}

/* ---------- chips (Pick your count / Drip Dips) ---------- */

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.chip {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: var(--cream-bright);
  color: var(--crunch-red-deep);
  border: 1.5px solid var(--crunch-red);
  border-radius: 999px;
  padding: 0.55em 1.15em;
}

.band--red .chip {
  background: var(--cream);
  color: var(--crunch-red-deep);
}

/* ---------- menu grid ---------- */

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
}

.menu-item {
  padding: 1.25rem 1.4rem;
  border-radius: 18px;
  background: var(--cream-bright);
}

.band--red .menu-item { background: var(--cream-bright); }

.menu-item__name {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.05rem;
  color: var(--crunch-red-deep);
  margin: 0 0 0.35rem;
}

.menu-item__sub {
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
}

.menu-item__desc {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

/* ---------- signup ---------- */

.signup .section-tagline { margin-bottom: 2rem; }

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 40rem;
}

.signup-form__input {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1em 1.3em;
  border-radius: 999px;
  border: none;
  background: var(--cream-bright);
  color: var(--ink);
}

@media (min-width: 480px) {
  .signup-form { flex-direction: row; }

  .signup-form__input {
    width: auto;
    min-width: 0;
    flex: 3 1 260px;
  }
}

.signup-form__input::placeholder { color: #6b6559; }

.signup-form__btn {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  padding: 0.9em 1.6em;
  border-radius: 999px;
  border: none;
  background: var(--ink);
  color: var(--cream-bright);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.signup-form__btn:hover { transform: translateY(-2px); }

.signup-note {
  margin: 1rem 0 0;
  font-weight: 700;
  min-height: 1.5em;
  color: var(--cream-bright);
}

/* ---------- footer ---------- */

.footer { text-align: center; }

.footer__tagline {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 5vw, 2.1rem);
  color: var(--cream-bright);
  margin: 0 0 1.5rem;
}

.footer__social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.footer__social a {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--cream-bright);
  border-bottom: 2px solid transparent;
}

.footer__social a:hover,
.footer__social a:focus-visible { border-bottom-color: var(--cream-bright); }

.footer__location {
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream-bright);
  margin: 0 0 1.75rem;
}

.footer__fine {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.5em 1.2em;
  margin: 0;
}
