/* ==========================================================================
   WNest — Commercial Cleaning, Barrie & Simcoe County
   Warm parchment base · forest green · sage · brass
   Display: Fraunces   Body: Figtree
   Motif: the arch — the doorway of a building you're glad to walk into
   ========================================================================== */

:root {
  --cream: #FFFFFF;
  --parchment: #F4F1E9;
  --sage-mist: #EDF2EC;
  --sage: #C4D2C7;
  --sage-deep: #547061;
  --forest: #395044;
  --forest-deep: #2B3A32;
  --brass: #A8895B;
  --brass-text: #7E6437;
  --brass-soft: #DCCDB4;
  --ink: #2A312C;
  --muted: #63706A;

  --gold-lt: #F1ECE4;
  --gold-line: rgba(140, 122, 96, 0.28);

  --line: rgba(42, 49, 44, 0.14);

  --r: 16px;
  --r-sm: 10px;
  --r-pill: 999px;
  --arch: 999px 999px var(--r) var(--r);

  --shell: 76rem;
  --pad: clamp(1.25rem, 5vw, 3.25rem);

  --step-xl: clamp(2.6rem, 6.4vw, 4.75rem);
  --step-lg: clamp(2rem, 4vw, 3rem);
  --step-md: clamp(1.35rem, 2.2vw, 1.7rem);
  --step-body: clamp(1.0625rem, 1.3vw, 1.1875rem);
  --step-xs: 0.75rem;

  --shadow: 0 18px 40px -24px rgba(42, 49, 44, 0.28);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: var(--step-body);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
}

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

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

.lede { font-size: clamp(1.125rem, 1.7vw, 1.375rem); color: var(--muted); line-height: 1.6; }
.measure { max-width: 46ch; }

/* --- Labels ------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1.15rem;
}
.on-dark .eyebrow { color: var(--brass-text); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--forest); color: var(--cream); }
.btn--primary:hover { background: var(--forest-deep); }
.btn--outline { border-color: var(--forest); color: var(--forest); }
.btn--outline:hover { background: var(--sage-mist); }
.btn--cream { background: var(--forest); color: var(--cream); }
.btn--cream:hover { background: var(--forest-deep); }

/* --- Header ------------------------------------------------------------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-head__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-right: auto;
}
.brand__logo {
  height: 2.1rem;
  width: auto;
  display: block;
}
.site-foot .brand__logo { height: 3.4rem; }
.brand__name {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--forest);
}
.brand__sub {
  display: block;
  font-family: "Figtree", sans-serif;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.28rem;
}
.site-nav { display: flex; gap: 1.6rem; }
.site-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease;
}
.site-nav a:hover { color: var(--forest); }
.site-nav a[aria-current="page"] { color: var(--forest); border-bottom-color: var(--brass); }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--forest);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* --- Photo frames (the arch) -------------------------------------------- */
.photo {
  position: relative;
  border-radius: var(--arch);
  overflow: hidden;
  background: linear-gradient(160deg, var(--sage) 0%, var(--sage-mist) 55%, var(--parchment) 100%);
  box-shadow: var(--shadow);
  min-height: 22rem;
  display: grid;
  place-items: center;
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo img ~ .photo__hint { display: none; }
.photo__hint {
  padding: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(57, 80, 68, 0.55);
  text-align: center;
  max-width: 20ch;
  line-height: 1.5;
}
.photo--short { min-height: 15rem; }
.photo--square { min-height: 18rem; border-radius: var(--r); }

/* --- Hero --------------------------------------------------------------- */
.hero { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3rem, 6vw, 4.5rem); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { font-size: var(--step-xl); max-width: 13ch; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--sage-deep); }
.hero .lede { margin-bottom: 2rem; max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.hero__note { font-size: 0.9375rem; color: var(--muted); margin-top: 1.75rem; }

/* --- Bands -------------------------------------------------------------- */
.band { padding-block: clamp(3.25rem, 7vw, 5.5rem); }
.band--parchment { background: var(--parchment); }
.band--mist { background: var(--sage-mist); }
.band--forest {
  background: var(--gold-lt);
  color: var(--ink);
  border-radius: clamp(2rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem) 0 0;
}
.band--forest .lede { color: var(--muted); }
.band h2 { font-size: var(--step-lg); max-width: 20ch; margin-bottom: 1.25rem; }

.head-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--top { align-items: start; }

/* --- Cards -------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { font-size: var(--step-md); margin-bottom: 0.6rem; color: var(--forest); }
.card p { font-size: 1rem; color: var(--muted); margin: 0; }
.card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: var(--sage-mist);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.7rem;
  margin-bottom: 1rem;
}
.band--parchment .card { background: var(--cream); }
.band--forest .card {
  background: var(--cream);
  border-color: var(--gold-line);
}
.band--forest .card h3 { color: var(--forest); }
.band--forest .card p { color: var(--muted); }

/* --- Checklists --------------------------------------------------------- */
.checks { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.checks li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.65rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: var(--sage-mist);
  border: 1.5px solid var(--sage);
}
.checks li::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.78em;
  width: 0.38rem;
  height: 0.2rem;
  border-left: 1.5px solid var(--sage-deep);
  border-bottom: 1.5px solid var(--sage-deep);
  transform: rotate(-45deg);
}
.band--forest .checks li::before { background: var(--cream); border-color: var(--gold-line); }
.band--forest .checks li::after { border-color: var(--brass); }
.checks--two { columns: 2; column-gap: 2.5rem; }
.checks--two li { break-inside: avoid; }

