/* Hey Millo — honest-shopfront direction.
   Mobile-first. Palette: paper #FAFAF8, ink #22262B, eucalyptus #146149,
   stamp red #BC4327 (used once, on the receipt stamp). */

:root {
  --paper: #FAFAF8;
  --ink: #22262B;
  --ink-soft: #4C5258;
  --green: #146149;
  --green-deep: #0E4A38;
  --stamp: #BC4327;
  --line: #DDDCD5;
  --receipt-paper: #FFFFFF;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Public Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
}

a { color: var(--green); }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- top bar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: 68rem;
  margin: 0 auto;
}

.wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--green-deep); }
.btn-small { font-size: 0.95rem; padding: 0.55rem 1rem; }

.quiet-link {
  color: var(--ink-soft);
  font-weight: 500;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

/* ---------- hero ---------- */
.hero {
  max-width: 68rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
  display: grid;
  gap: 3rem;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  font-weight: 800;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 34rem;
}
.lede strong { color: var(--ink); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

/* ---------- the receipt (signature element) ---------- */
.receipt {
  position: relative;
  background: var(--receipt-paper);
  font-family: var(--mono);
  max-width: 21rem;
  width: 100%;
  justify-self: center;
  padding: 1.5rem 1.4rem 2.25rem;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(34, 38, 43, 0.08), 0 12px 32px rgba(34, 38, 43, 0.12);
  transform: rotate(-1.2deg);
  /* torn/perforated bottom edge: solid body + zigzag teeth strip */
  -webkit-mask:
    linear-gradient(#000 0 0) top / 100% calc(100% - 10px) no-repeat,
    conic-gradient(from -45deg at bottom, #000 0 90deg, transparent 0) bottom / 20px 10px repeat-x;
          mask:
    linear-gradient(#000 0 0) top / 100% calc(100% - 10px) no-repeat,
    conic-gradient(from -45deg at bottom, #000 0 90deg, transparent 0) bottom / 20px 10px repeat-x;
}

.receipt-head {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin: 0 0 1rem;
}

.receipt-rule {
  border-top: 2px dashed var(--line);
  margin: 0.9rem 0;
}

.receipt-lines { margin: 0; font-size: 0.85rem; }
.receipt-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0;
}
.receipt-lines dt { color: var(--ink-soft); }
.receipt-lines dd { margin: 0; font-weight: 500; }

.receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}
.receipt-total .zero {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--green);
}

.receipt-sub {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin: 0.35rem 0 0;
}

.receipt-stamp {
  display: inline-block;
  margin: 1.1rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--stamp);
  border: 2px solid var(--stamp);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  transform: rotate(-3deg);
  opacity: 0.85;
}

/* ---------- sections ---------- */
.section {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  border-top: 1px solid var(--line);
}

.section h2 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
}

/* job-docket checklist */
.docket {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}
.docket li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2.2rem;
  border-bottom: 1px dashed var(--line);
}
.docket li::before {
  content: "✓";
  position: absolute;
  left: 0.25rem;
  color: var(--green);
  font-family: var(--mono);
  font-weight: 600;
}

/* numbered steps — a real sequence */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3.25rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-weight: 600;
  border-radius: 50%;
}
.steps h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.steps p { margin: 0; color: var(--ink-soft); }

/* FAQ */
details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}
summary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
}
details p { color: var(--ink-soft); }

/* contact + footer */
.contact { text-align: center; }
.contact p { max-width: 30rem; margin-inline: auto; }

.enquiry {
  max-width: 34rem;
  margin: 2rem auto 0;
  text-align: left;
  display: grid;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 1px 2px rgba(34, 38, 43, 0.06), 0 12px 32px rgba(34, 38, 43, 0.08);
}
.enquiry label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
}
.enquiry input,
.enquiry textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
}
.enquiry input:focus,
.enquiry textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 97, 73, 0.15);
}
.enquiry textarea { resize: vertical; }
.enquiry .btn { justify-self: stretch; border: 0; cursor: pointer; }
.honey { position: absolute; left: -9999px; }

.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 1.25rem 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- larger screens ---------- */
@media (min-width: 52rem) {
  .hero {
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
    padding-top: 4rem;
  }
  .receipt { justify-self: end; }

  .enquiry {
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
  }
  .enquiry label:nth-of-type(3),
  .enquiry .btn { grid-column: 1 / -1; }
}
