/* ==========================================================================
   Red Elk Buildings & Handyman — site styles
   Brand tokens lifted verbatim from the previous Elementor build so the
   rebuild matches the live site rather than approximating it.
   ========================================================================== */

:root {
  /* Brand */
  --brand:        #832E25;   /* was --e-global-color-primary / accent */
  --brand-dark:   #6b251e;
  --brand-light:  #a03a2f;
  --ink:          #0F0E0F;   /* was --e-global-color-text */
  --muted:        #5b5859;
  --line:         #E6E6E6;   /* was --e-global-color-secondary */
  --bg:           #ffffff;
  --bg-alt:       #f7f5f4;
  --white:        #ffffff;

  /* Type */
  --font-head: "Alexandria", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 6px;
  --shadow: 0 2px 8px rgba(15, 14, 15, .08);
  --shadow-lg: 0 12px 32px rgba(15, 14, 15, .14);
}

/* --------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 1.2rem + 1.9vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem); }

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

/* Visible focus — the old site had none.
   A brand-red ring is invisible on brand-red bands (1.00:1) and near-invisible
   on the dark footer, so dark ink + a white halo is the default, inverted on
   dark/brand surfaces. Both directions clear WCAG 1.4.11's 3:1. */
:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--white);
  border-radius: 3px;
}

.section--brand :focus-visible,
.site-footer :focus-visible,
.hero :focus-visible,
.page-hero :focus-visible {
  outline-color: var(--white);
  box-shadow: 0 0 0 6px rgba(15, 14, 15, .65);
}

.skip-link {
  position: absolute; left: -9999px;
  background: var(--brand); color: var(--white);
  padding: .75rem 1.25rem; z-index: 200; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; top: 0; color: var(--white); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* -------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }
.section--brand { background: var(--brand); color: var(--white); }
.section--brand h2, .section--brand h3 { color: var(--white); }
/* Inline links go white — but NOT buttons, which set their own colours.
   Without :not(.btn) this rule out-specifies .btn--onbrand and renders
   white text on a white button. */
.section--brand a:not(.btn) { color: var(--white); }
.section--brand p { color: rgba(255,255,255,.92); }

/* ...and NOT anything sitting on its own light surface. A .review card is
   white, so inheriting the band's white text made the quote invisible.
   Any component that paints its own background keeps its own colours. */
.section--brand .review,
.section--brand .card,
.section--brand .proof { color: var(--ink); }

.section--brand .review p,
.section--brand .review cite,
.section--brand .card p,
.section--brand .card h3,
.section--brand .proof p,
.section--brand .proof cite { color: var(--ink); }

.section--brand .review__meta,
.section--brand .card__body p { color: var(--muted); }

.section--brand .review a:not(.btn),
.section--brand .card a:not(.btn),
.section--brand .proof a:not(.btn) { color: var(--brand); }

.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

/* -------------------------------------------------------------- header -- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(.75rem, 2vw, 1.5rem);
  min-height: var(--header-h, 76px);
}

.site-logo { flex: 0 0 auto; display: flex; }
.site-logo img { width: clamp(150px, 18vw, 215px); }

/* Always-visible call button, at every width. It sits outside <nav> on
   purpose: while it lived inside, the burger menu hid the phone number on
   every page on mobile. On desktop it pairs with the nav's quote button. */
.site-header__call { flex: 0 0 auto; margin-left: auto; }
.nav__quote { padding: .7rem 1.25rem; font-size: .875rem; }

.nav { display: flex; align-items: center; gap: clamp(.75rem, 2vw, 1.75rem); }

.nav__list {
  display: flex; align-items: center; gap: clamp(.75rem, 1.8vw, 1.75rem);
  list-style: none; margin: 0; padding: 0;
}

.nav__link {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: .5rem 0;
  display: inline-block;
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--brand); }

/* Dropdown */
.nav__item--has-sub { position: relative; }

.nav__toggle {
  font: inherit; font-family: var(--font-head); font-size: .9rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  background: none; border: 0; color: var(--ink); cursor: pointer;
  padding: .5rem 0; display: inline-flex; align-items: center; gap: .4rem;
}
.nav__toggle:hover, .nav__toggle[aria-expanded="true"] { color: var(--brand); }
.nav__toggle svg { width: .7em; height: .7em; transition: transform .18s ease; }
.nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav__sub {
  position: absolute; top: 100%; left: 0; min-width: 15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none; margin: .35rem 0 0; padding: .4rem;
  display: none;
}
.nav__sub[data-open="true"] { display: block; }

.nav__sub a {
  display: block; padding: .6rem .75rem;
  font-size: .95rem; color: var(--ink); text-decoration: none;
  border-radius: 4px;
}
.nav__sub a:hover { background: var(--bg-alt); color: var(--brand); }

