@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700;800&family=Schoolbell&display=swap");

:root {
  --cream: #fff7ea;
  --ink: #151515;
  --yellow: #ffd84d;
  --coral: #ff6b8a;
  --blue: #6ec8ff;
  --green: #7be27a;
  --violet: #8b5cf6;
  --white: #ffffff;
  --line: 2px solid var(--ink);
  --shadow: 7px 7px 0 var(--ink);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Bricolage Grotesque", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

body::selection {
  background: var(--yellow);
  color: var(--ink);
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(255, 247, 234, 0.88);
  border-bottom: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  font-family: "Schoolbell", cursive;
  font-size: 26px;
  line-height: 1;
}

.brand-name {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  font-weight: 700;
}

.nav a,
.header-cta,
.text-link {
  text-decoration: none;
}

.nav a {
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus-visible {
  border-bottom-color: var(--ink);
}

.header-cta {
  min-width: max-content;
  padding: 10px 16px;
  border: var(--line);
  border-radius: var(--radius);
  background: var(--yellow);
  font-weight: 800;
}

.section-band,
.section {
  padding: clamp(54px, 8vw, 100px) clamp(16px, 4vw, 48px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  background:
    linear-gradient(90deg, rgba(255, 216, 77, 0.42), rgba(255, 247, 234, 0) 42%),
    var(--cream);
}

.hero-copy,
.section-heading,
.form-copy {
  max-width: 760px;
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: var(--line);
  border-radius: 999px;
  background: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 92px;
  line-height: 0.92;
  font-weight: 800;
}

h1 span:not(:last-child)::after {
  content: " ";
}

h2 {
  margin-bottom: 18px;
  font-size: 58px;
  line-height: 0.98;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.05;
}

.hero-lead,
.section-heading p,
.form-copy p {
  max-width: 650px;
  font-size: 23px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 30px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-secondary {
  background: var(--yellow);
  color: var(--ink);
}

.text-link {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li,
.chips span {
  padding: 9px 12px;
  border: var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  min-width: 0;
}

.floating-sticker,
.form-sticker {
  position: absolute;
  z-index: 2;
  padding: 12px 18px;
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: "Schoolbell", cursive;
  font-size: 26px;
  line-height: 1;
  transform: rotate(-4deg);
}

.sticker-yellow {
  right: 6%;
  top: 16px;
  background: var(--yellow);
}

.visual-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  align-items: center;
  padding-top: 74px;
}

.process-tile {
  min-height: 230px;
  padding: 16px;
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.photo-tile {
  transform: rotate(-3deg);
}

.sketch-tile {
  grid-column: 3;
  transform: rotate(3deg);
  background: var(--yellow);
}

.merch-tile {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(72%, 330px);
  background: var(--blue);
  transform: rotate(-1deg);
}

.tile-label {
  display: block;
  margin-bottom: 12px;
  font-family: "Schoolbell", cursive;
  font-size: 24px;
}

.photo-frame {
  display: grid;
  place-items: center;
  min-height: 168px;
  border: var(--line);
  background: var(--coral);
}

.portrait-shape {
  width: 78px;
  height: 78px;
  border: var(--line);
  border-radius: 45% 55% 50% 50%;
  background: var(--cream);
}

.portrait-lines {
  display: grid;
  gap: 7px;
  width: 86px;
  margin-left: 12px;
}

.portrait-lines span {
  display: block;
  height: 8px;
  border: var(--line);
  background: var(--white);
}

.hand-arrow {
  font-family: "Schoolbell", cursive;
  font-size: 48px;
  font-weight: 400;
}

.sketch-line,
.stitch-dash,
.embroidery,
.embroidery-detail,
.hoodie-hood,
.hoodie-pocket {
  fill: none;
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stitch-dash {
  stroke-dasharray: 6 8;
}

.hoodie-body {
  fill: var(--white);
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linejoin: round;
}

.embroidery {
  fill: var(--green);
}

.visual-note {
  max-width: 350px;
  margin: 22px auto 0;
  font-weight: 800;
  text-align: center;
}

.marquee {
  overflow: hidden;
  border-top: var(--line);
  border-bottom: var(--line);
  background: var(--ink);
  color: var(--cream);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 14px 0;
  animation: marquee 28s linear infinite;
}

.marquee span {
  font-family: "Schoolbell", cursive;
  font-size: 40px;
  white-space: nowrap;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
}

.section-examples,
.section-photo,
.section-form {
  max-width: none;
}

.section-examples {
  background: var(--blue);
}

.section-examples > *,
.section-photo > *,
.section-form > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.section-steps {
  text-align: center;
}

.section-steps .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.result-grid,
.steps-grid,
.photo-rules {
  display: grid;
  gap: 18px;
}

.result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-card,
.step,
.rule-list,
.faq-list details,
.application-form,
.example-card {
  border: var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.result-card,
.step,
.rule-list,
.example-card {
  padding: 22px;
}

.card-number,
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: var(--line);
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 800;
}

.example-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding: 10px 4px 12px;
  scroll-snap-type: x mandatory;
}

.example-card {
  min-height: 330px;
  scroll-snap-align: start;
  transition: transform 180ms ease;
}

.example-card:hover {
  transform: rotate(-1deg) translateY(-4px);
}

.example-pink {
  background: var(--coral);
}

.example-blue {
  background: var(--white);
}

.example-yellow {
  background: var(--yellow);
}

.example-green {
  background: var(--green);
}

.example-visual {
  display: grid;
  place-items: center;
  min-height: 150px;
  margin-bottom: 20px;
  border: var(--line);
  background: var(--cream);
}

.shape-pet {
  width: 78px;
  height: 88px;
  border: var(--line);
  border-radius: 46% 54% 50% 50%;
  background: var(--white);
  box-shadow: 18px -22px 0 -8px var(--yellow), -18px -22px 0 -8px var(--yellow);
}

.shape-car {
  width: 130px;
  height: 54px;
  border: var(--line);
  border-radius: 40px 40px 14px 14px;
  background: var(--blue);
  box-shadow: 26px 38px 0 -16px var(--ink), -26px 38px 0 -16px var(--ink);
}

.quote-visual {
  padding: 20px;
  font-family: "Schoolbell", cursive;
  font-size: 34px;
  line-height: 0.95;
  text-align: center;
}

.gift-visual span {
  width: 98px;
  height: 88px;
  border: var(--line);
  background:
    linear-gradient(90deg, transparent 42%, var(--ink) 42% 46%, transparent 46%),
    linear-gradient(0deg, transparent 42%, var(--ink) 42% 46%, transparent 46%),
    var(--yellow);
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 28px;
  text-align: left;
}

.step:nth-child(1) {
  background: var(--yellow);
}

.step:nth-child(2) {
  background: var(--green);
}

.step:nth-child(3) {
  background: var(--blue);
}

.step:nth-child(4) {
  background: var(--coral);
}

.section-photo {
  background: var(--yellow);
}

.photo-rules {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rule-good {
  background: var(--green);
}

.rule-bad {
  background: var(--coral);
}

.rule-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  font-weight: 700;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-faq {
  max-width: 960px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 21px;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
  font-size: 18px;
}

.section-form {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  background: var(--green);
}

.form-copy {
  position: sticky;
  top: 110px;
}

.form-sticker {
  position: static;
  display: inline-block;
  margin-top: 24px;
  background: var(--coral);
  transform: rotate(3deg);
}

.application-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 32px);
}

.application-form label,
.application-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
}

.application-form span,
.application-form legend {
  font-weight: 800;
}

.application-form fieldset {
  padding: 0;
  border: 0;
}

.application-form input,
.application-form textarea,
.application-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
}

.application-form textarea {
  resize: vertical;
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.segmented label {
  cursor: pointer;
}

.segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 10px;
  border: var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  text-align: center;
}

.segmented input:checked + span {
  background: var(--yellow);
  box-shadow: inset 0 0 0 3px var(--ink);
}

.file-field small {
  font-size: 14px;
  font-weight: 700;
}

.optional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-line,
.form-success {
  margin: 0;
  font-weight: 800;
}

.form-success {
  padding: 14px;
  border: var(--line);
  border-radius: var(--radius);
  background: var(--green);
}

.form-success.is-error {
  background: var(--coral);
}

.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 800;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-sticky-cta.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .hero,
  .section-form {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-stage {
    grid-template-columns: 1fr;
  }

  .sketch-tile,
  .merch-tile {
    grid-column: auto;
    width: auto;
  }

  .hand-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .result-grid,
  .steps-grid,
  .photo-rules {
    grid-template-columns: 1fr 1fr;
  }

  .form-copy {
    position: static;
  }

  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 48px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    gap: 12px;
  }

  .hero {
    display: block;
  }

  .hero-copy {
    width: min(340px, calc(100vw - 32px));
    max-width: min(340px, calc(100vw - 32px));
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
  }

  h1 {
    font-size: 38px;
    line-height: 1;
  }

  h1 span {
    display: block;
  }

  h1 span::after {
    content: "" !important;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 24px;
  }

  .hero-lead,
  .section-heading p,
  .form-copy p {
    font-size: 18px;
  }

  .marquee span {
    font-size: 28px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    text-align: center;
  }

  .proof-list li {
    width: 100%;
  }

  .floating-sticker {
    right: 0;
    top: 0;
    font-size: 22px;
  }

  .visual-stage {
    padding-top: 68px;
  }

  .result-grid,
  .steps-grid,
  .photo-rules,
  .optional-grid,
  .segmented {
    grid-template-columns: 1fr;
  }

  .example-row {
    display: flex;
    margin-right: -16px;
    padding-right: 16px;
  }

  .example-card {
    flex: 0 0 min(82vw, 320px);
  }

  .section-band,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    transform: none;
  }
}
