/* New Orleans Concrete Contractors
   ---------------------------------------------------------------------------
   Design thesis: the differentiator of this business is ground knowledge, so the
   ground is the design. Palette and signature graphic both come from the trade's
   own materials rather than from stock-contractor conventions.

   Palette   cured concrete neutrals, chalk-line blue (the tool on every crew's
             belt), and the ochre/clay banding of a delta soil cut.
   Type      Barlow Condensed for headings (site signage, formwork stencil).
             IBM Plex Sans for body: a family drawn for technical documentation,
             which is what spec-dense content actually is.
             IBM Plex Mono for measurements, so numbers read as field notes.
   Signature the stratigraphic section: a labelled ground cut showing slab, base,
             subgrade and water table at real depths, redrawn per region so a
             north-shore page and a south-shore page genuinely differ.
   --------------------------------------------------------------------------- */

:root {
  --ink:        #16191C;
  --ink-2:      #474D54;
  --ink-3:      #6B7178;
  --slab:       #E9E7E2;
  --slab-2:     #F4F2EE;
  --paper:      #FFFFFF;
  --line:       #D6D2CA;
  --line-soft:  #E6E3DC;

  --chalk:      #14548F;
  --chalk-lit:  #2E86D9;
  --chalk-wash: #EAF1F8;

  --ochre:      #A87542;
  --clay:       #7C5230;
  --water:      #4E7C8A;
  --rust:       #8E4A2C;

  --measure:    68ch;
  --gutter:     clamp(1.15rem, 4vw, 2.75rem);
  --shell:      1180px;

  --step--1: clamp(.78rem, .76rem + .12vw, .85rem);
  --step-0:  clamp(1rem, .97rem + .16vw, 1.09rem);
  --step-1:  clamp(1.2rem, 1.13rem + .34vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.36rem + .68vw, 1.95rem);
  --step-3:  clamp(1.95rem, 1.66rem + 1.4vw, 2.9rem);
  --step-4:  clamp(2.5rem, 1.9rem + 2.9vw, 4.4rem);

  --r: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: var(--step-0);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: "Barlow Condensed", "Barlow", ui-sans-serif, sans-serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: .004em;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: var(--step-4); font-weight: 700; }
h2 { font-size: var(--step-3); margin-top: 2.6em; margin-bottom: .5em; }
h3 { font-size: var(--step-1); font-weight: 600; margin-top: 1.9em; margin-bottom: .35em;
     font-family: "IBM Plex Sans", sans-serif; letter-spacing: -.01em; }
p, ul, ol, table { margin: 0 0 1.05em; }
p { max-width: var(--measure); }
a { color: var(--chalk); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--chalk-lit); }
:focus-visible { outline: 2px solid var(--chalk-lit); outline-offset: 3px; }
img, svg { max-width: 100%; height: auto; display: block; }
strong { font-weight: 600; }

.shell { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 78ch; }

/* Numbers are the substance of this content, so they get their own face. */
.num, .spec td:last-child { font-family: "IBM Plex Mono", ui-monospace, monospace; }

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--step--1);
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--chalk);
  margin: 0 0 .8rem;
}

/* ---------------------------------------------------------------- masthead */
.masthead {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.4) blur(9px);
  border-bottom: 1px solid var(--line-soft);
}
.masthead .shell { display: flex; align-items: center; gap: 1.6rem; min-height: 68px; }
.wordmark {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  font-size: 1.3rem; letter-spacing: .012em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; line-height: 1.05;
}
.wordmark span { display: block; font-size: .58rem; letter-spacing: .17em; color: var(--chalk); font-weight: 600; }
.nav { margin-left: auto; display: flex; gap: 1.35rem; align-items: center; }
.nav a { color: var(--ink-2); text-decoration: none; font-size: .93rem; font-weight: 500; }
.nav a:hover { color: var(--chalk); }
@media (max-width: 860px) { .nav .opt { display: none; } }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Barlow Condensed", sans-serif; font-weight: 600;
  font-size: 1.12rem; letter-spacing: .03em; text-transform: uppercase;
  padding: .72rem 1.5rem; border-radius: var(--r); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--chalk); color: #fff; }
