/* =========================================================================
   theme-v2.css — full redesign design system for Brooklyn Sidewalk Repair.
   Content, brand colors, and fonts are unchanged; the layout/design is new.
   Self-contained: does not depend on the old master-theme.css (Bootstrap).
   Fonts (@font-face) come from fa.css; icons from fa.css / fontello.css.
   ========================================================================= */

:root {
  --g: #1c8729;         /* primary green */
  --g2: #5cc349;        /* accent green */
  --g-dark: #135d1c;    /* dark green   */
  --g-deep: #0f3d16;    /* deepest green */
  --ink: #131313;       /* near-black text */
  --muted: #59635d;     /* secondary text */
  --line: #e3eae5;      /* hairlines */
  --soft: #f4f8f5;      /* soft section bg */
  --dark: #0e1a12;      /* dark section bg */
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(15, 61, 22, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 61, 22, 0.16);
  --maxw: 1180px;
  --head: 'Montserrat-Bold', system-ui, sans-serif;
  --med: 'Montserrat-Medium', system-ui, sans-serif;
  --body: 'Roboto-Regular', system-ui, sans-serif;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.v2 {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
body.v2 img { max-width: 100%; display: block; }
body.v2 a { color: var(--g); text-decoration: none; }
body.v2 a:hover { text-decoration: underline; }
.v2 h1, .v2 h2, .v2 h3, .v2 h4 { font-family: var(--head); color: var(--ink); line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.01em; }
.v2 h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.v2 h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.v2 h3 { font-size: 1.25rem; }
.v2 p { margin: 0 0 1rem; }
.v2 .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.v2 .eyebrow {
  font-family: var(--med); text-transform: uppercase; letter-spacing: .14em;
  font-size: .8rem; color: var(--g); display: inline-block; margin-bottom: .6rem;
}
.v2 .lead { font-size: 1.12rem; color: var(--muted); }

/* ---------- buttons ---------- */
.v2 .btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--head); font-size: 1rem; line-height: 1;
  padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration: none !important;
}
.v2 .btn-primary { background: var(--g); color: #fff; }
.v2 .btn-primary:hover { background: var(--g-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.v2 .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.v2 .btn-ghost:hover { background: #fff; color: var(--g-dark); transform: translateY(-2px); }
.v2 .btn-dark { background: var(--ink); color: #fff; }
.v2 .btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow); }
.v2 .btn-lg { padding: 1.1rem 2rem; font-size: 1.08rem; }

/* ---------- section scaffolding ---------- */
.v2 .section { padding: 5rem 0; }
.v2 .section--soft { background: var(--soft); }
.v2 .section--dark { background: var(--dark); color: #d9e5dc; }
.v2 .section--dark h2, .v2 .section--dark h3 { color: #fff; }
.v2 .section-head { max-width: 760px; margin: 0 auto 2.6rem; text-align: center; }
.v2 .section-head p { color: var(--muted); margin: 0; }
.v2 .section--dark .section-head p { color: #b6c6ba; }

/* =========================================================================
   HEADER
   ========================================================================= */
.v2-header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.v2-header.is-stuck { box-shadow: 0 6px 24px rgba(0,0,0,.09); }
.v2-header__bar { display: flex; align-items: center; gap: 1.2rem; padding: .6rem 0; }
.v2-header__logo img { height: 62px; width: auto; }
.v2-header__spacer { flex: 1; }
.v2-nav { display: flex; align-items: center; gap: .3rem; }
.v2-nav > .v2-nav__item { position: relative; }
.v2-nav__item > a {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--med); color: var(--ink); padding: .7rem .8rem; border-radius: 8px;
  font-size: .97rem; text-decoration: none;
}
.v2-nav__item > a:hover { color: var(--g); background: var(--soft); text-decoration: none; }
.v2-nav__item .caret { font-size: .7rem; opacity: .7; }
.v2-drop {
  position: absolute; top: 100%; left: 0; min-width: 260px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.v2-nav__item:hover > .v2-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.v2-drop a {
  display: block; padding: .6rem .8rem; border-radius: 8px; color: var(--ink);
  font-family: var(--body); font-size: .93rem; text-decoration: none;
}
.v2-drop a:hover { background: var(--g); color: #fff; text-decoration: none; }
.v2-header__phone {
  font-family: var(--head); color: var(--g-dark); font-size: 1.15rem;
  display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
}
.v2-header__phone:hover { color: var(--g); text-decoration: none; }
.v2-burger {
  display: none; background: none; border: 0; cursor: pointer; padding: .4rem;
  color: var(--ink); font-size: 1.6rem; line-height: 1;
}

/* mobile drawer */
.v2-drawer { position: fixed; inset: 0; z-index: 200; display: none; }
.v2-drawer.is-open { display: block; }
.v2-drawer__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.v2-drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(84%, 340px);
  background: #fff; box-shadow: var(--shadow-lg); overflow-y: auto; padding: 1.2rem;
  transform: translateX(100%); transition: transform .28s ease;
}
.v2-drawer.is-open .v2-drawer__panel { transform: translateX(0); }
.v2-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .8rem; }
.v2-drawer__head span { font-family: var(--head); color: var(--g); text-transform: uppercase; }
.v2-drawer__close { background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }
.v2-drawer a { display: block; padding: .7rem .4rem; color: var(--ink); font-family: var(--med); border-bottom: 1px solid var(--line); text-decoration: none; }
.v2-drawer a:hover { color: var(--g); }
.v2-drawer .sub a { padding-left: 1.3rem; font-family: var(--body); font-size: .92rem; }

@media (max-width: 991px) {
  .v2-nav, .v2-header__phone.desktop-only { display: none; }
  .v2-burger { display: inline-block; }
  .v2-header__logo img { height: 52px; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.v2-hero {
  position: relative; color: #fff;
  background:
    linear-gradient(115deg, rgba(14,26,18,.92) 0%, rgba(19,93,28,.86) 55%, rgba(28,135,41,.78) 100%),
    #0e1a12 center/cover no-repeat;
}
.v2-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.4rem; align-items: center; padding: 2.4rem 0; }
.v2-hero .eyebrow { margin-bottom: .35rem; }
.v2-hero h1 { color: #fff; font-size: clamp(1.75rem, 3.3vw, 2.5rem); line-height: 1.08; margin-bottom: .6rem; }
.v2-hero p { color: #dbe7de; font-size: 1rem; line-height: 1.55; max-width: 640px; margin-bottom: 0; }
.v2-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; }
.v2-hero__chips { display: flex; flex-wrap: wrap; gap: .45rem 1.3rem; margin-top: 1.1rem; }
.v2-hero__card { padding: 1.5rem 1.6rem; }
.v2-hero__card ul { margin-top: 1rem; }
.v2-hero__card li { margin-bottom: .5rem; }
.v2-hero__chips span { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--med); font-size: .95rem; color: #eaf3ec; }
.v2-hero__chips i { color: var(--g2); }
.v2-hero__card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: 1.8rem; backdrop-filter: blur(4px);
}
.v2-hero__card h3 { color: #fff; margin-bottom: 1rem; }
.v2-hero__card .rating { font-family: var(--head); font-size: 2.6rem; color: #fff; line-height: 1; }
.v2-hero__card .stars { color: #ffd24a; letter-spacing: 2px; margin: .3rem 0 .2rem; }
.v2-hero__card small { color: #c7d6cb; }
.v2-hero__card ul { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.v2-hero__card li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .6rem; color: #eaf3ec; font-size: .96rem; }
.v2-hero__card li i { color: var(--g2); margin-top: .25rem; }
@media (max-width: 860px) {
  .v2-hero__grid { grid-template-columns: 1fr; padding: 3rem 0; gap: 1.8rem; }
}

/* =========================================================================
   TRUST STRIP
   ========================================================================= */
.v2-trust { background: var(--g-deep); color: #fff; }
.v2-trust__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2.4rem; padding: .9rem 0; }
.v2-trust__inner span { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--med); font-size: .95rem; }
.v2-trust__inner i { color: var(--g2); }
@media (max-width: 575px) { .v2-trust__inner { gap: .4rem 1.2rem; } .v2-trust__inner span { font-size: .82rem; } }

/* =========================================================================
   CARDS grid (services / E-E-A-T)
   ========================================================================= */
.v2-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; }
.v2-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.v2-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe3d5; }
.v2-card__icon {
  width: 58px; height: 58px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--g), var(--g2)); color: #fff; font-size: 1.5rem; margin-bottom: 1.1rem;
}
.v2-card h3 { margin-bottom: .5rem; }
.v2-card p { color: var(--muted); font-size: .98rem; margin: 0 0 .8rem; }
.v2-card .card-link { font-family: var(--med); color: var(--g); display: inline-flex; align-items: center; gap: .4rem; }
.v2-card .card-link:hover { gap: .7rem; text-decoration: none; }

/* =========================================================================
   FEATURE rows (image + text, alternating)
   ========================================================================= */
.v2-feature { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; }
.v2-feature + .v2-feature { margin-top: 4rem; }
.v2-feature__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.v2-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.v2-feature.reverse .v2-feature__media { order: 2; }
.v2-feature p { color: var(--muted); }
@media (max-width: 800px) {
  .v2-feature { grid-template-columns: 1fr; gap: 1.4rem; }
  .v2-feature.reverse .v2-feature__media { order: 0; }
}

/* =========================================================================
   STATS band
   ========================================================================= */
.v2-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.v2-stats .num { font-family: var(--head); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--g2); line-height: 1; }
.v2-stats .lbl { font-family: var(--med); color: #c7d6cb; margin-top: .5rem; font-size: .95rem; }
@media (max-width: 620px) { .v2-stats { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; } }

/* =========================================================================
   PROCESS steps
   ========================================================================= */
.v2-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; counter-reset: step; }
.v2-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; position: relative; }
.v2-step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--head); font-size: 1.15rem; color: #fff; background: var(--g);
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.v2-step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.v2-step p { color: var(--muted); font-size: .95rem; margin: 0; }
.v2-note { text-align: center; margin-top: 2rem; color: var(--muted); }

/* =========================================================================
   COST table
   ========================================================================= */
.v2-cost { max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.v2-cost .row { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.4rem; border-bottom: 1px solid var(--line); }
.v2-cost .row:last-child { border-bottom: 0; }
.v2-cost .row:nth-child(odd) { background: var(--soft); }
.v2-cost .row span:first-child { font-family: var(--med); }
.v2-cost .row span:last-child { font-family: var(--head); color: var(--g-dark); white-space: nowrap; }

/* =========================================================================
   NEIGHBORHOOD chips
   ========================================================================= */
.v2-hoods { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: .7rem; }
.v2-hoods a {
  display: flex; align-items: center; gap: .6rem; padding: .85rem 1rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--ink);
  font-family: var(--med); font-size: .96rem; text-decoration: none; transition: all .15s ease;
}
.v2-hoods a i { color: var(--g); }
.v2-hoods a:hover { background: var(--g); border-color: var(--g); color: #fff; text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.v2-hoods a:hover i { color: #fff; }

/* =========================================================================
   REVIEWS
   ========================================================================= */
.v2-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.v2-review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.v2-review .stars { color: #ffb400; letter-spacing: 2px; margin-bottom: .7rem; }
.v2-review p { font-style: italic; color: var(--ink); }
.v2-review .who { font-family: var(--head); color: var(--g-dark); margin-top: .8rem; font-style: normal; }

/* =========================================================================
   FAQ accordion (native <details>)
   ========================================================================= */
.v2-faq { max-width: 820px; margin: 0 auto; }
.v2-faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .8rem; overflow: hidden; }
.v2-faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-family: var(--head);
  font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.v2-faq summary::-webkit-details-marker { display: none; }
.v2-faq summary::after { content: "\2b"; font-family: var(--head); color: var(--g); font-size: 1.3rem; transition: transform .2s ease; }
.v2-faq details[open] summary::after { transform: rotate(45deg); }
.v2-faq details[open] summary { color: var(--g-dark); }
.v2-faq .answer { padding: 0 1.3rem 1.2rem; color: var(--muted); }
.v2-faq .answer p { margin: 0; }

/* =========================================================================
   CTA band
   ========================================================================= */
.v2-ctaband { background: linear-gradient(120deg, var(--g-dark), var(--g)); color: #fff; text-align: center; }
.v2-ctaband h2 { color: #fff; }
.v2-ctaband p { color: #e5f2e8; max-width: 640px; margin: 0 auto 1.6rem; }
.v2-ctaband .btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.v2-footer { background: var(--dark); color: #b9c8bd; padding: 4rem 0 0; }
.v2-footer__grid { display: grid; grid-template-columns: 1.5fr .9fr .9fr 1.4fr 1fr; gap: 2.2rem; }
.v2-footer h4 { color: #fff; font-family: var(--head); font-size: 1.05rem; margin-bottom: 1rem; }
.v2-footer__logo { background: #fff; border-radius: 12px; padding: .6rem; display: inline-block; margin-bottom: 1rem; }
.v2-footer__logo img { height: 66px; }
.v2-footer a { color: #b9c8bd; text-decoration: none; }
.v2-footer a:hover { color: var(--g2); }
.v2-footer ul { list-style: none; padding: 0; margin: 0; }
.v2-footer li { margin-bottom: .55rem; }
.v2-footer .social { display: flex; gap: .6rem; margin-top: 1rem; }
.v2-footer .social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; }
.v2-footer .social a:hover { background: var(--g); }
.v2-footer__areas { column-count: 2; column-gap: 1.1rem; }
.v2-footer__areas li { break-inside: avoid; margin-bottom: .55rem; }
.v2-footer__areas a { font-size: .9rem; white-space: nowrap; }
@media (max-width: 480px) { .v2-footer__areas { column-count: 2; } }
.v2-footer__bar { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding: 1.3rem 0; text-align: center; font-size: .9rem; }
@media (max-width: 800px) { .v2-footer__grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (max-width: 480px) { .v2-footer__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Sticky mobile call/estimate bar
   ========================================================================= */
.v2-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; display: none; grid-template-columns: 1fr 1fr; box-shadow: 0 -2px 12px rgba(0,0,0,.2); }
.v2-sticky a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem; font-family: var(--head); color: #fff; text-decoration: none; }
.v2-sticky .call { background: var(--g); }
.v2-sticky .quote { background: var(--g-dark); }
@media (max-width: 767px) { .v2-sticky { display: grid; } body.v2 { padding-bottom: 58px; } }

/* generic interior page intro spacing */
.v2 .page-intro { padding-top: 3rem; }
.v2 .breadcrumb-v2 { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.v2 .breadcrumb-v2 a { color: var(--muted); }
.v2 .breadcrumb-v2 a:hover { color: var(--g); }
.v2 .prose h2 { margin-top: 2.4rem; }
.v2 .prose ul { padding-left: 1.2rem; }
.v2 .prose li { margin-bottom: .5rem; }

/* =========================================================================
   SERVICE / INTERIOR SUB-PAGES (redesigned)
   Hero band + framed image + two-column body with sticky CTA sidebar.
   Replaces the old full-width single-column article with a full image.
   ========================================================================= */
/* neutralize the legacy single-column #content rules on the redesigned sections */
.v2 .v2-subhero#content { max-width: none; margin: 0; padding: 0; }
.v2 .v2-body#content, .v2 .v2-body { max-width: none; margin: 0; padding: 3.6rem 0; }
.v2-subhero {
  position: relative; color: #fff;
  background:
    linear-gradient(115deg, rgba(14,26,18,.94) 0%, rgba(19,93,28,.88) 55%, rgba(28,135,41,.72) 100%),
    #0e1a12 center/cover no-repeat;
}
.v2-subhero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.6rem; align-items: center; padding: 3.4rem 0; }
.v2-subhero .crumb { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; font-family: var(--med); font-size: .85rem; margin-bottom: 1rem; }
.v2-subhero .crumb a { color: #bfe3c6; }
.v2-subhero .crumb a:hover { color: #fff; text-decoration: none; }
.v2-subhero .crumb .sep { color: #6f8f77; }
.v2-subhero .crumb .cur { color: #8fe39a; }
.v2-subhero .eyebrow { color: #8fe39a; }
.v2-subhero h1 { color: #fff; margin-bottom: 1rem; }
.v2-subhero .lead { color: #dbe7de; font-size: 1.12rem; max-width: 600px; margin: 0; }
.v2-subhero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.7rem; }
.v2-subhero__chips { display: flex; flex-wrap: wrap; gap: .5rem 1.3rem; margin-top: 1.6rem; }
.v2-subhero__chips span { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--med); font-size: .92rem; color: #eaf3ec; }
.v2-subhero__chips i { color: var(--g2); }
.v2-subhero__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; border: 1px solid rgba(255,255,255,.18); }
.v2-subhero__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .v2-subhero__grid { grid-template-columns: 1fr; padding: 2.4rem 0; gap: 1.6rem; }
  .v2-subhero__media { aspect-ratio: 16/9; }
}

/* body: two-column article + sticky sidebar */
.v2-body { padding: 3.6rem 0; }
.v2-layout { display: grid; grid-template-columns: minmax(0, 1.7fr) .95fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .v2-layout { grid-template-columns: 1fr; gap: 2.2rem; } }

.v2-prose { max-width: 760px; color: #333; }
.v2-prose > *:first-child { margin-top: 0; }
.v2-prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.95rem); margin: 2.4rem 0 .7rem; }
.v2-prose h3 { color: var(--g-dark); font-size: 1.2rem; margin: 1.6rem 0 .4rem; }
.v2-prose p { color: #333; }
.v2-prose a { color: var(--g); font-family: var(--med); }
.v2-prose ul, .v2-prose ol { padding-left: 0; margin: 1rem 0 1.5rem; list-style: none; }
.v2-prose ul li { position: relative; padding-left: 1.9rem; margin-bottom: .55rem; }
.v2-prose ul li::before {
  content: "\2713"; position: absolute; left: 0; top: 0; font-weight: 700;
  color: #fff; background: var(--g); width: 1.25rem; height: 1.25rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .72rem; margin-top: .2rem;
}
.v2-prose ol { counter-reset: pstep; }
.v2-prose ol li { position: relative; padding-left: 2.4rem; margin-bottom: .7rem; }
.v2-prose ol li::before {
  counter-increment: pstep; content: counter(pstep);
  position: absolute; left: 0; top: .05rem; font-family: var(--head); font-size: .8rem;
  color: #fff; background: var(--g-dark); width: 1.6rem; height: 1.6rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.v2-prose__figure { margin: 1.8rem 0 2rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.v2-prose__figure img { width: 100%; display: block; }

/* sticky sidebar */
.v2-side { display: flex; flex-direction: column; gap: 1.2rem; position: sticky; top: 96px; }
@media (max-width: 900px) { .v2-side { position: static; } }
.v2-side__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); }
.v2-side__card--cta { background: linear-gradient(135deg, var(--g-dark), var(--g)); border: 0; color: #fff; }
.v2-side__card--cta h3 { color: #fff; }
.v2-side__card h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.v2-side__card .muted { color: #d4f5da; font-size: .93rem; margin: 0 0 1rem; }
.v2-side__phone { font-family: var(--head); font-size: 1.5rem; color: #fff; display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1.1rem; }
.v2-side__phone:hover { color: #fff; text-decoration: none; }
.v2-side__list { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.v2-side__list li { display: flex; gap: .55rem; align-items: flex-start; margin-bottom: .5rem; font-size: .93rem; color: #eaf3ec; }
.v2-side__list i { color: #bff0c6; margin-top: .3rem; }
.v2-side__card--cta .btn { width: 100%; justify-content: center; }
.v2-side__card--cta .btn + .btn { margin-top: .6rem; }
.v2-side__links { list-style: none; padding: 0; margin: 0; }
.v2-side__links li { border-bottom: 1px solid var(--line); }
.v2-side__links li:last-child { border-bottom: 0; }
.v2-side__links a { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .68rem 0; color: var(--ink); font-family: var(--med); font-size: .94rem; }
.v2-side__links a:hover { color: var(--g); text-decoration: none; padding-left: .25rem; }
.v2-side__links i { color: var(--g); font-size: .78rem; }

/* =========================================================================
   INTERIOR PAGES — content re-skinned after dropping the old theme.
   The old Bootstrap rows/cols collapse to a clean single-column article.
   ========================================================================= */
.v2 #content { max-width: 1000px; margin: 0 auto; padding: 3rem 20px 1.5rem; }
.v2.interior #content h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); text-align: center; margin: .3rem auto 1.4rem; max-width: 900px; }
.v2 #content h2 { font-size: clamp(1.45rem, 2.6vw, 2rem); margin: 2.2rem 0 .7rem; }
.v2 #content h3 { margin: 1.4rem 0 .4rem; color: var(--g-dark); font-size: 1.2rem; }
.v2 #content p { color: #333; }
.v2 #content ul, .v2 #content ol { padding-left: 1.3rem; }
.v2 #content li { margin-bottom: .5rem; }
.v2 #content img, .v2 #content picture img {
  border-radius: 14px; box-shadow: var(--shadow); margin: 1.2rem auto; width: 100%; height: auto; display: block;
}
.v2 #content .bgcover {
  min-height: 300px; background-size: cover !important; background-position: center !important;
  border-radius: 16px; margin: 1.5rem 0;
}
/* breadcrumb */
.v2 #content .minimal-breadcrumb { display: flex; flex-wrap: wrap; gap: .45rem; font-size: .86rem; color: var(--muted); margin-bottom: 1.2rem; justify-content: center; }
.v2 #content .minimal-breadcrumb .trail:not(:last-child)::after { content: "/"; margin-left: .5rem; color: #bbb; }
.v2 #content .minimal-breadcrumb a { color: var(--muted); }
.v2 #content .minimal-breadcrumb a:hover { color: var(--g); }
/* legacy buttons/links */
.v2 #content .btn-more, .v2 #content .btn-reviews, .v2 #content .btn-banner, .v2 #content .req-form {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--g); color: #fff !important;
  padding: .8rem 1.5rem; border-radius: 999px; font-family: var(--head); text-decoration: none !important;
  transition: background .15s ease, transform .15s ease;
}
.v2 #content .btn-more:hover, .v2 #content .btn-reviews:hover, .v2 #content .btn-banner:hover, .v2 #content .req-form:hover { background: var(--g-dark); transform: translateY(-2px); }
/* forms (contact) */
.v2 #content form { max-width: 640px; margin: 1.4rem auto; }
.v2 #content label { display: block; font-family: var(--med); margin: .9rem 0 .3rem; }
.v2 #content input, .v2 #content textarea, .v2 #content select {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--body); font-size: 1rem; background: #fff;
}
.v2 #content input:focus, .v2 #content textarea:focus, .v2 #content select:focus { outline: 2px solid var(--g2); border-color: var(--g); }
.v2 #content textarea { min-height: 130px; resize: vertical; }
.v2 #content .street2 { margin-top: .6rem; }
.v2 #content .submit, .v2 #content button[type=submit] {
  background: var(--g); color: #fff; border: 0; padding: .95rem 2rem; border-radius: 999px;
  font-family: var(--head); font-size: 1.02rem; cursor: pointer; margin-top: 1.2rem;
}
.v2 #content .submit:hover, .v2 #content button[type=submit]:hover { background: var(--g-dark); }
/* carousels/testimonials without the old JS: show every slide */
.v2 #content .carousel-item { display: block !important; }
.v2 #content .carousel-caption { position: static !important; }
/* tables */
.v2 #content table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; }
.v2 #content th, .v2 #content td { border: 1px solid var(--line); padding: .7rem 1rem; text-align: left; }
/* legacy testimonial styling */
.v2 #content .testimonial { font-style: italic; }
/* hide leftover hidden inputs / http-response markers spacing */
.v2 #content input[type=hidden] { display: none; }

/* legacy colored bands (prime/second/third-bg-color, darken) still defined in fa.css —
   keep text legible on them within the redesigned interior pages */
.v2 #content .prime-bg-color,
.v2 #content .second-bg-color,
.v2 #content .third-bg-color,
.v2 #content .darken {
  color: #fff; border-radius: 16px; padding: 2rem; margin: 1.5rem 0;
}
.v2 #content .prime-bg-color :is(h1,h2,h3,h4,p,span,a,li),
.v2 #content .second-bg-color :is(h1,h2,h3,h4,p,span,a,li),
.v2 #content .third-bg-color :is(h1,h2,h3,h4,p,span,a,li),
.v2 #content .darken :is(h1,h2,h3,h4,p,span,a,li) { color: #fff; }
.v2 #content .prime-bg-color a:hover,
.v2 #content .third-bg-color a:hover { color: #d4f5da; }
.v2 #content .white, .v2 #content .text-light { color: #fff; }