/* --- Steps -------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.steps > li { list-style: none; counter-increment: step; }
.steps > li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.steps h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.steps p { font-size: 0.9375rem; color: var(--muted); margin: 0; }

/* --- Areas -------------------------------------------------------------- */
.areas { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.65rem; }
.areas li {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.65rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
}
.areas li strong {
  font-family: "Fraunces", serif;
  font-weight: 500;
}
.areas--primary li { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* --- Quote / testimonial ------------------------------------------------ */
.quote {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.quote blockquote {
  margin: 0 0 1.25rem;
  font-family: "Fraunces", serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.35;
  color: var(--forest);
}
.quote figcaption { font-size: 0.9375rem; color: var(--muted); }

/* --- Form --------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.875rem; font-weight: 600; color: var(--forest); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.8rem 0.95rem;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(84, 112, 97, 0.18);
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding-block: 1.1rem; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list dt {
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.35rem;
}
.contact-list dd { margin: 0; font-size: 1.0625rem; }
.contact-list a { text-decoration: none; border-bottom: 1.5px solid var(--brass); }

/* --- CTA ---------------------------------------------------------------- */
.cta {
  background: var(--gold-lt);
  color: var(--ink);
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  padding: clamp(2.25rem, 5vw, 4rem);
  text-align: center;
}
.cta h2 { font-size: var(--step-lg); max-width: 22ch; margin: 0 auto 1rem; }
.cta p { color: var(--muted); max-width: 44ch; margin: 0 auto 2rem; }

/* --- Page intro --------------------------------------------------------- */
.page-intro { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem); }
.page-intro h1 { font-size: clamp(2.4rem, 5.2vw, 3.75rem); max-width: 16ch; margin-bottom: 1.25rem; }
.page-intro .lede { max-width: 48ch; }

/* --- Footer ------------------------------------------------------------- */
.site-foot {
  background: var(--gold-lt);
  color: var(--muted);
  border-top: 1px solid var(--gold-line);
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.75rem;
  font-size: 0.9375rem;
}
.site-foot__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--gold-line);
}
.site-foot h3 {
  font-family: "Figtree", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 0.55rem; }
