/* ==========================================================================
   Ingram Maintenance
   Layout and section flow modelled on the reference site the client chose.
   Accent swapped from red to the petrol teal sampled from Ben's van logo.
   ========================================================================== */

:root {
  --black:   #000000;
  --panel:   #3f3f3f;   /* the mid-grey bands */
  --panel-2: #141414;
  --white:   #ffffff;
  --body:    #ffffff;   /* body copy on black */
  --body-dim:#c9c9c9;   /* captions, form notes, small print */
  --line:    rgba(255, 255, 255, 0.14);
  --line-2:  rgba(255, 255, 255, 0.38);

  /* Brand green, sampled from the real logo on Ben's Facebook profile.
     --brand-green is the true ink. --accent is the same hue lifted so it
     clears WCAG AA on black, which the raw green does not (3.8:1). */
  --brand-green: #087838;
  --accent:      #22c368;
  --accent-soft: #7fe3a6;
  --accent-dim:  rgba(34, 195, 104, 0.35);

  --font-head: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mark: "Aldrich", "Eurostile", "Bahnschrift", sans-serif;

  --shell: 1400px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --section: clamp(4rem, 8vw, 7.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset ---------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 0.9688rem;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--white);
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
figure, blockquote, figcaption { margin: 0; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
::selection { background: var(--accent); color: var(--black); }

.skip-link {
  position: absolute; left: 1rem; top: -100%;
  z-index: 300;
  background: var(--accent); color: var(--black);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

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

/* --- Layout --------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: 1120px; }

.section { position: relative; padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 5vw, 4.5rem); }
.section--panel { background: var(--panel); border-top: 3px solid var(--accent); }
.section--panel-2 { background: var(--panel-2); }

/* --- Type ----------------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.7rem;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 2px;
  background: currentColor;
  flex: none;
}
.center .eyebrow { justify-content: center; }

.h-hero {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
}
.h-hero__sub {
  display: block;
  font-weight: 300;
  font-size: clamp(1.7rem, 3.7vw, 3rem);
  letter-spacing: 0.005em;
  line-height: 1.12;
}

.h-section {
  font-size: clamp(1.55rem, 2.9vw, 2.45rem);
  font-weight: 800;
}
.h-sub { font-size: clamp(1.15rem, 1.7vw, 1.45rem); font-weight: 700; }

.lede { max-width: 62ch; color: var(--body); }
.lede--center { margin-inline: auto; }

.center { text-align: center; }
.center .lede { margin-inline: auto; }

.muted { color: var(--body-dim); }

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.72rem 1.3rem;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.btn::after {
  content: "";
  width: 0; height: 0;
  border-left: 6px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  flex: none;
}
.btn:hover { background: var(--white); color: var(--black); }

.btn--accent { border-color: var(--accent); color: var(--accent); }
.btn--accent:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }

.btn--solid { background: var(--accent); border-color: var(--accent); color: var(--black); }
.btn--solid:hover { background: var(--white); border-color: var(--white); color: var(--black); }

.btn--plain::after { display: none; }

/* The header call button carries the accent on every page */
.masthead .btn { border-color: var(--accent); color: var(--accent); }
.masthead .btn:hover { background: var(--accent); border-color: var(--accent); color: var(--black); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.9rem; }
.btn-row--center { justify-content: center; }

/* --- Header --------------------------------------------------------------- */

.masthead {
  position: absolute;
  inset: 0 0 auto;
  z-index: 200;
  /* Scrim so the nav stays readable over the bright top of the hero photo */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0) 100%);
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.masthead.is-fixed,
.page--inner .masthead {
  position: fixed;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 6.25rem;
}
.masthead.is-fixed .masthead__inner,
.page--inner .masthead__inner { min-height: 5rem; }

/* --- Logo ----------------------------------------------------------------- */

/* Ben's actual logo, lifted off his Facebook profile picture. The site runs on
   black, so the black ink in the original is remapped to bone in logo-light.png
   and the green is lifted to match --accent. logo-colour.png keeps the original
   ink for light backgrounds and print. */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.25s var(--ease);
}
.logo:hover { opacity: 0.78; }
.logo__img {
  display: block;
  height: 3.6rem;
  width: auto;
}
.masthead.is-fixed .logo__img,
.page--inner .logo__img { height: 3.1rem; }
.logo--footer .logo__img { height: 3.1rem; }
@media (max-width: 560px) {
  .logo__img,
  .masthead.is-fixed .logo__img,
  .page--inner .logo__img { height: 2.7rem; }
}

/* --- Navigation ----------------------------------------------------------- */

.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav__list { display: flex; align-items: center; gap: 1.9rem; }
.nav__link {
  position: relative;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  padding-block: 0.35rem;
  transition: color 0.25s var(--ease);
}
.nav__link:hover { color: var(--accent); }
.nav__link[aria-current="page"] { color: var(--accent); }

.nav__toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 0;
  padding: 0.5rem 0;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav__bars { position: relative; width: 1.4rem; height: 0.65rem; flex: none; }
.nav__bars span {
  position: absolute; left: 0;
  width: 100%; height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.nav__bars span:first-child { top: 0; }
.nav__bars span:last-child { bottom: 0; }
.is-open .nav__bars span:first-child { transform: translateY(4.5px) rotate(45deg); }
.is-open .nav__bars span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav__toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 5rem 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem var(--gutter) 2.25rem;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-115%);
    visibility: hidden;
    transition: transform 0.45s var(--ease), visibility 0.45s;
    max-height: calc(100dvh - 5rem);
    overflow-y: auto;
  }
  .masthead.is-open .nav { transform: translateY(0); visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    display: block;
    font-size: 1.05rem;
    padding-block: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__list li:last-child .nav__link { border-bottom: 0; }
  .nav .btn { margin-top: 1.5rem; justify-content: center; }
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(100svh, 940px);
  padding-top: 7rem;
  background: var(--black);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  filter: brightness(1.22) saturate(1.08) contrast(1.02);
}
/* Kept heavy enough on the left for the headline, but the photograph now reads
   across the rest of the frame instead of going flat black. */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.66) 36%, rgba(0,0,0,0.32) 66%, rgba(0,0,0,0.24) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.12) 42%, rgba(0,0,0,0.5) 100%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero__body { max-width: 46rem; }
