/* ==========================================================================
   Vargas Brothers Construction - NEM per-customer site template
   All brand values live in the :root token block below. Recolor the whole
   site by changing --brand-red. Red / near-black / white only.
   ========================================================================== */

/* ----- Self-hosted fonts (offline-safe, variable, latin subset) ----- */
@font-face {
  font-family: "Oswald";
  src: url("../assets/fonts/oswald-latin.woff2") format("woff2");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../assets/fonts/hanken-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ----- Design tokens (PINNED brand) ----- */
:root {
  /* brand palette */
  --ink: #161616;
  --brand-red: #C8202B;
  --brand-red-strong: #E11D1D;
  --paper: #FAF8F5;
  --white: #FFFFFF;

  /* derived neutrals (greys off the ink, no new hues) */
  --ink-700: #2b2b2b;
  --ink-500: #4a4a4a;
  --ink-300: #8a8a8a;
  --line: #e4e0db;
  --line-dark: #303030;

  /* type */
  --display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* type scale (mobile-first; fluid) */
  --fs-mega: clamp(2.6rem, 9vw, 5.5rem);
  --fs-h1:   clamp(2.1rem, 6vw, 3.75rem);
  --fs-h2:   clamp(1.7rem, 4.5vw, 2.8rem);
  --fs-h3:   clamp(1.25rem, 3vw, 1.6rem);
  --fs-lead: clamp(1.05rem, 2.2vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-sm:   0.875rem;
  --fs-xs:   0.75rem;

  /* spacing */
  --gap: 1rem;
  --pad-x: clamp(1.1rem, 5vw, 2.5rem);
  --section-y: clamp(3.25rem, 8vw, 6rem);
  --maxw: 1180px;

  /* misc */
  --radius: 4px;
  --shadow: 0 14px 38px -18px rgba(0,0,0,.45);
  --shadow-sm: 0 6px 18px -10px rgba(0,0,0,.4);
  --header-h: 64px;
  --callbar-h: 60px;
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-red); text-decoration: none; }
a:hover { color: var(--brand-red-strong); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 .5em;
  color: var(--ink);
}
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: .02em; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }

/* skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .6rem 1rem;
}
.skip-link:focus { left: 0; }

/* focus visibility */
:focus-visible { outline: 3px solid var(--brand-red-strong); outline-offset: 2px; }

/* ----- Section label (branded eyebrow) ----- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); text-transform: uppercase;
  font-size: var(--fs-sm); letter-spacing: .18em; font-weight: 600;
  color: var(--brand-red); margin: 0 0 .9rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 3px; background: var(--brand-red); display: inline-block;
}
.section-y { padding-block: var(--section-y); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .04em;
  font-weight: 600; font-size: 1.0625rem;
  min-height: 48px; padding: .8rem 1.5rem;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: transform .12s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
  text-align: center; line-height: 1.1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand-red); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-red-strong); color: #fff; }
.btn-call { background: var(--ink); color: #fff; }
.btn-call:hover { background: #000; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); }
.btn-lg { font-size: 1.2rem; min-height: 56px; padding: 1rem 2rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Top utility bar + Header
   ========================================================================== */
.topbar {
  background: var(--ink); color: #cfcfcf;
  font-size: var(--fs-xs); letter-spacing: .03em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 34px; padding-block: .35rem; }
