/* ==========================================================================
   Lake Norman Water Damage Response -- single stylesheet, mobile-first
   ITCSS-ish layering: settings > generic > elements > objects > components > utilities
   BEM class naming for components (c-block__element--modifier)
   Breakpoints: 40em (~640px), 64em (~1024px). Mobile bar hides at 56.25em (~900px).
   ========================================================================== */

/* ---- 1. SETTINGS ---- */
:root{
  --c-red:#c81e1e;
  --c-red-dark:#9c1616;
  --c-ink:#141414;
  --c-navy:#10233b;
  --c-navy-light:#1c3a5e;
  --c-white:#f6f7f8;
  --c-gray:#d9dde1;
  --c-gray-dark:#8c959d;

  --font-display: Archivo, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius:.5rem;
  --radius-lg:.9rem;
  --shadow:0 .25rem 1rem rgba(16,35,59,.14);
  --callbar-h:2.6rem;
  --mobilebar-h:3.75rem;
}

/* ---- 2. GENERIC / RESET ---- */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--c-ink);
  background:var(--c-white);
  line-height:1.6;
  padding-top:var(--callbar-h);
}
img{max-width:100%;display:block;}
a{color:var(--c-navy);}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible{
  outline:.2rem solid var(--c-red);outline-offset:.1rem;
}

/* ---- 3. ELEMENTS ---- */
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:800;
  line-height:1.1;
  letter-spacing:-.01em;
  color:var(--c-navy);
  margin:0 0 .5em;
}
h1{font-size:clamp(1.9rem,5vw,2.8rem);}
h2{font-size:clamp(1.5rem,3.4vw,2.1rem);}
h3{font-size:1.15rem;}
p{margin:0 0 1em;}
ul,ol{margin:0 0 1em;padding-left:1.25em;}
address{font-style:normal;}
details > summary{cursor:pointer;}

/* ---- 4. OBJECTS ---- */
.o-wrap{max-width:71.25rem;margin:0 auto;padding:0 1.25rem;}
.o-section{padding:3rem 0;}
.o-section--tight{padding:1.75rem 0;}
.o-section--navy{background:var(--c-navy);color:var(--c-white);}
.o-section--navy h2,.o-section--navy h3{color:var(--c-white);}
.o-section--gray{background:var(--c-gray);}
.o-grid{display:grid;gap:1.25rem;}
.o-grid--3{grid-template-columns:repeat(auto-fit,minmax(15.5rem,1fr));}
.o-grid--2{grid-template-columns:repeat(auto-fit,minmax(17rem,1fr));}
.o-center{text-align:center;}
.o-lede{font-size:1.1rem;max-width:60ch;}
.o-lede--center{margin:0 auto 1.75rem;}

/* ---- 5. COMPONENTS ---- */

/* Call bar: fixed, always visible */
.c-callbar{
  position:fixed;top:0;left:0;right:0;z-index:200;
  background:var(--c-red);color:#fff;
  height:var(--callbar-h);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:700;
  font-size:.85rem;
  text-align:center;
}
.c-callbar__link{color:#fff;text-decoration:none;}
.c-callbar__link:hover,.c-callbar__link:focus-visible{text-decoration:underline;}
.c-callbar__tag{display:none;}
@media (min-width:30em){
  .c-callbar__tag{display:inline;}
}

/* Header: sticky under call bar */
.c-header{
  position:sticky;top:var(--callbar-h);z-index:190;
  background:var(--c-white);
  border-bottom:.0625rem solid var(--c-gray);
}
.c-header__inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;padding:.7rem 1.25rem;max-width:71.25rem;margin:0 auto;
}
.c-header__brand{
  font-family:var(--font-display);font-weight:800;color:var(--c-navy);
  text-decoration:none;font-size:1.05rem;line-height:1.15;
}
.c-header__brand span{display:block;font-size:.68rem;font-weight:600;color:var(--c-red);letter-spacing:.04em;text-transform:uppercase;}
.c-header__right{display:flex;align-items:center;gap:1rem;}
.c-header__phone{
  font-family:var(--font-display);font-weight:800;font-size:1.15rem;
  color:var(--c-red);text-decoration:none;white-space:nowrap;
}
.c-header__nav{display:none;}
@media (min-width:64em){
  .c-header__inner{flex-wrap:nowrap;}
  .c-header__nav{
    display:flex;gap:1.1rem;list-style:none;margin:0;padding:0;
    order:2;flex:1;justify-content:center;
  }
  .c-header__nav a{color:var(--c-ink);text-decoration:none;font-weight:600;font-size:.9rem;}
  .c-header__nav a:hover{color:var(--c-red);}
}
.c-header__navtoggle{display:none;}
.c-header__burger{
  display:flex;align-items:center;justify-content:center;
  width:2.4rem;height:2.4rem;border-radius:var(--radius);
  background:var(--c-navy);color:#fff;font-size:1.2rem;cursor:pointer;
}
@media (min-width:64em){.c-header__burger{display:none;}}
.c-header__mobilenav{
  display:none;list-style:none;margin:0;padding:.75rem 1.25rem 1rem;
  background:var(--c-white);border-top:.0625rem solid var(--c-gray);
}
.c-header__mobilenav li{margin-bottom:.6rem;}
.c-header__mobilenav a{color:var(--c-ink);text-decoration:none;font-weight:600;}
.c-header__navtoggle:checked ~ .c-header__mobilenav{display:block;}
@media (min-width:64em){.c-header__mobilenav{display:none !important;}}

