/* Green Coat Custom Painting v2
   Forest palette: deep pine + paper + leaf accent (no orange).
   Type: Outfit variable. Radius rule: buttons pill, cards/media 18px, inputs 10px. */

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #10231a;
  --ink-soft: #46584e;
  --pine: #175a33;
  --pine-bright: #1e7a44;
  --pine-deep: #0e3d22;
  --forest-black: #081911;
  --leaf: #37a866;
  --leaf-soft: #dff0e5;
  --paper: #f7f8f4;
  --paper-alt: #eef0e9;
  --line: #dfe3da;
  --white: #fdfdfc;
  --r-card: 18px;
  --r-input: 10px;
  --shadow: 0 16px 40px rgba(8, 25, 17, 0.12);
  --shadow-lg: 0 24px 64px rgba(8, 25, 17, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Outfit", "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
/* height:auto is required: the width/height attributes on <img> are there for CLS,
   but without this the attribute height wins whenever the column is narrower than
   the attribute width, and the image renders vertically stretched. */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.06; letter-spacing: -0.025em; font-weight: 750; }
p { margin: 0 0 1em; }
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.wrap-wide { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 28px; }

/* ── Buttons (animated directional fill) ─────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 16px;
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--pine-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  border-radius: inherit;
}
.btn:hover::before { transform: scaleX(1); }
.btn:active { transform: translateY(1px) scale(0.98); }
.btn .arr { display: inline-block; transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-solid { background: var(--pine); color: var(--white); box-shadow: 0 8px 24px rgba(23, 90, 51, 0.28); }
.btn-solid:hover { box-shadow: 0 12px 32px rgba(23, 90, 51, 0.38); }
.btn-ghost { border-color: rgba(16, 35, 26, 0.25); color: var(--ink); }
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover { color: var(--white); border-color: var(--ink); }
.btn-light { background: var(--white); color: var(--pine-deep); }
.btn-light::before { background: var(--leaf); }
.btn-light:hover { color: var(--white); }
.btn-ghost-light { border-color: rgba(253, 253, 252, 0.4); color: var(--white); }
.btn-ghost-light::before { background: var(--white); }
.btn-ghost-light:hover { color: var(--ink); border-color: var(--white); }
.btn-lg { padding: 18px 34px; font-size: 17px; }

/* ── Topbar ──────────────────────────────────────────── */
.topbar { background: var(--forest-black); color: rgba(253, 253, 252, 0.82); font-size: 13.5px; }
.topbar .wrap-wide { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-left svg, .topbar-right svg { width: 13px; height: 13px; fill: var(--leaf); flex: none; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right a { text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: color 0.15s; }
.topbar-right a:hover { color: var(--white); }
.topbar-right .social svg { fill: rgba(253, 253, 252, 0.7); width: 15px; height: 15px; transition: fill 0.15s; }
.topbar-right .social:hover svg { fill: var(--leaf); }

/* ── Header (wide, shrinks on scroll) ────────────────── */
.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(253, 253, 252, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.site-head.scrolled { box-shadow: 0 8px 30px rgba(8, 25, 17, 0.08); }
.site-head .wrap-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 88px;
  transition: height 0.3s var(--ease);
}
.site-head.scrolled .wrap-wide { height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 19px; font-weight: 800;
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
.brand-text { line-height: 1.1; }
.brand-text b { display: block; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; }
.brand-text span { white-space: nowrap; }
.brand-text b em { font-style: normal; color: var(--pine); }
.brand-text span { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.13em; color: var(--ink-soft); font-weight: 550; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav > li { list-style: none; position: relative; }
.nav { margin: 0; padding: 0; }
.nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 560;
  font-size: 15.5px;
  color: var(--ink-soft);
  transition: color 0.15s, background 0.2s;
}
.nav > li > a:hover, .nav > li > a[aria-current="page"] { color: var(--pine-deep); background: var(--leaf-soft); }
.nav .caret { width: 9px; height: 9px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.25s var(--ease); }
.has-mega:hover .caret, .has-mega:focus-within .caret { transform: rotate(225deg) translateY(-1px); }

/* ── Mega menu ───────────────────────────────────────── */
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 12px);
  width: min(880px, calc(100vw - 48px));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 26px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 26px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.has-mega:hover .mega, .has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mega-item {
  display: flex;
  gap: 13px;
  padding: 13px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.mega-item:hover { background: var(--leaf-soft); transform: translateX(3px); }
.mega-ico {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--leaf-soft);
  color: var(--pine);
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s;
}
.mega-item:hover .mega-ico { background: var(--pine); color: var(--white); }
.mega-ico svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.mega-item b { display: block; font-size: 15px; font-weight: 650; margin-bottom: 1px; }
.mega-item span { font-size: 13px; color: var(--ink-soft); line-height: 1.4; display: block; }
.mega-feat {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 240px;
  text-decoration: none;
  color: var(--white);
  isolation: isolate;
}
.mega-feat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.6s var(--ease); }
.mega-feat:hover img { transform: scale(1.05); }
.mega-feat::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8, 25, 17, 0.9), rgba(8, 25, 17, 0.1) 60%); }
.mega-feat-body { padding: 18px; }
.mega-feat-body b { display: block; font-size: 16.5px; margin-bottom: 3px; }
.mega-feat-body span { font-size: 13px; color: rgba(253, 253, 252, 0.85); }