.site-foot a { text-decoration: none; }
.site-foot a:hover { color: var(--forest); }
.site-foot__base {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* --- Motion ------------------------------------------------------------- */
.rise { opacity: 0; transform: translateY(16px); animation: rise 0.75s cubic-bezier(0.2, 0.7, 0.3, 1) forwards; }
.rise:nth-child(2) { animation-delay: 0.08s; }
.rise:nth-child(3) { animation-delay: 0.16s; }
.rise:nth-child(4) { animation-delay: 0.24s; }
.rise:nth-child(5) { animation-delay: 0.32s; }
@keyframes rise { to { opacity: 1; transform: none; } }

:focus-visible { outline: 2.5px solid var(--sage-deep); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise { animation: none; opacity: 1; transform: none; }
  .btn:hover, .card:hover { transform: none; }
  * { transition-duration: 0.01ms !important; }
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 62rem) {
  .hero__grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .head-row { grid-template-columns: 1fr; align-items: start; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .site-foot__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 48rem) {
  .nav-toggle { display: block; order: 3; }
  .site-head .btn { display: none; }
  .site-nav {
    display: none;
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    padding-bottom: 0.75rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding-block: 0.8rem; border-bottom: 1px solid var(--line); }
  .site-head__inner { flex-wrap: wrap; }
  .steps { grid-template-columns: 1fr; }
  .checks--two { columns: 1; }
  .form__row { grid-template-columns: 1fr; }
  .site-foot__grid { grid-template-columns: 1fr; gap: 2rem; }
  .photo { min-height: 17rem; }
}

/* --- Service panels ----------------------------------------------------- */
.service {
  display: grid;
  grid-template-columns: 20rem 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
  transition: box-shadow 0.2s ease;
}
.service:hover { box-shadow: var(--shadow); }
.service__head { position: relative; }
.service__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 999px 999px 8px 8px;
  background: var(--gold-lt);
  border: 1px solid var(--gold-line);
  margin-bottom: 1.1rem;
}
.service__icon svg { width: 1.5rem; height: 1.5rem; stroke: var(--forest); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service h3 { font-size: var(--step-md); color: var(--forest); margin-bottom: 0.4rem; }
.service__for {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}
.service__lede { color: var(--muted); margin-bottom: 0.5rem; }

/* --- Industry tiles ----------------------------------------------------- */
.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.industry {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.35rem, 2.4vw, 1.85rem);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.industry:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-line); }
.industry__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--sage-mist);
  margin-bottom: 1rem;
}
.industry__icon svg { width: 1.35rem; height: 1.35rem; stroke: var(--sage-deep); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.industry h3 { font-size: 1.2rem; color: var(--forest); margin-bottom: 0.45rem; }
.industry p { font-size: 0.9375rem; color: var(--muted); margin: 0; }
.band--forest .industry { border-color: var(--gold-line); }
.band--forest .industry__icon { background: var(--gold-lt); }
.band--forest .industry__icon svg { stroke: var(--brass); }

/* --- Client strip (sliding marquee) ------------------------------------- */
.marquee {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}
@media (hover: hover) {
  .marquee:hover .marquee__track { animation-play-state: paused; }
}
.marquee__track img {
  height: 4.25rem;
  width: auto;
  flex: 0 0 auto;
  margin-inline: 1.75rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.marquee__track img:hover { opacity: 1; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}
@media (max-width: 48rem) {
  .marquee__track img { height: 3.4rem; margin-inline: 1.15rem; }
}

/* --- Service-area map --------------------------------------------------- */
.map-card {
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.map-card iframe {
  width: 100%;
  height: 26rem;
  border: 0;
  border-radius: var(--r-sm);
  display: block;
  background: var(--sage-mist);
}
.map-card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.map-card__foot a { color: var(--sage-deep); }
@media (max-width: 48rem) { .map-card iframe { height: 20rem; } }
.map-legend {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.map-legend li { display: flex; align-items: center; gap: 0.5rem; }
.map-legend i {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--forest);
  display: inline-block;
}
.map-legend li.is-secondary i { background: var(--brass); }

@media (max-width: 62rem) {
  .industries { grid-template-columns: repeat(2, 1fr); }
  .service { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 48rem) {
  .industries { grid-template-columns: 1fr; }
}

/* --- 3-up card grid, properly responsive (replaces inline column overrides) */
.cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 62rem) { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 48rem) { .cards--3 { grid-template-columns: 1fr; } }

/* --- Service-area map: real OSM raster tiles, stitched with CSS ---------- */
.tile-map {
  position: relative;
  aspect-ratio: 768 / 768;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--sage-mist);
}
.tile-map__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  width: 100%;
  height: 100%;
}
.tile-map__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.75) contrast(0.97);
}
.tile-map__pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 3px 6px rgba(42, 49, 44, 0.35));
}
.tile-map__pin-dot {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px 999px 2px 999px;
  background: var(--forest);
  border: 2px solid var(--cream);
  transform: rotate(45deg);
  margin-bottom: 0.4rem;
}
.tile-map__pin-label {
  background: var(--cream);
  color: var(--forest);
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(42, 49, 44, 0.18);
}
.tile-map__pin--secondary .tile-map__pin-dot { background: var(--brass); width: 0.8rem; height: 0.8rem; margin-bottom: 0.3rem; }
.tile-map__pin--secondary .tile-map__pin-label { font-size: 0.75rem; padding: 0.15rem 0.55rem; }
@media (max-width: 30rem) {
  .tile-map__pin-label { font-size: 0.75rem; padding: 0.15rem 0.5rem; }
}

