/* ==========================================================================
   Parker Plastering — styles.css
   Mobile-first. No frameworks. Edit colours in the :root block below.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours */
  --ink:          #15171b;   /* near-black charcoal */
  --ink-800:      #1c1f24;
  --ink-700:      #23272d;
  --ink-600:      #333940;
  --paper:        #fbf8f4;   /* warm white */
  --paper-200:    #f3eee6;
  --paper-300:    #e8e1d5;
  --white:        #ffffff;
  --accent:       #d47a1c;   /* restrained orange */
  --accent-600:   #b4630f;
  --accent-ink:   #8a4a06;   /* accent for text on light backgrounds */
  --gold:         #e3b05a;

  /* Text */
  --text:         #23262b;
  --text-muted:   #575e68;
  --text-onDark:  #ece8e1;
  --text-onDark-muted: #b0b7c0;

  /* Lines and shadows */
  --line:         #e3dcd0;
  --line-dark:    rgba(255, 255, 255, .13);
  --shadow-sm:    0 1px 2px rgba(15, 17, 20, .06), 0 2px 6px rgba(15, 17, 20, .05);
  --shadow-md:    0 2px 4px rgba(15, 17, 20, .05), 0 10px 26px rgba(15, 17, 20, .09);
  --shadow-lg:    0 4px 10px rgba(15, 17, 20, .07), 0 22px 50px rgba(15, 17, 20, .14);

  /* Shape and rhythm */
  --radius:       10px;
  --radius-lg:    16px;
  --maxw:         1180px;
  --gutter:       20px;
  --section-y:    56px;

  /* Type */
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, "Noto Sans", sans-serif;
  --header-h:  64px;
}

@media (min-width: 700px) {
  :root { --gutter: 28px; --section-y: 76px; --header-h: 76px; }
}
@media (min-width: 1000px) {
  :root { --gutter: 32px; --section-y: 96px; --header-h: 84px; }
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;      /* 17px */
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (min-width: 700px) { body { font-size: 1.125rem; } }

img, picture, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.05rem, 6.4vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 4.3vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.45rem); letter-spacing: -.012em; }
h4 { font-size: 1.05rem; letter-spacing: -.008em; }

p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

strong { font-weight: 700; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

::selection { background: var(--accent); color: var(--ink); }

/* Visible keyboard focus everywhere */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 780px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * .62); }
.section--dark { background: var(--ink); color: var(--text-onDark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--alt { background: var(--paper-200); }
.section--bordered { border-top: 1px solid var(--line); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 1000;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  padding: .7rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  transition: transform .16s ease;
}
.skip-link:focus { transform: translate(-50%, 0); color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 .85rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--gold); }

.lead {
  font-size: clamp(1.075rem, 2.2vw, 1.28rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 62ch;
}
.section--dark .lead { color: var(--text-onDark-muted); }

.section-head { max-width: 66ch; margin-bottom: 2.25rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 52px;
  padding: .85rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -.005em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.btn--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.btn--dark:hover { background: var(--ink-700); border-color: var(--ink-700); color: var(--white); }

.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--white); }

.btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: var(--white);
}
.btn--outline-light:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}
.btn-row .btn { flex: 1 1 240px; }
@media (min-width: 700px) {
  .btn-row .btn { flex: 0 0 auto; }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--accent-ink);
}
.link-arrow::after { content: "→"; transition: transform .16s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   5. Header and navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.site-header__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--white);
  margin-right: auto;
  padding: .35rem 0;
}
.brand:hover { color: var(--white); }
.brand__mark { width: 38px; height: 38px; flex: none; border-radius: 9px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.08; }
.brand__name {
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: -.015em;
  color: var(--white);
  white-space: nowrap;
}
.brand__name em { font-style: normal; color: var(--accent); }
.brand__tag {
  font-size: .655rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-onDark-muted);
  font-weight: 600;
  white-space: nowrap;
}

.header-actions { display: flex; align-items: center; gap: .8rem; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  font-size: .92rem;
  padding: .6rem .85rem;
  min-height: 44px;
  cursor: pointer;
}
.nav-toggle:hover { background: var(--ink-700); }
.nav-toggle__bars { position: relative; width: 18px; height: 12px; flex: none; }
.nav-toggle__bars span,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .18s ease, opacity .18s ease;
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span   { top: 5px; }
.nav-toggle__bars::after { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span    { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-5px) rotate(-45deg); }