.nav__social { display: inline-flex; color: var(--ink); }
.nav__social:hover { color: var(--brand); }
.nav__social svg { width: 26px; height: 26px; }

/* Mobile nav toggle */
.nav-burger {
  display: none;
  background: none; border: 0; cursor: pointer; padding: .5rem;
  color: var(--ink);
}
.nav-burger svg { width: 28px; height: 28px; }

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head);
  font-size: .95rem; font-weight: 600; letter-spacing: .02em;
  padding: .85rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid var(--brand);
  background: var(--brand); color: var(--white);
  text-decoration: none; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  text-align: center;
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: var(--white); }

.btn--ghost { background: transparent; color: var(--brand); }
.btn--ghost:hover { background: var(--brand); color: var(--white); }

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

.btn--phone { border-radius: 999px; }
.btn--phone svg { width: 1em; height: 1em; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn-row--center { justify-content: center; }

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  display: grid; place-items: center;
  text-align: center;
  color: var(--white);
  padding-block: clamp(4rem, 12vw, 8rem);
  background: var(--ink);
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,14,15,.72), rgba(15,14,15,.62));
}

.hero__inner { position: relative; z-index: 1; max-width: 60rem; }
.hero h1 { color: var(--white); }
.hero p { color: rgba(255,255,255,.92); }
.hero__logo { margin: 0 auto clamp(1.5rem, 4vw, 2.5rem); width: min(80%, 420px); }
.hero__phone {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.4rem);
  font-weight: 700; color: var(--white); text-decoration: none;
  display: inline-block; margin-bottom: 1.25rem;
}
.hero__phone:hover { color: var(--white); text-decoration: underline; }

.page-hero {
  background: var(--brand);
  color: var(--white);
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .25em; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 44rem; margin-inline: auto; }

/* ----------------------------------------------------------------- cards */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.card__media { aspect-ratio: 4 / 3; background: var(--bg-alt); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }

.card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card__body h3 { margin: 0; }
.card__body p { margin: 0; color: var(--muted); }
.card__link { margin-top: auto; font-weight: 600; font-family: var(--font-head); font-size: .9rem;
  padding: .5rem 0; }

/* ---------------------------------------------------------- testimonials */

.rating {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-bottom: .75rem;
}
.rating__stars { color: #F5A623; font-size: 1.1rem; letter-spacing: .08em; }
.rating__score { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.rating__count { color: var(--muted); font-size: .9rem; }
.rating--onhero { justify-content: center; margin: 0 auto 1.25rem; }
.rating--onhero .rating__score { color: var(--white); }
.rating--onhero .rating__count { color: rgba(255,255,255,.85); }
/* #F5A623 is 2.03:1 on white — below the 3:1 an informative graphic needs. */
.rating__stars, .review__stars { color: #B26A00; }
.rating--onhero .rating__stars { color: #FFC24D; }
.section--brand .rating__count { color: rgba(255,255,255,.8); }

.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: .9rem;
  box-shadow: var(--shadow);
}
.review__stars { color: #F5A623; letter-spacing: .1em; font-size: .95rem; }
.review__text { margin: 0; color: var(--ink); }
.review__text::before { content: "\201C"; }
.review__text::after  { content: "\201D"; }
.review__more { font-size: .8125rem; white-space: nowrap; }
.review__who {
  margin: 0; margin-top: auto; padding-top: .5rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
}
.review__meta { display: block; font-weight: 400; font-size: .8125rem; color: var(--muted); margin-top: .15rem; }

/* ------------------------------------------------------------- CTA bands */

.cta { text-align: center; }
.cta h2 { margin-bottom: .4em; }
.cta p { max-width: 40rem; margin-inline: auto; margin-bottom: 1.75rem; }

/* --------------------------------------------------------------- gallery */

.gallery { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr)); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }

/* ------------------------------------------------------------------- faq */

.faq { max-width: 52rem; margin-inline: auto; }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__q {
  width: 100%; text-align: left;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 600;
  background: none; border: 0; cursor: pointer; color: var(--ink);
  padding: 1.15rem 2.5rem 1.15rem 0;
  position: relative;
}
.faq__q:hover { color: var(--brand); }
.faq__q::after {
  content: "+"; position: absolute; right: .5rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--brand); line-height: 1;
}
.faq__q[aria-expanded="true"]::after { content: "\2013"; }

.faq__a { padding: 0 0 1.25rem; color: var(--muted); }
.faq__a[hidden] { display: none; }

/* ------------------------------------------------------------------ form */

.form { display: grid; gap: 1.1rem; }

.field { display: grid; gap: .4rem; }

.field label {
  font-family: var(--font-head); font-size: .875rem; font-weight: 600;
  letter-spacing: .02em;
}
.field .req { color: var(--brand); }

.field input, .field textarea, .field select {
  font: inherit; font-family: var(--font-body);
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white); color: var(--ink);
}
/* --line (#E6E6E6) is 1.25:1 on white — below the 3:1 a control boundary
   needs. This border is perceivable; the global focus ring does the rest. */
