/* ============================================================
   IZZYSHOP — IZZY AWAKE xerox-zine collage
   NAMED DIRECTION (design-library 2026-07-25):
   "xerox-zine-collage × culture/drop landing"
   Cards read: xerox-zine-collage, ai-slop (anti), landing-page-anatomy,
   pricing-pages-web, liquid-death (voice discipline).
   Compass: mint = sticker OUTLINE only — never fills / large fields.
   ============================================================ */

:root {
  --paper: #ece7db;
  --paper-deep: #e0dac9;
  --ink: #141312;
  --mint: #d9e8cf;
  --tape: rgba(196, 186, 158, 0.55);
  --muted: #6b675f;
  --line: 2px solid var(--ink);
  --pad: clamp(20px, 4vw, 44px);
  --header-h: 56px;
  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --display: "Anton", "Archivo", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { text-transform: uppercase; font-weight: 400; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; text-decoration: underline; text-decoration-thickness: 2px; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.10 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- header (mirrors portfolio) ---------- */

.site-header {
  position: fixed;
  z-index: 60;
  top: 10px;
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 12px;
  height: var(--header-h);
}

.brand {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(22px, 4vw, 30px);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  padding: 0 18px;
  flex: 1 1 auto;
  max-width: 520px;
}

.header-right { display: flex; gap: 10px; }

.btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  display: inline-flex;
  align-items: stretch;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.btn > span { display: flex; align-items: center; padding: 0 14px; }
.btn .btn-arrow { border-left: 2px solid var(--ink); font-size: 16px; }
.btn:hover { background: var(--ink); color: var(--paper); }
.btn-ghost {
  align-items: center;
  padding: 0 14px;
  font-weight: 800;
}
.btn-block { width: 100%; }
.btn-block > span:first-child { flex: 1; justify-content: center; }
.btn-lg { min-height: 56px; font-size: 16px; }

/* ---------- shared collage primitives ---------- */

.chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 2px solid var(--ink);
  padding: 6px 10px;
  background: var(--paper);
}

/* mint = outline / sticker stroke — never a fill field */
.chip--mint {
  box-shadow: 0 0 0 4px var(--mint);
}

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }

.tape {
  position: absolute;
  width: 96px;
  height: 26px;
  background: var(--tape);
  box-shadow: 0 1px 2px rgba(20, 19, 18, 0.15);
  z-index: 2;
  pointer-events: none;
}
.tape-tl { top: -12px; left: -28px; transform: rotate(-8deg); }
.tape-tr { top: -12px; right: -28px; transform: rotate(7deg); }

.site-tape {
  position: absolute;
  top: 14px;
  right: -18px;
  z-index: 3;
  background: var(--tape);
  border: 1px solid rgba(20, 19, 18, 0.25);
  padding: 8px 18px;
  transform: rotate(8deg);
  pointer-events: none;
}
.site-tape-text {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tear {
  position: absolute;
  left: 0;
  right: 0;
  height: 18px;
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 18%, 96% 68%, 91% 25%, 86% 80%, 80% 30%, 74% 92%,
    68% 38%, 61% 75%, 55% 22%, 48% 88%, 42% 34%, 36% 70%, 30% 18%, 24% 82%, 18% 40%,
    12% 92%, 6% 30%, 0 75%);
}
.tear-top { top: -1px; }

.sticker {
  position: absolute;
  width: 88px;
  height: 88px;
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 4px var(--mint);
  background: var(--paper);
  font-family: var(--display);
  font-size: 18px;
  line-height: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
}
.sticker-rot {
  right: 8%;
  bottom: 18%;
  transform: rotate(-12deg);
}
.sticker-sm {
  position: absolute;
  top: -14px;
  right: 16px;
  width: 56px;
  height: 56px;
  font-size: 14px;
  transform: rotate(9deg);
}

.panel {
  position: relative;
  background: var(--paper-deep);
  border: var(--line);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 22px;
}
.panel--taped { overflow: visible; }
.panel--tilt { transform: rotate(-1.2deg); }
.panel--tilt-sm { transform: rotate(0.8deg); }
.panel--ink {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--mint);
}
.panel h3 {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.section-heading {
  font-family: var(--display);
  font-size: clamp(36px, 7vw, 72px);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  line-height: 0.95;
}

.section-note {
  max-width: 36em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 22px;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 48px) var(--pad) 48px;
  overflow: hidden;
}