.header-call {
  display: none;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.header-call svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.header-call:hover { color: var(--gold); }

.site-nav {
  display: none;
  flex: 1 0 100%;
  border-top: 1px solid var(--line-dark);
  padding-block: .5rem 1.1rem;
}
.site-nav.is-open { display: block; }

.site-nav__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
}
.site-nav__list li { margin: 0; }
.site-nav__list a {
  display: block;
  padding: .85rem .2rem;
  color: var(--text-onDark);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--line-dark);
}
.site-nav__list a:hover { color: var(--accent); }
.site-nav__list a[aria-current="page"] { color: var(--accent); }

.site-nav__cta { margin-top: 1.1rem; display: grid; gap: .6rem; }

@media (min-width: 1080px) {
  .site-header__inner { flex-wrap: nowrap; gap: 1rem; }
  .nav-toggle { display: none; }
  .header-call { display: inline-flex; }
  .brand { margin-right: 1.6rem; }
  .header-actions { margin-left: auto; }
  .site-nav {
    display: block;
    flex: 0 1 auto;
    border-top: 0;
    padding: 0;
  }
  .site-nav__list { flex-direction: row; align-items: center; gap: .15rem; }
  .site-nav__list a {
    border-bottom: 0;
    padding: .5rem .62rem;
    font-size: .94rem;
    border-radius: 8px;
    white-space: nowrap;
  }
  .site-nav__list a:hover { background: var(--ink-700); }
  .site-nav__list a[aria-current="page"] { background: var(--ink-700); color: var(--accent); }
  .site-nav__cta { display: none; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-onDark);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Raise towards 1 for a brighter photograph, lower it if headings get hard
     to read. Check on a phone as well as a laptop after changing it. */
  opacity: .92;
}

/* Dark wash over the photograph so white headings stay readable.
   On phones the text spans the full width, so the wash is even.
   On wider screens it is heavier on the left, letting the photograph
   show through on the right where there is no text. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(19,21,25,.90) 0%, rgba(19,21,25,.80) 45%, rgba(19,21,25,.92) 100%);
}
@media (min-width: 900px) {
  .hero::after {
    background:
      linear-gradient(96deg, rgba(19,21,25,.95) 0%, rgba(19,21,25,.88) 38%,
                             rgba(19,21,25,.55) 72%, rgba(19,21,25,.42) 100%),
      linear-gradient(180deg, rgba(19,21,25,.42) 0%, rgba(19,21,25,0) 32%,
                             rgba(19,21,25,.48) 100%);
  }
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(48px, 9vw, 108px);
  max-width: 46rem;
}
.hero h1 { color: var(--white); margin-bottom: .6rem; }
.hero .lead { color: var(--text-onDark-muted); max-width: 40rem; }
.hero__eyebrow { color: var(--gold); }
.hero__eyebrow::before { background: var(--gold); }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  margin-top: 1.5rem;
  padding: 0; list-style: none;
}
.hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  font-size: .93rem;
  font-weight: 600;
  color: var(--text-onDark);
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  padding: .4rem .85rem;
}
.hero__meta svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

.hero--compact .hero__inner { padding-block: clamp(38px, 6vw, 64px); }

/* Landing-page hero with a form beside it */
@media (min-width: 1000px) {
  .hero--split .hero__inner { max-width: none; }
  .hero--split .hero__grid {
    display: grid;
    grid-template-columns: 1fr minmax(380px, 430px);
    gap: 3rem;
    align-items: start;
  }
}

/* --------------------------------------------------------------------------
   7. Trust strip
   -------------------------------------------------------------------------- */
.trust {
  background: var(--ink-800);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-onDark);
}
.trust__list {
  list-style: none;
  margin: 0; padding: 1.15rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem .8rem;
}
.trust__list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0;
  font-weight: 700;
  font-size: .93rem;
  line-height: 1.3;
}
.trust__list svg { width: 22px; height: 22px; color: var(--accent); flex: none; }
@media (min-width: 760px) {
  .trust__list { grid-template-columns: repeat(4, 1fr); padding: 1.4rem 0; }
  .trust__list li { font-size: .98rem; }
}