.field input, .field textarea, .field select { border-color: #8f8b8c; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brand);
}
.field textarea { min-height: 9rem; resize: vertical; }

.form__note { font-size: .875rem; color: var(--muted); }

.form-status { padding: .9rem 1.1rem; border-radius: var(--radius); font-size: .95rem; }
/* Kept in the DOM so it can announce; hidden by class, not the hidden attr. */
.form-status.is-empty { display: none; }
.form-status[data-state="error"]   { background: #fdecea; color: #8a1c11; border: 1px solid #f5c6c0; }
.form-status[data-state="success"] { background: #eaf7ee; color: #1c6b32; border: 1px solid #bfe4cb; }

/* ------------------------------------------------------------ contact bar */

.contact-strip {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}
.contact-strip__item { display: flex; gap: .9rem; align-items: flex-start; }
.contact-strip__item svg { width: 1.5rem; height: 1.5rem; color: var(--brand); flex: 0 0 auto; margin-top: .15rem; }
.contact-strip__item h3 { font-size: 1rem; margin: 0 0 .2rem; }
.contact-strip__item a { color: inherit; }

/* ---------------------------------------------------------------- footer */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding-block: clamp(3rem, 6vw, 4.5rem) 0;
  font-size: .9375rem;
  line-height: 1.55;
}

/* Explicit tracks. auto-fit was dropping the fourth column onto a second
   row, which read as a jumbled block rather than four tidy columns. */
.site-footer__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: start;
}

.site-footer h3 {
  color: var(--white); font-size: .8125rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  margin: 0 0 1.1rem; padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }

.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.site-footer li a { display: inline-block; padding: .2rem 0; }
.site-footer__logo { width: 190px; margin-bottom: 1.4rem; }

/* Contact block: icon-free but visually grouped, with the phone emphasised. */
.site-footer__contact { display: grid; gap: .55rem; }
.site-footer__contact .strong { color: var(--white); font-weight: 600; }
.site-footer__hours { margin-top: .35rem; color: rgba(255,255,255,.55); font-size: .875rem; }

/* Service areas read as chips rather than a long stack. */
.site-footer__areas { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.site-footer__areas li {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: .2rem .7rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.72);
}
.site-footer__areas-lead { margin: 0 0 .75rem; color: rgba(255,255,255,.55); font-size: .875rem; }

.site-footer__bar {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(255,255,255,.14);
  padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  justify-content: space-between; align-items: center;
  font-size: .8125rem; color: rgba(255,255,255,.5);
}
.site-footer__bar p { margin: 0; }

@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------ responsive */

/* The desktop nav does not actually fit until ~1000px: between 901 and 1024
   the phone pill and "Contact Us" wrap onto two lines. Keep the drawer until
   there is genuinely room. */
@media (max-width: 1024px) {
  .nav-burger { display: inline-flex; }
  .site-header__call { display: inline-flex; }

  .nav {
    /* Offset by the REAL header height, published by site.js. A hard-coded
       84px left a 32px gap once the header grew. */
    position: fixed; inset: var(--header-h, 76px) 0 auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    max-height: calc(100dvh - var(--header-h, 76px));
    overflow-y: auto;
    display: none;
  }
  .nav[data-open="true"] { display: flex; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid var(--line); }
  .nav__link, .nav__toggle { padding: .95rem 0; width: 100%; font-size: 1rem; }
  .nav__toggle { justify-content: space-between; }

  .nav__sub {
    position: static; border: 0; box-shadow: none; min-width: 0;
    padding: 0 0 .5rem .75rem; margin: 0;
  }

  .nav .btn { margin-top: 1rem; }
  /* 26px icon was a 26px tap target inside a touch-only drawer. */
  .nav__social { margin-top: 1rem; align-self: flex-start; padding: .55rem; margin-left: -.55rem; }

  /* Compact call button so logo + call + burger fit one row. */
  .site-header__call { padding: .6rem 1rem; font-size: .85rem; white-space: nowrap; }
}

@media (max-width: 380px) {
  /* Icon only — the label no longer fits beside the logo and burger.
     Kept at 44x44 so it clears the minimum tap target. */
  .site-header__call-text { display: none; }
  .site-header__call { padding: 0; width: 44px; height: 44px; }
  .site-header__call svg { width: 1.25em; height: 1.25em; }
}