.head-cta { display: flex; align-items: center; gap: 18px; }
.head-phone { text-decoration: none; line-height: 1.15; text-align: right; white-space: nowrap; }
.head-phone small { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); font-weight: 550; }
.head-phone b { font-size: 17.5px; font-weight: 750; color: var(--pine-deep); transition: color 0.15s; }
.head-phone:hover b { color: var(--leaf); }
.nav-toggle { display: none; }

/* ── Hero (full-bleed) ───────────────────────────────── */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: no-preference) {
  .hero-bg img { animation: kenburns 22s var(--ease) both; }
  @keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(8, 25, 17, 0.88) 0%, rgba(8, 25, 17, 0.62) 45%, rgba(8, 25, 17, 0.18) 100%);
}
.hero-inner { padding: 96px 0; max-width: 640px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(253, 253, 252, 0.92);
  background: rgba(253, 253, 252, 0.1);
  border: 1px solid rgba(253, 253, 252, 0.22);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.2rem); font-weight: 800; margin-bottom: 22px; }
.hero h1 .hl { position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.32em;
  background: var(--leaf);
  opacity: 0.45;
  z-index: -1;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: hl-in 0.9s var(--ease) 0.7s forwards;
}
@keyframes hl-in { to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .hero h1 .hl::after { transform: none; animation: none; } }
.hero-sub { font-size: 19.5px; color: rgba(253, 253, 252, 0.88); max-width: 46ch; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(8, 25, 17, 0.55);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(253, 253, 252, 0.14);
}
.hero-strip .wrap-wide { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-top: 18px; padding-bottom: 18px; }
.hero-strip b { display: block; font-size: 15px; }
.hero-strip span { font-size: 13px; color: rgba(253, 253, 252, 0.66); }

/* staged entrance */
@media (prefers-reduced-motion: no-preference) {
  .stage { opacity: 0; transform: translateY(26px); animation: stage-in 0.9s var(--ease) forwards; }
  .stage-1 { animation-delay: 0.05s; } .stage-2 { animation-delay: 0.18s; }
  .stage-3 { animation-delay: 0.32s; } .stage-4 { animation-delay: 0.46s; }
  @keyframes stage-in { to { opacity: 1; transform: none; } }
}

/* ── Sections ────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-tight { padding: 72px 0; }
.section-alt { background: var(--paper-alt); }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-head p { color: var(--ink-soft); font-size: 18px; margin: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pine);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--leaf); border-radius: 2px; }

/* ── Service cards (bento) ───────────────────────────── */
.svc-grid { display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: 1fr 1fr; gap: 24px; min-height: 600px; }
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--r-card);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  min-height: 250px;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card.tall { grid-row: span 2; }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.7s var(--ease); }
.svc-card:hover img { transform: scale(1.06); }
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8, 25, 17, 0.92) 0%, rgba(8, 25, 17, 0.3) 55%, rgba(8, 25, 17, 0.05) 100%); }
.svc-body { padding: 30px; }
.svc-body h3 { font-size: 23px; margin-bottom: 7px; }
.svc-body p { font-size: 15px; color: rgba(253, 253, 252, 0.86); margin-bottom: 12px; max-width: 42ch; }
.svc-more { font-size: 14.5px; font-weight: 650; color: var(--leaf); display: inline-flex; gap: 7px; align-items: center; }
.svc-more .arr { transition: transform 0.3s var(--ease); }
.svc-card:hover .svc-more .arr { transform: translateX(5px); }

