@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,700;12..96,800&family=JetBrains+Mono:wght@400;700&family=Manrope:wght@400;500;600;700&display=swap');

/* =========================================================
   Canzler Tree Service — shared component kit
   Palette derived from client logo (#006633 forest green)
   Reference: Ember House Warm Wealth Journey System
   Archetype: Staged Field Scroll (Editorial Immersive Scroll)
   ========================================================= */

:root{
  /* brand / logo-derived */
  --forest: #006633;
  --forest-dark: #004d26;
  --bark: #17221a;
  --bark-soft: rgba(23,34,26,0.72);
  --paper: #f6f3ea;
  --panel: #fffdf7;
  --mist: #e8e3d5;
  --line: #cfc7b5;
  --muted: #6e6c5e;
  --accent: #c97b28;
  --accent-dark: #9e5e18;

  /* derived utilities */
  --shadow-warm: rgba(23,34,26,0.08);
  --shadow-warm-mid: rgba(23,34,26,0.14);
  --shadow-deep: rgba(23,34,26,0.22);
  --shadow-accent: rgba(201,123,40,0.30);
  --glow-accent: rgba(201,123,40,0.18);

  /* spacing */
  --max-width: 1240px;
  --gutter: 24px;
  --section-pad: 96px;
  --section-pad-tablet: 64px;
  --section-pad-mobile: 48px;
  --card-pad: 28px;
  --stack-gap: 20px;
  --stack-gap-lg: 28px;
  --grid-gap: 24px;

  /* radii */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* motion */
  --ease-signature: cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-decel: cubic-bezier(0.16,1,0.3,1);
}

@media (min-width: 1024px){
  :root{ --gutter: 48px; }
}

/* reset */
*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.64;
  color: var(--bark);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; }