/* --------------------------------------------------------------------------
   8. Grids and cards
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 1.15rem; }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 860px)  { .grid { gap: 1.5rem; } }

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--paper-300); }
.card__media { background: var(--ink-800); }
.card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card__body { padding: 1.35rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .5rem; }
.card__body p { color: var(--text-muted); font-size: 1rem; }
.card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: .97rem;
}
.card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .35rem;
  color: var(--text-muted);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .58em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--accent);
}
.card__foot { margin-top: auto; }

/* Simple feature blocks with an icon */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.35rem;
}
@media (min-width: 700px) { .feature-list--2 { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2rem; } }
@media (min-width: 980px) { .feature-list--3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.feature-list li { margin: 0; display: flex; gap: .95rem; }
.feature-list__icon {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(212,122,28,.12);
  border: 1px solid rgba(212,122,28,.28);
  color: var(--accent-ink);
}
.section--dark .feature-list__icon {
  background: rgba(227,176,90,.12);
  border-color: rgba(227,176,90,.3);
  color: var(--gold);
}
.feature-list__icon svg { width: 21px; height: 21px; }
.feature-list h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.feature-list p { font-size: .98rem; color: var(--text-muted); margin: 0; }
.section--dark .feature-list p { color: var(--text-onDark-muted); }

/* Plain ticked list */
.tick-list { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .55rem; }
@media (min-width: 700px) { .tick-list--2 { grid-template-columns: repeat(2, 1fr); gap: .55rem 1.6rem; } }
.tick-list li {
  position: relative;
  padding-left: 1.9rem;
  margin: 0;
  line-height: 1.5;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .35em;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.3 6.3 9 17.6l-5.3-5.3 1.4-1.4L9 14.8l9.9-9.9z'/%3E%3C/svg%3E") center / 78% no-repeat,
          linear-gradient(#000, #000);
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.3 6.3 9 17.6l-5.3-5.3 1.4-1.4L9 14.8l9.9-9.9z'/%3E%3C/svg%3E") center / 78% no-repeat;
}
.section--dark .tick-list li::before { background: var(--gold); }

/* --------------------------------------------------------------------------
   9. Split / feature sections
   -------------------------------------------------------------------------- */
.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.25rem; }
  .split--wide-text { grid-template-columns: 1.15fr 1fr; }
  .split--media-first .split__media { order: -1; }
}
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}
.section--dark .split__media img { border-color: var(--line-dark); }

/* --------------------------------------------------------------------------
   10. Before and after
   -------------------------------------------------------------------------- */
.ba { display: grid; gap: 1rem; }
@media (min-width: 700px) { .ba { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }

/* Three-stage transformation: before -> back to brick -> after.
   Two columns on a tablet, three across on a laptop. */
@media (min-width: 700px)  { .ba--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ba--3 { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }

.ba__item { margin: 0; position: relative; }
.ba__item img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.section--dark .ba__item img { border-color: var(--line-dark); }
.ba__label {
  position: absolute;
  top: .8rem; left: .8rem;
  background: var(--ink);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem .7rem;
  border-radius: 6px;
}
.ba__label--after { background: var(--accent); color: var(--ink); }
.ba__label--mid { background: var(--gold); color: var(--ink); }
.ba__caption {
  margin-top: .6rem;
  font-size: .93rem;
  color: var(--text-muted);
}
.section--dark .ba__caption { color: var(--text-onDark-muted); }
.ba-set + .ba-set { margin-top: 2.25rem; }

/* --------------------------------------------------------------------------
   11. Project gallery
   -------------------------------------------------------------------------- */
.gallery { display: grid; gap: 1rem; }
@media (min-width: 620px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; } }
.gallery figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--ink-800); }
.gallery figcaption {
  padding: .9rem 1.05rem 1.05rem;
  font-size: .95rem;
  color: var(--text-muted);
}
.gallery figcaption strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: .1rem; }

/* --------------------------------------------------------------------------
   12. Areas covered
   -------------------------------------------------------------------------- */
.areas {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
}
@media (min-width: 620px) { .areas { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .areas { grid-template-columns: repeat(4, 1fr); } }
.areas li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .7rem .85rem;
  font-weight: 600;
  font-size: .96rem;
}
.section--dark .areas li {
  background: var(--ink-800);
  border-color: var(--line-dark);
  color: var(--text-onDark);
}
.areas svg { width: 16px; height: 16px; color: var(--accent); flex: none; }

