/* ==========================================================================
   Palmer's Woodworking
   Mobile-first. No framework. Two self-hosted variable fonts.
   ========================================================================== */

/* --- Fonts --------------------------------------------------------------- */

@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-var-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2212;
}

@font-face {
  font-family: 'Source Serif 4';
  src: url('../fonts/source-serif-4-var-latin.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2212;
}

/* --- Tokens -------------------------------------------------------------- */

:root {
  /* Brand, sampled from the logo */
  --teal:        #082C31;
  --teal-lift:   #0E3B42;
  --teal-deep:   #051E22;
  --terracotta:  #C36D4D;
  --terracotta-deep: #8A4A30;   /* AA on paper */
  --terracotta-soft: #E2A184;

  /* Neutrals, warm rather than grey */
  --paper:       #F7F3EC;
  --paper-sink:  #EFE7DA;
  --ink:         #17130F;
  --ink-soft:    #4A4139;
  --rule:        #DED3C3;

  /* Type */
  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --body: 'Source Serif 4', Georgia, 'Times New Roman', serif;

  --step--1: clamp(0.84rem, 0.82rem + 0.10vw, 0.90rem);
  --step-0:  clamp(1.05rem, 1.00rem + 0.22vw, 1.18rem);
  --step-1:  clamp(1.28rem, 1.18rem + 0.45vw, 1.55rem);
  --step-2:  clamp(1.60rem, 1.40rem + 0.95vw, 2.20rem);
  --step-3:  clamp(2.00rem, 1.65rem + 1.70vw, 3.10rem);
  --step-4:  clamp(2.45rem, 1.85rem + 2.90vw, 4.40rem);

  /* Space */
  --gap: clamp(1rem, 0.8rem + 1vw, 1.6rem);
  --section: clamp(3.5rem, 2.5rem + 4vw, 7rem);
  --shell: 78rem;
  --measure: 38rem;

  --radius: 2px;
}

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

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

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 84%;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }

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

a { color: var(--terracotta-deep); text-underline-offset: 0.18em; }
a:hover { color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}

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

.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}

.section { padding-block: var(--section); }
.section--sink { background: var(--paper-sink); }

