:root {
  --brand-green: #486f18;
  --brand-green-hover: #5a8521;
  --charcoal: #171916;
  --charcoal-soft: #292b26;
  --timber: #a65f30;
  --stone: #f3f0e9;
  --off-white: #fafaf6;
  --concrete: #d9d9d3;
  --text-primary: #1b1d19;
  --text-muted: #696d63;
  --text-light: #fafaf6;
  --muted-light: #b9bbb3;
  --ink: var(--charcoal);
  --ink-soft: var(--charcoal-soft);
  --forest: var(--charcoal-soft);
  --forest-light: #363a31;
  --lime: var(--brand-green);
  --lime-deep: #3d6113;
  --cream: var(--stone);
  --paper: var(--off-white);
  --muted: var(--muted-light);
  --white: var(--text-light);
  --glass: rgba(23, 25, 22, .8);
  --glass-light: rgba(250, 250, 246, .08);
  --line: rgba(250, 250, 246, .16);
  --shadow: 0 26px 70px rgba(23, 25, 22, .22);
  --display: "Archivo Narrow", "Arial Narrow", "Roboto Condensed", sans-serif;
  --body: "Manrope", "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 48px));
  --header-h: 84px;
  --landing-bottom: clamp(105px, 18vh, 190px);
  --landing-logo-size: clamp(148px, 16vw, 218px);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { touch-action: manipulation; }
button { color: inherit; font: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 12px 18px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(88px, 10vw, 160px); }

/* Opening brand drop */
html.intro-pending,
html.intro-pending body { overflow: hidden; }
html.intro-pending .skip-link { display: none; }
html.intro-pending .site-header,
html.intro-pending .site-footer,
html.intro-pending .mobile-actions {
  opacity: 0;
  pointer-events: none;
}
html.intro-pending main { pointer-events: none; }
html.intro-pending .landing-card,
html.intro-pending .landing-logo { opacity: 0; }
main,
.site-footer,
.mobile-actions { transition: opacity 760ms var(--ease); }
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 900;
  overflow: hidden;
  background: transparent;
  opacity: 1;
  visibility: visible;
  transition: opacity 1040ms ease-in, visibility 1040ms;
}
.site-intro.is-leaving { opacity: 0; visibility: hidden; }
.intro-deck-line {
  position: absolute;
  left: 50%;
  bottom: calc(var(--landing-bottom) - 5px);
  width: min(590px, 72vw);
  height: 2px;
  transform: translateX(-50%) rotate(-.6deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42) 20%, rgba(255,255,255,.2) 80%, transparent);
  opacity: .6;
}
.intro-logo {
  position: absolute;
  left: 50%;
  bottom: var(--landing-bottom);
  width: var(--landing-logo-size);
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,.94);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 20px 48px rgba(0,0,0,.36), inset 0 0 0 1px rgba(255,255,255,.18);
  transform: translate3d(-50%, -120vh, 0) scale(1);
  will-change: transform;
}
.intro-logo img { width: 100%; height: 100%; object-fit: cover; }
.site-intro.is-active .intro-logo {
  animation: logo-power-drop 1840ms linear 180ms forwards;
}
.intro-shadow {
  position: absolute;
  left: 50%;
  bottom: calc(var(--landing-bottom) - 13px);
  width: clamp(118px, 13vw, 178px);
  height: clamp(18px, 2.2vw, 30px);
  border-radius: 50%;
  background: rgba(0,0,0,.58);
  filter: blur(8px);
  opacity: 0;
  transform: translateX(-50%) scale(.35);
  will-change: transform, opacity;
}
.site-intro.is-active .intro-shadow { animation: power-contact-shadow 1840ms ease-out 180ms forwards; }
@keyframes logo-power-drop {
  from { transform: translate3d(-50%, -120vh, 0) scale(1); }
  to { transform: translate3d(-50%, 0, 0) scale(1); }
}
@keyframes power-contact-shadow {
  0%, 66% { opacity: 0; transform: translateX(-50%) scale(.28); }
  86% { opacity: .2; transform: translateX(-50%) scale(.58); }
  93% { opacity: .78; transform: translateX(-50%) scale(1.18,.72); }
  100% { opacity: .62; transform: translateX(-50%) scale(1,.68); }
}
.kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .88;
  text-transform: uppercase;
}
h2 { font-size: clamp(3.1rem, 7vw, 7rem); }
h1 em, h2 em { color: var(--lime); font-style: normal; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .07em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}
.button svg { width: 20px; height: 20px; transition: transform 220ms var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(4px); }
.button:active { transform: translateY(0) scale(.98); }
.button-primary { background: var(--lime); color: var(--ink); box-shadow: 0 12px 40px rgba(72, 111, 24, .18); }
.button-primary:hover { background: var(--brand-green-hover); }
.button-outline { border-color: rgba(7, 20, 13, .3); color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--cream); }
.button-small { min-height: 44px; padding: 11px 18px; background: var(--lime); color: var(--ink); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  padding: 10px max(24px, calc((100vw - 1400px) / 2));
  border-bottom: 1px solid transparent;
  transition: min-height 240ms var(--ease), background-color 240ms var(--ease), border-color 240ms var(--ease), backdrop-filter 240ms var(--ease), opacity 760ms var(--ease);
}
.site-header.scrolled {
  min-height: 68px;
  background: rgba(6, 20, 12, .78);
  border-color: var(--line);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}