/* --------------------------------------------------------------------------
   13. Process steps
   -------------------------------------------------------------------------- */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 760px)  { .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li {
  counter-increment: step;
  margin: 0;
  padding-top: 1.1rem;
  border-top: 3px solid var(--line);
  position: relative;
}
.section--dark .steps li { border-top-color: var(--ink-600); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--accent-ink);
  margin-bottom: .45rem;
}
.section--dark .steps li::before { color: var(--gold); }
.steps h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.steps p { font-size: .98rem; color: var(--text-muted); margin: 0; }
.section--dark .steps p { color: var(--text-onDark-muted); }

/* --------------------------------------------------------------------------
   14. Review placeholders
   -------------------------------------------------------------------------- */
.review-note {
  border: 1px dashed var(--accent);
  background: rgba(212,122,28,.06);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.review-note strong { color: var(--ink); }

.reviews { display: grid; gap: 1.15rem; }
@media (min-width: 760px) { .reviews { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--paper-300);
  border-radius: var(--radius);
  padding: 1.3rem 1.35rem;
}
.review__placeholder {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.review__lines { display: grid; gap: .55rem; margin-bottom: 1.1rem; }
.review__lines span {
  display: block;
  height: .72rem;
  border-radius: 4px;
  background: var(--paper-200);
}
.review__lines span:nth-child(2) { width: 92%; }
.review__lines span:nth-child(3) { width: 74%; }
.review__meta {
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

/* --- published customer reviews --- */
@media (min-width: 760px) { .reviews--2 { grid-template-columns: repeat(2, 1fr); } }

.review--real { border-left-color: var(--accent); display: flex; flex-direction: column; }
.section--dark .review--real {
  background: var(--ink-800);
  border-color: var(--line-dark);
  border-left-color: var(--accent);
}

.review__stars {
  margin: 0 0 .8rem;
  color: var(--accent);
  font-size: 1.15rem;
  letter-spacing: .18em;
  line-height: 1;
}
.section--dark .review__stars { color: var(--gold); }

.review--real blockquote { margin: 0 0 1.15rem; }
.review--real blockquote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
}
.section--dark .review--real blockquote p { color: var(--text-onDark); }

.review--real .review__meta {
  margin: auto 0 0;
  border-top: 1px solid var(--line);
  padding-top: .9rem;
}
.section--dark .review--real .review__meta { border-top-color: var(--line-dark); }

.review__job {
  display: block;
  text-transform: none;
  letter-spacing: -.005em;
  font-size: .95rem;
  color: var(--ink);
  line-height: 1.4;
}
.section--dark .review__job { color: var(--white); }

.review__source {
  display: block;
  margin-top: .3rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: .87rem;
  color: var(--text-muted);
}
.section--dark .review__source { color: var(--text-onDark-muted); }

/* --------------------------------------------------------------------------
   15. FAQ (details / summary)
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); max-width: 900px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2.75rem 1.15rem 0;
  position: relative;
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink);
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: .35rem; top: 1.5rem;
  width: 14px; height: 14px;
  border-right: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.75rem; }
.faq summary:hover { color: var(--accent-ink); }
.faq__answer { padding: 0 0 1.35rem; color: var(--text-muted); max-width: 72ch; }
.faq__answer p { font-size: 1rem; }

/* --------------------------------------------------------------------------
   16. Forms
   -------------------------------------------------------------------------- */
.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.5rem 1.35rem 1.65rem;
}
@media (min-width: 700px) { .form-panel { padding: 2rem 2rem 2.15rem; } }
.form-panel__head { margin-bottom: 1.4rem; }
.form-panel__head h2, .form-panel__head h3 { margin-bottom: .35rem; }
.form-panel__head p { color: var(--text-muted); font-size: .98rem; margin: 0; }

.form-grid { display: grid; gap: 1.05rem; }
@media (min-width: 620px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-field--full { grid-column: 1 / -1; }
}

.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-weight: 700;
  font-size: .93rem;
  margin-bottom: .4rem;
  color: var(--ink);
}
.form-field .hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: .86rem;
}