.topbar a { color: #fff; font-weight: 600; }
.topbar .habla { color: var(--brand-red); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.topbar .hours { display: none; }
@media (min-width: 760px) { .topbar .hours { display: inline; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(22,22,22,.97); backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--brand-red);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; }
/* Logo is a full-color lockup; sit it on a white chip so the whole real logo
   reads against the dark header (its black text/houses would vanish otherwise). */
.brand img { height: 34px; width: auto; background: #fff; padding: 6px 9px; border-radius: 5px; box-sizing: content-box; }
/* The logo PNG already contains the wordmark, so the text version is hidden to
   avoid a duplicate "Vargas Brothers" in the header (kept in DOM is unnecessary). */
.brand .brand-name { display: none; }

.nav { display: none; align-items: center; gap: 1.6rem; }
.nav a { color: #efefef; font-family: var(--display); text-transform: uppercase; font-size: .95rem; letter-spacing: .05em; font-weight: 500; }
.nav a:hover { color: var(--brand-red); }
.header-cta { display: none; align-items: center; gap: .6rem; }
@media (min-width: 920px) {
  .nav { display: flex; }
  .header-cta { display: flex; }
}

/* mobile menu toggle */
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 48px; height: 48px; background: transparent; border: 0; cursor: pointer; padding: 10px;
}
.nav-toggle span { height: 3px; width: 100%; background: #fff; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 920px) { .nav-toggle { display: none; } }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
  background: var(--ink); border-bottom: 3px solid var(--brand-red);
  transform: translateY(-120%); transition: transform .28s ease; padding: 1rem var(--pad-x) 1.4rem;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { display: block; color: #fff; font-family: var(--display); text-transform: uppercase; font-size: 1.3rem; padding: .7rem 0; border-bottom: 1px solid var(--line-dark); letter-spacing: .04em; }
.mobile-menu .btn { margin-top: 1rem; }

/* ==========================================================================
   Hero (asymmetric, real jobsite photo)
   ========================================================================== */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero::after {
  /* asymmetric red wedge, bottom-left */
  content: ""; position: absolute; left: 0; bottom: 0; z-index: 1;
  width: 46%; height: 8px; background: var(--brand-red);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(22,22,22,.92) 0%, rgba(22,22,22,.72) 42%, rgba(22,22,22,.25) 100%);
}
.hero .container { position: relative; z-index: 2; padding-block: clamp(3rem, 10vw, 6.5rem); }
.hero-inner { max-width: 660px; }
.hero .kicker {
  display: inline-block; background: var(--brand-red); color: #fff;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .12em;
  font-weight: 600; font-size: .8rem; padding: .35rem .7rem; margin-bottom: 1.1rem;
}
.hero h1 { color: #fff; font-size: var(--fs-mega); margin-bottom: .35em; }
.hero h1 .accent { color: var(--brand-red); }
.hero-sub { font-size: var(--fs-lead); color: #e9e6e2; max-width: 46ch; margin-bottom: 1.6rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem; margin-top: 1.8rem; font-size: var(--fs-sm); color: #d9d6d2; }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust span::before { content: ""; width: 9px; height: 9px; background: var(--brand-red); transform: rotate(45deg); }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trustbar { background: var(--ink); color: #fff; border-top: 1px solid var(--line-dark); }
.trustbar ul {
  list-style: none; margin: 0; padding: 1.1rem var(--pad-x);
  display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.4rem;
  max-width: var(--maxw); margin-inline: auto;
}
.trustbar li { display: flex; align-items: center; gap: .6rem; font-family: var(--display); text-transform: uppercase; letter-spacing: .03em; font-size: .92rem; font-weight: 500; }
.trustbar li svg { flex: 0 0 auto; color: var(--brand-red); }
@media (min-width: 760px) { .trustbar ul { grid-template-columns: repeat(5, auto); justify-content: space-between; align-items: center; } }

/* ==========================================================================
   Services (intentional NON-uniform layout)
   ========================================================================== */
.services .head-row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.8rem; }
.services h2 { font-size: var(--fs-h1); max-width: 14ch; }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 720px) {
  .service-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
  }
  /* asymmetric spans: feature card is big, others vary */
  .svc.feature { grid-column: span 3; grid-row: span 2; }
  .svc.wide    { grid-column: span 3; }
  .svc.third   { grid-column: span 2; }
  .svc.half    { grid-column: span 3; }
}
.svc {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--ink); color: #fff; min-height: 200px;
  display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none; isolation: isolate;
}
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s ease; }
.svc::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(22,22,22,.92) 8%, rgba(22,22,22,.25) 70%, rgba(22,22,22,.05) 100%); }
.svc:hover img { transform: scale(1.05); }
.svc .svc-body { padding: 1.2rem 1.2rem 1.3rem; }
.svc h3 { color: #fff; margin-bottom: .25rem; }
.svc.feature h3 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.svc p { color: #d7d4d0; font-size: var(--fs-sm); margin: 0; }
.svc .more { display: inline-flex; align-items: center; gap: .4rem; margin-top: .7rem; color: var(--brand-red); font-family: var(--display); text-transform: uppercase; font-size: .82rem; letter-spacing: .08em; font-weight: 600; }
.svc .tag { position: absolute; top: 0; left: 0; z-index: 1; background: var(--brand-red); color: #fff; font-family: var(--display); text-transform: uppercase; font-size: .68rem; letter-spacing: .12em; padding: .3rem .6rem; }
.svc-extra { margin-top: 1.4rem; font-size: var(--fs-sm); color: var(--ink-500); }

/* ==========================================================================
   Gallery + before/after slider
   ========================================================================== */
.gallery { background: var(--paper); }
.gallery .head-row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }

.ba-wrap { display: grid; gap: 1.4rem; }
@media (min-width: 880px) { .ba-wrap { grid-template-columns: 1.4fr 1fr; align-items: start; } }

.ba {
  position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow); user-select: none; touch-action: pan-y;
  background: var(--ink);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .after-img { clip-path: inset(0 0 0 50%); }
.ba .ba-label { position: absolute; top: .7rem; z-index: 3; background: rgba(22,22,22,.82); color: #fff; font-family: var(--display); text-transform: uppercase; font-size: .72rem; letter-spacing: .1em; padding: .25rem .55rem; }
.ba .lbl-before { left: .7rem; }
.ba .lbl-after { right: .7rem; background: var(--brand-red); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #fff; z-index: 4; transform: translateX(-50%); }
.ba-handle::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--brand-red); border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.ba-handle::after {
  content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: #fff; font-size: 1.1rem; font-weight: 700; letter-spacing: -1px;
}
.ba-caption { font-size: var(--fs-sm); color: var(--ink-500); margin-top: .6rem; }

.showcase { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.showcase img { width: 100%; }
.showcase .cap { font-size: var(--fs-xs); color: var(--ink-300); padding: .5rem .2rem 0; }

.thumb-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin-top: 1.6rem; }
@media (min-width: 720px) { .thumb-grid { grid-template-columns: repeat(4, 1fr); } }
.thumb { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1/1; background: var(--ink); }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.thumb:hover img { transform: scale(1.07); }

/* ==========================================================================
   Estimator (mid-page block)
   ========================================================================== */
.estimator { background: var(--brand-red); color: #fff; position: relative; overflow: hidden; }
.estimator::before {
  content: ""; position: absolute; inset: 0; opacity: .12;
  background-image: repeating-linear-gradient(45deg, #fff 0 2px, transparent 2px 22px);
}
.estimator .container { position: relative; display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 820px) { .estimator .container { grid-template-columns: 1.3fr 1fr; } }
.estimator .eyebrow { color: #fff; }
.estimator .eyebrow::before { background: #fff; }
.estimator h2 { color: #fff; font-size: var(--fs-h1); }
.estimator p { color: #ffe9e9; font-size: var(--fs-lead); max-width: 48ch; }
.estimator .est-card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
/* override the section's light paragraph color so card copy is readable on white */
.estimator .est-card p { color: var(--ink-700); }
.estimator .est-card .price-line { font-family: var(--display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: .04em; color: var(--brand-red); margin-bottom: .3rem; }
.estimator .est-card .small { font-size: var(--fs-sm); color: var(--ink-500); margin-top: .8rem; }
.estimator .non-fence { font-size: var(--fs-sm); color: #ffdada; margin-top: .4rem; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews { background: var(--ink); color: #fff; }
.reviews .eyebrow { color: var(--brand-red); }
.reviews h2 { color: #fff; }
.reviews .sub { color: #cbc8c4; max-width: 52ch; margin-bottom: 2rem; }
.review-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: #1f1f1f; border: 1px solid var(--line-dark); border-left: 4px solid var(--brand-red);
  border-radius: var(--radius); padding: 1.3rem 1.3rem 1.2rem; display: flex; flex-direction: column;
}
.review.tall { grid-row: span 2; }
.review .stars { color: var(--brand-red); letter-spacing: .12em; font-size: .95rem; margin-bottom: .6rem; }
.review .fb { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--fs-xs); color: #9aa0c0; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: .6rem; }
.review blockquote { margin: 0 0 1rem; font-size: 1.02rem; line-height: 1.55; color: #ececec; }
.review .who { margin-top: auto; font-family: var(--display); text-transform: uppercase; letter-spacing: .04em; color: #fff; font-size: .98rem; }
.review .who span { display: block; font-family: var(--body); text-transform: none; letter-spacing: 0; color: var(--ink-300); font-size: var(--fs-xs); font-weight: 500; }

/* ==========================================================================
   Story (about)
   ========================================================================== */
.story { background: var(--white); }
.story .grid { display: grid; gap: 1.8rem; align-items: center; }
@media (min-width: 860px) { .story .grid { grid-template-columns: 1fr 1.05fr; gap: 3rem; } }
.story-media { position: relative; }
.story-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.story-media .stamp {
  position: absolute; right: -10px; bottom: -16px; background: var(--brand-red); color: #fff;
  font-family: var(--display); text-transform: uppercase; text-align: center; line-height: 1;
  padding: .9rem 1rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); transform: rotate(-3deg);
}
.story-media .stamp b { display: block; font-size: 1.5rem; }
.story-media .stamp span { font-size: .62rem; letter-spacing: .14em; }
.story h2 { font-size: var(--fs-h1); }
.story .lead { font-size: var(--fs-lead); color: var(--ink-700); }
.story .owners { display: flex; gap: 1.4rem; margin-top: 1.2rem; flex-wrap: wrap; }
.story .owner { font-family: var(--display); text-transform: uppercase; }
.story .owner span { display: block; font-family: var(--body); text-transform: none; color: var(--brand-red); font-weight: 700; font-size: var(--fs-sm); }

/* ==========================================================================
   Contact + form + map
   ========================================================================== */
.contact { background: var(--paper); }
.contact .grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact .grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.contact h2 { font-size: var(--fs-h1); }

.qform { background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--brand-red); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--display); text-transform: uppercase; font-size: .8rem; letter-spacing: .07em; margin-bottom: .35rem; color: var(--ink-700); }
.field label .req { color: var(--brand-red); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: .75rem .8rem; border: 1.5px solid var(--line); border-radius: var(--radius); background: #fff;
  min-height: 48px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-red); outline: none; }
.field .error-msg { display: none; color: var(--brand-red-strong); font-size: var(--fs-sm); margin-top: .3rem; font-weight: 600; }
.field.invalid input, .field.invalid select { border-color: var(--brand-red-strong); }
.field.invalid .error-msg { display: block; }
.form-success { display: none; background: #11240f00; border: 2px solid var(--brand-red); border-radius: var(--radius); padding: 1.2rem; }
.form-success.show { display: block; }
.form-success h3 { color: var(--brand-red); margin-bottom: .3rem; }
.form-note { font-size: var(--fs-xs); color: var(--ink-300); margin-top: .8rem; }

.nap { font-style: normal; line-height: 1.7; }
.nap .row { display: flex; gap: .7rem; align-items: flex-start; padding: .55rem 0; border-bottom: 1px solid var(--line); }
.nap .row svg { flex: 0 0 auto; color: var(--brand-red); margin-top: 3px; }
.nap a { color: var(--ink); font-weight: 600; }
.nap .habla { color: var(--brand-red); font-weight: 700; }
.hours-list { list-style: none; margin: .4rem 0 0; padding: 0; font-size: var(--fs-sm); }
.hours-list li { display: flex; justify-content: space-between; padding: .25rem 0; border-bottom: 1px dotted var(--line); }
.hours-list .day { color: var(--ink-500); }
.map-embed { margin-top: 1.2rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 16 / 10; background: #ddd; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #0e0e0e; color: #bdbdbd; font-size: var(--fs-sm); }
.site-footer .container { display: grid; gap: 1.6rem; padding-block: 2.6rem 1.4rem; }
@media (min-width: 760px) { .site-footer .container { grid-template-columns: 1.5fr 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; letter-spacing: .08em; margin-bottom: .8rem; }
.site-footer a { color: #d7d7d7; }
.site-footer a:hover { color: var(--brand-red); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: .2rem 0; }
.site-footer .brand-name { color: #fff; font-family: var(--display); text-transform: uppercase; font-size: 1.3rem; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 1rem var(--pad-x); text-align: center; color: #7c7c7c; font-size: var(--fs-xs); }

/* ==========================================================================
   Mobile sticky call bar
   ========================================================================== */
.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line-dark); box-shadow: 0 -6px 20px -8px rgba(0,0,0,.5);
}
.mobile-callbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: var(--callbar-h); font-family: var(--display); text-transform: uppercase; letter-spacing: .04em; font-size: 1rem; font-weight: 600; }
.mobile-callbar .mc-call { background: var(--ink); color: #fff; }
.mobile-callbar .mc-call small { font-family: var(--body); text-transform: none; letter-spacing: 0; font-size: .62rem; color: var(--brand-red); font-weight: 700; }
.mobile-callbar .mc-est { background: var(--brand-red); color: #fff; }
.mobile-callbar .mc-est small { font-family: var(--body); text-transform: none; letter-spacing: 0; font-size: .62rem; color: #ffdada; font-weight: 600; }
@media (min-width: 769px) { .mobile-callbar { display: none; } }
@media (max-width: 768px) { body { padding-bottom: var(--callbar-h); } }

/* ==========================================================================
   Service page specifics
   ========================================================================== */
.subhero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.subhero-media { position: absolute; inset: 0; }
.subhero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.subhero .container { position: relative; z-index: 2; padding-block: clamp(2.6rem, 8vw, 4.5rem); }
.subhero .crumbs { font-size: var(--fs-sm); color: #b9b6b2; margin-bottom: 1rem; }
.subhero .crumbs a { color: #fff; }
.subhero h1 { color: #fff; font-size: var(--fs-h1); max-width: 18ch; }
.subhero p { color: #e7e4e0; font-size: var(--fs-lead); max-width: 52ch; }
.subhero .subhero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

.prose { max-width: 70ch; }
.prose h2 { font-size: var(--fs-h2); margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul { padding-left: 1.1rem; }
.prose li { margin-bottom: .5rem; }

.split { display: grid; gap: 2rem; }
@media (min-width: 900px) { .split { grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: start; } }

.feature-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .7rem; }
.feature-list li { display: flex; gap: .7rem; align-items: flex-start; }
.feature-list li::before { content: ""; flex: 0 0 auto; width: 12px; height: 12px; margin-top: .42rem; background: var(--brand-red); transform: rotate(45deg); }

.cta-band { background: var(--ink); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d4d1cd; max-width: 50ch; margin-inline: auto; }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.4rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--paper); }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: .7rem; }
.faq summary { cursor: pointer; padding: 1rem 1.1rem; font-family: var(--display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: .02em; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand-red); font-size: 1.6rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding: 0 1.1rem 1.1rem; color: var(--ink-700); }

/* ==========================================================================
   Scroll-reveal (varied, reduced-motion safe)
   ========================================================================== */
/* Reveal states are gated behind .js (added by main.js) so that without
   JavaScript every section is fully visible and un-transformed, never blank. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.r-left { transform: translateX(-26px); }
.js .reveal.r-right { transform: translateX(26px); }
.js .reveal.r-scale { transform: scale(.96); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .svc img, .thumb img { transition: none !important; }
}

/* utility */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.hide { display: none !important; }