/* 3-up linked cards (services hub, areas) */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.link-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.link-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.link-card img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.6s var(--ease); }
.link-card:hover img { transform: scale(1.04); }
.link-card .lc-body { padding: 22px 24px 26px; }
.link-card h3 { font-size: 19px; margin-bottom: 6px; }
.link-card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 12px; }
.link-card .svc-more { color: var(--pine); }

/* ── Dark band ───────────────────────────────────────── */
.band { background: var(--forest-black); color: var(--white); position: relative; overflow: hidden; }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.band h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); }
.band p { color: rgba(253, 253, 252, 0.75); }
.band img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--r-card); }
.band-points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 15px; }
.band-points li { display: flex; gap: 13px; align-items: flex-start; font-size: 16.5px; }
.band-points .tick { flex: none; width: 23px; height: 23px; margin-top: 2px; border-radius: 50%; background: var(--leaf); color: var(--forest-black); display: grid; place-items: center; font-size: 13px; font-weight: 800; }

/* ── Steps ───────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px; position: relative; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step .num { font-size: 40px; font-weight: 800; color: var(--leaf-soft); -webkit-text-stroke: 1.5px var(--pine); line-height: 1; display: block; margin-bottom: 14px; }
.step h3 { font-size: 18.5px; margin-bottom: 7px; }
.step p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* ── Towns marquee ───────────────────────────────────── */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); padding: 18px 0; }
.marquee-track { display: flex; gap: 48px; width: max-content; }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: marquee 34s linear infinite; }
  @keyframes marquee { to { transform: translateX(-50%); } }
}
.marquee-track span { font-size: 15.5px; font-weight: 600; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 48px; white-space: nowrap; }
.marquee-track span::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--leaf); }

/* ── Gallery ─────────────────────────────────────────── */
.strip { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; -webkit-overflow-scrolling: touch; }
.strip::-webkit-scrollbar { height: 8px; }
.strip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.strip figure { flex: 0 0 min(440px, 80vw); margin: 0; scroll-snap-align: start; }
.strip img { width: 100%; height: 310px; object-fit: cover; border-radius: var(--r-card); transition: transform 0.5s var(--ease); }
.strip figure:hover img { transform: scale(1.02); }
.strip figcaption { font-size: 14px; color: var(--ink-soft); padding-top: 9px; }
.masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.masonry figure { margin: 0; overflow: hidden; border-radius: var(--r-card); position: relative; }
.masonry img { width: 100%; height: 330px; object-fit: cover; transition: transform 0.6s var(--ease); }
.masonry figure:hover img { transform: scale(1.05); }
.masonry figure.wide { grid-column: span 2; }
.masonry figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 20px 16px;
  font-size: 14px;
  color: var(--white);
  background: linear-gradient(to top, rgba(8, 25, 17, 0.85), transparent);
}

/* ── Quotes ──────────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.quote-featured { background: var(--pine); color: var(--white); border-radius: var(--r-card); padding: 44px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.quote-featured::before { content: "\201C"; position: absolute; top: -30px; right: 10px; font-size: 220px; font-weight: 800; color: rgba(253, 253, 252, 0.08); line-height: 1; }
.quote-featured blockquote { margin: 0 0 26px; font-size: 21.5px; line-height: 1.5; font-weight: 500; position: relative; }
.quote-side { display: grid; gap: 24px; }
.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote-card blockquote { margin: 0 0 16px; font-size: 15.5px; color: var(--ink-soft); }
.quote-who { font-size: 14.5px; font-weight: 650; margin: 0; }
.quote-who span { display: block; font-weight: 400; font-size: 13px; color: var(--ink-soft); }
.quote-featured .quote-who span { color: rgba(253, 253, 252, 0.68); }
.stars { color: var(--leaf); letter-spacing: 2px; font-size: 14px; margin-bottom: 10px; }
.quote-featured .stars { color: #ffd66b; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq { max-width: 780px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; padding: 0 22px; margin-bottom: 12px; background: var(--white); transition: border-color 0.2s; }
.faq details[open] { border-color: var(--pine); }
.faq summary { cursor: pointer; font-weight: 620; font-size: 17px; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--pine); font-weight: 450; transition: transform 0.25s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); margin: 0 0 20px; max-width: 64ch; }

/* ── Prose / split ───────────────────────────────────── */
.prose { max-width: 68ch; }
.prose h2 { font-size: 27px; margin-top: 44px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); }
.prose ul { color: var(--ink-soft); padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.img-rounded { border-radius: var(--r-card); }

/* ── Page hero (inner) ───────────────────────────────── */
.page-hero { position: relative; isolation: isolate; color: var(--white); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(8, 25, 17, 0.9) 0%, rgba(8, 25, 17, 0.55) 55%, rgba(8, 25, 17, 0.25) 100%); }
.page-hero .wrap { padding-top: 88px; padding-bottom: 88px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.3rem); font-weight: 800; max-width: 16ch; }
.page-hero .lede { font-size: 19px; color: rgba(253, 253, 252, 0.88); max-width: 50ch; margin-bottom: 30px; }
.crumbs { font-size: 13.5px; color: rgba(253, 253, 252, 0.65); margin-bottom: 22px; }
.crumbs a { color: rgba(253, 253, 252, 0.85); text-decoration: none; }
.crumbs a:hover { color: var(--white); }