/* Breadcrumbs */
.c-crumbs{font-size:.8rem;color:var(--c-gray-dark);padding:.9rem 0 0;}
.c-crumbs a{color:var(--c-navy);text-decoration:none;}
.c-crumbs a:hover{text-decoration:underline;}

/* Hero */
.c-hero{padding:2rem 0 1.75rem;background:linear-gradient(180deg,var(--c-white) 0%,var(--c-gray) 100%);}
.c-hero__inner{display:grid;gap:1.75rem;align-items:center;grid-template-columns:1fr;}
@media (min-width:64em){.c-hero__inner{grid-template-columns:1.2fr .8fr;}}
.c-hero__eyebrow{
  display:inline-block;background:var(--c-red);color:#fff;
  font-family:var(--font-display);font-weight:700;font-size:.78rem;
  text-transform:uppercase;letter-spacing:.04em;
  padding:.35em 1em;border-radius:999px;margin-bottom:.9em;
}
.c-hero h1{margin-bottom:.5em;}
.c-hero__sub{font-size:1.08rem;max-width:46ch;color:var(--c-ink);}
.c-hero__ctas{display:flex;flex-wrap:wrap;gap:.9rem;margin-top:1.1rem;}
.c-hero__art{max-width:19rem;margin:0 auto;}
@media (min-width:64em){.c-hero__art{max-width:100%;}}