/* Nothing in the header may wrap to a second line. */
.btn--phone, .nav__link, .nav__toggle, .nav__quote { white-space: nowrap; }

/* ------------------------------------------------- mobile hero compaction --
   Measured at 375x812 the hero ran 1646px tall and put the call-to-action
   695px below the fold — the logo was repeated 116px under the header one,
   and two long paragraphs sat between the headline and the buttons. */

@media (max-width: 900px) {
  .hero { padding-block: clamp(2.5rem, 8vw, 4rem); }
  .hero__logo { display: none; }          /* already in the sticky header */
  .hero__phone { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 1rem; }
  .hero .btn-row { margin-bottom: 1.5rem; }
  .hero__lede { font-size: .975rem; }
}

/* Under 560px show only the first paragraph; the rest repeats below anyway. */
@media (max-width: 560px) {
  .hero__lede--secondary { display: none; }
}

/* Prose measure. Full-width .wrap is right for grids and galleries, but body
   copy was running 118-140 characters per line. */
.section > .wrap > p,
.section > .wrap > ul,
.section > .wrap > ol,
.section > .wrap > h3 { max-width: 46rem; }

/* Bulleted lists had no styling at all beyond browser defaults. */
main li::marker { color: var(--brand); }
main li + li { margin-top: .5rem; }
main ul, main ol { padding-left: 1.25rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header, .site-footer, .nav, .btn { display: none !important; }
  body { color: #000; }
}


/* ============================ polish pass ============================== */

/* Paired text/image rows rendered at 300, 721, 304 and 539px on one page —
   each photo kept its own ratio inside an equal column, leaving dead space
   under the landscape shots and a tower where a portrait shot landed. */
.grid--2 > img {
  align-self: stretch;
  width: 100%; height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* .section__head's bottom margin is right before a card grid, wrong when the
   head introduces its own list — it put 36px between a sentence and the
   bullets it points at. */
.section__head { margin-bottom: 0; }
.section__head + .grid,
.section__head + .gallery,
.section__head + .faq,
.section__head + .btn-row { margin-top: clamp(2rem, 4vw, 3rem); }
.section__head + p,
.section__head + ul,
.section__head + ol { margin-top: 1.25rem; }

/* A lone map graphic inside a centred brand band sat hard left, because the
   reset makes images display:block with no auto margins. */
.section--brand > .wrap > p > img,
.section--brand > .wrap > img { margin-inline: auto; max-width: 34rem; }

/* ------------------------------------------------------------- trust bar */

.trustbar {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  font-size: .8125rem;
  letter-spacing: .01em;
}
.trustbar ul {
  list-style: none; margin: 0; padding: .6rem 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .35rem 1.5rem;
}
.trustbar li { display: inline-flex; align-items: center; gap: .4rem; }
.trustbar li + li::before {
  content: "·"; color: rgba(255,255,255,.35); margin-right: 1.1rem;
}
.trustbar .stars { color: #FFC24D; letter-spacing: .05em; }
.trustbar a { color: inherit; }

@media (max-width: 560px) {
  .trustbar { font-size: .75rem; }
  .trustbar li + li::before { display: none; }
  .trustbar ul { gap: .25rem 1rem; }
}

/* --------------------------------------------------- service-page proof */

.proof {
  border-left: 3px solid var(--brand);
  background: var(--bg-alt);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0;
}
.proof p { margin: 0 0 .6rem; }
.proof cite { font-style: normal; font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
.proof .stars { color: #B26A00; letter-spacing: .1em; display: block; margin-bottom: .5rem; }

/* --------------------------------------------------------------- lightbox */

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(15,14,15,.94);
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%; max-height: 82vh;
  width: auto; height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__cap {
  color: rgba(255,255,255,.85); text-align: center;
  margin-top: 1rem; font-size: .9rem; max-width: 46rem;
}
.lightbox__btn {
  position: absolute; background: rgba(255,255,255,.1); border: 0;
  color: #fff; cursor: pointer; border-radius: 50%;
  width: 48px; height: 48px; display: grid; place-items: center;
  font-size: 1.5rem; line-height: 1;
}
.lightbox__btn:hover { background: rgba(255,255,255,.22); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }

.gallery button {
  padding: 0; border: 0; background: none; cursor: zoom-in;
  display: block; width: 100%; border-radius: var(--radius);
}
.gallery figure { margin: 0; }
.gallery figcaption {
  font-size: .8125rem; color: var(--muted);
  margin-top: .4rem; line-height: 1.35;
}
/* Portrait shots were centre-cropped to 4:3, losing the top and bottom of
   tall subjects. Let them keep their shape and span two rows. */
.gallery img[data-portrait] { aspect-ratio: 3 / 4; }