/* ── Stat counters ───────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.stat { text-align: left; border-left: 3px solid var(--leaf); padding-left: 20px; }
.stat b { display: block; font-size: 38px; font-weight: 800; color: var(--pine-deep); line-height: 1.1; }
.stat span { font-size: 14.5px; color: var(--ink-soft); }
.band .stat b { color: var(--white); }
.band .stat span { color: rgba(253, 253, 252, 0.65); }

/* ── Pre-footer CTA panel ────────────────────────────── */
.cta-panel-zone { padding: 0 0 0; background: linear-gradient(to bottom, var(--paper) 50%, var(--forest-black) 50%); }
.cta-panel {
  background: linear-gradient(120deg, var(--pine) 0%, var(--pine-deep) 100%);
  border-radius: 26px;
  padding: 56px 60px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-panel::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 168, 102, 0.35), transparent 70%);
}
.cta-panel h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 8px; }
.cta-panel p { margin: 0; color: rgba(253, 253, 252, 0.8); max-width: 46ch; }
.cta-panel .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Footer v2 ───────────────────────────────────────── */
.site-foot { background: var(--forest-black); color: rgba(253, 253, 252, 0.72); font-size: 15px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 52px; padding: 84px 0 56px; }
.site-foot h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; font-weight: 650; }
.site-foot a { color: rgba(253, 253, 252, 0.72); text-decoration: none; transition: color 0.15s, padding-left 0.2s var(--ease); }
.site-foot a:hover { color: var(--leaf); }
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot-links a:hover { padding-left: 4px; }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.foot-brand b { font-size: 21px; color: var(--white); font-weight: 800; }
.foot-brand b em { font-style: normal; color: var(--leaf); }
.foot-about { max-width: 40ch; margin-bottom: 22px; }
.foot-social { display: flex; gap: 12px; }
.foot-social a { width: 40px; height: 40px; border-radius: 12px; border: 1px solid rgba(253, 253, 252, 0.18); display: grid; place-items: center; transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease); }
.foot-social a:hover { background: var(--pine); border-color: var(--pine); transform: translateY(-3px); }
.foot-social svg { width: 17px; height: 17px; fill: rgba(253, 253, 252, 0.85); }
.foot-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.foot-contact li { display: flex; gap: 12px; align-items: flex-start; }
.foot-contact svg { width: 16px; height: 16px; fill: var(--leaf); flex: none; margin-top: 4px; }
.foot-phone-big { font-size: 22px; font-weight: 750; color: var(--white) !important; }
.foot-base { border-top: 1px solid rgba(253, 253, 252, 0.12); padding: 24px 0; font-size: 13.5px; }
.foot-base .wrap-wide { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ── Mobile call bar ─────────────────────────────────── */
.callbar { display: none; }

/* ── Reveal on scroll (staggered) ────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1099px) {
  .topbar-left span:nth-child(2) { display: none; }
  .nav { display: none; }
  .site-head .wrap-wide { height: 74px; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: var(--leaf-soft);
    border: 0;
    border-radius: 12px;
    padding: 0 11px;
    cursor: pointer;
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--pine-deep); display: block; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* The header carries backdrop-filter: blur(14px). A non-none backdrop-filter makes
     an element the containing block for its position:fixed descendants, so the drawer
     was being sized against the 71px header instead of the viewport and collapsed to a
     104px sliver. Dropping the blur while the drawer is open restores the viewport as
     its containing block. The z-index has to come up too: the header's own stacking
     context (z-index 60) sits under the scrim (65), which otherwise covers the drawer
     and swallows every tap. */
  .nav-open .site-head {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 80;
  }
  .nav.open {
    display: block;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(360px, 88vw);
    background: var(--white);
    z-index: 70;
    padding: 84px 28px 28px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: drawer-in 0.35s var(--ease);
  }
  @keyframes drawer-in { from { transform: translateX(40px); opacity: 0; } }
  .nav.open > li { margin-bottom: 4px; }
  .nav.open > li > a { display: flex; width: 100%; justify-content: space-between; font-size: 17px; padding: 13px 14px; border-radius: 12px; }
  .nav.open .mega {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: auto;
    box-shadow: none;
    border: 0;
    padding: 4px 8px 10px;
    grid-template-columns: 1fr;
    gap: 0;
    display: none;
  }
  .nav.open .has-mega.open .mega { display: block; }
  .nav.open .mega-grid { grid-template-columns: 1fr; gap: 2px; }
  .nav.open .mega-feat { display: none; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(8, 25, 17, 0.45); z-index: 65; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
  .nav-scrim.show { opacity: 1; pointer-events: auto; }
  .head-cta .btn { display: none; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .topbar-left span:nth-child(3) { display: none; }
  .topbar-right .social { display: none; }
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
  .hero { min-height: 0; }
  .hero-inner { padding: 72px 0 120px; }
  .hero-strip { position: static; }
  .hero-strip .wrap-wide { grid-template-columns: 1fr 1fr; }
  .head-phone { display: none; }
  .svc-grid { grid-template-columns: 1fr; grid-template-rows: none; min-height: 0; }
  .svc-card.tall { grid-row: auto; }
  .card-grid, .card-grid.two { grid-template-columns: 1fr; }
  .band-grid, .split-2, .page-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .band img { height: 280px; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .quotes { grid-template-columns: 1fr; }
  .masonry { grid-template-columns: 1fr; }
  .masonry figure.wide { grid-column: auto; }
  .stats { grid-template-columns: 1fr; gap: 20px; }
  .cta-panel { padding: 40px 28px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 36px; }
  .page-hero .wrap { padding-top: 64px; padding-bottom: 64px; }

  .callbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 55;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(253, 253, 252, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }
  .callbar .btn { justify-content: center; padding: 13px 10px; font-size: 15px; }
  body { padding-bottom: 74px; }
}

/* ── v2.1 additions ──────────────────────────────────── */

/* real logo */
.brand-logo { width: 52px; height: 52px; object-fit: contain; transition: transform 0.3s var(--ease); }
.brand:hover .brand-logo { transform: rotate(-6deg) scale(1.05); }

/* mega menu photo thumbs */
.mega-thumb { flex: none; width: 52px; height: 52px; border-radius: 12px; overflow: hidden; }
.mega-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.mega-item:hover .mega-thumb img { transform: scale(1.12); }

/* hero background slider (crossfade + ken burns per slide) */
.hero-bg .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-bg .slide.active { opacity: 1; }
.hero-bg .slide img { width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: no-preference) {
  .hero-bg .slide.active img { animation: kenburns 9s linear both; }
}
.hero-dots { display: flex; gap: 8px; margin-top: 30px; }
.hero-dots button { width: 26px; height: 4px; border-radius: 2px; border: 0; background: rgba(253, 253, 252, 0.32); cursor: pointer; transition: background 0.25s, width 0.25s var(--ease); padding: 0; }
.hero-dots button.on { background: var(--leaf); width: 40px; }

/* typewriter */
.type-wrap { color: var(--leaf); }
.type-caret { display: inline-block; width: 3px; height: 0.92em; background: var(--leaf); margin-left: 4px; vertical-align: -0.08em; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .type-caret { animation: none; } }

/* services 6-grid: bento + compact row */
.svc-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.svc-mini {
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: var(--r-card);
  overflow: hidden;
  min-height: 190px;
  text-decoration: none;
  color: var(--white);
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.svc-mini:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-mini img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.6s var(--ease); }
.svc-mini:hover img { transform: scale(1.06); }
.svc-mini::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8, 25, 17, 0.88), rgba(8, 25, 17, 0.12) 65%); }
.svc-mini .sm-body { padding: 20px; display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 10px; }
.svc-mini h3 { font-size: 18px; margin: 0; }
.svc-mini .arr { color: var(--leaf); font-weight: 700; transition: transform 0.3s var(--ease); }
.svc-mini:hover .arr { transform: translateX(5px); }

