/* ==========================================================================
   Consultation funnel — light, modern theme
   Hand-written, zero-runtime CSS. Committed to a single light visual world;
   backgrounds are always painted explicitly so it renders consistently.
   ========================================================================== */

:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-2: #f0f2f5;
  --ink: #12161d;
  --ink-2: #0f172a;
  --muted: #59616e;
  --border: #e5e8ec;
  --accent: #e4681e;        /* construction amber — the one bold color */
  --accent-ink: #b44e0f;    /* accent, darkened for text on light */
  --accent-soft: #fdeee3;
  --good: #16794c;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16, 23, 42, 0.06), 0 4px 12px rgba(16, 23, 42, 0.05);
  --shadow: 0 10px 34px rgba(16, 23, 42, 0.12);
  --maxw: 1080px;
  --gutter: clamp(18px, 5vw, 40px);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-ink);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  color: var(--ink-2);
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  font-weight: 800;
}
h3 {
  font-size: 1.12rem;
  font-weight: 700;
}
p {
  margin: 0 0 1rem;
}

/* ---- Layout ------------------------------------------------------------ */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(52px, 9vw, 104px);
}
.section--tint {
  background: var(--surface-2);
}
.section--ink {
  background: var(--ink-2);
}
.section--ink h2,
.section--ink h3 {
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent-ink);
  margin-bottom: 0.9rem;
}
.center {
  text-align: center;
}
.muted {
  color: var(--muted);
}
.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 60ch;
}
.center .lead {
  margin-inline: auto;
}
.stack > * + * {
  margin-top: 1.25rem;
}
.mt-2 {
  margin-top: 2rem;
}

/* ---- Buttons ----------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1em 1.9em;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: transform 0.06s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
  text-decoration: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(228, 104, 30, 0.32);
}
.btn--primary:hover {
  background: #d15c15;
  box-shadow: 0 10px 28px rgba(228, 104, 30, 0.42);
}
.btn--lg {
  font-size: 1.15rem;
  padding: 1.1em 2.3em;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn[disabled] {
  opacity: 0.6;
  cursor: progress;
}
.btn__note {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---- Hero -------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 10vw, 116px);
  background: radial-gradient(
      900px 460px at 85% -10%,
      var(--accent-soft),
      transparent 60%
    ),
    var(--bg);
}
.hero__grid {
  display: grid;
  gap: clamp(32px, 6vw, 56px);
  align-items: center;
}
.hero__cta {
  margin-top: 1.75rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4em 0.95em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--good);
}

.portrait {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
  aspect-ratio: 4 / 5;
}

@media (min-width: 880px) {
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

/* ---- Photo tiles (placeholder proof shots) ---------------------------- */

.shot {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #e9edf2, #dbe1e8);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
}
.shot--tall {
  aspect-ratio: 3 / 4;
}
.shot__cap {
  position: relative;
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.72));
}
.shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Framed document (e.g. the check) — show the whole thing, don't crop it */
.shot--doc {
  background: #0f172a;
}
.shot--doc img {
  object-fit: contain;
  padding: 10px;
}

/* ---- Journey grid ------------------------------------------------------ */

.grid {
  display: grid;
  gap: 20px;
}
.grid--2 {
  grid-template-columns: 1fr;
}
.grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 620px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 940px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.chapter {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.chapter__body {
  padding: 1.1rem 1.2rem 1.3rem;
}
.chapter__kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.chapter h3 {
  margin: 0.3rem 0 0.35rem;
}
.chapter p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---- Value list -------------------------------------------------------- */

.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.checks li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.checks .mark {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-weight: 800;
  margin-top: 2px;
}
.checks strong {
  color: var(--ink-2);
}

/* ---- Steps (how it works) --------------------------------------------- */

.steps {
  display: grid;
  gap: 20px;
  counter-reset: step;
}
@media (min-width: 780px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink-2);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.9rem;
}
.step h3 {
  margin-bottom: 0.3rem;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---- Offer / price card ------------------------------------------------ */

.offer {
  max-width: 480px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.section--ink .offer {
  border-color: transparent;
}
.offer__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.4rem 0 0.2rem;
}
.offer__amt {
  font-size: 3.1rem;
  font-weight: 800;
  color: var(--ink-2);
  letter-spacing: -0.03em;
}
.offer__unit {
  color: var(--muted);
  font-weight: 600;
}
.offer ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 1.3rem 0;
  display: grid;
  gap: 0.7rem;
}
.offer li {
  display: flex;
  gap: 0.6rem;
  color: var(--ink);
}
.offer li::before {
  content: "✓";
  color: var(--accent-ink);
  font-weight: 800;
}

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

.faq {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: 0.7rem;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 1.2rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-2);
  padding: 1.05rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "\2013";
}
.faq details > p {
  margin-top: 0;
  padding-bottom: 1.1rem;
  color: var(--muted);
}

/* ---- Footer ------------------------------------------------------------ */

.footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding-block: 2.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.footer .disclaimer {
  font-size: 0.82rem;
  margin-top: 1rem;
  max-width: 70ch;
}

.hide {
  display: none !important;
}

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