/* Shared styles for the Need Go Home SEO landing pages.
   Mirrors the main app's warm palette, Manrope typography, and door logo. */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --orange: #e76b3c;
  --orange-dark: #b94724;
  --peach: #fff0e6;
  --cream: #fff7ef;
  --ink: #2f2622;
  --muted: #6d5d55;
  --card: #fffefa;
  --border: #ecddd2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: radial-gradient(circle at 50% 6%, #fff 0, transparent 32%), var(--cream);
  color: var(--ink);
  font-family: Manrope, system-ui, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange-dark); }
a:focus-visible,
button:focus-visible {
  outline: 3px solid #e76b3c66;
  outline-offset: 2px;
  border-radius: 6px;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 6vw;
  background: #fff9f2e8;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f0dfd3;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.door-logo {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 12px;
}
.door-logo i {
  position: absolute;
  right: 9px;
  bottom: 8px;
  width: 17px;
  height: 21px;
  border: 4px solid #fff;
  border-bottom: 0;
}
.topbar .cta-small {
  font-weight: 700;
  font-size: 14px;
  color: var(--orange-dark);
  text-decoration: none;
  white-space: nowrap;
}
.topbar .cta-small:hover { text-decoration: underline; }

/* Layout */
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 22px 8px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  margin: 0 0 12px;
}
h1 {
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.lead { font-size: 19px; color: var(--muted); margin: 0 0 12px; }
h2 {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 36px 0 12px;
}
p { margin: 0 0 14px; }

/* Example message cards */
.examples { display: grid; gap: 14px; margin: 8px 0 8px; }
.msg {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px -22px #5e342440;
}
.msg .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--peach);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}
.msg p { margin: 0; color: #394036; }

/* CTA */
.cta-wrap { margin: 30px 0 8px; text-align: center; }
.cta-button {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 26px -6px #e76b3c66;
  transition: background 0.18s, transform 0.18s;
}
.cta-button:hover { background: var(--orange-dark); transform: translateY(-2px); }
.cta-note { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* FAQ */
.faq h3 { font-size: 17px; margin: 18px 0 4px; }
.faq p { color: var(--muted); }

/* Policy note */
.policy {
  font-size: 14px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 24px 0;
}

/* Related links */
.related { margin: 28px 0; }
.related ul { margin: 8px 0 0; padding-left: 20px; }
.related li { margin: 6px 0; }

/* Footer */
footer {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}
footer nav { display: flex; flex-wrap: wrap; gap: 16px; }
footer a { color: var(--muted); text-decoration: none; font-weight: 600; }
footer a:hover { text-decoration: underline; }
.kofi { color: var(--orange-dark); }

@media (max-width: 600px) {
  main { padding-top: 28px; }
  .lead { font-size: 17px; }
  h2 { font-size: 20px; }
}