/* Buttons */
.c-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5em;
  font-family:var(--font-display);font-weight:700;font-size:1rem;
  padding:.85em 1.6em;border-radius:var(--radius);text-decoration:none;
  border:.125rem solid transparent;cursor:pointer;line-height:1.1;
}
.c-btn--primary{background:var(--c-red);color:#fff;}
.c-btn--primary:hover{background:var(--c-red-dark);}
.c-btn--outline{background:transparent;border-color:var(--c-navy);color:var(--c-navy);}
.c-btn--outline:hover{background:var(--c-navy);color:#fff;}
.c-btn--block{width:100%;}

/* Trust bar (chips) */
.c-trustbar{background:var(--c-navy);color:#fff;}
.c-trustbar__grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(11.5rem,1fr));
  gap:1rem;padding:1.1rem 0;text-align:center;
}
.c-trustbar__grid strong{display:block;font-family:var(--font-display);font-size:.98rem;}
.c-trustbar__grid span{display:block;font-size:.8rem;opacity:.82;margin-top:.15rem;}

/* Response timeline */
.c-timeline{list-style:none;margin:0;padding:0;display:grid;gap:1.25rem;counter-reset:step;}
@media (min-width:40em){.c-timeline{grid-template-columns:repeat(3,1fr);}}
.c-timeline__item{
  background:#fff;border-radius:var(--radius-lg);padding:1.4rem 1.3rem;
  box-shadow:var(--shadow);border-top:.3rem solid var(--c-red);
  counter-increment:step;position:relative;
}
.c-timeline__item::before{
  content:counter(step);
  font-family:var(--font-display);font-weight:800;font-size:1.3rem;
  color:var(--c-red);display:block;margin-bottom:.3rem;
}

/* Cards */
.c-card{background:#fff;border-radius:var(--radius-lg);padding:1.5rem;box-shadow:var(--shadow);}
.c-card h3{margin-bottom:.4em;}
.c-card__link{font-weight:700;color:var(--c-navy);text-decoration:none;font-size:.92rem;}
.c-card__link:hover{text-decoration:underline;}

/* Insurance / reassurance band */
.c-band{border-radius:var(--radius-lg);padding:2rem 1.5rem;margin:0 1.25rem;}
.c-band--navy{background:var(--c-navy);color:#fff;}
.c-band--navy h2{color:#fff;}
.c-band--red{background:var(--c-red);color:#fff;}
.c-band--red h2{color:#fff;}

/* Limitation callout */
.c-limit{
  background:#fff;border-left:.3rem solid var(--c-red);
  border-radius:0 var(--radius) var(--radius) 0;
  padding:1rem 1.3rem;margin:1.5rem 0;font-weight:600;
}

/* Price box */
.c-pricebox{background:var(--c-gray);border-radius:var(--radius-lg);padding:1.3rem 1.5rem;margin:1.4rem 0;}
.c-pricebox strong{color:var(--c-red);}

/* Steps list */
.c-steps{padding-left:1.3rem;}
.c-steps li{margin-bottom:.7em;}

/* FAQ */
.c-faq details{background:#fff;border-radius:var(--radius);padding:.9rem 1.2rem;margin-bottom:.75rem;box-shadow:var(--shadow);}
.c-faq summary{font-family:var(--font-display);font-weight:700;font-size:1rem;}
.c-faq p{margin:.7em 0 0;}

/* Lead form */
.c-form{background:#fff;border-radius:var(--radius-lg);padding:1.75rem;box-shadow:var(--shadow);max-width:34rem;margin:0 auto;}
.c-form__field{margin-bottom:1.1rem;display:flex;flex-direction:column;gap:.4rem;}
.c-form__field label{font-weight:700;font-size:.9rem;}
.c-form__field input,.c-form__field select,.c-form__field textarea{
  font-family:var(--font-body);font-size:1rem;padding:.75em 1em;
  border-radius:var(--radius);border:.125rem solid var(--c-gray);background:var(--c-white);color:var(--c-ink);
}
.c-form__field textarea{resize:vertical;min-height:6em;}
.c-form__note{font-size:.85rem;color:var(--c-gray-dark);margin:-.3rem 0 1rem;}

/* Service area chip list */
.c-arealist{list-style:none;margin:0;padding:0;}
.c-arealist li{padding:.6rem 0;border-bottom:.0625rem solid var(--c-gray);font-weight:600;}

/* Footer */
.c-footer{background:var(--c-ink);color:var(--c-gray);padding:2.4rem 0 1.4rem;margin-top:2rem;}
.c-footer a{color:var(--c-gray);text-decoration:none;}
.c-footer a:hover{color:#fff;text-decoration:underline;}
.c-footer__grid{display:grid;gap:1.75rem;grid-template-columns:repeat(auto-fit,minmax(11.5rem,1fr));}
.c-footer h4{color:#fff;font-size:.95rem;margin-bottom:.6rem;}
.c-footer ul{list-style:none;margin:0;padding:0;}
.c-footer li{margin-bottom:.4rem;font-size:.88rem;}
.c-footer__bottom{margin-top:1.75rem;padding-top:1.2rem;border-top:.0625rem solid #333;font-size:.8rem;}

/* Mobile sticky bottom bar */
.c-mobilebar{
  position:fixed;bottom:0;left:0;right:0;z-index:190;
  display:flex;box-shadow:0 -.25rem 1rem rgba(0,0,0,.25);
  height:var(--mobilebar-h);
}
.c-mobilebar a{
  flex:1;display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:700;text-decoration:none;font-size:1rem;
  min-height:3rem;
}
.c-mobilebar__call{background:var(--c-red);color:#fff;}
.c-mobilebar__quote{background:var(--c-navy);color:#fff;}
@media (min-width:56.25em){.c-mobilebar{display:none;}}
@media (max-width:56.24em){body{padding-bottom:calc(var(--mobilebar-h) + var(--callbar-h));}}

/* ---- 6. UTILITIES ---- */
.u-mt-0{margin-top:0;}
.u-mb-0{margin-bottom:0;}
.u-nowrap{white-space:nowrap;}
