/* Tuesday Sites — style.css (v3)
   Cobalt on paper. One typeface. WhatsApp green is the only other colour.
*/

:root {
  --blue: #1B3FE0;
  --blue-deep: #1230B3;
  --paper: #F5F4EE;
  --ink: #101215;
  --ink-soft: #4A4F58;
  --line: #D6D6CF;
  --wa: #25D366;
  --wa-deep: #1DA851;

  --display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --font: "Figtree", "Helvetica Neue", Arial, sans-serif;
  --max: 1040px;
  --pad: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 19px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; }
h1 {
  font-family: var(--display);
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 96, "wdth" 90;
  color: var(--blue);
}
h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin-bottom: 0.5em;
}
h3 {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.4em;
}

p { margin: 0 0 1em; max-width: 56ch; }
a { color: var(--blue); }
a:focus-visible, summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

/* Header */
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.wordmark {
  font-family: var(--display);
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.wordmark span { color: var(--blue); }
.top-link {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ink);
}
.top-link:hover { color: var(--blue); border-color: var(--blue); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 100ms ease, background-color 120ms ease;
}
.btn-wa { background: var(--wa); color: #0B2A17; }
.btn-wa:hover { background: var(--wa-deep); color: #fff; transform: translateY(-1px); }

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px var(--pad) 96px;
}
.lede {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 500;
  margin: 28px 0 36px;
  max-width: 24ch;
}
.fineprint { font-size: 0.95rem; color: var(--ink-soft); margin-top: 16px; }

/* What you get — blue block, short lines */
.get {
  background: var(--blue);
  color: #fff;
  padding: 80px 0;
}
.get h2, .get ul {
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
  padding-left: var(--pad); padding-right: var(--pad);
}
.tiles {
  list-style: none;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.tiles li {
  font-size: 1.15rem;
  line-height: 1.3;
  padding: 24px 24px 24px 0;
  border-top: 2px solid rgba(255,255,255,.35);
  margin-right: 24px;
}
.tiles strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

/* How it works — the numbers are the section */
.how {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px var(--pad) 72px;
}
.steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.steps li {
  display: grid;
  grid-template-columns: minmax(96px, 1.4em) 1fr;
  gap: 40px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 2px solid var(--ink);
}
.steps li:first-child { border-top: 2px solid var(--ink); }
.num {
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 96, "wdth" 80;
}
.step-text {
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.step-text br + * , .step-text::after { content: none; }
.how-note {
  margin-top: 28px;
  font-size: 1.2rem;
  color: var(--ink-soft);
}

/* Why not DIY */
.why {
  background: #E7EAF9;
  padding: 80px 0 88px;
  margin: 24px 0 88px;
}
.why .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.why-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
  margin-top: 24px;
}
.why h2.quote {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--ink-soft);
  margin: 0 0 6px;
  text-indent: -0.4em; /* hangs the opening quote so the C lines up with the Y below */
}
.yes {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  font-variation-settings: "opsz" 96, "wdth" 85;
}
.why-lede { font-size: 1.15rem; color: var(--ink-soft); }
.why-cols h3 { color: var(--blue); }
.why-cols p { font-size: 1.05rem; color: var(--ink-soft); margin: 0; }

/* Who */
.who {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 88px;
}
.who p { font-size: 1.15rem; }

/* FAQ */
.faq {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 88px;
}
.faq details { border-top: 2px solid var(--ink); }
.faq details:last-of-type { border-bottom: 2px solid var(--ink); }
.faq summary {
  cursor: pointer;
  padding: 18px 44px 18px 0;
  font-size: 1.2rem;
  font-weight: 600;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); padding-bottom: 18px; margin: 0; }

/* Close */
.close {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 120px;
}
.close h2 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--blue);
  font-size: clamp(3rem, 9vw, 6rem);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 96, "wdth" 90;
}
.close .btn { margin-top: 8px; }

/* Footer */
.foot {
  border-top: 2px solid var(--ink);
  padding: 24px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--wa);
  color: #0B2A17;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(0,0,0,.35);
  transition: background-color 120ms ease;
  z-index: 10;
}
.wa-float:hover { background: var(--wa-deep); color: #fff; }

/* Mobile */
@media (max-width: 760px) {
  body { font-size: 18px; }
  .hero { padding-top: 32px; padding-bottom: 72px; }
  .tiles { grid-template-columns: 1fr; }
  .tiles li { margin-right: 0; padding-right: 0; }
  .why-cols { grid-template-columns: 1fr; }
  .steps li { grid-template-columns: 64px 1fr; gap: 20px; }
  .top-link { display: none; }
  .foot { flex-direction: column; gap: 6px; }
  .close { padding-bottom: 140px; }
}