.hero .lede { margin-top: 1.5rem; max-width: 44ch; }

/* Scroll cue */
.scroll-cue {
  position: relative;
  display: flex;
  justify-content: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--black);
}
.scroll-cue__inner { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.scroll-cue__mouse {
  width: 1.35rem; height: 2.15rem;
  border: 1.5px solid var(--accent);
  border-radius: 1rem;
  position: relative;
}
.scroll-cue__mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 0.35rem;
  width: 2px; height: 0.45rem;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: cueDot 1.9s var(--ease) infinite;
}
@keyframes cueDot { 0%,100% { opacity: 1; transform: translate(-50%,0); } 55% { opacity: 0.2; transform: translate(-50%,0.55rem); } }
.scroll-cue__chevrons { display: flex; flex-direction: column; gap: 0.1rem; color: var(--accent); }
.scroll-cue__chevrons svg { width: 1.1rem; height: 0.5rem; }
.scroll-cue__chevrons svg:last-child { opacity: 0.45; }

/* --- Two-up intro blocks -------------------------------------------------- */

.duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
}
@media (max-width: 860px) { .duo { grid-template-columns: 1fr; } }

/* --- Service tiles -------------------------------------------------------- */

.tiles { display: grid; gap: clamp(1.25rem, 2.6vw, 2.5rem); }
.tiles + .tiles { margin-top: clamp(1.25rem, 2.6vw, 2.5rem); }
.tiles--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tiles--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.tile {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  background: var(--panel-2);
}
.tiles--2 .tile { aspect-ratio: 17 / 10; }
.tiles--3 .tile { aspect-ratio: 1 / 1; }

.tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: grayscale(0.55) contrast(1.05) brightness(0.85);
  transition: transform 1.2s var(--ease), filter 0.5s var(--ease);
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.56) 50%, rgba(0,0,0,0.76) 100%);
  transition: opacity 0.45s var(--ease);
}
.tile:hover img { transform: scale(1.06); filter: grayscale(0) contrast(1.02) brightness(1); }
.tile:hover::before { opacity: 0.55; }

.tile__label {
  position: relative;
  font-family: var(--font-head);
  font-size: clamp(0.85rem, 1.35vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  padding-inline: 1.25rem;
  padding-bottom: 0.85rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75);
}
.tile__label::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 2.75rem; height: 3px;
  background: var(--accent);
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.4s var(--ease);
}
.tile:hover .tile__label::after { transform: translateX(-50%) scaleX(1); }

@media (max-width: 860px) {
  .tiles--2, .tiles--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tiles--2 .tile, .tiles--3 .tile { aspect-ratio: 4 / 3; }
}
@media (max-width: 560px) {
  .tiles--2, .tiles--3 { grid-template-columns: 1fr; }
  .tiles--2 .tile, .tiles--3 .tile { aspect-ratio: 16 / 9; }
}