.hero-eyebrow {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-title {
  position: relative;
  z-index: 5;
  font-family: var(--display);
  font-size: clamp(64px, 15vw, 160px);
  line-height: 0.86;
  letter-spacing: 0;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  max-width: 10ch;
  animation: hero-rise 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes hero-rise {
  from { transform: translateY(10%); opacity: 0; }
  to { transform: none; opacity: 1; }
}

.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: var(--ink);
  pointer-events: none;
}

.scrap {
  position: absolute;
  background: var(--paper-deep);
  box-shadow: 3px 4px 0 rgba(20, 19, 18, 0.2);
  border: 1px solid rgba(20, 19, 18, 0.35);
}

.scrap-map {
  top: 12%;
  right: -2%;
  width: clamp(160px, 28vw, 380px);
  height: clamp(180px, 32vw, 420px);
  transform: rotate(2deg);
  background-image:
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(20,19,18,0.55) 9px 10px),
    repeating-linear-gradient(90deg, transparent 0 13px, rgba(20,19,18,0.55) 13px 14px),
    repeating-linear-gradient(63deg, transparent 0 29px, rgba(20,19,18,0.75) 29px 31px);
  background-color: var(--paper-deep);
}

.scrap-palm {
  left: -2%;
  bottom: 8%;
  width: clamp(120px, 18vw, 220px);
  height: clamp(120px, 18vw, 220px);
  transform: rotate(-6deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.scrap-palm svg { width: 100%; height: 100%; }

.scrap-seal {
  top: 8%;
  left: 6%;
  width: clamp(88px, 14vw, 148px);
  height: auto;
  aspect-ratio: 3 / 4;
  padding: clamp(10px, 1.6vw, 18px);
  transform: rotate(-7deg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border-color: var(--ink);
}

.scrap-seal img {
  width: 100%;
  height: auto;
  display: block;
}

/* pavé glint — same iced seal treatment as the portfolio */
.iced {
  filter:
    contrast(1.1) brightness(1.06) saturate(1.12)
    drop-shadow(-1px 0 0 rgba(76, 243, 255, 0.35))
    drop-shadow(1px 0 0 rgba(255, 61, 207, 0.28))
    drop-shadow(0 0 8px rgba(236, 231, 219, 0.35));
}

.footer-seal {
  display: block;
  width: clamp(56px, 8vw, 88px);
  height: auto;
  margin: 0 auto 22px;
  mix-blend-mode: screen;
  opacity: 0.95;
}

.hero-saturn {
  position: absolute;
  top: 18%;
  left: 48%;
  width: clamp(90px, 14vw, 160px);
  padding: 10px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 4px var(--mint), 3px 4px 0 rgba(20, 19, 18, 0.25);
  transform: rotate(-14deg);
}

.hero-cross {
  position: absolute;
  bottom: 22%;
  right: 28%;
  width: clamp(70px, 10vw, 110px);
  transform: rotate(8deg);
  opacity: 0.9;
}

.hero-caption {
  position: relative;
  z-index: 5;
  margin-top: 28px;
  max-width: 22em;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.45;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 4px var(--mint);
  padding: 14px 16px;
}

/* ---------- intro ---------- */

.intro {
  position: relative;
  padding: 56px var(--pad) 48px;
  border-top: var(--line);
  background: var(--paper);
}

.intro-lede {
  font-family: var(--display);
  font-size: clamp(40px, 8vw, 88px);
  line-height: 0.92;
  margin-bottom: 16px;
}

.intro-note {
  max-width: 40em;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  margin-bottom: 20px;
}

/* ---------- sections ---------- */

.offer,
.packages,
.process,
.cases,
.intake,
.close {
  padding: 48px var(--pad);
  border-top: var(--line);
}

.scrap-grid,
.pkg-row,
.case-row {
  display: grid;
  gap: 18px;
}

.panel ul li,
.pkg ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}
.panel ul li::before,
.pkg ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background: var(--ink);
}
.panel--ink ul li::before { background: var(--paper); }
.panel--ink p { font-weight: 600; max-width: 28em; }

.pkg {
  position: relative;
  background: var(--paper);
  border: var(--line);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pkg--featured {
  box-shadow: 0 0 0 4px var(--mint), 6px 6px 0 var(--ink);
  z-index: 1;
}

.pkg-sku {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
}

.pkg h3 {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
}

.pkg-price { font-weight: 700; }
.pkg-price b {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  margin-right: 6px;
}
.pkg-mo {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.pkg ul { margin: 8px 0 16px; flex: 1; }
.pkg-cta { align-self: stretch; margin-top: auto; }
.pkg-cta > span:first-child { flex: 1; justify-content: center; }

.addons { margin-top: 18px; }
.addons h3 {
  font-family: var(--display);
  font-size: 28px;
  margin-bottom: 12px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.step-n {
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
}

.step h3 {
  font-family: var(--display);
  font-size: 24px;
  margin-bottom: 4px;
}
.step p { font-weight: 600; color: var(--muted); }

.case { display: block; color: inherit; transition: transform 0.15s; }
.case:hover { transform: translate(-2px, -2px); }
.case-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
}
.case h3 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  margin: 6px 0 14px;
}
.case-ba {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}
.case-ba h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.case-ba p { font-weight: 600; }

/* ---------- FAQ ---------- */

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 18px;
  flex: 0 0 auto;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item p {
  padding: 0 18px 18px;
  font-weight: 600;
  max-width: 56ch;
}

/* ---------- intake (quiet transactional surface) ---------- */

.intake {
  position: relative;
  background: var(--paper-deep);
}

.intake-form {
  display: grid;
  gap: 14px;
  background: var(--paper);
}

.intake-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  padding: 12px;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 0;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: 4px solid var(--mint);
  outline-offset: 0;
}

.form-note {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}
.form-note a { text-decoration: underline; }

/* honeypot — invisible to people, magnetic to bots */
.intake-form .hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.intake-done {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 56px);
  line-height: 0.95;
}