input[type="text"], input[type="tel"], input[type="email"],
input[type="file"], select, textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: .8rem .85rem;
  min-height: 50px;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2323262b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .6rem center;
  background-size: 22px;
  padding-right: 2.4rem;
}
input:hover, select:hover, textarea:hover { border-color: var(--paper-300); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,122,28,.2);
}
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--gold); outline-offset: 1px; }
input[type="file"] { padding: .6rem .7rem; background: var(--paper); }
input::placeholder, textarea::placeholder { color: #8b929c; }

fieldset {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: .9rem 1rem 1rem;
  margin: 0;
}
legend { font-weight: 700; font-size: .93rem; padding: 0 .35rem; color: var(--ink); }
.radio-row { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
}
input[type="radio"], input[type="checkbox"] {
  width: 20px; height: 20px;
  min-height: 0;
  accent-color: var(--accent-600);
  margin: 0;
  flex: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.consent input { margin-top: .18rem; }

.form-footnote { font-size: .88rem; color: var(--text-muted); margin: .9rem 0 0; }

/* Honeypot field — hidden from people, visible to bots */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Compact form used on Google Ads landing pages */
.form-panel--compact .form-grid { grid-template-columns: 1fr; }
.form-panel--compact { padding: 1.35rem 1.25rem 1.5rem; }
.form-panel--compact .form-panel__head h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.55rem);
  letter-spacing: -.015em;
}
.form-panel--compact .form-panel__head { margin-bottom: 1.1rem; }

/* --------------------------------------------------------------------------
   17. Call-to-action band
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--ink);
  color: var(--text-onDark);
  border-top: 4px solid var(--accent);
}
.cta-band__inner { padding-block: var(--section-y); }
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--text-onDark-muted); max-width: 58ch; }
@media (min-width: 900px) {
  .cta-band__inner {
    display: grid;
    grid-template-columns: 1.3fr auto;
    gap: 2.5rem;
    align-items: center;
  }
  .cta-band .btn-row { margin-top: 0; flex-direction: column; }
  .cta-band .btn-row .btn { width: 100%; }
}

.phone-block { margin-top: 1.5rem; }
.phone-block a {
  font-size: clamp(1.6rem, 4.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.phone-block a:hover { color: var(--gold); }
.phone-block svg { width: 26px; height: 26px; color: var(--accent); }
.phone-block small { display: block; color: var(--text-onDark-muted); font-size: .93rem; margin-top: .3rem; }

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink-800);
  color: var(--text-onDark-muted);
  font-size: .97rem;
  border-top: 1px solid var(--line-dark);
}
.site-footer__grid {
  display: grid;
  gap: 2rem;
  padding-block: 2.75rem 2rem;
}
@media (min-width: 760px)  { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; } }
@media (min-width: 1040px) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; } }
.site-footer h2 {
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: var(--text-onDark-muted); text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }
.site-footer .brand { margin: 0 0 1rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: .25rem; }
.footer-contact a[href^="tel:"] { color: var(--white); font-weight: 700; font-size: 1.08rem; }
.site-footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  align-items: center;
  justify-content: space-between;
  font-size: .88rem;
}
.site-footer__bottom p { margin: 0; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }

/* --------------------------------------------------------------------------
   19. Sticky mobile action bar
   -------------------------------------------------------------------------- */
.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom, 0px));
  background: rgba(21,23,27,.97);
  border-top: 1px solid var(--line-dark);
  box-shadow: 0 -6px 22px rgba(0,0,0,.28);
}
.action-bar .btn { min-height: 50px; font-size: .98rem; padding-inline: .8rem; }
body { padding-bottom: 74px; }
@media (min-width: 1080px) {
  .action-bar { display: none; }
  body { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   20. Small print / policy pages
   -------------------------------------------------------------------------- */
.prose h2 { margin-top: 2.4rem; font-size: clamp(1.35rem, 3vw, 1.7rem); }
.prose h3 { margin-top: 1.7rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .5rem; }

.notice {
  background: var(--paper-200);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.25rem;
  font-size: .97rem;
}

/* --------------------------------------------------------------------------
   21. Motion
   Deliberately minimal. Nothing on this site animates in as you scroll, so
   content is never hidden waiting for JavaScript.
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   22. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .action-bar, .site-nav, .cta-band, form { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .hero::after, .hero__media { display: none; }
  .hero { background: #fff; color: #000; }
  .hero h1, .hero .lead { color: #000; }
}