/* --- Feature band (full-bleed image with a text block) -------------------- */

.band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(26rem, 46vw, 34rem);
  padding-block: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--black);
}
.band__media { position: absolute; inset: 0; z-index: 0; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.45) 75%, rgba(0,0,0,0.4) 100%);
}
.band--right .band__media::after {
  background: linear-gradient(to left, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.45) 75%, rgba(0,0,0,0.4) 100%);
}
.band__inner { position: relative; z-index: 1; width: 100%; }
.band__body { max-width: 34rem; }
.band--right .band__body { margin-left: auto; }
@media (max-width: 860px) {
  .band__media::after,
  .band--right .band__media::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.86) 100%);
  }
  .band--right .band__body { margin-left: 0; }
}

/* --- Reviews -------------------------------------------------------------- */

.reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.25rem) clamp(2rem, 5vw, 4.5rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (max-width: 860px) { .reviews { grid-template-columns: 1fr; } }

.review { display: grid; grid-template-columns: 4.25rem minmax(0, 1fr); gap: 1.25rem; }
.review__avatar {
  width: 3.5rem; height: 3.5rem;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
}
.review__avatar svg { width: 1.6rem; height: 1.6rem; }
.review__name {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.35rem;
}
.review__stars { display: flex; gap: 0.15rem; color: #d8a640; margin-bottom: 0.5rem; }
.review__stars svg { width: 0.85rem; height: 0.85rem; }
.review__text { margin: 0; font-size: 0.9375rem; line-height: 1.7; }

/* --- Named review cards --------------------------------------------------- */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.4vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (max-width: 980px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.75rem, 2.6vw, 2.4rem);
  border: 1px solid var(--line);
  background: #0a0a0a;
  transition: border-color 0.35s var(--ease), background-color 0.35s var(--ease);
}
.review-card:hover { border-color: var(--accent); background: #0d0d0d; }

.review-card__head { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1rem; align-items: center; }
.review-card__avatar {
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.review-card__name {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.25;
}
.review-card__meta {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body-dim);
}
.review-card__stars { display: flex; gap: 0.16rem; color: #f0b429; }
.review-card__stars svg { width: 0.95rem; height: 0.95rem; }
.review-card__text { margin: 0; font-size: 0.9688rem; line-height: 1.72; color: var(--body); }
.review-card__job {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Short verbatim highlights pulled from the Google listing */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.highlight {
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.2vw, 2rem);
  border-bottom: 1px solid var(--line);
}
.highlight + .highlight { border-left: 1px solid var(--line); }
.highlight__quote {
  margin: 0 0 0.9rem;
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700;
  line-height: 1.42;
  color: var(--white);
  text-transform: none;
  letter-spacing: -0.005em;
}
.highlight__src {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body-dim);
}
@media (max-width: 900px) {
  .highlights { grid-template-columns: 1fr; }
  .highlight + .highlight { border-left: 0; }
}

.review-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.review-links .btn { min-width: 15rem; justify-content: center; }
.review-links .btn::after { display: none; }
.review-links .btn svg { width: 1rem; height: 1rem; flex: none; }

/* --- Stat strip ----------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__cell {
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 1rem;
  text-align: center;
}
.stats__cell + .stats__cell { border-left: 1px solid var(--line); }
.stats__figure {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.55rem;
}
.stats__label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats__cell:nth-child(odd) { border-left: 0; }
  .stats__cell:nth-child(even) { border-left: 1px solid var(--line); }
  .stats__cell:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* --- FAQ ------------------------------------------------------------------ */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; } }

.faq-images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.faq-images img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.faq { margin-top: 2rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.25s var(--ease);
}
.faq__q:hover { color: var(--accent); }
.faq__sign { position: relative; width: 0.85rem; height: 0.85rem; flex: none; color: var(--accent); }
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.faq__sign::after { transform: rotate(90deg); }
.faq__item.is-open .faq__sign::after { transform: rotate(0deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 0 1.4rem 2.35rem; font-size: 0.9375rem; max-width: 62ch; }

/* --- Contact -------------------------------------------------------------- */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
@media (max-width: 760px) { .contact-cards { grid-template-columns: 1fr; } }

/* Must be block: an inline span cannot constrain the SVG inside it. */
.contact-card__icon {
  display: block;
  width: 3.4rem; height: 3.4rem;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}
.contact-card__icon svg { display: block; width: 100%; height: 100%; }
.contact-card__title {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.6rem;
}
.contact-card a { text-decoration: none; transition: color 0.25s var(--ease); }
.contact-card a:hover { color: var(--accent); }

/* Form */
.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--body);
}
.field .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.55rem 0 0.6rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9688rem;
  border-radius: 0;
  transition: border-color 0.25s var(--ease);
}
.field select {
  padding-block: 0.6rem;
  border: 1px solid var(--line-2);
  padding-inline: 0.75rem;
}
.field select option { background: var(--black); color: var(--white); }
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.28); }