/* ---------- self-serve lane ---------- */

.selfserve {
  padding: 48px var(--pad);
  border-top: var(--line);
  position: relative;
}

.selfserve-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.close {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  background: var(--ink);
  color: var(--paper);
}

.close-lede {
  font-family: var(--display);
  font-size: clamp(40px, 9vw, 88px);
  line-height: 0.92;
}

.close .btn {
  background: var(--paper);
  color: var(--ink);
}
.close .btn:hover {
  background: var(--mint);
  color: var(--ink);
}

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

.footer {
  position: relative;
  padding: 48px var(--pad) 32px;
  border-top: var(--line);
  background: var(--paper);
}

.footer-cols {
  display: grid;
  gap: 24px;
  margin-bottom: 36px;
}

.footer-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-col a,
.footer-plain {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-col a:hover { text-decoration: underline; }

.footer-mark {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  border-top: var(--line);
  padding-top: 24px;
}

.footer-wordmark {
  font-family: var(--display);
  font-size: clamp(48px, 12vw, 96px);
  line-height: 0.88;
}

.footer-desc {
  font-family: var(--display);
  font-size: clamp(22px, 4vw, 36px);
  line-height: 0.95;
  text-align: right;
}

.cube-below { position: relative; z-index: 2; }

@media (min-width: 800px) {
  .scrap-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .pkg-row { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .case-row { grid-template-columns: 1fr 1fr; }
  .case-ba { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .intake-form { grid-template-columns: 1fr 1fr; }
  .intake-form .full,
  .intake-form .btn-block { grid-column: 1 / -1; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .btn-ghost { display: none; }
  .hero-saturn,
  .hero-cross { opacity: 0.35; }
  .scrap-map { width: 140px; height: 160px; }
  .scrap-seal { width: 72px; left: 2%; top: 10%; padding: 8px; }
  .panel--tilt,
  .panel--tilt-sm { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-title { animation: none; }
  .case:hover { transform: none; }
}