/* recent work carousel */
.carousel { position: relative; }
.car-viewport { overflow: hidden; border-radius: var(--r-card); }
.car-track { display: flex; gap: 20px; transition: transform 0.7s var(--ease); will-change: transform; }
.car-item { flex: 0 0 calc(33.333% - 14px); position: relative; border-radius: var(--r-card); overflow: hidden; }
.car-item img { width: 100%; height: 340px; object-fit: cover; transition: transform 0.6s var(--ease); }
.car-item:hover img { transform: scale(1.05); }
.car-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 44px 18px 15px;
  font-size: 14px; color: var(--white);
  background: linear-gradient(to top, rgba(8, 25, 17, 0.85), transparent);
}
.car-nav { display: flex; gap: 10px; align-items: center; justify-content: space-between; margin-top: 22px; }
.car-btns { display: flex; gap: 10px; }
.car-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid rgba(16, 35, 26, 0.2);
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.car-btn:hover { background: var(--pine); color: var(--white); border-color: var(--pine); transform: translateY(-2px); }
.car-progress { flex: 1; max-width: 220px; height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; }
.car-progress i { display: block; height: 100%; background: var(--leaf); border-radius: 2px; transition: width 0.5s var(--ease); }

/* testimonial slider */
.tslider { position: relative; }
.tslide { display: none; }
.tslide.on { display: grid; animation: tfade 0.7s var(--ease); }
@keyframes tfade { from { opacity: 0; transform: translateY(14px); } }
@media (prefers-reduced-motion: reduce) { .tslide.on { animation: none; } }
.t-nav { display: flex; gap: 8px; margin-top: 26px; align-items: center; }
.t-nav button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s var(--ease); }
.t-nav button.on { background: var(--pine); transform: scale(1.3); }