button{ font: inherit; }
ul,ol{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p{ margin: 0; }

/* ---------------------------------------------------------
   Typography
   --------------------------------------------------------- */
.display{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}
.h2{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.h3{
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.6vw, 1.42rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.body-lg{
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.54;
}
.label{
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------
   Shell
   --------------------------------------------------------- */
.container{
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sec,
.sec--panel,
.sec--mist,
.sec--dark{
  padding: var(--section-pad) 0;
}
.sec{ background: var(--paper); }
.sec--panel{ background: var(--panel); }
.sec--mist{ background: var(--mist); }
.sec--dark{
  background: var(--bark);
  color: var(--paper);
}
.sec--dark .h2,
.sec--dark .h3,
.sec--dark p{ color: var(--paper); }
.sec--dark .label{ color: var(--accent); }

@media (max-width: 1023px){
  .sec,
  .sec--panel,
  .sec--mist,
  .sec--dark{ padding: var(--section-pad-tablet) 0; }
}
@media (max-width: 767px){
  .sec,
  .sec--panel,
  .sec--mist,
  .sec--dark{ padding: var(--section-pad-mobile) 0; }
}

/* ---------------------------------------------------------
   Header / nav
   --------------------------------------------------------- */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(246,243,234,0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header--scrolled{
  background: rgba(255,253,247,0.98);
  border-color: var(--line);
  box-shadow: 0 2px 12px var(--shadow-warm);
}
.site-header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--forest);
  text-decoration: none;
}
.nav__logo img{
  width: auto;
  height: 40px;
  object-fit: contain;
}
.nav__links{
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link{
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--bark);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.nav__link::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease-signature);
}
.nav__link:hover{ color: var(--forest); }
.nav__link:hover::after{ transform: scaleX(1); }
.nav__cta{ margin-left: 4px; }
.nav__toggle{
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav__mobile{
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  padding: 16px var(--gutter) 24px;
  box-shadow: 0 12px 32px var(--shadow-warm-mid);
}
.nav__mobile.is-open{ display: block; }
.nav__mobile .nav__link{
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1023px){
  .nav__links{ display: none; }
  .nav__toggle{ display: inline-flex; }
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero{
  position: relative;
  min-height: clamp(620px, 88vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--bark);
  color: var(--paper);
}
.hero--page{
  min-height: clamp(420px, 52vh, 540px);
}
.hero--page .display{
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.hero__media{
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.06);
  animation: heroKen 9s var(--ease-decel) forwards;
}
.hero__media--home{ background-image: url('/assets/img/c9211eea9c8698.jpg'); }
.hero__media--about{ background-image: url('/assets/img/b5e297685308c9.jpg'); }
.hero__media--contact{ background-image: url('/assets/img/4deb4a1937f1d6.jpg'); }
.hero__media--gallery{ background-image: url('/assets/img/b880a7dfff50da.jpg'); }
.hero__media--removal{ background-image: url('/assets/img/c9211eea9c8698.jpg'); }
.hero__media--trimming{ background-image: url('/assets/img/8f0bff63b8665c.jpg'); }
.hero__media--topping{ background-image: url('/assets/img/b5e297685308c9.jpg'); }
.hero__media--stump{ background-image: url('/assets/img/0054cffa7ac6d1.jpg'); }
.hero__media--storm{ background-image: url('/assets/img/06b578620d7bbb.jpg'); }
.hero__scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,34,26,0.62) 0%, rgba(23,34,26,0.22) 45%, rgba(23,34,26,0.68) 100%);
}
.hero__inner{
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 148px var(--gutter) 96px;
}
.hero__inner > *{ max-width: 620px; }
.hero__inner > h1{ max-width: 860px; }
.hero__eyebrow{
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero__title{ color: var(--paper); }
.hero__title .ink,
.ink{
  position: relative;
  display: inline;
  background: transparent;
  color: inherit;
  padding: 0 .06em;
  white-space: nowrap;
}
.hero__title .ink::before,
.ink::before{
  content: '';
  position: absolute;
  left: -.04em;
  right: -.04em;
  top: 18%;
  bottom: 8%;
  background: var(--accent);
  opacity: 0.72;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: -1;
  animation: markerWipe 0.62s var(--ease-signature) forwards;
  animation-delay: var(--d, 0.35s);
}
.hero__sub{
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.54;
  color: rgba(246,243,234,0.88);
  margin-top: 20px;
}
.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

/* ambient particles */
.embers{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.ember{
  position: absolute;
  width: var(--s, 6px);
  height: var(--s, 6px);
  left: var(--x, 10%);
  top: var(--y, 20%);
  border-radius: 50%;
  background: var(--accent);
  opacity: var(--o, 0.18);
  animation: fieldDrift var(--dur, 8s) ease-in-out infinite alternate, emberPulse var(--dur2, 5s) ease-in-out infinite alternate;
}

/* hero reveal (data-reveal on hero children only) */
html.js [data-reveal]{ opacity: 0; transform: translateY(14px) scale(0.96); }
html.js [data-reveal].is-revealed{ animation: fieldRise 0.7s var(--ease-signature) forwards; }

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.2;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 48px;
}
.btn:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn--primary{
  background: var(--accent);
  color: var(--panel);
}
.btn--primary:hover{
  background: var(--accent-dark);
  color: var(--panel);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--shadow-accent);
}
.btn--secondary{
  background: var(--panel);
  color: var(--bark);
  border: 1px solid var(--line);
}
.btn--secondary:hover{
  background: var(--paper);
  border-color: var(--accent);
  color: var(--bark);
}
.btn--ghost{
  background: transparent;
  color: var(--bark);
  border: 1px solid var(--line);
}
.btn--ghost:hover{
  border-color: var(--accent);
  color: var(--accent);
}
.sec--dark .btn--ghost{
  color: var(--paper);
  border-color: rgba(246,243,234,0.35);
}
.sec--dark .btn--ghost:hover{
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------------------------------------------------------
   Section headers
   --------------------------------------------------------- */
.sec-header{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) 48px;
}
.sec-header--center{ text-align: center; }
.sec-header__eyebrow{
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.sec-header__title{ color: var(--bark); }
.sec--dark .sec-header__title{ color: var(--paper); }

/* ---------------------------------------------------------
   Grids
   --------------------------------------------------------- */
.grid{
  display: grid;
  gap: var(--grid-gap);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.grid--2{ grid-template-columns: repeat(2, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--4{ grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1023px){
  .grid--3,
  .grid--4{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px){
  .grid--2,
  .grid--3,
  .grid--4{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   Cards
   --------------------------------------------------------- */
.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--card-pad);
  box-shadow: 0 2px 8px var(--shadow-warm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(23,34,26,0.12);
}
.card__title{ margin-bottom: 10px; }
.card__body{
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.64;
  color: var(--muted);
}
.card__link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--forest);
  text-decoration: none;
}
.card__link:hover{ color: var(--accent); }
.card__link::after{
  content: '→';
  transition: transform 0.2s ease;
}
.card__link:hover::after{ transform: translateX(4px); }

.card--service{ display: flex; flex-direction: column; gap: 14px; }
.card--service__icon{
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--mist);
  display: grid;
  place-items: center;
  color: var(--forest);
}

.card--proof{ padding: 0; overflow: hidden; }
.card--proof__media{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.card--proof__caption{ padding: 20px 24px; }

.card--team{ text-align: center; padding: 0 0 28px; }
.card--team__photo{
  width: 100%;
  aspect-ratio: 1 / 1;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin-bottom: 22px;
}
.card--team__role{
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.card--sibling .card__title{ margin-bottom: 6px; }

/* ---------------------------------------------------------
   Trust strip
   --------------------------------------------------------- */
.trust-strip{
  padding: 22px 0;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip__inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 32px;
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item__num{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--forest);
}
.trust-item__label{
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.68rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------------------------------------------------
   Process / journey rail
   --------------------------------------------------------- */
.process{
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.process__rail{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.process__rail::before{
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), transparent);
}
.step{
  position: relative;
  padding-left: 32px;
}
.step__num{
  position: absolute;
  left: -46px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--forest);
}
.step__title{ margin-bottom: 10px; }
.step__body{ color: var(--muted); }

/* ---------------------------------------------------------
   Media band
   --------------------------------------------------------- */
.media-band{
  position: relative;
  min-height: clamp(320px, 46vh, 520px);
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--paper);
}
.media-band__scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,34,26,0.0) 30%, rgba(23,34,26,0.62) 100%);
}
.media-band__caption{
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px var(--gutter);
}
.media-band__label{
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.media-band__title{ color: var(--paper); }

/* ---------------------------------------------------------
   Testimonial / proof
   --------------------------------------------------------- */
.testimonial{
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__quote{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--bark);
}
.sec--dark .testimonial__quote{ color: var(--paper); }
.testimonial__meta{
  margin-top: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec--dark .testimonial__meta{ color: var(--mist); }

/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */
.faq{
  max-width: 760px;
  margin: 0 auto;
}
.faq__item{
  border-bottom: 1px solid var(--line);
}
.faq__q{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: transparent;
  border: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--bark);
  text-align: left;
  cursor: pointer;
}
.faq__q::after{
  content: '+';
  flex: 0 0 24px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
  text-align: right;
  transition: transform 0.2s ease;
}
.faq__item.is-open .faq__q::after{ transform: rotate(45deg); }
.faq__a{
  display: none;
  padding: 0 0 22px;
  color: var(--muted);
}
.faq__item.is-open .faq__a{ display: block; }

/* ---------------------------------------------------------
   Forms
   --------------------------------------------------------- */
.form-field{ margin-bottom: 20px; }
.form-field label{
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.68rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--bark);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow-accent);
}
.form-field textarea{ min-height: 140px; resize: vertical; }
.form-success{
  padding: 20px 24px;
  background: var(--forest);
  color: var(--paper);
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}
.sf-hp{
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------------------------------------------------------
   Contact
   --------------------------------------------------------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.contact-info{ display: flex; flex-direction: column; gap: 22px; }
.contact-info__block{ padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.contact-info__label{
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-info__value{
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--bark);
}
.contact-info a{ text-decoration: none; }
.contact-info a:hover{ color: var(--accent); }
.map-embed{
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 767px){
  .contact-grid{ grid-template-columns: 1fr; }
  .map-embed{ height: 280px; }
}

/* ---------------------------------------------------------
   Editorial spread
   --------------------------------------------------------- */
.spread{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.spread--equal{ grid-template-columns: 1fr 1fr; }
.spread__media{
  position: sticky;
  top: 112px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.spread__body{ display: flex; flex-direction: column; gap: var(--stack-gap); }
@media (max-width: 767px){
  .spread{ grid-template-columns: 1fr; }
  .spread__media{ position: relative; top: auto; aspect-ratio: 3 / 2; }
}

/* ---------------------------------------------------------
   Gallery
   --------------------------------------------------------- */
.gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.gallery__item{
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.gallery__item:hover{ transform: scale(1.02); }
@media (max-width: 767px){
  .gallery{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ---------------------------------------------------------
   Breadcrumb
   --------------------------------------------------------- */
.breadcrumb{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.68rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,243,234,0.7);
}
.breadcrumb a{
  color: var(--accent);
  text-decoration: none;
}
.breadcrumb a:hover{ text-decoration: underline; }

/* ---------------------------------------------------------
   Stats / chips / utility
   --------------------------------------------------------- */
.stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.stat{ text-align: center; }
.stat__num{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  color: var(--forest);
}
.sec--dark .stat__num{ color: var(--accent); }
.stat__label{
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
@media (max-width: 767px){
  .stats{ grid-template-columns: repeat(2, 1fr); }
}

.chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--mist);
  color: var(--bark);
}
.chip--accent{
  background: var(--accent);
  color: var(--panel);
}

.cta-band{ text-align: center; }
.cta-band__title{ margin-bottom: 16px; }
.cta-band__body{
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(246,243,234,0.82);
}

.note{
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------------------------------------------------------
   Image fill utility (replaces inline background-image)
   --------------------------------------------------------- */
.img-cover{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------------------------------------------------
   Ember modifiers (replaces inline custom properties)
   --------------------------------------------------------- */
.ember--1{ --x:8%; --y:22%; --s:5px; --o:.22; --dur:9s; --dur2:6s; }
.ember--2{ --x:26%; --y:14%; --s:7px; --o:.16; --dur:11s; --dur2:7s; }
.ember--3{ --x:62%; --y:18%; --s:6px; --o:.20; --dur:10s; --dur2:5s; }
.ember--4{ --x:82%; --y:26%; --s:5px; --o:.14; --dur:8s; --dur2:6s; }

/* ---------------------------------------------------------
   Marker-ink delays
   --------------------------------------------------------- */
.ink--delay-1{ --d: 0.35s; }
.ink--delay-2{ --d: 0.55s; }

/* ---------------------------------------------------------
   Checklist utility
   --------------------------------------------------------- */
.checklist{
  margin-top: 8px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.checklist__item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.checklist__marker{
  color: var(--forest);
  font-weight: 800;
}

/* ---------------------------------------------------------
   Section header spacing modifier
   --------------------------------------------------------- */
.sec-header--comfortable{ padding-bottom: 56px; }

/* ---------------------------------------------------------
   Proof grid wrapper
   --------------------------------------------------------- */
.proof-cards{ margin-top: 56px; }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer{
  background: var(--bark);
  color: var(--paper);
  padding: 72px 0 32px;
}
.site-footer a{
  color: var(--paper);
  opacity: 0.72;
  text-decoration: none;
}
.site-footer a:hover{ opacity: 1; color: var(--accent); }
.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer-brand{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand__name{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--paper);
  margin-bottom: 12px;
}
.footer-brand__tagline{
  font-family: 'Manrope', sans-serif;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(246,243,234,0.72);
  max-width: 300px;
}
.footer-col__title{
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col li + li{ margin-top: 10px; }
.footer-col__tel{
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--paper);
}
.footer-bottom{
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid rgba(246,243,234,0.15);
  font-family: 'Manrope', sans-serif;
  font-size: 0.84rem;
  color: rgba(246,243,234,0.55);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 767px){
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom{ flex-direction: column; }
}

/* ---------------------------------------------------------
   Scroll reveal (below-fold only, .reveal class, JS-scoped)
   --------------------------------------------------------- */
.js .reveal{ opacity: 0; transform: translateY(16px); }
.js .reveal.in-view{
  animation: fieldRise 0.7s var(--ease-signature) forwards;
  animation-delay: calc(var(--i, 0) * 120ms);
}

/* ---------------------------------------------------------
   Keyframes
   --------------------------------------------------------- */
@keyframes markerWipe{
  from{ transform: scaleX(0); }
  to{ transform: scaleX(1); }
}
@keyframes fieldRise{
  0%{ opacity: 0; transform: translateY(14px) scale(0.96); }
  100%{ opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fieldDrift{
  0%{ transform: translate(0,0); }
  50%{ transform: translate(6px,-22px); }
  100%{ transform: translate(0,0); }
}
@keyframes emberPulse{
  0%{ opacity: 0.12; }
  100%{ opacity: 0.28; }
}
@keyframes heroKen{
  0%{ transform: scale(1.06); }
  100%{ transform: scale(1); }
}

/* ---------------------------------------------------------
   Reduced motion
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .hero__title .ink::before,
  .ink::before{ animation: none; transform: scaleX(1); }
  .hero__media{ animation: none; transform: none; }
  .ember{ animation: none; opacity: 0; }
  .js [data-reveal],
  .js .reveal{ animation: none !important; opacity: 1; transform: none; transition: none; }
  .card,
  .btn,
  .gallery__item,
  .nav__link::after{ transition: none; }
}