.section--dark {
  background: var(--teal);
  color: var(--paper);
}
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark a { color: var(--terracotta-soft); }
.section--dark a:hover { color: #fff; }

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  max-width: var(--measure);
  color: var(--ink-soft);
}
.section--dark .lede { color: #D6CFC4; }

.eyebrow {
  font-family: var(--display);
  font-size: var(--step--1);
  font-weight: 600;
  font-stretch: 90%;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin: 0 0 0.9rem;
}
.section--dark .eyebrow { color: var(--terracotta-soft); }

.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--display);
  font-size: var(--step-0);
  font-weight: 700;
  font-stretch: 88%;
  letter-spacing: 0.01em;
  padding: 0.85em 1.5em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn--primary {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.btn--primary:hover { background: #A8553A; border-color: #A8553A; color: #fff; }

.btn--ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn--ghost:hover { background: rgba(255,255,255,.1); color: inherit; }

.section:not(.section--dark) .btn--ghost:hover { background: rgba(0,0,0,.06); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }

/* --- Skip link ----------------------------------------------------------- */

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1.25rem;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--display);
  text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

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

.site-header {
  background: var(--teal);
  color: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 76%;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  line-height: 1;
}
.brand span { color: var(--terracotta); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  font-stretch: 90%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  padding: 0.7rem 0;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a { color: var(--terracotta-soft); }

/* Mobile nav panel */
@media (max-width: 55.99em) {
  .primary-nav {
    display: none;
    padding-bottom: 1rem;
    border-top: 1px solid rgba(255,255,255,.15);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav li + li { border-top: 1px solid rgba(255,255,255,.1); }
}

@media (min-width: 56em) {
  .nav-toggle { display: none; }

  /* Brand and nav share one row. */
  .site-header > .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .site-header__inner { min-height: 4.75rem; }

  .primary-nav ul { display: flex; gap: 1.6rem; align-items: center; }
  .primary-nav a { padding: 0; font-size: 0.88rem; }

  /* Phone number reads as the action, not another nav item. */
  .primary-nav li:last-child a {
    color: var(--terracotta);
    border: 1px solid rgba(195,109,77,.55);
    border-radius: var(--radius);
    padding: 0.5rem 0.9rem;
  }
  .primary-nav li:last-child a:hover {
    background: var(--terracotta);
    color: #fff;
    border-color: var(--terracotta);
  }
}

/* --- Hero ---------------------------------------------------------------- */
/* Split: solid teal text panel + the before/after pair. Text never sits over
   photography, so there is no scrim and no contrast risk at any breakpoint. */

.hero { background: var(--teal); color: var(--paper); }

/* On mobile the photograph sits directly under the headline — it is the
   strongest thing we have, so it must not be pushed below the fold by copy. */
.hero__inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding-block: clamp(2rem, 5vw, 5rem);
  grid-template-areas:
    'head'
    'media'
    'support';
}

.hero__head    { grid-area: head; }
.hero__support { grid-area: support; max-width: 34rem; }
.hero .ba      { grid-area: media; }

.hero h1 {
  font-stretch: 78%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.95;
  color: var(--paper);
}
.hero h1 em {
  font-style: normal;
  color: var(--terracotta);
}

.hero__lede {
  font-size: var(--step-0);
  line-height: 1.55;
  color: #D8D1C6;
  max-width: 32rem;
}
@media (min-width: 62em) {
  .hero__lede { font-size: var(--step-1); line-height: 1.5; }
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  font-family: var(--display);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #D8D1C6;
}

.stars { color: var(--terracotta); letter-spacing: 0.08em; font-size: 1rem; }

/* The before/after pair */
.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-items: start;
}

.ba__item { position: relative; margin: 0; }

.ba__item img {
  width: 100%;
  border-radius: var(--radius);
  background: var(--teal-deep);
}

.ba__tag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.34rem 0.6rem;
  border-radius: var(--radius);
  background: rgba(8,44,49,.86);
  color: var(--paper);
  backdrop-filter: blur(4px);
}
.ba__tag--after { background: var(--terracotta); color: #fff; }

.ba__caption {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: var(--step--1);
  font-stretch: 92%;
  letter-spacing: 0.04em;
  color: #BDB4A7;
  margin: 0;
}

@media (min-width: 62em) {
  .hero__inner {
    grid-template-columns: 1fr 1.05fr;
    grid-template-areas:
      'head    media'
      'support media';
    align-content: center;
    column-gap: clamp(3rem, 5vw, 5rem);
    row-gap: 1.75rem;
  }
  .hero .ba { align-self: center; }
}

/* --- Services ------------------------------------------------------------ */

.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 40em) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62em) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color .18s ease, transform .18s ease;
}
.section--sink .card { background: #fff; }
.card:hover { border-color: var(--terracotta); }

.card h3 { margin: 0; font-size: var(--step-1); font-stretch: 88%; }
.card p { font-size: 0.98rem; color: var(--ink-soft); margin: 0; }

.card__icon {
  width: 2.1rem;
  height: 2.1rem;
  color: var(--terracotta-deep);
  margin-bottom: 0.15rem;
}
.card__icon svg { width: 100%; height: 100%; }

.card__more {
  margin-top: auto;
  padding-top: 0.7rem;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.card__more::after { content: ' →'; }

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

.rating-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.1rem;
  margin-bottom: 2rem;
}
.rating-head .stars { display: block; font-size: 1.15rem; line-height: 1; margin-bottom: 0.3rem; }

.rating-head__score {
  font-family: var(--display);
  font-size: var(--step-3);
  font-weight: 800;
  font-stretch: 80%;
  line-height: 1;
  color: var(--terracotta);
}

.quotes { display: grid; gap: 1.25rem; }
@media (min-width: 48em) { .quotes { grid-template-columns: repeat(3, 1fr); } }

.quote {
  margin: 0;
  padding: clamp(1.4rem, 3vw, 1.8rem);
  background: var(--teal-lift);
  border-radius: var(--radius);
  border-left: 3px solid var(--terracotta);
}
.quote blockquote { margin: 0; }
.quote p { font-size: 1.02rem; line-height: 1.6; color: #EDE7DD; }
.quote__stars { margin: 0 0 0.6rem; line-height: 1; }
.quote__stars .stars { font-size: 0.95rem; }
.quote figcaption {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin-top: 0.9rem;
}

/* --- Work / projects ----------------------------------------------------- */

.work { display: grid; gap: clamp(2rem, 4vw, 3rem); }

.project {
  display: grid;
  gap: 1.25rem;
}

.project__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.project__pair figure { margin: 0; position: relative; }
.project__pair img { width: 100%; border-radius: var(--radius); }

.project__body h3 { margin-bottom: 0.35rem; }

.project__meta {
  font-family: var(--display);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin: 0 0 0.6rem;
}

@media (min-width: 56em) {
  /* The photographs are the argument, so they take the larger column. */
  .project {
    grid-template-columns: 1.55fr 1fr;
    align-items: center;
    gap: clamp(2rem, 4vw, 3.25rem);
  }
  .project--flip { grid-template-columns: 1fr 1.55fr; }
  .project--flip .project__pair { order: 2; }
}

/* --- Area / coverage ----------------------------------------------------- */

.areas {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.areas a {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
  font-stretch: 90%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.areas a:hover { background: var(--teal); border-color: var(--teal); color: var(--paper); }

/* --- Contact / CTA band -------------------------------------------------- */

.cta-band { background: var(--terracotta); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band .lede { color: rgba(255,255,255,.92); }
.cta-band .btn--ghost { border-color: #fff; color: #fff; }
.cta-band .btn--ghost:hover { background: #fff; color: var(--terracotta-deep); }
.cta-band .btn--primary { background: #fff; color: var(--terracotta-deep); border-color: #fff; }
.cta-band .btn--primary:hover { background: var(--teal); border-color: var(--teal); color: #fff; }

.cta-band__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 56em) {
  .cta-band__inner { grid-template-columns: 1.3fr auto; }
  .cta-band .btn-row { margin-top: 0; justify-content: flex-end; }
}

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

.detail-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 48em) { .detail-grid { grid-template-columns: repeat(3, 1fr); } }

.detail h3 {
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-stretch: 92%;
  color: var(--terracotta-soft);
  margin-bottom: 0.5rem;
}
.detail p { margin: 0; line-height: 1.55; }
.detail a { color: inherit; }

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

.site-footer {
  background: var(--teal-deep);
  color: #BFB7AB;
  padding-block: clamp(2.5rem, 5vw, 4rem) 2rem;
  font-size: 0.95rem;
}

.site-footer a { color: #D8D1C6; }
.site-footer a:hover { color: var(--terracotta-soft); }

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 48em) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-grid h3 {
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 0.75rem;
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.4rem; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

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

.callbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--teal);
  border-top: 1px solid rgba(255,255,255,.15);
  padding-bottom: env(safe-area-inset-bottom);
}

.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 0.5rem;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  min-height: 3rem;
}
.callbar a + a { border-left: 1px solid rgba(255,255,255,.15); }
.callbar a:first-child { background: var(--terracotta); color: #fff; }

@media (min-width: 56em) { .callbar { display: none; } }
@media (max-width: 55.99em) { body { padding-bottom: 3.5rem; } }

/* --- Page content -------------------------------------------------------- */

.page-hero {
  background: var(--teal);
  color: var(--paper);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}
.page-hero h1 {
  color: var(--paper);
  text-transform: uppercase;
  font-stretch: 78%;
  font-weight: 800;
  font-size: var(--step-3);
}

.breadcrumbs {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #A79E92;
}
.breadcrumbs a { color: #D8D1C6; text-decoration: none; }
.breadcrumbs a:hover { color: var(--terracotta-soft); }
.breadcrumbs span + span::before { content: '/'; margin: 0 0.5rem; opacity: .5; }

.prose { max-width: var(--measure); }
.prose h2 { font-size: var(--step-2); margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose li { margin-bottom: 0.4em; }

/* --- Image credit (Unsplash attribution) --------------------------------- */

.credit {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-top: 0.4rem;
}
.section--dark .credit, .hero .credit { color: #9A9186; }
.credit a { color: inherit; text-decoration: underline; }

/* --- Utilities ----------------------------------------------------------- */

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

/* ==========================================================================
   Landing pages — services, service × location, and area pages.
   Everything below is shared by page-*.php templates. No page has styles of
   its own; if a page needs something new it becomes a component here.
   ========================================================================== */

/* --- Landing hero -------------------------------------------------------- */
/* Same contract as the homepage hero: text sits on solid teal, never over a
   photograph, so contrast is fixed rather than hoped for. */

.lander {
  background: var(--teal);
  color: var(--paper);
  padding-block: clamp(2.25rem, 5vw, 4.5rem);
}

.lander__inner { display: grid; gap: clamp(1.75rem, 4vw, 3rem); }

.lander h1 {
  color: var(--paper);
  text-transform: uppercase;
  font-stretch: 78%;
  font-weight: 800;
  font-size: var(--step-3);
  line-height: 0.98;
  margin-bottom: 0.45em;
}

/* .lander is a dark ground but is not .section--dark, so the dark-context
   overrides do not reach it. Restate the ones it needs — without this the
   eyebrow renders --terracotta-deep on teal at 2.2:1. */
.lander .eyebrow { color: var(--terracotta-soft); }
.lander a { color: var(--terracotta-soft); }
.lander a:hover { color: #fff; }

.lander__lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: #D8D1C6;
  max-width: 40rem;
}

.lander .hero__proof { margin-top: 1.4rem; }
.lander .breadcrumbs { margin-bottom: 1.1rem; }

.lander__media img { border-radius: var(--radius); }

@media (min-width: 62em) {
  .lander--media .lander__inner {
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

/* --- Split: body copy with a supporting aside ---------------------------- */

.split { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }
.split__main { max-width: 40rem; }
.split__main > p { max-width: var(--measure); }

.split__aside {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--terracotta);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(1.35rem, 3vw, 1.85rem);
}
.section--sink .split__aside { background: #fff; }
.section--dark .split__aside {
  background: var(--teal-lift);
  border-color: rgba(255,255,255,.14);
  border-top-color: var(--terracotta);
}

.split__aside h3 {
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-stretch: 92%;
  color: var(--terracotta-deep);
  margin-bottom: 1rem;
}
.section--dark .split__aside h3 { color: var(--terracotta-soft); }

.aside__note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}
.section--dark .aside__note { color: #BDB4A7; }

.address { font-size: 1.02rem; line-height: 1.6; }

@media (min-width: 56em) {
  .split { grid-template-columns: 1.6fr 1fr; column-gap: clamp(2.5rem, 5vw, 4rem); }
}

/* --- Tick list ----------------------------------------------------------- */

.ticks { list-style: none; margin: 0; padding: 0; }

.ticks li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.ticks li:last-child { margin-bottom: 0; }

.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.62rem;
  height: 0.34rem;
  border-left: 2px solid var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  transform: rotate(-45deg);
}
.section--dark .ticks li { color: #D6CFC4; }

/* --- Definition-list facts ----------------------------------------------- */

.facts { margin: 0; display: grid; gap: 0.65rem 1rem; grid-template-columns: auto 1fr; }

.facts dt {
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 0.15em;
}
.facts dd { margin: 0; font-size: 0.96rem; line-height: 1.45; }
.section--dark .facts dt { color: #A79E92; }

/* --- Chips: place names, service names ----------------------------------- */
/* Same visual language as .areas on the homepage, but usable for plain text
   as well as links — a place we do not have a page for yet should not be a
   dead link, and should not look like one either. */

.chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chips li,
.chips a {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 600;
  font-stretch: 90%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
}
.section--sink .chips li { background: #fff; }

/* Only unwrap the chip when the <li> actually holds a link, so a mixed list of
   linked and unlinked place names still reads as one set of chips. */
.chips--links li:has(a) { padding: 0; border: 0; background: none; }
.chips--links a {
  text-decoration: none;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.chips--links a:hover { background: var(--teal); border-color: var(--teal); color: var(--paper); }

.chips--dark li,
.chips--dark a {
  background: var(--teal-lift);
  border-color: rgba(255,255,255,.16);
  color: #E3DCD1;
}
.chips--dark a:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

/* --- Spec sheet ---------------------------------------------------------- */
/* The section no competitor page has. Presented as a spec sheet rather than
   prose because that is what it is, and because it reads as a tradesperson's
   answer rather than a marketing paragraph. */

.specs {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec {
  background: var(--paper);
  padding: clamp(1.3rem, 3vw, 1.75rem);
}
.section--sink .spec { background: #fff; }

.spec h3 {
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-stretch: 92%;
  color: var(--terracotta-deep);
  margin-bottom: 0.6rem;
}
.spec p { font-size: 0.98rem; line-height: 1.6; color: var(--ink-soft); margin: 0; }

@media (min-width: 44em) { .specs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68em) { .specs { grid-template-columns: repeat(3, 1fr); } }

/* --- Numbered process ---------------------------------------------------- */

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-top: 2.9rem;
  border-top: 1px solid rgba(255,255,255,.18);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0.9rem;
  left: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  font-stretch: 80%;
  letter-spacing: 0.06em;
  color: var(--terracotta);
}

.steps h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.steps p { font-size: 0.99rem; line-height: 1.6; color: #D6CFC4; margin: 0; }

.section:not(.section--dark) .steps li { border-top-color: var(--rule); }
.section:not(.section--dark) .steps p { color: var(--ink-soft); }

@media (min-width: 48em) { .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 2.5rem; } }
@media (min-width: 68em) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* --- Pricing table ------------------------------------------------------- */

.pricing { max-width: 50rem; }

.pricing table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.99rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.section--sink .pricing table { background: #fff; }

.pricing caption {
  caption-side: bottom;
  text-align: left;
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 0.85rem;
}

.pricing th, .pricing td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.pricing tbody tr:last-child td { border-bottom: 0; }

.pricing thead th {
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--teal);
  border-bottom: 0;
}

.pricing td:last-child {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 88%;
  white-space: nowrap;
  color: var(--terracotta-deep);
}

.pricing__note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: var(--measure);
}

/* Narrow screens: let a long price table scroll rather than break the page. */
@media (max-width: 33em) {
  .pricing table { display: block; overflow-x: auto; white-space: nowrap; }
  .pricing td:first-child { white-space: normal; min-width: 16rem; }
}

/* --- FAQs ---------------------------------------------------------------- */
/* Native <details>. No JavaScript, keyboard-accessible by default, and the
   answers stay in the DOM for in-page search and for crawlers. */

.faqs {
  max-width: 52rem;
  border-top: 1px solid var(--rule);
}

.faq { border-bottom: 1px solid var(--rule); }

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 0;
  font-family: var(--display);
  font-size: var(--step-1);
  font-weight: 700;
  font-stretch: 88%;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '';
  flex: 0 0 auto;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.45em;
  border-right: 2px solid var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq[open] summary::after { transform: rotate(-135deg); }

.faq summary:hover { color: var(--terracotta-deep); }

.faq__body {
  padding-bottom: 1.35rem;
  max-width: var(--measure);
}
.faq__body p { color: var(--ink-soft); margin: 0; }

/* --- Link lists ---------------------------------------------------------- */

.linklist { list-style: none; margin: 0 0 1.1em; padding: 0; }

.linklist li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
}
.linklist li:first-child { border-top: 1px solid var(--rule); }

.linklist a {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 88%;
  font-size: 1.02rem;
  text-decoration: none;
}
.linklist a:hover { text-decoration: underline; }

.linklist span {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

.linklist--plain li { padding: 0.5rem 0; border: 0; }
.linklist--plain li:first-child { border-top: 0; }
.linklist--plain a { font-size: 0.96rem; }

/* --- Two-column card grid ------------------------------------------------ */

@media (min-width: 48em) { .cards--2 { grid-template-columns: repeat(2, 1fr); } }

/* --- Quotes on a light ground -------------------------------------------- */
/* .quote is designed for .section--dark. This variant lets a review block sit
   on paper without rewriting the component. */

.quotes--light .quote {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--terracotta);
}
.section--sink .quotes--light .quote { background: #fff; }
.quotes--light .quote p { color: var(--ink); }
.quotes--light .quote figcaption { color: var(--terracotta-deep); }

/* --- Project card without photography yet -------------------------------- */
/* A genuine local job with no usable photograph is still local proof. It gets
   a placeholder that reads as honest rather than broken. */

.project__pair--nophoto {
  grid-template-columns: 1fr;
  border: 1px dashed var(--rule);
  border-radius: var(--radius);
  min-height: 10rem;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background: var(--paper-sink);
}
.section--sink .project__pair--nophoto { background: var(--paper); }

.project__pair--nophoto p {
  margin: 0;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}


/* --- Contact form -------------------------------------------------------- */
/* No JavaScript. Native validation, real labels, and a two-column grid that
   collapses to one on narrow screens. */

.split--form { align-items: start; }
@media (min-width: 56em) {
  .split--form { grid-template-columns: 1.35fr 1fr; }
}

.form {
  display: grid;
  gap: 0 1rem;
  grid-template-columns: 1fr;
  max-width: 38rem;
}

.form__row { margin: 0 0 1.15rem; }

.form__row label {
  display: block;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  font-stretch: 92%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.form__row label span { color: var(--terracotta-deep); }

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea {
  width: 100%;
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.5;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.7em 0.85em;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.section--sink .form input,
.section--sink .form textarea { background: #fff; }

.form input::placeholder,
.form textarea::placeholder { color: #9A9186; }

.form input:focus,
.form textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(195,109,77,.22);
  outline: none;
}

/* :focus-visible already draws a ring; do not stack two on the same element. */
.form input:focus-visible,
.form textarea:focus-visible { outline: none; }

.form textarea { resize: vertical; min-height: 9rem; }

.form__hint {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: -0.4rem 0 1.15rem;
}

.form__actions { margin: 0.4rem 0 1rem; }
.form__actions .btn { width: 100%; justify-content: center; }

/* The honeypot. Kept in the accessibility tree's blind spot rather than
   display:none, which some bots now detect and skip. */
.form__trap {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (min-width: 34em) {
  .form { grid-template-columns: 1fr 1fr; }
  .form__row--half { grid-column: span 1; }
  .form__row,
  .form__hint,
  .form__actions { grid-column: 1 / -1; }
  .form__actions .btn { width: auto; }
}

/* --- Notices ------------------------------------------------------------- */

.notice {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  border-left: 3px solid;
  margin-bottom: 1.5rem;
  font-size: 0.99rem;
  max-width: 38rem;
}
.notice:focus { outline: 3px solid var(--terracotta); outline-offset: 3px; }

.notice--ok {
  background: #E8F0E4;
  border-color: #3F6B33;
  color: #23411C;
}
.notice--error {
  background: #F6E6DF;
  border-color: var(--terracotta-deep);
  color: #6B2F1A;
}

/* --- Stacked facts list -------------------------------------------------- */
/* The two-column .facts grid squeezes an address badly; stack it instead. */

.facts--stack { grid-template-columns: 1fr; gap: 0.2rem; }
.facts--stack dt { padding-top: 0.9rem; }
.facts--stack dt:first-child { padding-top: 0; }
.facts--stack dd { margin-bottom: 0.25rem; }