/* stats band */
.stats-band { background: linear-gradient(120deg, var(--pine) 0%, var(--pine-deep) 100%); color: var(--white); position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; left: -100px; bottom: -140px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(55, 168, 102, 0.35), transparent 70%); }
.stats-band .wrap { display: grid; grid-template-columns: 1.1fr repeat(3, 1fr); gap: 40px; align-items: center; padding-top: 72px; padding-bottom: 72px; position: relative; }
.stats-band h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin: 0; }
.stat-big b { display: block; font-size: 52px; font-weight: 800; line-height: 1; color: var(--white); }
.stat-big span { font-size: 15px; color: rgba(253, 253, 252, 0.75); }
.stat-big { border-left: 3px solid var(--leaf); padding-left: 22px; }

@media (max-width: 1023px) { .car-item { flex-basis: calc(50% - 10px); } }
@media (max-width: 767px) {
  .svc-row { grid-template-columns: 1fr; }
  .car-item { flex-basis: 100%; }
  .car-item img { height: 260px; }
  .stats-band .wrap { grid-template-columns: 1fr; gap: 26px; }
  .brand-text span { display: none; }
}

/* ── v2.3: filmstrip, color studio, timeline ─────────── */

/* full-bleed editorial filmstrip */
.film-zone { position: relative; }
.film {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 6px calc(max((100vw - 1240px) / 2, 0px) + 28px) 6px;
  cursor: grab;
}
.film.dragging { cursor: grabbing; scroll-snap-type: none; }
.film::-webkit-scrollbar { display: none; }
.film-item {
  position: relative;
  flex: none;
  height: 460px;
  border-radius: var(--r-card);
  overflow: hidden;
  scroll-snap-align: center;
  isolation: isolate;
}
.film-item img { height: 100%; width: auto; display: block; transition: transform 0.6s var(--ease); }
.film-item:hover img { transform: scale(1.03); }
.film-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 18px 16px;
  font-size: 14.5px;
  font-weight: 550;
  color: var(--white);
  background: linear-gradient(to top, rgba(8, 25, 17, 0.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.film-item:hover figcaption { opacity: 1; transform: none; }
@media (hover: none) { .film-item figcaption { opacity: 1; transform: none; } }
.film-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 0;
  background: rgba(253, 253, 252, 0.92);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 19px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease);
}
.film-btn:hover { background: var(--pine); color: var(--white); transform: translateY(-50%) scale(1.06); }
.film-btn.prev { left: 26px; }
.film-btn.next { right: 26px; }