.btn-primary:hover { background: #0F4577; color: #fff; }
.btn-ghost { border-color: currentColor; color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--chalk); color: var(--chalk); }
.btn-lg { font-size: 1.28rem; padding: .95rem 1.9rem; }

/* ---------------------------------------------------------------- hero */
.hero { border-bottom: 1px solid var(--line); background:
        linear-gradient(180deg, var(--paper) 0%, var(--slab-2) 100%); }
.hero .shell { display: grid; gap: clamp(2rem, 5vw, 4rem); padding-block: clamp(2.6rem, 6vw, 4.8rem);
               grid-template-columns: 1fr; align-items: center; }
@media (min-width: 980px) { .hero .shell { grid-template-columns: 1.05fr .95fr; } }
.hero h1 { max-width: 15ch; }
.hero .lede { font-size: var(--step-1); color: var(--ink-2); max-width: 46ch; margin-top: 1.1rem; }
.hero .actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero .assure { font-size: var(--step--1); color: var(--ink-3); margin-top: 1rem; }

/* ---------------------------------------------------------------- sections */
.band-alt { background: var(--slab); border-block: 1px solid var(--line); }
.section { padding-block: clamp(2.6rem, 6vw, 4.4rem); }
.section > .shell > h2:first-child { margin-top: 0; }

/* key facts: the extractable block */
.keyfacts { background: var(--chalk-wash); border-left: 3px solid var(--chalk);
            padding: 1.3rem 1.5rem; margin: 1.8rem 0 2.2rem; border-radius: 0 var(--r) var(--r) 0; }
.keyfacts h2 { font-size: var(--step--1); font-family: "IBM Plex Mono", monospace;
               letter-spacing: .11em; text-transform: uppercase; color: var(--chalk);
               margin: 0 0 .7rem; }
.keyfacts ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.keyfacts li { padding-left: 1.35rem; position: relative; font-size: .97rem; }
.keyfacts li::before { content: ""; position: absolute; left: 0; top: .62em;
                       width: 8px; height: 2px; background: var(--chalk); }

/* prose tables read as spec sheets */
.prose table, .spec { width: 100%; border-collapse: collapse; font-size: .95rem; margin: 1.6rem 0; }
.prose th, .prose td, .spec th, .spec td { text-align: left; padding: .62rem .8rem;
                                           border-bottom: 1px solid var(--line-soft); }
.prose thead th, .spec thead th {
  font-family: "Barlow Condensed", sans-serif; font-size: 1rem; text-transform: uppercase;
  letter-spacing: .05em; color: var(--ink); border-bottom: 1.5px solid var(--ink); }
.prose tbody tr:nth-child(even), .spec tbody tr:nth-child(even) { background: var(--slab-2); }
.table-scroll { overflow-x: auto; }

.prose { max-width: var(--measure); }
.prose h2 { padding-top: .3rem; border-top: 1px solid var(--line); }
.prose ul, .prose ol { padding-left: 1.15rem; }
.prose li { margin-bottom: .38rem; }
.prose li::marker { color: var(--chalk); }