.form__actions { grid-column: 1 / -1; }
.form__note { grid-column: 1 / -1; margin: 0; font-size: 0.8125rem; color: var(--body-dim); }

@media (max-width: 760px) { .form { grid-template-columns: 1fr; } }

/* --- Page head (interior pages) ------------------------------------------- */

/* Height tracks the 2.2:1 banner crop so the images are not squeezed further. */
.page-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(22rem, 45vw, 41rem);
  padding-top: 8rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  background: var(--black);
}
.page-head__media { position: absolute; inset: 0; z-index: 0; }
.page-head__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(1.16) saturate(1.06);
}
/* Bottom wash for the headline, plus a left wash so breadcrumbs and lede stay
   legible over the bright van panels. */
.page-head__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.82) 38%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.4) 48%, rgba(0,0,0,0.08) 82%);
}
@media (max-width: 860px) {
  .page-head__media::after {
    background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.86) 40%, rgba(0,0,0,0.66) 100%);
  }
}
.page-head__inner { position: relative; z-index: 1; width: 100%; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--body-dim);
}
.breadcrumbs a { text-decoration: none; color: var(--accent); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.5rem; opacity: 0.55; }

/* --- Service detail blocks (services page) -------------------------------- */

.svc-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}
.svc-block:last-of-type { border-bottom: 0; }
.svc-block__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.svc-block:nth-child(even) .svc-block__media { order: 2; }
@media (max-width: 900px) {
  .svc-block { grid-template-columns: 1fr; }
  .svc-block:nth-child(even) .svc-block__media { order: 0; }
  .svc-block__media { order: -1; }
}

.ticks { margin-top: 1.6rem; }
.ticks li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-block: 0.5rem;
  font-size: 0.9375rem;
}
.ticks li::before {
  content: "";
  margin-top: 0.55rem;
  width: 0.45rem; height: 0.45rem;
  background: var(--accent);
  flex: none;
}

/* --- Prose ---------------------------------------------------------------- */

.prose h2 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); margin: 2.75rem 0 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { max-width: 68ch; }

.pull {
  margin: 2.25rem 0;
  padding: 1.5rem 0 1.5rem 1.6rem;
  border-left: 3px solid var(--accent);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--white);
}
.pull cite {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- Area list ------------------------------------------------------------ */

.area-columns {
  columns: 4;
  column-gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.25rem;
}
.area-columns li {
  break-inside: avoid;
  padding-block: 0.6rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}
@media (max-width: 900px) { .area-columns { columns: 2; } }
@media (max-width: 460px) { .area-columns { columns: 1; } }

/* --- Split (image + text) ------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split__media--wide img { aspect-ratio: 3 / 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .split__media img { aspect-ratio: 3 / 2; }
}

.caption { margin-top: 0.85rem; font-size: 0.8125rem; color: var(--body-dim); }

/* --- Footer --------------------------------------------------------------- */

.footer { border-top: 1px solid var(--line); background: var(--black); }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer__blurb { margin-top: 1.35rem; max-width: 34ch; font-size: 0.9063rem; }
.footer__title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer__list li + li { margin-top: 0.6rem; }
.footer__list a { text-decoration: none; transition: color 0.25s var(--ease); }
.footer__list a:hover { color: var(--accent); }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.75rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}
.footer__bar a { text-decoration: none; }
.footer__bar a:hover { color: var(--accent); }
.footer__legal {
  padding-bottom: 2rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--body-dim);
}
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr; } }

/* --- Sticky mobile call bar ----------------------------------------------- */

.call-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 150;
  display: none;
  border-top: 1px solid var(--line);
}
.call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.call-bar a:first-child { background: var(--accent); color: var(--black); }
.call-bar a:last-child { background: var(--white); color: var(--black); }
@media (max-width: 820px) {
  .call-bar { display: flex; }
  body { padding-bottom: 3.4rem; }
}

/* --- Motion --------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --- Print ---------------------------------------------------------------- */

@media print {
  .masthead, .call-bar, .hero__media, .band__media, .scroll-cue { display: none; }
  body { background: #fff; color: #000; }
  h1, h2, h3 { color: #000; }
}