/* color studio */
.studio { background: var(--forest-black); color: var(--white); position: relative; overflow: hidden; }
.studio::before {
  content: "";
  position: absolute;
  right: -140px; top: -140px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 168, 102, 0.22), transparent 70%);
}
.studio-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; position: relative; }
.studio h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.studio p { color: rgba(253, 253, 252, 0.75); max-width: 46ch; }
.swatch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.swatch {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 650;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: default;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.swatch:hover { transform: translateY(-6px) rotate(-1.5deg); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); }
.swatch small { display: block; font-weight: 450; opacity: 0.8; font-size: 11.5px; }
.swatch .tag {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--forest-black);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 650;
  padding: 4px 9px;
  border-radius: 999px;
}
.swatch.light { color: var(--ink); }
.swatch.dark { color: var(--white); }

/* process timeline */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; margin-top: 10px; }
.timeline::before {
  content: "";
  position: absolute;
  top: 25px; left: 6%; right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--leaf), var(--pine));
  border-radius: 2px;
}
.tl-item { position: relative; padding-top: 62px; }
.tl-item .dot {
  position: absolute;
  top: 8px; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--pine);
  color: var(--pine-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  z-index: 1;
  transition: background 0.25s, color 0.25s, transform 0.3s var(--ease);
}
.tl-item:hover .dot { background: var(--pine); color: var(--white); transform: scale(1.12); }
.tl-item h3 { font-size: 18.5px; margin-bottom: 7px; }
.tl-item p { font-size: 15px; color: var(--ink-soft); margin: 0; }

@media (max-width: 1023px) { .studio-grid { grid-template-columns: 1fr; gap: 44px; } }
@media (max-width: 767px) {
  .film-item { height: 320px; }
  .film-btn { display: none; }
  .timeline { grid-template-columns: 1fr; gap: 26px; }
  .timeline::before { top: 10px; bottom: 10px; left: 17px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, var(--leaf), var(--pine)); }
  .tl-item { padding-top: 0; padding-left: 58px; }
  .swatch-grid { gap: 12px; }
}

/* drawer close button (mobile only) */
.nav-close-row { display: none; }
@media (max-width: 1099px) {
  .nav.open .nav-close-row { display: flex; justify-content: flex-end; position: absolute; top: 14px; right: 16px; }
  .nav-close {
    width: 44px; height: 44px;
    border: 0; border-radius: 12px;
    background: var(--leaf-soft);
    color: var(--pine-deep);
    font-size: 26px; line-height: 1;
    cursor: pointer;
  }
}

/* ── v2.4: textures, watermarks, slanted transitions ─── */

/* content above decoration layers */
.section, .band, .studio, .cta-panel-zone { position: relative; }
.section > .wrap, .section > .wrap-wide, .band > .wrap, .studio > .wrap, .section > .film-zone { position: relative; z-index: 1; }

/* topographic texture on alternate (light) sections, from the old site */
.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/shapes/topo.jpg") center / 1100px auto repeat;
  mix-blend-mode: multiply;
  opacity: 0.4;
  pointer-events: none;
}

/* diagonal hatch on the dark studio section */
.studio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/shapes/about-one-line.png") center / 340px auto repeat;
  opacity: 0.06;
  filter: invert(1);
  pointer-events: none;
}
.studio::before { z-index: 1; }
.studio > .wrap { z-index: 2; }

/* dot grid accent */
.deco-dots::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 56px;
  width: 190px;
  height: 160px;
  background: url("../assets/images/shapes/feature-one-dot.png") center / contain no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
}

/* light variant of the band + architectural line-art watermark */
.band.light { background: var(--white); color: var(--ink); }
.band.light p { color: var(--ink-soft); }
.band.light .band-points .tick { color: var(--forest-black); }
.band.light::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 520px;
  height: 100%;
  background: url("../assets/images/shapes/house.jpg") right bottom / contain no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.75;
  pointer-events: none;
}
.band.light > .wrap { position: relative; z-index: 1; }

/* slanted section transitions */
.studio { clip-path: polygon(0 2.6vw, 100% 0, 100% 100%, 0 100%); padding-top: calc(100px + 2.6vw); }
.band:not(.light) { clip-path: polygon(0 0, 100% 2.6vw, 100% 100%, 0 100%); padding-top: calc(100px + 2.6vw); }

/* painted underline under section headings */
.section-head h2 { position: relative; padding-bottom: 16px; }
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 92 8'%3E%3Cpath d='M1 5.5C14 2.5 30 1.5 46 2.5c16 1 30 2.5 45 1.5-10 2-26 3.5-45 3S9 6.5 1 5.5Z' fill='%2337a866'/%3E%3C/svg%3E") left center / contain no-repeat;
}
.section-head.centered h2::after { left: 50%; transform: translateX(-50%); }
.band .section-head h2::after, .studio h2::after { filter: none; }