/* ---------------------------------------------------------------- cards */
.grid { display: grid; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
@media (min-width: 620px) { .grid.c2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid.c3 { grid-template-columns: repeat(3, 1fr); }
                            .grid.c4 { grid-template-columns: repeat(4, 1fr); } }
.card { background: var(--paper); padding: 1.35rem 1.4rem; text-decoration: none; color: inherit;
        display: block; transition: background .15s; }
a.card:hover { background: var(--chalk-wash); }
.card h3 { margin: 0 0 .3rem; font-size: 1.04rem; font-weight: 600; }
.card p { font-size: .92rem; color: var(--ink-2); margin: 0; }

/* process: numbered by DURATION, because cure time is the actual content */
.stages { display: grid; gap: 0; counter-reset: none; }
@media (min-width: 820px) { .stages { grid-template-columns: repeat(4, 1fr); } }
.stage { padding: 1.3rem 1.3rem 1.5rem; border-top: 2px solid var(--ink); }
.stage .when { font-family: "IBM Plex Mono", monospace; font-size: var(--step--1);
               color: var(--chalk); letter-spacing: .05em; display: block; margin-bottom: .4rem; }
.stage h3 { margin: 0 0 .3rem; font-size: 1.02rem; }
.stage p { font-size: .9rem; color: var(--ink-2); margin: 0; }

/* ---------------------------------------------------------------- reviews */
.reviews { display: grid; gap: 1px; background: var(--line-soft);
           border: 1px solid var(--line-soft); margin: 1.8rem 0; }
@media (min-width: 780px) { .reviews.c2 { grid-template-columns: repeat(2, 1fr); } }
.review { background: var(--paper); padding: 1.3rem 1.4rem; }
.review .stars { color: var(--ochre); letter-spacing: .12em; font-size: .92rem; }
.review blockquote { margin: .5rem 0 .7rem; font-size: .97rem; }
.review .who { font-size: .86rem; color: var(--ink-3); }
.review .who b { color: var(--ink-2); font-weight: 600; }

/* ---------------------------------------------------------------- form */
.leadform { background: var(--ink); color: #fff; border-radius: var(--r); padding: clamp(1.4rem, 3vw, 2rem); }
.leadform h2, .leadform h3 { color: #fff; margin-top: 0; }
.leadform p { color: #B9BFC5; font-size: .93rem; }
.leadform label { display: block; font-size: .84rem; letter-spacing: .04em; text-transform: uppercase;
                  font-family: "IBM Plex Mono", monospace; color: #9AA2A9; margin: .9rem 0 .3rem; }
.leadform input, .leadform select, .leadform textarea {
  width: 100%; padding: .68rem .8rem; border-radius: var(--r); font: inherit; font-size: .97rem;
  background: #23282D; border: 1px solid #3A4046; color: #fff; }
.leadform input:focus, .leadform select:focus, .leadform textarea:focus {
  border-color: var(--chalk-lit); outline: none; }
.leadform .btn { width: 100%; margin-top: 1.2rem; }
.leadform .consent { font-size: .74rem; color: #868E96; line-height: 1.5; margin-top: .9rem; }
.leadform .consent a { color: #B9BFC5; }

/* ---------------------------------------------------------------- misc */
.crumbs { font-size: .84rem; color: var(--ink-3); padding-block: .9rem; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--chalk); text-decoration: underline; }

.faq dt { font-weight: 600; margin-top: 1.5rem; font-size: 1.03rem; }
.faq dd { margin: .45rem 0 0; color: var(--ink-2); max-width: var(--measure); }

.callbar { background: var(--chalk); color: #fff; }
.callbar .shell { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
                  justify-content: space-between; padding-block: 1.5rem; }
.callbar p { color: #DCE8F3; margin: 0; font-size: .95rem; }
.callbar .display { color: #fff; font-size: var(--step-2); }
.callbar .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.callbar .btn-ghost:hover { background: #fff; color: var(--chalk); border-color: #fff; }

.site-foot { background: var(--ink); color: #A8AFB6; padding-block: 3rem 2rem; font-size: .9rem; }
.site-foot a { color: #D3D8DC; text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; }
.site-foot h4 { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase;
                letter-spacing: .07em; color: #fff; font-size: .95rem; margin: 0 0 .7rem; }
.foot-grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.foot-legal { border-top: 1px solid #2A2F34; margin-top: 2.2rem; padding-top: 1.2rem;
              font-size: .8rem; color: #767D84; display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; }
.updated { font-family: "IBM Plex Mono", monospace; font-size: var(--step--1); color: var(--ink-3);
           border-top: 1px solid var(--line-soft); padding-top: 1rem; margin-top: 2.5rem; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: .5rem; top: .5rem; position: fixed; z-index: 99; background: #fff;
              padding: .6rem 1rem; border: 2px solid var(--chalk); }

/* estimate section: copy beside the form on desktop */
#estimate > .shell { grid-template-columns: 1fr; }
@media (min-width: 900px) { #estimate > .shell { grid-template-columns: 1fr 1fr; } }

/* ---------------------------------------------------------------- imagery */
/* Hero photo occupies the aside slot beside the H1 and intro. */
.hero-shot { margin: 0; }
.hero-shot img { width: 100%; border: 1px solid var(--line); border-radius: var(--r);
                 aspect-ratio: 16/9; object-fit: cover; }
.hero-shot figcaption, .band-shot figcaption {
  font-family: "IBM Plex Mono", monospace; font-size: .72rem; color: var(--ink-3);
  margin-top: .45rem; }

/* Home establishing shot: full-bleed band under the hero. */
.band-shot { margin: 0; position: relative; }
.band-shot img { width: 100%; aspect-ratio: 21/9; object-fit: cover;
                 border-block: 1px solid var(--line); }
@media (max-width: 700px) { .band-shot img { aspect-ratio: 16/9; } }
.band-shot figcaption { max-width: var(--shell); margin-inline: auto;
                        padding-inline: var(--gutter); }
/* Inset variant: sits inside the content shell rather than full-bleed. */
.band-shot.inset { margin: 2rem 0 0; }
.band-shot.inset img { border: 1px solid var(--line); border-radius: var(--r);
                       border-block: 1px solid var(--line); aspect-ratio: 21/9; }
.band-shot.inset figcaption { padding-inline: 0; }

/* ---------------------------------------------------------------- menus */
.menu { position: relative; }
.menu-btn {
  font: inherit; font-size: .93rem; font-weight: 500; color: var(--ink-2);
  background: none; border: 0; padding: .4rem 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: .3rem;
}
.menu-btn:hover, .menu:hover .menu-btn, .menu.open .menu-btn { color: var(--chalk); }
.menu-btn span { font-size: .6em; opacity: .7; }

.menu-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  display: none; gap: 2rem; padding: 1.3rem 1.5rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: 0 12px 34px rgba(0,0,0,.11);
  z-index: 50; max-width: min(92vw, 640px);
}
/* :hover for mouse, :focus-within for keyboard, .open for click and touch. All three,
   because any one alone excludes somebody. */
.menu:hover .menu-panel, .menu:focus-within .menu-panel, .menu.open .menu-panel {
  display: flex;
}
.menu-col { min-width: 168px; }
.menu-col h4 {
  font-family: "IBM Plex Mono", monospace; font-size: .68rem; letter-spacing: .11em;
  text-transform: uppercase; color: var(--chalk); margin: 0 0 .55rem;
}
.menu-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .28rem; }
.menu-col a { color: var(--ink-2); text-decoration: none; font-size: .9rem; display: block;
              padding: .12rem 0; }
.menu-col a:hover { color: var(--chalk); }

@media (max-width: 860px) {
  .menu-panel { position: static; transform: none; flex-direction: column; gap: 1rem;
                box-shadow: none; border: 0; padding: .6rem 0 0; max-width: none; }
}

/* Footer link lists run to two or three columns so 19 services fit without a long scroll. */
.foot-cols { columns: 2; column-gap: 1.4rem; }
@media (min-width: 1000px) { .foot-cols { columns: 2; } }
.foot-cols li { break-inside: avoid; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.2fr 1.3fr 1.3fr .8fr; } }

/* ---------------------------------------------------------------- paid landers */
/* One dominant action, everything else subordinate. The call button is the primary CTA
   on every breakpoint; the form is the fallback for people who will not phone. */
body.lp { padding-bottom: 64px; }                 /* clear of the sticky mobile bar */
@media (min-width: 780px) { body.lp { padding-bottom: 0; } }

.lp-bar { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.96);
          backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--line); }
.lp-bar .shell { display: flex; align-items: center; justify-content: space-between;
                 gap: 1rem; min-height: 64px; }
.lp-call { font-size: 1.18rem; }
@media (max-width: 779px) { .lp-bar .btn { display: none; } }  /* sticky bar covers mobile */

.lp-hero { background: linear-gradient(180deg, var(--paper), var(--slab-2));
           border-bottom: 1px solid var(--line); }
.lp-hero .shell { display: grid; gap: clamp(1.8rem,4vw,3rem); align-items: start;
                  padding-block: clamp(1.6rem,4vw,3rem); }
@media (min-width: 900px) { .lp-hero .shell { grid-template-columns: 1.02fr .98fr; } }
.lp-hero h1 { font-size: clamp(2rem,1.5rem+2.2vw,3.2rem); max-width: 17ch; }
.lp-lede { font-size: var(--step-1); color: var(--ink-2); max-width: 46ch; margin-top: .8rem; }
.lp-lede p { margin: 0 0 .4rem; }

/* Trust row: four hard signals, scannable in a glance rather than read. */
.lp-trust { list-style: none; padding: 0; margin: 1.3rem 0 0; display: flex;
            flex-wrap: wrap; gap: .5rem .6rem; }
.lp-trust li { font-size: .8rem; color: var(--ink-2); background: var(--paper);
               border: 1px solid var(--line); border-radius: 999px; padding: .32rem .75rem; }
.lp-trust b { color: var(--chalk); font-weight: 600; }

.lp-facts { list-style: none; padding: 0; margin: 1.1rem 0 0; display: grid; gap: .4rem; }
.lp-facts li { padding-left: 1.4rem; position: relative; font-size: .93rem; color: var(--ink-2); }
.lp-facts li::before { content: ""; position: absolute; left: 0; top: .56em; width: 9px;
                       height: 2px; background: var(--chalk); }
.lp-shot { margin: 1.5rem 0 0; }
.lp-shot img { width: 100%; aspect-ratio: 16/9; object-fit: cover;
               border: 1px solid var(--line); border-radius: var(--r); }

/* ------------------------------------------------------------------ stepped form */
/* Light card, not a black slab: the form should read as part of the page rather than a
   panel dropped on top of it, and dark inputs on a light hero fight the eye. */
.lp-formwrap { position: sticky; top: 84px; }
@media (max-width: 899px) { .lp-formwrap { position: static; } }
.lp-form { background: var(--paper); color: var(--ink); border: 1px solid var(--line);
           border-top: 3px solid var(--chalk); border-radius: var(--r);
           padding: clamp(1.2rem,2.6vw,1.7rem); box-shadow: 0 12px 34px rgba(22,25,28,.10); }
.lp-form-head h2 { margin: 0 0 .3rem; font-size: var(--step-2); }
.lp-form-head p { color: var(--ink-2); font-size: .95rem; margin: 0 0 1rem; }
.lp-form label { display: block; font-family: "IBM Plex Sans", sans-serif; font-size: .88rem;
                 font-weight: 600; letter-spacing: .01em; color: var(--ink);
                 margin: 1rem 0 .35rem; }
.lp-form input[type=text], .lp-form input[type=tel] {
  width: 100%; padding: .85rem .9rem; font: inherit; font-size: 1.05rem; font-weight: 500;
  background: var(--slab-2); border: 1.5px solid var(--line); border-radius: var(--r);
  color: var(--ink); min-height: 52px; }
/* Larger still on the two steps that ask for typed input. 16px+ also stops iOS Safari
   zooming the viewport on focus, which on a paid page loses people outright. */
.lp-form input.lp-big { font-size: 1.12rem; min-height: 56px; }
.lp-form input::placeholder { color: var(--ink-3); }
.lp-form input:focus { border-color: var(--chalk); background: var(--paper);
                       outline: 2px solid var(--chalk-wash); outline-offset: 0; }
.lp-form .btn { width: 100%; margin-top: 1.1rem; min-height: 52px; }
.lp-hint, .lp-consent { font-size: .8rem; color: var(--ink-3); line-height: 1.5; margin: .6rem 0 0; }
.formmsg { font-size: .85rem; color: var(--rust); margin: .7rem 0 0; min-height: 1em; }

.lp-steps { list-style: none; display: flex; gap: .4rem; padding: 0; margin: 0 0 1.2rem;
            font-family: "IBM Plex Mono", monospace; font-size: .74rem; font-weight: 500;
            letter-spacing: .06em; text-transform: uppercase; }
.lp-steps li { flex: 1; color: var(--ink-3); border-top: 2px solid var(--line);
               padding-top: .45rem; }
.lp-steps li.on { color: var(--ink); border-top-color: var(--chalk); }
.lp-steps span { display: none; }

/* No JS: every step visible, submits as one plain form. Stepping is enhancement. */
.lp-step { border: 0; padding: 0; margin: 0; }
.lp-form.stepped .lp-step { display: none; }
.lp-form.stepped .lp-step.on { display: block; }
.lp-step legend { font-family: "Barlow Condensed", sans-serif; font-size: 1.6rem;
                  font-weight: 700; padding: 0; margin-bottom: .5rem; line-height: 1.1; }

/* Choice tiles on a strict even grid: equal columns, equal rows, one line of text each,
   so the block reads as a grid rather than a ragged stack. */
.lp-choices { display: grid; grid-template-columns: repeat(2, 1fr);
              gap: .45rem; margin-top: .8rem; }
.lp-choice { display: block; }
.lp-choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.lp-choice span {
  display: flex; align-items: center; justify-content: center; text-align: center;
  height: 100%; min-height: 56px; padding: .6rem .65rem;
  font-size: .92rem; font-weight: 500; line-height: 1.25; hyphens: auto;
  background: var(--slab-2); border: 1.5px solid var(--line); border-radius: var(--r);
  cursor: pointer; transition: border-color .12s, background .12s; }
.lp-choice span:hover { border-color: var(--chalk); background: var(--chalk-wash); }
.lp-choice input:checked + span { border-color: var(--chalk); background: var(--chalk-wash);
                                  color: var(--chalk); font-weight: 600; }
.lp-choice input:focus-visible + span { outline: 2px solid var(--chalk-lit); outline-offset: 2px; }
.lp-back { background: none; border: 0; color: var(--ink-3); font: inherit; font-size: .85rem;
           text-decoration: underline; cursor: pointer; margin-top: .7rem; padding: .5rem 0; }
.lp-back:hover { color: var(--chalk); }

.lp-body { max-width: 820px; }
.lp-body .prose h2:first-child { margin-top: 0; }
.lp-body ol { padding-left: 1.2rem; }
.lp-body ol li { margin-bottom: .6rem; }

.lp-cta { background: var(--chalk); color: #fff; }
.lp-cta .shell { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
                 justify-content: space-between; padding-block: 1.7rem; }
.lp-cta p { color: #DCE8F3; margin: 0; font-size: .95rem; }
.lp-cta .display { color: #fff; font-size: var(--step-2); }
.lp-cta-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.lp-cta-call { background: #fff; color: var(--chalk); }
.lp-cta-call:hover { background: var(--slab); color: var(--chalk); }
.lp-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.lp-cta .btn-ghost:hover { background: #fff; color: var(--chalk); }

/* Sticky mobile call bar: the single largest lift available on this page type. */
.lp-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
             display: flex; align-items: center; justify-content: center; gap: .5rem;
             min-height: 56px; background: var(--chalk); color: #fff; text-decoration: none;
             font-family: "Barlow Condensed", sans-serif; font-size: 1.25rem;
             font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
             box-shadow: 0 -6px 20px rgba(0,0,0,.16); }
.lp-sticky:hover { background: #0F4577; color: #fff; }
@media (min-width: 780px) { .lp-sticky { display: none; } }
body.lp .site-foot { padding-block: 2rem 1.4rem; }
body.lp .site-foot p { margin: 0 0 .4rem; }
.lp-choice.wide { grid-column: 1 / -1; }

/* Area chips on step 2: a tap instead of a blank field, carrying the momentum from the
   job tiles. They prefill the input, which stays editable for a full street address. */
.lp-pick-label { font-size: .8rem; color: var(--ink-3); margin: .9rem 0 .45rem; }
.lp-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.lp-chip { font: inherit; font-size: .88rem; font-weight: 500; color: var(--ink-2);
           background: var(--slab-2); border: 1.5px solid var(--line);
           border-radius: 999px; padding: .5rem .9rem; min-height: 44px; cursor: pointer;
           transition: border-color .12s, background .12s, color .12s; }
.lp-chip:hover { border-color: var(--chalk); background: var(--chalk-wash); color: var(--chalk); }
.lp-chip.on { border-color: var(--chalk); background: var(--chalk); color: #fff; }
.lp-chip:focus-visible { outline: 2px solid var(--chalk-lit); outline-offset: 2px; }

/* Reassurance directly above the submit, where the hesitation actually happens. */
.lp-reassure { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .45rem; }
.lp-reassure li { position: relative; padding-left: 1.5rem; font-size: .88rem;
                  font-weight: 500; color: var(--ink-2); line-height: 1.35; }
.lp-reassure li::before { content: "\2713"; position: absolute; left: 0; top: -.05em;
                          color: var(--chalk); font-weight: 700; }