.header-wordmark {
  min-height: 44px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
}
.header-wordmark strong { color: var(--cream); font-size: .82rem; }
.header-wordmark span { color: var(--lime); font-size: 1.28rem; }
.brand { width: fit-content; display: flex; align-items: center; gap: 11px; }
.brand-mark {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: #092115;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-type { display: grid; font-family: var(--display); line-height: .83; letter-spacing: -.02em; }
.brand-type strong { color: var(--cream); font-size: .83rem; }
.brand-type b { color: var(--lime); font-size: 1.38rem; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.desktop-nav a { position: relative; padding: 12px 0; color: rgba(255,255,255,.82); font-size: .75rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 5px; height: 2px; background: var(--lime); transform: scaleX(0); transform-origin: right; transition: transform 220ms var(--ease); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.header-phone { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; padding: 8px 10px; font-size: .8rem; font-weight: 800; letter-spacing: .03em; }
.header-phone svg { width: 18px; height: 18px; color: var(--lime); }
.menu-toggle, .mobile-menu { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: max(760px, 100svh);
  isolation: isolate;
  overflow: hidden;
}
.hero-image { position: absolute; inset: 0; z-index: -4; width: 100%; height: 100%; object-fit: cover; object-position: 57% 50%; transform: scale(1.025); transform-origin: center; }
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, rgba(4,15,9,.5) 0%, rgba(4,15,9,.08) 36%, rgba(4,15,9,.42) 100%), linear-gradient(90deg, rgba(4,15,9,.42), transparent 50%, rgba(4,15,9,.2));
}
.hero-grain { position: absolute; inset: 0; z-index: -2; opacity: .18; background-image: repeating-linear-gradient(105deg, transparent 0 46px, rgba(255,255,255,.05) 47px, transparent 48px); mix-blend-mode: soft-light; }
.landing-lockup {
  --notch: calc((var(--landing-logo-size) / 2) + 12px);
  --landing-card-height: 222px;
  position: absolute;
  left: 50%;
  top: calc(100svh - var(--landing-bottom) - var(--landing-logo-size));
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  min-height: var(--landing-logo-size);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.landing-logo {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  width: var(--landing-logo-size);
  aspect-ratio: 1;
  overflow: hidden;
  transform: translateX(-50%);
  border: 5px solid rgba(255,255,255,.96);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 22px 52px rgba(0,0,0,.4), 0 0 0 1px rgba(167,216,63,.18);
}
.landing-logo img { width: 100%; height: 100%; object-fit: cover; }
.landing-card {
  position: relative;
  top: calc((var(--landing-logo-size) - var(--landing-card-height)) / 2);
  min-height: var(--landing-card-height);
  display: flex;
  align-items: center;
  isolation: isolate;
}
.landing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(8,30,17,.9), rgba(11,37,22,.68));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 24px 70px rgba(0,0,0,.3);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}
.landing-card-left::before {
  border-radius: 8px 0 0 8px;
  -webkit-mask: radial-gradient(circle var(--notch) at 100% 50%, transparent 98%, #000 100%);
  mask: radial-gradient(circle var(--notch) at 100% 50%, transparent 98%, #000 100%);
}
.landing-card-right::before {
  border-radius: 0 8px 8px 0;
  -webkit-mask: radial-gradient(circle var(--notch) at 0 50%, transparent 98%, #000 100%);
  mask: radial-gradient(circle var(--notch) at 0 50%, transparent 98%, #000 100%);
}
.landing-card-content { position: relative; z-index: 1; width: 100%; }
.landing-card-left .landing-card-content { padding: 28px calc(var(--notch) + 26px) 28px 34px; }
.landing-card-right .landing-card-content { padding: 26px 32px 26px calc(var(--notch) + 28px); }
.landing-kicker { margin: 0 0 10px; color: var(--lime); font-size: .68rem; font-weight: 850; letter-spacing: .17em; line-height: 1.2; text-transform: uppercase; }
.landing-card h1 { color: var(--white); font-size: clamp(2.5rem, 4.2vw, 4.4rem); line-height: .88; }
.landing-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.landing-trust p { display: grid; gap: 2px; margin: 0; line-height: 1.3; }
.landing-trust strong { color: var(--white); font-size: .82rem; }
.landing-trust span { color: var(--muted); font-size: .7rem; }
.landing-quote { min-height: 44px; display: inline-flex; align-items: center; gap: 12px; margin-top: 20px; color: var(--lime); font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.landing-quote svg { width: 19px; height: 19px; transition: transform 200ms var(--ease); }
.landing-quote:hover svg { transform: translateX(4px); }
.js .landing-card,
.js .landing-logo { opacity: 0; }
.js .landing-card-left { transform: translateX(-34px); }
.js .landing-card-right { transform: translateX(34px); }
.js.intro-complete .landing-logo { animation: landed-logo-in 520ms ease-out forwards; }
.js.intro-complete .landing-card-left { animation: landing-card-left-in 1120ms var(--ease) forwards; }
.js.intro-complete .landing-card-right { animation: landing-card-right-in 1120ms var(--ease) forwards; }
@keyframes landed-logo-in { to { opacity: 1; } }
@keyframes landing-card-left-in { to { opacity: 1; transform: translateX(0); } }
@keyframes landing-card-right-in { to { opacity: 1; transform: translateX(0); } }

/* Intro */
.intro { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr); align-items: end; gap: clamp(48px, 8vw, 140px); }
.intro h2 { font-size: clamp(3.5rem, 7.3vw, 7.4rem); }
.intro-copy { padding-bottom: 6px; }
.intro-copy p { max-width: 480px; margin-bottom: 34px; color: var(--muted); font-size: 1.1rem; }
.arrow-link { min-height: 44px; display: inline-flex; align-items: center; gap: 20px; color: var(--white); font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.arrow-link span { color: var(--lime); font-size: 1.4rem; transition: transform 220ms var(--ease); }
.arrow-link:hover span { transform: translate(4px,4px); }

/* Work */
.work { position: relative; background: var(--cream); color: var(--ink); overflow: hidden; }
.work::before { content: ""; position: absolute; top: 0; right: 8vw; width: 1px; height: 100%; background: rgba(7,20,13,.08); }
.section-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; margin-bottom: clamp(46px, 6vw, 82px); }
.section-heading .kicker { grid-column: 1 / -1; margin-bottom: -16px; color: var(--lime-deep); }
.section-heading h2 { max-width: 920px; }
.section-heading > p:last-child { max-width: 360px; margin: 0 0 8px; color: #536258; }
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 280px 188px 300px;
  gap: 12px;
}
.project {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--forest);
  border-radius: 2px;
  box-shadow: 0 18px 44px rgba(23,25,22,.12);
}
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms var(--ease); }
.project:hover > img { transform: scale(1.025); }
.project-spa { grid-column: 1 / 8; grid-row: 1 / 3; }
.project-curve { grid-column: 8 / 13; grid-row: 1; }
.project-detail { grid-column: 8 / 13; grid-row: 2; }
.project-flow { grid-column: 1 / 5; grid-row: 3; }
.project-extension { grid-column: 5 / 13; grid-row: 3; }
.project-spa img { object-position: 50% 54%; }
.project-curve img { object-position: 50% 58%; }
.project-flow img { object-position: 50% 46%; }
.project-detail img { object-position: 50% 67%; }
.project-extension img { object-position: 50% 56%; }
.project-brand img { object-fit: contain; }
.project-label { position: absolute; inset: auto 18px 18px; padding: 16px 18px; background: rgba(8,25,15,.73); border: 1px solid rgba(255,255,255,.22); border-radius: 5px; color: var(--white); box-shadow: 0 18px 44px rgba(0,0,0,.22); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.project-label p { margin: 0; font-family: var(--display); font-size: 1.35rem; font-weight: 600; letter-spacing: .01em; line-height: 1; text-transform: uppercase; }
.project-label span { color: #cad4c9; font-size: .76rem; }
.authentic-chip { position: absolute; right: 12px; bottom: 12px; display: flex; align-items: center; gap: 8px; padding: 9px 12px; background: rgba(4,16,9,.83); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: var(--white); font-size: .66rem; font-weight: 750; letter-spacing: .04em; backdrop-filter: blur(10px); }
.authentic-chip span { width: 7px; height: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 4px rgba(167,216,63,.15); }

/* Services */
.services { background: var(--ink); }
.services-head { display: grid; grid-template-columns: 1.2fr .55fr; align-items: end; gap: clamp(40px, 8vw, 130px); margin-bottom: 70px; }
.services-head h2 { font-size: clamp(3.7rem, 7vw, 7rem); }
.services-head > p { max-width: 440px; margin: 0 0 8px; color: var(--muted); }
.service-list { border-top: 1px solid var(--line); }
.service-row { min-height: 164px; display: grid; grid-template-columns: 80px 1fr 48px; align-items: center; gap: 28px; padding: 30px 8px; border-bottom: 1px solid var(--line); transition: background-color 220ms var(--ease), padding 220ms var(--ease); }
.service-row:hover { padding-inline: 22px; background: rgba(255,255,255,.035); }
.service-row > div { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(320px, 1fr); align-items: center; gap: 50px; }
.service-row h3 { margin: 0; font-family: var(--display); font-size: clamp(1.85rem, 3vw, 3.4rem); font-weight: 600; letter-spacing: -.02em; line-height: 1; text-transform: uppercase; }
.service-row p { max-width: 580px; margin: 0; color: var(--muted); }
.service-row > svg { width: 28px; height: 28px; color: var(--lime); transition: transform 220ms var(--ease); }
.service-row:hover > svg { transform: translateX(5px); }

/* About */
.about { position: relative; background: var(--paper); color: var(--ink); overflow: hidden; }
.about::after { content: ""; position: absolute; right: -8vw; top: -15vw; width: 42vw; height: 42vw; border: 1px solid rgba(7,20,13,.12); border-radius: 50%; box-shadow: 0 0 0 8vw rgba(7,20,13,.025), 0 0 0 16vw rgba(7,20,13,.02); }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(340px, .78fr) 1.05fr; align-items: center; gap: clamp(52px, 10vw, 150px); }
.about-visual { position: relative; max-width: 520px; aspect-ratio: 4 / 5; }
.about-visual::before { content: ""; position: absolute; left: -22px; top: 28px; width: 54%; height: 88%; background: var(--lime); }
.about-visual img { position: relative; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; box-shadow: 0 30px 70px rgba(5,20,12,.23); }
.about-copy .kicker { color: #5e8f15; }
.about-copy h2 { max-width: 740px; font-size: clamp(3.3rem, 5.8vw, 6rem); }
.about-lead { max-width: 650px; margin: 34px 0 30px; color: #415046; font-size: 1.08rem; }
.check-list { display: grid; gap: 13px; margin: 0 0 38px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; align-items: start; gap: 13px; color: #20352a; font-size: .95rem; font-weight: 650; }
.check-list svg { width: 22px; height: 22px; padding: 3px; border: 1px solid #7da626; border-radius: 50%; color: #5c8113; stroke-width: 2.5; }

/* Reviews */
.reviews { background: #10291b; overflow: hidden; }
.reviews-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 52px; }
.reviews-head h2 { max-width: 880px; font-size: clamp(3.2rem, 6vw, 6.2rem); }
.review-arrows { display: flex; gap: 10px; padding-bottom: 6px; }
.review-arrows button { width: 50px; height: 50px; display: grid; place-items: center; padding: 0; background: var(--glass-light); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; transition: background-color 180ms ease, color 180ms ease; }
.review-arrows button:hover { background: var(--lime); color: var(--ink); }
.review-arrows svg { width: 21px; height: 21px; }
.review-track { display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 10px; }
.review-track::-webkit-scrollbar { display: none; }
.review-card { min-width: min(400px, 82vw); min-height: 370px; display: flex; flex-direction: column; margin: 0; padding: 34px; background: rgba(255,255,255,.07); border: 1px solid var(--line); border-radius: 7px; scroll-snap-align: start; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.review-card.featured { background: rgba(167,216,63,.11); border-color: rgba(167,216,63,.42); }
.quote-mark { color: var(--lime); font-family: Georgia, serif; font-size: 5rem; line-height: .7; }
.review-card blockquote { margin: 32px 0 42px; color: var(--white); font-size: 1.08rem; line-height: 1.65; }
.review-card figcaption { display: grid; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); line-height: 1.4; }
.review-card strong { color: var(--white); font-size: .82rem; }
.review-card figcaption span { color: var(--muted); font-size: .74rem; }

/* Final CTA */
.final-cta { position: relative; overflow: hidden; background: #07150d; text-align: center; }
.final-cta::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: repeating-linear-gradient(90deg, transparent 0 calc(10% - 1px), rgba(255,255,255,.2) 10%); }
.final-cta-inner { position: relative; z-index: 2; max-width: 1000px; }
.final-cta h2 { font-size: clamp(4rem, 9vw, 9rem); }
.final-cta-inner > p:not(.kicker) { max-width: 650px; margin: 30px auto 38px; color: var(--muted); font-size: 1.05rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 34px; }
.cta-phone { min-height: 52px; display: grid; align-content: center; text-align: left; line-height: 1.2; }
.cta-phone span { color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cta-phone strong { color: var(--white); font-size: 1.2rem; }
.cta-phone:hover strong { color: var(--lime); }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 42vw; height: 42vw; left: -24vw; top: 0; background: radial-gradient(circle, rgba(167,216,63,.15), transparent 68%); }
.orb-two { width: 34vw; height: 34vw; right: -18vw; bottom: -12vw; border: 1px solid rgba(167,216,63,.18); box-shadow: 0 0 0 5vw rgba(167,216,63,.018), 0 0 0 10vw rgba(167,216,63,.012); }

/* Footer */
.site-footer { padding: 46px 0 110px; background: #040c08; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: auto max-content auto; align-items: center; justify-content: space-between; gap: 30px; }
.brand-footer .brand-mark { width: 46px; height: 46px; flex-basis: 46px; }
.footer-grid > p { max-width: 460px; margin: 0; color: var(--muted); font-size: .82rem; }
.footer-links { display: flex; gap: 24px; font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.footer-links a:hover { color: var(--lime); }
.footer-grid small { grid-column: 1 / -1; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); color: #738176; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.mobile-actions { display: none; }

/* Motion */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 620ms var(--ease) var(--reveal-delay, 0ms), transform 620ms var(--ease) var(--reveal-delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 40px, 960px); }
  .site-header { padding-inline: 20px; gap: 22px; }
  .desktop-nav { gap: 18px; }
  .header-phone { display: none; }
  .landing-card-left .landing-card-content { padding-left: 26px; }
  .landing-card-right .landing-card-content { padding-right: 26px; }
  .intro { grid-template-columns: 1fr; align-items: start; }
  .intro-copy { max-width: 620px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { max-width: 520px; }
  .services-head { grid-template-columns: 1fr; }
  .services-head > p { max-width: 620px; }
  .service-row > div { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about-grid { gap: 60px; }
}

@media (max-width: 820px) {
  :root { --header-h: 72px; }
  .section { padding-block: 92px; }
  .site-header { grid-template-columns: 1fr auto; min-height: var(--header-h); padding-block: 7px; }
  .site-header.scrolled { min-height: 64px; }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { grid-column: 2; grid-row: 1; justify-self: end; position: relative; width: 48px; height: 48px; display: grid; place-items: center; padding: 0; background: rgba(255,255,255,.08); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
  .menu-toggle span { position: absolute; width: 20px; height: 2px; background: var(--white); transition: transform 220ms var(--ease), top 220ms var(--ease); }
  .menu-toggle span:first-child { top: 19px; }
  .menu-toggle span:last-child { top: 27px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }
  .mobile-menu { position: fixed; inset: var(--header-h) 0 0; z-index: 90; display: flex; flex-direction: column; padding: 38px 24px calc(90px + env(safe-area-inset-bottom)); background: rgba(5,18,11,.97); backdrop-filter: blur(18px); transform: translateX(100%); visibility: hidden; transition: transform 280ms var(--ease), visibility 280ms; }
  .mobile-menu.open { transform: translateX(0); visibility: visible; }
  .mobile-menu a { min-height: 60px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.8rem; font-weight: 600; text-transform: uppercase; }
  .mobile-menu a:last-child { justify-content: center; margin-top: auto; background: var(--lime); border: 0; color: var(--ink); font-family: var(--body); font-size: .8rem; letter-spacing: .06em; }
  .hero { min-height: max(760px, 100svh); }
  .hero-image { object-position: 65% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,15,9,.96), rgba(4,15,9,.55) 70%, rgba(4,15,9,.25)), linear-gradient(0deg, rgba(4,15,9,.95) 0%, transparent 58%); }
  .landing-lockup { width: calc(100% - 32px); }
  .landing-card-left .landing-card-content { padding-left: 22px; }
  .landing-card-right .landing-card-content { padding-right: 22px; }
  .landing-trust { grid-template-columns: 1fr; gap: 10px; }
  .project-grid { grid-template-rows: 250px 172px 280px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 560px; }
  .reviews-head { align-items: center; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-grid > p { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
    --landing-bottom: clamp(128px, 18vh, 154px);
    --landing-logo-size: clamp(136px, 40vw, 154px);
  }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  h2 { line-height: .92; }
  .site-header { padding-inline: 16px; }
  .hero { min-height: 880px; }
  .hero-image { object-position: 61% 50%; }
  .intro-logo { border-width: 4px; }
  .intro-deck-line { width: 86vw; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,15,9,.95), rgba(4,15,9,.46) 82%), linear-gradient(0deg, rgba(4,15,9,.95) 0%, transparent 63%); }
  .landing-lockup { display: block; min-height: var(--landing-logo-size); }
  .landing-logo { border-width: 4px; }
  .landing-card { position: absolute; top: auto; left: 0; width: 100%; min-height: 0; text-align: center; }
  .landing-card-left { bottom: calc(var(--landing-logo-size) / 2); }
  .landing-card-right { top: calc(var(--landing-logo-size) / 2); }
  .landing-card-left::before {
    border-radius: 8px 8px 0 0;
    -webkit-mask: radial-gradient(circle var(--notch) at 50% 100%, transparent 98%, #000 100%);
    mask: radial-gradient(circle var(--notch) at 50% 100%, transparent 98%, #000 100%);
  }
  .landing-card-right::before {
    border-radius: 0 0 8px 8px;
    -webkit-mask: radial-gradient(circle var(--notch) at 50% 0, transparent 98%, #000 100%);
    mask: radial-gradient(circle var(--notch) at 50% 0, transparent 98%, #000 100%);
  }
  .landing-card-left .landing-card-content { padding: 24px 18px calc(var(--notch) + 20px); }
  .landing-card-right .landing-card-content { padding: calc(var(--notch) + 20px) 18px 22px; }
  .landing-card h1 { font-size: clamp(2.75rem, 13vw, 3.6rem); }
  .landing-kicker { margin-bottom: 8px; }
  .landing-trust { grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; }
  .landing-quote { justify-content: center; margin-top: 16px; }
  .js .landing-card-left { transform: translateY(-24px); }
  .js .landing-card-right { transform: translateY(24px); }
  .intro { gap: 38px; }
  .intro h2, .services-head h2, .about-copy h2, .reviews-head h2 { font-size: clamp(3.2rem, 15.5vw, 5rem); }
  .intro-copy p { font-size: 1rem; }
  .section-heading { margin-bottom: 40px; }
  .section-heading .kicker { margin-bottom: 0; }
  .section-heading h2 { font-size: clamp(3.2rem, 15.5vw, 5rem); }
  #work-title { font-size: clamp(3rem, 13.2vw, 4.5rem); }
  .project-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 340px 220px 258px 232px;
    gap: 7px;
  }
  .project-spa { grid-column: 1 / -1; grid-row: 1; }
  .project-curve { grid-column: 1 / -1; grid-row: 2; }
  .project-flow { grid-column: 1; grid-row: 3 / 5; }
  .project-detail { grid-column: 2; grid-row: 3; }
  .project-extension { grid-column: 2; grid-row: 4; }
  .project-flow img { object-position: 50% 50%; }
  .project-extension img { object-position: 50% 50%; }
  .project-label { inset: auto 12px 12px; }
  .project-brand img { object-fit: cover; }
  .services-head { margin-bottom: 45px; }
  .service-row { grid-template-columns: minmax(0, 1fr) 28px; gap: 10px; padding-block: 26px; }
  .service-row:hover { padding-inline: 8px; }
  .service-row > div { grid-template-columns: 1fr; gap: 12px; }
  .service-row h3 { font-size: 1.85rem; }
  .service-row p { font-size: .88rem; }
  .about-visual::before { left: -10px; top: 16px; }
  .about-lead { margin-top: 26px; }
  .button-outline { width: 100%; }
  .reviews-head { align-items: flex-end; }
  .review-arrows { display: none; }
  .review-track { width: 100%; padding-inline: 16px; scroll-padding-left: 16px; }
  .review-card { min-width: calc(100vw - 44px); }
  .final-cta { padding-block: 110px; }
  .final-cta h2 { font-size: clamp(4rem, 18.5vw, 6.5rem); }
  .cta-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .cta-phone { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .mobile-actions { position: fixed; inset: auto 0 0; z-index: 120; display: grid; grid-template-columns: .7fr 1.3fr; min-height: calc(64px + env(safe-area-inset-bottom)); padding: 7px 8px calc(7px + env(safe-area-inset-bottom)); background: rgba(4,14,8,.9); border-top: 1px solid var(--line); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
  .mobile-actions a { min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 9px; border-radius: 3px; font-size: .75rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
  .mobile-actions a:first-child { color: var(--white); }
  .mobile-actions a:last-child { background: var(--lime); color: var(--ink); }
  .mobile-actions svg { width: 19px; height: 19px; }
  .site-footer { padding-bottom: 46px; }
}

/* Refined Built by Aaron brand system */
body {
  background: var(--stone);
  color: var(--text-primary);
  font-weight: 500;
}
::selection { background: var(--brand-green); color: var(--text-light); }
.section { padding-block: clamp(96px, 10vw, 156px); }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.025em;
}
.landing-card h1,
.service-row h3,
.project-label p { font-weight: 600; }
.header-wordmark { font-weight: 700; }
h2 { color: var(--text-primary); font-size: clamp(3.4rem, 6.7vw, 6.6rem); }
h1 em, h2 em { color: var(--brand-green); }
.kicker,
.eyebrow {
  color: var(--brand-green);
  font-size: .72rem;
  letter-spacing: .16em;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  margin: 0 10px 3px 0;
  background: var(--timber);
}
.skip-link,
.button-primary,
.button-small { background: var(--brand-green); color: var(--text-light); }
.button-primary:hover,
.button-small:hover { background: var(--brand-green-hover); color: var(--text-light); }
.button {
  border-radius: 2px;
  font-size: .74rem;
  letter-spacing: .075em;
  box-shadow: none;
}
:focus-visible { outline-color: var(--brand-green-hover); }

/* Navigation and opening composition */
.site-intro { background: transparent; }
.intro-logo,
.landing-logo { background: var(--charcoal-soft); }
.site-header.scrolled {
  background: rgba(23,25,22,.9);
  border-color: rgba(250,250,246,.13);
}
.header-wordmark strong { color: var(--text-light); }
.header-wordmark span { color: #7d9c55; }
.desktop-nav a { color: rgba(250,250,246,.84); }
.desktop-nav a::after { background: var(--brand-green-hover); }
.header-phone { color: var(--text-light); }
.header-phone svg { color: #7d9c55; }
.hero-shade {
  background: linear-gradient(180deg, rgba(23,25,22,.48) 0%, rgba(23,25,22,.05) 38%, rgba(23,25,22,.42) 100%), linear-gradient(90deg, rgba(23,25,22,.36), transparent 50%, rgba(23,25,22,.16));
}
.landing-card::before {
  background: linear-gradient(135deg, rgba(23,25,22,.94), rgba(41,43,38,.86));
  box-shadow: inset 0 0 0 1px rgba(250,250,246,.16), 0 24px 60px rgba(23,25,22,.28);
}
.landing-kicker { color: var(--text-light); }
.landing-kicker::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin: 0 9px 3px 0;
  background: var(--brand-green-hover);
}
.landing-card h1,
.landing-card h1 em { color: var(--text-light); }
.landing-card h1 { text-wrap: wrap; }
.landing-card h1 em { position: relative; }
.landing-card h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.08em;
  width: 54px;
  height: 3px;
  background: var(--timber);
}
.landing-trust strong { color: var(--text-light); }
.landing-trust span { color: var(--muted-light); }
.landing-quote { color: var(--text-light); }
.landing-quote svg { color: #7d9c55; }

/* Light editorial introduction */
.intro {
  position: relative;
  background: var(--stone);
  color: var(--text-primary);
}
.intro::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(220px, 24vw);
  height: 1px;
  background: var(--timber);
}
.intro-copy p { color: var(--text-muted); }
.arrow-link { color: var(--text-primary); }
.arrow-link span { color: var(--brand-green); }

/* Photography-led work showcase */
.work {
  background: var(--off-white);
  color: var(--text-primary);
}
.work::before { background: var(--concrete); }
.section-heading .kicker { color: var(--brand-green); }
.section-heading > p:last-child { color: var(--text-muted); }
.project-grid { gap: 12px; }
.project { background: var(--charcoal-soft); }
.project-label {
  inset: auto 12px 12px;
  max-width: calc(100% - 24px);
  padding: 13px 15px 12px;
  background: rgba(23,25,22,.86);
  border: 0;
  border-top: 2px solid var(--timber);
  border-radius: 2px;
  box-shadow: 0 16px 40px rgba(23,25,22,.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.project-label p {
  color: var(--text-light);
  font-size: clamp(.96rem, 1.55vw, 1.18rem);
  line-height: 1.05;
}
.project-label span {
  display: block;
  margin-top: 5px;
  color: #d8d9d3;
  font-size: .7rem;
  line-height: 1.4;
}
.project-brand { background: var(--charcoal); }
.authentic-chip {
  background: rgba(23,25,22,.92);
  border-color: rgba(250,250,246,.18);
  color: var(--text-light);
}
.authentic-chip span { background: var(--brand-green-hover); box-shadow: 0 0 0 4px rgba(72,111,24,.2); }

/* Services: tactile three-card flip interaction */
.services {
  background: transparent;
  color: var(--text-primary);
}
.services-head { margin-bottom: clamp(52px, 7vw, 82px); }
.services-head h2 { color: var(--text-primary); }
.services-head > p { color: var(--text-muted); }
.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 0;
}
.service-card {
  min-width: 0;
  display: flex;
  perspective: 1400px;
}
.service-card-toggle {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 470px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.service-card-toggle:focus-visible {
  outline: 3px solid var(--brand-green);
  outline-offset: 5px;
}
.service-card-inner {
  height: 100%;
  min-height: 470px;
  display: grid;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 400ms cubic-bezier(.2,.72,.2,1);
}
.service-card.is-flipped .service-card-inner { transform: rotateY(180deg); }
.service-card-face {
  min-width: 0;
  min-height: 470px;
  height: 100%;
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid var(--concrete);
  border-radius: 4px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 18px 44px rgba(23,25,22,.08);
  transition: filter 100ms ease;
}
.service-card-toggle:active .service-card-face { filter: brightness(.94); }
.service-card-front {
  position: relative;
  background: var(--off-white);
  transition: border-color 240ms ease, box-shadow 240ms ease;
}
.service-card-front::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -84px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(72,111,24,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(72,111,24,.035), 0 0 0 56px rgba(166,95,48,.025);
  pointer-events: none;
}
.service-card:hover .service-card-front {
  border-color: rgba(72,111,24,.56);
  box-shadow: 0 26px 62px rgba(23,25,22,.13);
}
.service-card-icon {
  position: relative;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid rgba(72,111,24,.34);
  border-radius: 50%;
  background: rgba(72,111,24,.055);
  color: var(--brand-green);
}
.service-card-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card-copy { display: block; margin-top: 54px; }
.service-card-title,
.service-card-back-title {
  display: block;
  color: var(--text-primary);
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.55vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1;
  text-transform: uppercase;
}
.service-card-text {
  display: block;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.65;
}
.service-card-action {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--concrete);
  color: var(--brand-green);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .075em;
  line-height: 1.2;
  text-transform: uppercase;
}
.service-card-action > span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .92rem;
  transition: transform 240ms var(--ease);
}
.service-card-action svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card:hover .service-card-front .service-card-action > span { transform: rotate(45deg); }
.service-card-back {
  position: relative;
  transform: rotateY(180deg);
  border-color: rgba(250,250,246,.22);
  background:
    linear-gradient(150deg, rgba(23,25,22,.22), rgba(23,25,22,.58)),
    url("assets/kwila-grain.webp") center / cover no-repeat;
  color: var(--text-light);
  box-shadow: 0 28px 64px rgba(23,25,22,.24);
}
.service-card-glass {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 2.5vw, 31px);
  border: 1px solid rgba(250,250,246,.24);
  border-radius: 3px;
  background: rgba(23,25,22,.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 18px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(16px) saturate(.82);
  -webkit-backdrop-filter: blur(16px) saturate(.82);
}
.service-card-back-title { color: var(--text-light); font-size: clamp(1.65rem, 2.2vw, 2.25rem); }
.service-card-back-text {
  display: block;
  margin-top: 19px;
  color: rgba(250,250,246,.82);
  font-size: .88rem;
  line-height: 1.58;
}
.material-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}
.material-options > span {
  display: block;
  padding: 14px;
  border: 1px solid rgba(250,250,246,.16);
  background: rgba(250,250,246,.075);
}
.material-options strong,
.material-options small { display: block; }
.material-options strong {
  color: #d4e2c2;
  font-family: var(--display);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.material-options small {
  margin-top: 7px;
  color: rgba(250,250,246,.73);
  font-size: .69rem;
  line-height: 1.45;
}
.service-points {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 20px;
}
.service-points > span {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 9px;
  color: rgba(250,250,246,.84);
  font-size: .76rem;
  line-height: 1.35;
}
.service-points > span::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid #9dbb77;
  border-radius: 50%;
  color: #bed59f;
  font-size: .62rem;
  line-height: 1;
}
.service-card-action-back {
  margin-top: 17px;
  padding-top: 0;
  border: 0;
  color: var(--text-light);
}
.service-card-action-back > span { border-color: rgba(250,250,246,.48); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Owner story and recognisable green checks */
.about {
  background: var(--off-white);
  color: var(--text-primary);
}
.about::after { display: none; }
.about-visual::before {
  left: -18px;
  top: 22px;
  width: 5px;
  height: calc(100% - 44px);
  background: var(--timber);
}
.about-visual img { box-shadow: 0 28px 60px rgba(23,25,22,.19); }
.about-image-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 13px 17px 12px;
  border-top: 3px solid var(--timber);
  border-radius: 2px;
  background: rgba(23,25,22,.9);
  box-shadow: 0 16px 38px rgba(23,25,22,.24);
  color: var(--text-light);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.about-copy .kicker { color: var(--brand-green); }
.about-copy h2 { color: var(--text-primary); }
.about-lead { color: var(--text-muted); }
.check-list { gap: 15px; }
.check-list li { color: var(--text-primary); }
.check-list svg {
  width: 23px;
  height: 23px;
  border-color: var(--brand-green);
  color: var(--brand-green);
}
.button-outline {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.button-outline:hover { background: var(--charcoal); color: var(--text-light); }

/* Testimonials */
.reviews { background: var(--charcoal); }
.reviews .kicker { color: var(--muted-light); }
.reviews-head h2 { color: var(--text-light); }
.review-arrows button { background: var(--charcoal-soft); border-color: rgba(250,250,246,.16); }
.review-arrows button:hover { background: var(--brand-green); color: var(--text-light); }
.review-card {
  background: var(--charcoal-soft);
  border-color: rgba(250,250,246,.14);
  border-radius: 3px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.review-card.featured { background: #30332d; border-color: rgba(72,111,24,.78); }
.quote-mark { color: var(--timber); }
.review-card blockquote,
.review-card strong { color: var(--text-light); }
.review-card figcaption { border-color: rgba(250,250,246,.14); }
.review-card figcaption span { color: var(--muted-light); }
.reviews-contact {
  display: grid;
  grid-template-columns: minmax(250px, .62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(42px, 6vw, 88px);
  margin-top: clamp(58px, 7vw, 86px);
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid rgba(250,250,246,.16);
}
.contact-intro { padding-top: 8px; }
.contact-intro h3 {
  max-width: 470px;
  margin: 0;
  color: var(--text-light);
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: .98;
  text-transform: uppercase;
}
.contact-intro > p {
  max-width: 440px;
  margin: 26px 0 0;
  color: var(--muted-light);
  font-size: 1rem;
  line-height: 1.65;
}
.contact-direct {
  display: grid;
  gap: 5px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(250,250,246,.15);
}
.contact-direct span {
  color: var(--muted-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.contact-direct a {
  width: fit-content;
  color: var(--text-light);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.contact-direct a:hover { color: #9ab879; }
.contact-form {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  border-top: 4px solid var(--timber);
  border-radius: 3px;
  background: var(--off-white);
  box-shadow: 0 30px 72px rgba(0,0,0,.22);
  color: var(--text-primary);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}
.contact-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.contact-field-full { grid-column: 1 / -1; }
.contact-field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .045em;
  line-height: 1.35;
  text-transform: uppercase;
}
.contact-field label > span { color: var(--brand-green); }
.contact-field label small {
  color: var(--text-muted);
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .05em;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid #c8c9c2;
  border-radius: 2px;
  outline: 0;
  background: #fff;
  color: var(--text-primary);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.contact-field textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover { border-color: #9b9e94; }
.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(72,111,24,.16);
}
.contact-field input[aria-invalid="true"],
.contact-field select[aria-invalid="true"],
.contact-field textarea[aria-invalid="true"] {
  border-color: #934835;
  background: #fffaf8;
}
.contact-field input[type="file"] {
  min-height: 58px;
  padding: 8px;
  color: var(--text-muted);
  cursor: pointer;
}
.contact-field input[type="file"]::file-selector-button {
  min-height: 40px;
  margin-right: 12px;
  padding: 9px 14px;
  border: 0;
  border-radius: 2px;
  background: var(--charcoal);
  color: var(--text-light);
  font: inherit;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
  cursor: pointer;
}
.contact-help,
.contact-error {
  display: block;
  font-size: .68rem;
  line-height: 1.45;
}
.contact-help { margin-top: 7px; color: var(--text-muted); }
.contact-error {
  min-height: 1em;
  margin-top: 5px;
  color: #863a2a;
  font-weight: 650;
}
.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--concrete);
}
.contact-form-footer > p {
  max-width: 280px;
  margin: 0;
  color: var(--text-muted);
  font-size: .7rem;
  line-height: 1.5;
}
.contact-form .button {
  min-width: 190px;
  border: 0;
  cursor: pointer;
}
.contact-form .button:focus-visible {
  outline: 3px solid var(--charcoal);
  outline-offset: 3px;
}
.contact-form .button:disabled {
  opacity: .62;
  cursor: wait;
  transform: none;
}
.contact-status {
  min-height: 1.5em;
  margin: 16px 0 0;
  color: var(--brand-green);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.5;
}

/* Conversion close */
.final-cta {
  background: var(--charcoal-soft);
  border-top: 1px solid rgba(250,250,246,.1);
}
.final-cta::before {
  opacity: .09;
  background-image: repeating-linear-gradient(96deg, transparent 0 58px, rgba(166,95,48,.5) 59px, transparent 60px);
}
.final-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(180px, 36vw);
  height: 4px;
  transform: translateX(-50%);
  background: var(--timber);
}
.final-cta .kicker { color: var(--muted-light); }
.final-cta h2,
.final-cta h2 em { color: var(--text-light); }
.final-cta h2 em { text-decoration: underline; text-decoration-color: var(--brand-green); text-decoration-thickness: .06em; text-underline-offset: .08em; }
.final-cta-inner > p:not(.kicker) { color: var(--muted-light); }
.cta-phone span { color: var(--muted-light); }
.cta-phone strong { color: var(--text-light); }
.cta-phone:hover strong { color: #91ab70; }
.cta-orb { display: none; }

/* Footer and mobile conversion bar */
.site-footer { background: #11130f; border-color: rgba(250,250,246,.12); }
.brand-type strong { color: var(--text-light); }
.brand-type b { color: #7d9c55; }
.footer-grid > p { color: var(--muted-light); }
.footer-links { color: var(--text-light); }
.footer-links a:hover { color: #91ab70; }
.footer-grid small { color: #8f9189; }
.mobile-actions { background: rgba(23,25,22,.94); }
.mobile-actions a:last-child { background: var(--brand-green); color: var(--text-light); }

@media (min-width: 621px) {
  .footer-grid > p {
    max-width: none;
    white-space: nowrap;
  }
}

@media (max-width: 1100px) {
  .service-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-card-face { padding: 28px; }
  .service-card-title { font-size: clamp(1.75rem, 2.7vw, 2.25rem); }
}

@media (max-width: 820px) {
  body.menu-open .site-header,
  body.menu-open .site-header.scrolled {
    min-height: var(--header-h);
    background: var(--charcoal);
    border-color: rgba(250,250,246,.14);
    box-shadow: 0 16px 34px rgba(0,0,0,.22);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .mobile-menu {
    background-color: var(--charcoal);
    background-image: linear-gradient(145deg, #171916 0%, #20231d 100%);
    border-top: 1px solid rgba(250,250,246,.12);
    box-shadow: -20px 0 48px rgba(0,0,0,.28);
    overflow-y: auto;
    overscroll-behavior: contain;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .mobile-menu.open {
    background-color: var(--charcoal);
    background-image: linear-gradient(145deg, #171916 0%, #20231d 100%);
  }
  .mobile-menu a { color: var(--text-light); }
  .mobile-menu a:last-child { background: var(--brand-green); color: var(--text-light); }
  .menu-toggle { background: rgba(23,25,22,.44); }
  .service-list { grid-template-columns: 1fr; }
  .service-card { width: 100%; max-width: 680px; }
  .service-card-toggle,
  .service-card-inner,
  .service-card-face { min-height: 450px; }
  .service-card-copy { margin-top: 44px; }
  .reviews-contact {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 38px;
  }
  .contact-intro { max-width: 620px; }
}

@media (max-width: 620px) {
  .section { padding-block: 88px; }
  .landing-card h1 em::after { left: 50%; transform: translateX(-50%); }
  .intro::after { right: 16px; }
  .project-grid { gap: 6px; }
  .service-card-toggle,
  .service-card-inner,
  .service-card-face { min-height: 470px; }
  .service-card-face { padding: 24px; }
  .service-card-title { font-size: 2rem; }
  .service-card-back-title { font-size: 1.8rem; }
  .service-card-glass { padding: 23px; }
  .about-visual::before { left: -6px; top: 14px; height: calc(100% - 28px); }
  .review-card { border-radius: 2px; }
  .contact-form { padding: 26px 22px; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-field-full { grid-column: auto; }
  .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
  .contact-form .button { width: 100%; }
  .mobile-actions a:last-child { background: var(--brand-green); }
}

/* Unified heading scale and centred supporting-copy columns */
.intro h2,
.section-heading h2,
.services-head h2,
.about-copy h2,
.reviews-head h2,
#work-title {
  font-size: 50px;
  line-height: 1;
}

.header-wordmark {
  align-items: center;
  gap: 0;
}

.header-wordmark .brand-type {
  font-size: 1rem;
  line-height: .83;
}

@media (min-width: 821px) {
  .intro,
  .section-heading,
  .services-head {
    grid-template-columns: minmax(0, .95fr) minmax(380px, .8fr);
    align-items: center;
    column-gap: clamp(64px, 7vw, 100px);
  }

  .intro-copy,
  .section-heading > p:last-child,
  .services-head > p {
    width: 100%;
    max-width: 520px;
    justify-self: start;
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .intro,
  .section-heading,
  .services-head {
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: 30px;
  }

  .intro-copy,
  .section-heading > p:last-child,
  .services-head > p {
    width: 100%;
    max-width: 620px;
  }
}

/* Stacked section introductions for the work and services sections */
.work,
.services {
  padding-top: clamp(72px, 7vw, 104px);
}

.work .section-heading,
.services-head {
  grid-template-columns: 1fr;
  align-items: start;
  row-gap: 20px;
}

.work .section-heading > p:last-child,
.services-head > p {
  width: 100%;
  max-width: 760px;
  justify-self: start;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .site-intro { display: none; }
  html.intro-pending,
  html.intro-pending body { overflow: auto; }
  html.intro-pending .site-header,
  html.intro-pending main,
  html.intro-pending .site-footer,
  html.intro-pending .mobile-actions { opacity: 1; pointer-events: auto; }
  .service-card-inner,
  .service-card.is-flipped .service-card-inner,
  .service-card-back { transform: none; }
  .service-card-back { opacity: 0; visibility: hidden; }
  .service-card.is-flipped .service-card-front { opacity: 0; visibility: hidden; }
  .service-card.is-flipped .service-card-back { opacity: 1; visibility: visible; }
}

@media (forced-colors: active) {
  .landing-card, .review-card, .project-label, .mobile-menu, .service-card-face { border: 1px solid CanvasText; }
}