/* --- Accessibility: skip link ------------------------------------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--forest);
  color: var(--cream);
  padding: 0.85rem 1.35rem;
  border-radius: 0 0 var(--r-sm) 0;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* --- Reviews -------------------------------------------------------------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}
.review {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 2.5vw, 1.85rem);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review__mark {
  position: absolute;
  top: -0.5rem;
  right: 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--gold-lt);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.review__stars {
  position: relative;
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.review__stars svg { width: 1rem; height: 1rem; fill: var(--brass); }
.review blockquote {
  position: relative;
  margin: 0 0 1.5rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}
.review__foot {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.review__avatar {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  color: var(--cream);
}
.review__name { font-weight: 600; font-size: 0.9375rem; color: var(--ink); }
.review__role { font-size: 0.8125rem; color: var(--muted); margin-top: 0.1rem; }

/* --- Client strip: plain text wordmark (matches N15's own site treatment) */
.marquee__word {
  flex: 0 0 auto;
  margin-inline: 1.75rem;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: #3A3A3A;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.marquee__word:hover { opacity: 1; }
@media (max-width: 48rem) {
  .marquee__word { font-size: 1.2rem; margin-inline: 1.15rem; }
}

/* --- Service panels v2: numbered, colour-coded, distinct per tier -------- */
.service {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--line);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service__num {
  position: absolute;
  top: -1.25rem;
  right: 0.5rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(42, 49, 44, 0.06);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.service__head, .service > div:last-child { position: relative; z-index: 1; }
.service__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-pill);
  margin-top: 0.85rem;
}

.service--regular { background: var(--cream); }
.service--regular .service__icon { background: var(--sage-mist); }
.service--regular .service__icon svg { stroke: var(--sage-deep); }
.service--regular .service__tag { background: var(--sage-mist); color: var(--sage-deep); }

.service--deep { background: var(--parchment); }
.service--deep .service__icon { background: var(--gold-lt); }
.service--deep .service__icon svg { stroke: var(--brass-text); }
.service--deep .service__tag { background: var(--gold-lt); color: var(--brass-text); }

.service--post { background: var(--sage-mist); }
.service--post .service__icon { background: var(--forest); }
.service--post .service__icon svg { stroke: var(--cream); }
.service--post .service__tag { background: var(--forest); color: var(--cream); }

.service + .service { margin-top: 1.5rem; }

/* --- Sticky mobile call/quote bar ---------------------------------------- */
.mobile-bar { display: none; }
@media (max-width: 48rem) {
  .mobile-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    gap: 0.6rem;
    background: var(--forest);
    padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 20px rgba(23, 26, 23, 0.18);
  }
  .mobile-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.8rem 0.5rem;
    border-radius: var(--r-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
  }
  .mobile-bar svg { width: 1.05rem; height: 1.05rem; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
  .mobile-bar__call { background: rgba(252, 248, 240, 0.14); color: var(--cream); }
  .mobile-bar__quote { background: var(--brass); color: var(--forest-deep); }
  body { padding-bottom: 4.75rem; }
}

