/* ============ PRISTINE PRO — flooring · warm wood theme ============ */
:root {
  --bg: #fbf7f1;              /* warm cream */
  --bg-alt: #f3ebdf;         /* warm sand */
  --bg-deep: #241a12;        /* espresso (footer / dark bands) */
  --ink: #2a2018;            /* espresso text */
  --ink-soft: #5c4d3f;       /* secondary text */
  --muted: #8a7a6a;          /* muted / captions */
  --accent: #b0692a;         /* honey / caramel oak */
  --accent-ink: #8c5019;     /* darker caramel (hover) */
  --accent-soft: #f3e6d5;    /* soft caramel wash */
  --gold: #c9962f;           /* review stars */
  --green: #2f7d4f;          /* success */
  --line: rgba(42, 32, 24, .12);
  --card: #ffffff;
  --shadow: 0 1px 2px rgba(42, 32, 24, .05), 0 10px 26px rgba(42, 32, 24, .08);
  --shadow-lg: 0 26px 60px rgba(42, 32, 24, .18);
  --font-display: 'Archivo', 'Arial', sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 20px;
  --wrap: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-ink); }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.12; font-weight: 800; letter-spacing: -.01em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(18px, 5vw, 48px); }

/* ---- reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px; letter-spacing: .01em;
  padding: 14px 26px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .08s, box-shadow .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(176, 105, 42, .34); }
.btn--primary:hover { background: var(--accent-ink); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--big { padding: 17px 34px; font-size: 17px; }
.btn--light { background: #fff; color: var(--accent); }
.btn--light:hover { background: #fff5ea; color: var(--accent-ink); }
.btn--call { background: #23451f; color: #fff; box-shadow: 0 8px 20px rgba(20, 40, 15, .3); }
.btn--call:hover { background: #1a3417; color: #fff; }

/* ============ NAV ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 12px clamp(18px, 5vw, 48px);
  background: rgba(251, 247, 241, .92); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 16px rgba(42, 32, 24, .06); }
.nav__logo {
  font-family: var(--font-display); font-weight: 800; font-size: 21px;
  letter-spacing: .02em; color: var(--ink); display: inline-flex; align-items: center; gap: 10px;
}
.nav__logo:hover { color: var(--ink); }
.nav__logo b { color: var(--accent); font-weight: 800; }
.nav__logo .mark {
  width: 34px; height: 34px; border-radius: 9px; flex: 0 0 auto;
  background: linear-gradient(135deg, #c17c34, #8c5019);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px; font-weight: 800; box-shadow: 0 3px 8px rgba(140, 80, 25, .35);
}
.nav__links { display: flex; align-items: center; gap: 24px; }
.nav__links a { color: var(--ink-soft); font-size: 14.5px; font-weight: 600; }
.nav__links a:hover { color: var(--accent); }
.nav__phone { color: var(--ink) !important; display: inline-flex; align-items: center; gap: 6px; }
.nav__phone:hover { color: var(--accent) !important; }
.nav__cta { padding: 10px 20px; border-radius: 100px; background: var(--accent); color: #fff !important; box-shadow: 0 6px 16px rgba(176, 105, 42, .3); }
.nav__cta:hover { background: var(--accent-ink); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { display: block; width: 25px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ HERO (photo/texture background) ============ */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: 120px 0 96px; overflow: hidden; color: #fff;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; background: #2a2018; }
.hero__bg img, .hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28, 20, 13, .74) 0%, rgba(28, 20, 13, .55) 45%, rgba(28, 20, 13, .8) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(18px, 5vw, 48px); width: 100%; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; background: rgba(176, 105, 42, .9); padding: 8px 16px; border-radius: 100px; margin-bottom: 22px;
}
.hero__title { font-size: clamp(38px, 7vw, 68px); font-weight: 800; letter-spacing: -.02em; color: #fff; max-width: 16ch; text-shadow: 0 2px 20px rgba(0, 0, 0, .3); }
.hero__title em { color: #f0b064; font-style: normal; }
.hero__lead { font-size: clamp(17px, 2.2vw, 21px); color: #f5ece0; margin: 22px 0 30px; max-width: 44ch; text-shadow: 0 1px 10px rgba(0, 0, 0, .3); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 34px; }
.hero__trust li { list-style: none; display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: #f0e7db; font-weight: 600; }
.hero__trust svg { width: 20px; height: 20px; color: #f0b064; flex: 0 0 auto; }

/* ============ TRUST STRIP ============ */
.strip { background: var(--bg-deep); color: #e8dcc8; }
.strip__inner { max-width: var(--wrap); margin: 0 auto; padding: 24px clamp(18px, 5vw, 48px); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 28px; }
.strip__item { display: flex; align-items: center; gap: 13px; }
.strip__item b { font-family: var(--font-display); font-size: 28px; color: #f0b064; }
.strip__item span { font-size: 13.5px; color: #c3b39d; line-height: 1.35; }

/* ============ SECTIONS ============ */
.section { padding: clamp(52px, 8vw, 92px) 0; }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); color: #ecdfcd; }
.section--deep h2, .section--deep h3 { color: #fff; }
.section__head { max-width: 720px; margin: 0 auto clamp(30px, 5vw, 50px); text-align: center; }
.section__head--left { text-align: left; margin-left: 0; }
.eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 12px; }
.section__title { font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; letter-spacing: -.02em; }
.section__title em { color: var(--accent); font-style: normal; }
.section__sub { font-size: 17.5px; color: var(--ink-soft); margin-top: 14px; }
.section--deep .section__sub { color: #c3b39d; }

/* ============ SERVICE PICKER (homepage — visual cards) ============ */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.svc-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--card);
  box-shadow: var(--shadow); border: 1px solid var(--line); color: #fff;
  transition: transform .2s, box-shadow .2s; display: block; aspect-ratio: 3 / 4;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); color: #fff; }
.svc-card__img { position: absolute; inset: 0; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; }
.svc-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28, 20, 13, .9) 6%, rgba(28, 20, 13, .25) 55%, transparent 85%); }
.svc-card__body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 18px; }
.svc-card__body h3 { color: #fff; font-size: 19px; margin-bottom: 4px; }
.svc-card__cta { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: #f0b064; }
.svc-card:hover .svc-card__cta { gap: 10px; }

/* ============ FEATURES / WHY US ============ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature__ico { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.feature__ico svg { width: 25px; height: 25px; }
.feature h3 { font-size: 18px; margin-bottom: 6px; }
.feature p { font-size: 14.5px; color: var(--ink-soft); }

/* ============ PROCESS ============ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; list-style: none; }
.process li { position: relative; padding: 28px 22px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.process li::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--accent); opacity: .3; display: block; margin-bottom: 12px; }
.process b { display: block; font-family: var(--font-display); font-size: 18px; margin-bottom: 6px; }
.process span { font-size: 14px; color: var(--ink-soft); }

/* ============ COVERAGE / AREA ============ */
.coverage { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.coverage__list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; list-style: none; }
.coverage__list li { font-size: 14px; font-weight: 600; color: var(--ink-soft); background: var(--bg-alt); border: 1px solid var(--line); padding: 7px 14px; border-radius: 100px; }
.section--deep .coverage__list li { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .14); color: #e2d3bf; }
.coverage__card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 30px; }
.section--deep .coverage__card { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); }
.coverage__card h3 { font-size: 20px; margin-bottom: 8px; }
.coverage__card .big { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--accent); }
.section--deep .coverage__card .big { color: #f0b064; }

/* ============ STATS ============ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 5vw, 46px); color: var(--accent); line-height: 1; }
.section--deep .stat b { color: #f0b064; }
.stat span { font-size: 14px; color: var(--ink-soft); margin-top: 8px; display: block; }
.section--deep .stat span { color: #c3b39d; }

/* ============ REVIEWS ============ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 26px; display: flex; flex-direction: column; }
.review__stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; margin-bottom: 12px; }
.review__text { font-size: 15px; color: var(--ink); flex: 1; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review__ava { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-family: var(--font-display); flex: 0 0 auto; }
.review__name { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.review__src { font-size: 12.5px; color: var(--muted); }

/* ============ CTA BANNER ============ */
.cta-banner {
  max-width: var(--wrap); margin: 0 auto; border-radius: var(--radius-lg); position: relative; overflow: hidden;
  color: #fff; text-align: center; padding: clamp(44px, 6vw, 70px) clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow-lg); background: var(--bg-deep);
}
.cta-banner__bg { position: absolute; inset: 0; z-index: 0; opacity: .28; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(26px, 4vw, 42px); }
.cta-banner p { color: #ecdccb; font-size: 17.5px; margin: 14px auto 26px; max-width: 52ch; }
.cta-banner__row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============ FOOTER ============ */
.footer { background: var(--bg-deep); color: #c9b9a3; padding: clamp(48px, 6vw, 68px) 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; }
.footer__logo { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__logo b { color: #f0b064; }
.footer p { font-size: 14px; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; font-family: var(--font-display); }
.footer__col { min-width: 0; }
.footer__col a { display: block; color: #c9b9a3; font-size: 14.5px; padding: 5px 0; overflow-wrap: anywhere; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; color: #a08f79; }
.footer__bottom a { color: #a08f79; }
.footer__bottom a:hover { color: #fff; }

/* ============ WORK VIDEOS ============ */
.videos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 660px; margin: 0 auto; }
.video-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #000; }
.video-card video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; }
.video-card__tag { position: absolute; top: 12px; left: 12px; z-index: 2; pointer-events: none; background: rgba(255,255,255,.94); color: var(--accent); font-family: var(--font-display); font-weight: 700; font-size: 11.5px; padding: 4px 11px; border-radius: 100px; text-transform: uppercase; letter-spacing: .04em; }

/* ============ MEDIA (texture tiles / photos) ============ */
.media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media--wide { aspect-ratio: 16 / 10; }
.media--tall { aspect-ratio: 3 / 4; }
.media--sq { aspect-ratio: 1 / 1; }
.media__tag { position: absolute; top: 12px; left: 12px; background: rgba(255, 255, 255, .94); color: var(--accent); font-family: var(--font-display); font-weight: 700; font-size: 11.5px; padding: 5px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: .04em; }

/* placeholder note ribbon on texture tiles (until real photos) */
.media__soon { position: absolute; bottom: 10px; right: 10px; background: rgba(28, 20, 13, .62); color: #f0e7db; font-size: 10.5px; font-weight: 600; padding: 4px 9px; border-radius: 100px; letter-spacing: .02em; }

/* ============ PAGE HEADER (subpages) ============ */
.pagehead { position: relative; padding: 128px 0 60px; text-align: center; color: #fff; overflow: hidden; }
.pagehead__bg { position: absolute; inset: 0; z-index: 0; }
.pagehead__bg img { width: 100%; height: 100%; object-fit: cover; }
.pagehead__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28, 20, 13, .72), rgba(28, 20, 13, .82)); }
.pagehead > .wrap { position: relative; z-index: 1; }
.pagehead h1 { font-size: clamp(32px, 5vw, 50px); font-weight: 800; color: #fff; }
.pagehead p { font-size: 18px; color: #ecdccb; margin-top: 14px; max-width: 60ch; margin-inline: auto; }
.crumbs { font-size: 13px; color: #d8c6b0; margin-bottom: 16px; }
.crumbs a { color: #d8c6b0; }
.crumbs a:hover { color: #fff; }

/* ============ SERVICE DETAIL (services.html) ============ */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 56px); align-items: center; padding: clamp(40px, 6vw, 64px) 0; border-bottom: 1px solid var(--line); scroll-margin-top: 84px; }
.svc-detail:nth-child(even) .svc-detail__media { order: 2; }
.svc-detail__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 4 / 3; position: relative; }
.svc-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail h2 { font-size: clamp(24px, 3.4vw, 34px); }
.svc-detail .eyebrow { margin-bottom: 10px; }
.svc-detail p { color: var(--ink-soft); margin: 14px 0; }
.svc-detail ul { list-style: none; display: grid; gap: 9px; margin: 14px 0 22px; }
.svc-detail li { display: flex; gap: 10px; font-size: 15px; color: var(--ink); }
.svc-detail li svg { width: 20px; height: 20px; color: var(--accent); flex: 0 0 auto; margin-top: 2px; }

/* ============ ESTIMATE PAGE ============ */
.estimate { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.estimate__aside { position: sticky; top: 96px; }
.estimate__aside .lead-list { list-style: none; display: grid; gap: 16px; margin-top: 18px; }
.estimate__aside .lead-list li { display: flex; gap: 12px; align-items: flex-start; }
.estimate__aside .lead-list svg { width: 22px; height: 22px; color: var(--accent); flex: 0 0 auto; margin-top: 2px; }
.estimate__aside .lead-list b { display: block; font-family: var(--font-display); }
.estimate__aside .lead-list span { font-size: 14px; color: var(--ink-soft); }
.contactbox { margin-top: 26px; padding: 22px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.contactbox a { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(22px, 4vw, 36px); }

/* fields */
.field { display: block; margin-bottom: 14px; }
.field > span { display: block; font-size: 13px; font-weight: 700; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 11px; padding: 13px 15px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg { font-size: 14px; margin-top: 12px; min-height: 18px; font-weight: 600; }
.form-msg.ok { color: var(--green); }
.form-msg.err { color: #c0392b; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip-btn { font-family: var(--font-body); font-size: 14.5px; font-weight: 600; padding: 10px 16px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff; color: var(--ink-soft); cursor: pointer; transition: .15s; }
.chip-btn:hover { border-color: var(--accent); color: var(--accent); }
.chip-btn.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* hero-side lead card (kept for reuse) */
.leadcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(22px, 3vw, 28px); }
.leadcard h3 { font-size: 22px; margin-bottom: 4px; }
.leadcard p { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }

/* ============ GALLERY (work.html) ============ */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
.filter { font-family: var(--font-display); font-weight: 700; font-size: 14px; padding: 9px 18px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff; color: var(--ink-soft); cursor: pointer; transition: .15s; }
.filter:hover { border-color: var(--accent); color: var(--accent); }
.filter.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.work-item img { width: 100%; height: 100%; object-fit: cover; }
.work-item__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; background: linear-gradient(to top, rgba(28, 20, 13, .86), transparent); color: #fff; }
.work-item__cap b { display: block; font-family: var(--font-display); font-size: 15px; }
.work-item__cap span { font-size: 12.5px; color: #e6d7c4; }
.work-item__cat { position: absolute; top: 12px; left: 12px; background: rgba(255, 255, 255, .94); color: var(--accent); font-family: var(--font-display); font-weight: 700; font-size: 11.5px; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: .04em; }

/* ============ MOBILE STICKY ACTION BAR ============ */
.mobilebar { display: none; }
.mobilebar__inner { display: flex; gap: 10px; }
.mobilebar a { flex: 1; }

/* ============ FAQ / ACCORDION ============ */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); margin-bottom: 12px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; padding: 18px 22px; font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 24px; color: var(--accent); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--ink-soft); font-size: 15px; }

/* ============ PROSE (privacy / terms) ============ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 24px; margin: 34px 0 12px; }
.prose h3 { font-size: 18px; margin: 22px 0 8px; }
.prose p, .prose li { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 10px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: 58px; flex-direction: column; align-items: stretch;
    background: var(--bg); padding: 14px 22px 22px; gap: 2px; border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(42, 32, 24, .14);
    transform: translateY(-145%); transition: transform .3s ease; visibility: hidden;
  }
  .nav__links.is-open { transform: none; visibility: visible; }
  .nav__links a { padding: 13px 6px; font-size: 16.5px; border-bottom: 1px solid var(--line); }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__cta { text-align: center; margin-top: 10px; box-shadow: none; }
  .nav__burger { display: flex; }
  .coverage { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; gap: 22px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail:nth-child(even) .svc-detail__media { order: 0; }
  .estimate { grid-template-columns: 1fr; }
  .estimate__aside { position: static; order: -1; }   /* on mobile: reassurance above form */
  .gallery { grid-template-columns: repeat(2, 1fr); }

  /* sticky mobile action bar */
  .mobilebar {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: rgba(251, 247, 241, .96); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 20px rgba(42, 32, 24, .1);
  }
  .mobilebar .btn { padding: 13px 10px; font-size: 15px; width: 100%; }
  body { padding-bottom: 74px; }   /* room for the bar */
  .footer { padding-bottom: 90px; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .process { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero { min-height: 88vh; padding-top: 104px; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .cta-banner__row .btn { width: 100%; }
}
