/* Lamppost HQ — premium, warm, restrained. */

:root {
  --bg: #F7F4ED;
  --ink: #1A1F2B;
  --muted: #6B6358;
  --glow: #E8A33D;
  --soft: #EFE8D8;
  --line: #E2DAC8;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--ink); text-decoration-color: rgba(232,163,61,.5); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--glow); }

/* visible focus states for keyboard users */
:focus-visible { outline: 2px solid var(--glow); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 4px; }

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; border-radius: 6px;
  font-weight: 600; font-size: 14px; text-decoration: none; z-index: 100;
}
.skip-link:focus { left: 16px; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* nav */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 22px; font-weight: 600; text-decoration: none; }
.brand em { font-style: normal; color: var(--glow); }
.nav nav { display: flex; gap: 28px; align-items: center; font-size: 15px; font-weight: 500; }
.nav nav a { text-decoration: none; color: var(--muted); }
.nav nav a:hover { color: var(--ink); }
.cta-sm { background: var(--ink); color: var(--bg) !important; padding: 9px 16px; border-radius: 999px; }
.cta-sm:hover { background: var(--glow); color: var(--ink) !important; }

/* hero */
.hero { padding: 80px 0 100px; }
.eyebrow { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--glow); font-weight: 600; margin: 0 0 18px; }
h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 6vw, 68px); line-height: 1.04; letter-spacing: -.02em; margin: 0 0 24px; }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 38rem; margin: 0 0 36px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.btn { display: inline-block; padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 15px; text-decoration: none; border: 1.5px solid transparent; transition: transform .12s ease, background .2s ease, color .2s ease; }
.btn.primary { background: var(--ink); color: var(--bg); }
.btn.primary:hover { background: var(--glow); color: var(--ink); transform: translateY(-1px); }
.btn.ghost { border-color: var(--ink); color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--bg); }

.trust { font-size: 14px; color: var(--muted); }

/* sections base */
section { padding: 80px 0; }
h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.1; letter-spacing: -.015em; margin: 0 0 28px; }
h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; margin: 0 0 8px; }
h4 { font-family: var(--serif); font-weight: 600; font-size: 19px; margin: 0 0 8px; }

/* trick */
.trick { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.two-col { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.steps { list-style: none; padding: 0; margin: 0; }
.steps li { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.steps li:last-child { border-bottom: none; }
.steps span { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--bg); display: grid; place-items: center; font-family: var(--serif); font-weight: 600; }
.steps strong { display: block; margin-bottom: 2px; }
.steps div { color: var(--muted); font-size: 15px; line-height: 1.5; }

/* pricing */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.card { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 32px 28px; display: flex; flex-direction: column; }
.card.highlight { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: translateY(-6px); box-shadow: 0 20px 60px -20px rgba(26,31,43,.3); }
.card.highlight h3, .card.highlight .price strong { color: var(--bg); }
.card.highlight .tag { background: var(--glow); color: var(--ink); font-size: 11px; padding: 3px 8px; border-radius: 999px; font-family: var(--sans); font-weight: 600; margin-left: 8px; letter-spacing: .04em; text-transform: uppercase; vertical-align: middle; }
.card.highlight .btn.primary { background: var(--glow); color: var(--ink); }
.card .price { font-family: var(--serif); font-size: 28px; margin: 6px 0 18px; color: var(--muted); }
.card .price strong { font-weight: 600; color: var(--ink); }
.card ul { list-style: none; padding: 0; margin: 0 0 24px; font-size: 15px; color: inherit; }
.card.highlight ul { color: rgba(247,244,237,.85); }
.card ul li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.card.highlight ul li { border-bottom-color: rgba(247,244,237,.12); }
.card ul li:last-child { border-bottom: none; }
.card .btn { margin-top: auto; text-align: center; }

/* process / grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px; margin-top: 32px; }
.grid p { color: var(--muted); margin: 0; font-size: 15px; }

/* faq */
.faq { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 18px 0; }
details:first-of-type { border-top: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: "+"; font-size: 22px; color: var(--glow); font-weight: 400; transition: transform .2s; }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin: 10px 0 0; max-width: 50rem; }

/* contact */
.contact form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; max-width: 640px; margin-top: 28px; }
.contact label { display: flex; flex-direction: column; font-size: 13px; font-weight: 600; color: var(--muted); gap: 6px; }
.contact label:has(textarea), .contact label:last-of-type, .contact button { grid-column: 1 / -1; }
.contact input, .contact textarea {
  font: 16px var(--sans); padding: 12px 14px; border-radius: 8px; border: 1px solid var(--line); background: white; color: var(--ink);
}
.contact input:focus, .contact textarea:focus { outline: 2px solid var(--glow); outline-offset: -1px; border-color: var(--glow); }
.contact button { justify-self: start; }
.contact .small { margin-top: 18px; font-size: 14px; color: var(--muted); }

/* footer */
footer { padding: 40px 0 60px; border-top: 1px solid var(--line); }
.foot-brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.foot-brand em { font-style: normal; color: var(--glow); }
.small { font-size: 13px; color: var(--muted); margin: 0; }

/* responsive */
@media (max-width: 820px) {
  .nav nav a:not(.cta-sm) { display: none; }
  .two-col, .cards, .grid { grid-template-columns: 1fr; gap: 24px; }
  .card.highlight { transform: none; }
  .contact form { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 50px 0 70px; }
}

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