/* --- FAQ accordion -------------------------------------------------------- */
.faq {
  max-width: 46rem;
  margin: 2.25rem auto 0;
  display: grid;
  gap: 0.75rem;
}
.faq details {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.0625rem;
  color: var(--forest);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 1.5px solid var(--brass);
  border-bottom: 1.5px solid var(--brass);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq__body {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
}

.service--daily { background: var(--gold-lt); }
.service--daily .service__icon { background: var(--sage-mist); }
.service--daily .service__icon svg { stroke: var(--sage-deep); }
.service--daily .service__tag { background: var(--sage-mist); color: var(--sage-deep); }

/* --- Scroll-triggered reveals -------------------------------------------- */
/* Content is visible by default with no JS required. Only once JS confirms
   it's running (html.reveal-ready) do sections start hidden until scrolled
   to — so a page with JS blocked or slow never ends up blank. */
main section:not(.hero):not(.page-intro):not(.page) {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}
html.reveal-ready main section:not(.hero):not(.page-intro):not(.page):not(.is-visible) {
  opacity: 0;
  transform: translateY(26px);
}
main section.is-visible {
  opacity: 1;
  transform: none;
}
/* stagger the cards/tiles inside a section slightly once it's visible */
.is-visible .cards > *,
.is-visible .industries > *,
.is-visible .service,
.is-visible .review,
.is-visible .faq > details {
  animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.is-visible .cards > *:nth-child(2), .is-visible .industries > *:nth-child(2) { animation-delay: 0.06s; }
.is-visible .cards > *:nth-child(3), .is-visible .industries > *:nth-child(3) { animation-delay: 0.12s; }
.is-visible .cards > *:nth-child(4), .is-visible .industries > *:nth-child(4) { animation-delay: 0.18s; }
.is-visible .cards > *:nth-child(5), .is-visible .industries > *:nth-child(5) { animation-delay: 0.24s; }
.is-visible .cards > *:nth-child(6), .is-visible .industries > *:nth-child(6) { animation-delay: 0.3s; }
.is-visible .cards > *:nth-child(7), .is-visible .industries > *:nth-child(7) { animation-delay: 0.36s; }
.is-visible .cards > *:nth-child(8), .is-visible .industries > *:nth-child(8) { animation-delay: 0.42s; }
.is-visible .service:nth-of-type(2) { animation-delay: 0.08s; }
.is-visible .service:nth-of-type(3) { animation-delay: 0.16s; }
.is-visible .service:nth-of-type(4) { animation-delay: 0.24s; }
.is-visible .faq > details:nth-child(2) { animation-delay: 0.05s; }
.is-visible .faq > details:nth-child(3) { animation-delay: 0.1s; }
.is-visible .faq > details:nth-child(4) { animation-delay: 0.15s; }
.is-visible .faq > details:nth-child(5) { animation-delay: 0.2s; }
.is-visible .faq > details:nth-child(6) { animation-delay: 0.25s; }
.is-visible .faq > details:nth-child(7) { animation-delay: 0.3s; }

/* --- Photo hover zoom ----------------------------------------------------- */
.photo img { transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1); }
.photo:hover img { transform: scale(1.045); }

/* --- Header responds to scroll -------------------------------------------- */
.site-head { transition: box-shadow 0.25s ease, background-color 0.25s ease; }
.site-head.is-scrolled {
  box-shadow: 0 6px 20px rgba(23, 26, 23, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

/* --- Ambient glow behind the hero photo ------------------------------------ */
.hero__glow {
  position: absolute;
  inset: -10% -6%;
  z-index: -1;
  filter: blur(60px);
  opacity: 0.55;
  background:
    radial-gradient(closest-side, rgba(196, 210, 199, 0.9), transparent),
    radial-gradient(closest-side, rgba(168, 137, 91, 0.55), transparent) 80% 70% / 60% 60% no-repeat;
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(3%, -4%) scale(1.06); }
}
.hero .photo { position: relative; }

/* --- Smooth FAQ accordion -------------------------------------------------- */
.faq__body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.faq__body-wrap > div { overflow: hidden; }
details[open] .faq__body-wrap { grid-template-rows: 1fr; }
.faq summary { transition: color 0.2s ease; }
.faq details:hover summary { color: var(--sage-deep); }

@media (prefers-reduced-motion: reduce) {
  main section:not(.hero):not(.page-intro):not(.page) { opacity: 1; transform: none; }
  .is-visible .cards > *, .is-visible .industries > *, .is-visible .service,
  .is-visible .review, .is-visible .faq > details { animation: none; }
  .hero__glow { animation: none; }
  .photo:hover img { transform: none; }
}

/* --- Service panel colours v3 -------------------------------------------
   Four visibly distinct tones. --parchment and --gold-lt are only 3 hex
   values apart, so using both made adjacent panels look identical; the
   fourth panel goes dark instead, which also gives the page a clear finish. */
.service--regular { background: var(--cream); }
.service--regular .service__icon { background: var(--sage-mist); }
.service--regular .service__icon svg { stroke: var(--sage-deep); }
.service--regular .service__tag { background: var(--sage-mist); color: var(--sage-deep); }

.service--daily { background: var(--sage-mist); }
.service--daily .service__icon { background: var(--cream); }
.service--daily .service__icon svg { stroke: var(--sage-deep); }
.service--daily .service__tag { background: var(--cream); color: var(--sage-deep); }

.service--deep { background: var(--gold-lt); }
.service--deep .service__icon { background: var(--cream); }
.service--deep .service__icon svg { stroke: var(--brass-text); }
.service--deep .service__tag { background: var(--cream); color: var(--brass-text); }

.service--post {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}
.service--post .service__num { color: rgba(255, 255, 255, 0.09); }
.service--post h3 { color: var(--brass-soft); }
.service--post .service__lede,
.service--post p { color: rgba(255, 255, 255, 0.82); }
.service--post .service__icon { background: rgba(255, 255, 255, 0.12); }
.service--post .service__icon svg { stroke: var(--brass-soft); }
.service--post .service__tag { background: var(--brass-soft); color: var(--forest-deep); }
.service--post .checks li::before { background: rgba(255, 255, 255, 0.1); border-color: rgba(226, 206, 168, 0.5); }
.service--post .checks li::after { border-color: var(--brass-soft); }
.service--post p[style*="font-weight:600"] { color: var(--brass-soft) !important; }
.service--post p[style*="border-top"] { border-top-color: rgba(255, 255, 255, 0.18) !important; color: rgba(255, 255, 255, 0.6) !important; }

/* --- Spam honeypot -------------------------------------------------------
   Visually and audibly hidden, but still a real focusable field in the DOM so
   bots fill it. Uses position/clip rather than display:none, because some
   bots skip display:none fields. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- 404 page ------------------------------------------------------------- */
.notfound {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(3.5rem, 10vw, 7rem) clamp(3rem, 8vw, 5.5rem);
}
.notfound__num {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(7rem, 26vw, 16rem);
  line-height: 0.85;
  color: var(--gold-lt);
  margin: 0 0 -0.15em;
  user-select: none;
  position: relative;
}
/* the sweeping "just cleaned" shine passing over the numerals */
.notfound__num::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.85) 50%, transparent 62%);
  background-size: 260% 100%;
  animation: sweep 4.5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}
@keyframes sweep {
  0%, 22%  { background-position: 160% 0; }
  60%,100% { background-position: -60% 0; }
}
.notfound h1 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  max-width: 18ch;
  margin: 0 auto 1.1rem;
  position: relative;
}
.notfound__lede { max-width: 44ch; margin: 0 auto 2rem; color: var(--muted); }
.notfound__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 6vw, 3.75rem);
}
.notfound__links {
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  max-width: 40rem;
  margin-inline: auto;
}
.notfound__links p {
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.9rem;
}
.notfound__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.notfound__links a {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  text-decoration: none;
  font-size: 0.9375rem;
  color: var(--forest);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.notfound__links a:hover { background: var(--sage-mist); border-color: var(--sage); }

@media (prefers-reduced-motion: reduce) {
  .notfound__num::after { animation: none; opacity: 0; }
}