@media (max-width: 767px) {
  .band.light::before { width: 100%; opacity: 0.35; }
  .deco-dots::after { width: 120px; height: 100px; top: 30px; }
}

/* ── v2.4.1: texture tuning per feedback ─────────────── */

/* topo pattern was too dominant */
.section-alt::before { opacity: 0.16; background-size: 1400px auto; }

/* advice/blog section gets its own texture: fine dot grid */
.alt-dots::before {
  background: url("../assets/images/shapes/feature-one-dot.png") center / 230px auto repeat;
  opacity: 0.22;
}

/* footer: thin, clean diagonal hatch */
.site-foot { position: relative; }
.site-foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/shapes/about-one-line.png") center / 300px auto repeat;
  opacity: 0.045;
  filter: invert(1);
  pointer-events: none;
}
.site-foot > * { position: relative; z-index: 1; }

/* services section: unique oversized brush swash watermark */
.svc-section::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -140px;
  width: 860px;
  height: 220px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 92 8'%3E%3Cpath d='M1 5.5C14 2.5 30 1.5 46 2.5c16 1 30 2.5 45 1.5-10 2-26 3.5-45 3S9 6.5 1 5.5Z' fill='%23175a33'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.07;
  transform: rotate(-4deg);
  pointer-events: none;
}

/* bigger logo */
.brand-logo { width: 64px; height: 64px; }
@media (max-width: 767px) { .brand-logo { width: 54px; height: 54px; } }

/* ── v2.4.2: texture fixes ───────────────────────────── */

/* services: the big swash read as a stain; replace with a clean color wash */
.svc-section::before {
  background: radial-gradient(640px 420px at 88% 6%, rgba(55, 168, 102, 0.09), transparent 70%);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  transform: none;
  opacity: 1;
}

/* advice/blog: dot grid looked like graph paper; use a whisper-fine hatch */
.alt-dots::before {
  background: url("../assets/images/shapes/about-one-line.png") center / 420px auto repeat;
  opacity: 0.055;
}

/* footer: hatch was invisible; organic contour lines, screen-blended */
.site-foot::before {
  background: url("../assets/images/shapes/topo.jpg") center / 1200px auto repeat;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.07;
}

/* ── v2.4.3 ──────────────────────────────────────────── */

/* swatch labels: name and note were sitting inline; stack them */
.swatch { flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 1px; }

/* services: visible unique texture, soft vertical roller passes + green wash */
.svc-section::before {
  background:
    repeating-linear-gradient(90deg, rgba(23, 90, 51, 0.045) 0px, rgba(23, 90, 51, 0.045) 110px, transparent 110px, transparent 235px),
    radial-gradient(640px 420px at 88% 6%, rgba(55, 168, 102, 0.10), transparent 70%);
}

/* ── v2.4.4: testimonial slides with photo + avatar ──── */
.tq-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 24px; align-items: stretch; }
.tq-grid .quote-featured { min-height: 340px; }
.tq-grid .quote-featured blockquote { font-size: 23px; line-height: 1.45; }
.tq-img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; border-radius: var(--r-card); }
.quote-person { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.quote-avatar {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--forest-black);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
}
@media (max-width: 767px) {
  .tq-grid { grid-template-columns: 1fr; }
  .tq-img { min-height: 0; height: 210px; order: -1; }
  .tq-grid .quote-featured { min-height: 0; }
  .tq-grid .quote-featured blockquote { font-size: 18.5px; }
}

/* ── v2.4: footer phone block + four-up service row ─────────── */
/* .foot-contact li is a flex row, so the old <br> between the two numbers did
   nothing: both anchors became flex items, got squeezed, and the main number
   broke across two lines. Stack them properly and never wrap a number. */
.foot-phones { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; min-width: 0; }
.foot-contact a[href^="tel:"] { white-space: nowrap; }
.foot-phone-big { line-height: 1.25; }

.svc-row.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1099px) { .svc-row.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .svc-row.four { grid-template-columns: 1fr; } }

/* Filmstrip auto-drift: proximity snapping pulls a 1px-per-frame programmatic
   scroll straight back, so snapping is suspended only while the strip drifts
   itself. It returns as soon as a person touches it. */
.film.drifting { scroll-snap-type: none; }
