:root {
  --brand: #b7833f;
  --brand-dark: #4b2c16;
  --brand-soft: #f6eee3;
  --accent: #597a3a;
  --accent-dark: #2f4523;
  --glow-green: #9be76b;
  --glow-green-hot: #c8ff86;
  --glow-green-deep: #335f24;
  --glow-green-soft: rgba(155, 231, 107, 0.24);
  --ink: #11100f;
  --ink-soft: #332b24;
  --muted: #70675e;
  --stone: #f5f1eb;
  --stone-deep: #e5d8c7;
  --line: #dfd3c1;
  --white: #ffffff;
  --black: #050505;
  --shadow: 0 18px 45px rgba(17, 16, 15, 0.14);
  --shadow-soft: 0 10px 28px rgba(17, 16, 15, 0.08);
  --radius: 8px;
  --container: 1180px;
  color: var(--ink);
  background: var(--white);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 99999;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  background: rgba(7, 7, 6, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 1.1rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 800;
  min-width: max-content;
}

.brand-logo {
  width: 104px;
  height: 82px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.14),
    0 0 26px rgba(155, 231, 107, 0.12);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 1rem;
}

.brand-area {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link,
.services-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 0.82rem;
  font-size: 0.92rem;
  font-weight: 750;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.services-trigger:hover,
.nav-link.is-active,
.services-trigger.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.services-menu {
  position: relative;
}

.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 0.5rem);
  min-width: 310px;
  padding: 0.45rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.services-menu:hover .dropdown,
.services-menu:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  border-radius: 6px;
  color: var(--ink-soft);
  padding: 0.72rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 750;
}

.dropdown a:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.mobile-panel {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.78rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 24px rgba(75, 44, 22, 0.24);
}

.btn-light {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.btn-outline {
  color: var(--brand-dark);
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.82);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.55rem;
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 660px;
  min-height: min(680px, calc(100vh - 58px));
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 9rem 0 4.1rem;
}

.inner-hero {
  min-height: 520px;
  padding: 10rem 0 4.5rem;
}

.hero-media,
.hero-media video,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
  background: var(--black);
}

.hero-media video,
.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.48), rgba(5, 5, 5, 0.75)),
    linear-gradient(0deg, rgba(75, 44, 22, 0.48), rgba(47, 69, 35, 0.25));
}

.hero-content {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.hero-copy {
  max-width: 820px;
}

.home-hero .hero-copy {
  max-width: 880px;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  background: rgba(183, 131, 63, 0.14);
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero .eyebrow {
  color: var(--white);
  background: rgba(155, 231, 107, 0.13);
  border: 1px solid rgba(200, 255, 134, 0.28);
  box-shadow: 0 0 22px rgba(155, 231, 107, 0.14);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.8rem, 6.2vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 980px;
}

.hero h1 {
  color: var(--white);
  text-shadow:
    0 0 8px rgba(200, 255, 134, 0.62),
    0 0 28px rgba(155, 231, 107, 0.42),
    0 0 64px rgba(89, 122, 58, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.55);
}

.home-hero h1 {
  text-shadow:
    0 0 10px rgba(200, 255, 134, 0.82),
    0 0 34px rgba(155, 231, 107, 0.6),
    0 0 82px rgba(89, 122, 58, 0.68),
    0 10px 28px rgba(0, 0, 0, 0.62);
}

.hero h1::after {
  content: "";
  display: block;
  width: min(360px, 58vw);
  height: 4px;
  margin-top: 0.82rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--glow-green-hot), var(--glow-green), rgba(155, 231, 107, 0));
  box-shadow:
    0 0 14px rgba(200, 255, 134, 0.72),
    0 0 34px rgba(155, 231, 107, 0.46);
}

.inner-hero h1 {
  font-size: clamp(2.35rem, 5.6vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 0.6rem;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 760px;
  margin-top: 2.1rem;
}

.stat {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 1rem;
}

.stat strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 0.88rem;
}

.breadcrumbs a::after {
  content: "/";
  margin-left: 0.45rem;
  color: rgba(255,255,255,0.48);
}

.info-strip {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  color: var(--white);
}

.info-strip-grid {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
}

.info-strip-item {
  color: rgba(255,255,255,0.94);
  font-weight: 780;
  font-size: 0.93rem;
}

.info-strip-item + .info-strip-item {
  border-left: 1px solid rgba(255,255,255,0.22);
  padding-left: 1.5rem;
}

.section {
  padding: 6.5rem 0;
}

.section-alt {
  background: var(--stone);
}

.section-head {
  margin-bottom: 2rem;
}

.section-head.center {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.section-head .eyebrow {
  margin-bottom: 1rem;
}

.section-head h2 {
  position: relative;
  text-shadow:
    0 0 14px rgba(155, 231, 107, 0.18),
    0 0 30px rgba(155, 231, 107, 0.1);
}

.section-head h2::after {
  content: "";
  display: block;
  width: min(210px, 46vw);
  height: 3px;
  margin-top: 0.78rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--glow-green), rgba(155, 231, 107, 0.45), rgba(155, 231, 107, 0));
  box-shadow: 0 0 18px rgba(155, 231, 107, 0.42);
}

.section-head.center h2::after {
  margin-inline: auto;
  background: linear-gradient(90deg, rgba(155, 231, 107, 0), var(--glow-green), rgba(155, 231, 107, 0));
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.text-stack p + p {
  margin-top: 1rem;
}

.check-list {
  display: grid;
  gap: 0.78rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--ink-soft);
  font-weight: 700;
}

.check-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

.included-list li::before {
  content: "";
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 1rem;
  width: min(100%, 540px);
  margin-inline: auto;
}

.image-frame,
.feature-panel,
.card,
.contact-card,
.quote-callout,
.detail-card,
.value-card,
.mini-card,
.process-card,
.review-card,
.area-map-panel {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.image-frame {
  overflow: hidden;
  aspect-ratio: 5 / 3;
}

.image-frame img,
.service-card-img img,
.gallery-item img,
.detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame.landscape {
  aspect-ratio: 5 / 3;
}

.feature-panel {
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid var(--line);
}

.feature-panel img {
  width: min(340px, 82%);
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
}

.feature-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-shadow: 0 0 18px rgba(155, 231, 107, 0.16);
}

.service-card {
  overflow: hidden;
  border: 1px solid rgba(75, 44, 22, 0.11);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card-img {
  height: 235px;
  background: var(--stone-deep);
}

.service-card-body {
  padding: 1.3rem;
}

.service-card h3 {
  font-size: 1.32rem;
  text-shadow: 0 0 14px rgba(155, 231, 107, 0.12);
}

.service-card p {
  font-size: 0.96rem;
}

.service-snapshot {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.snapshot-item {
  padding: 1.15rem 0;
  border-left: 1px solid rgba(255,255,255,0.14);
  padding-left: 1rem;
}

.snapshot-item strong,
.snapshot-item span {
  display: block;
}

.snapshot-item strong {
  color: var(--white);
  font-size: 1.04rem;
  margin-bottom: 0.25rem;
}

.snapshot-item span {
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
  font-size: 0.9rem;
}

.service-art-section {
  background:
    linear-gradient(180deg, var(--white), #fbf8f4);
}

.service-art-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.service-copy-panel {
  max-width: 620px;
}

.service-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.service-pill-row span {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.62rem 0.8rem;
  background: var(--brand-soft);
  border: 1px solid var(--line);
  color: var(--brand-dark);
  font-weight: 850;
  font-size: 0.9rem;
}

.service-collage {
  position: relative;
  min-height: 560px;
}

.service-collage figure {
  margin: 0;
}

.service-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-main,
.collage-small {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--stone-deep);
}

.collage-main {
  position: absolute;
  left: 0;
  top: 2rem;
  width: 78%;
  height: 430px;
}

.collage-main figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(5,5,5,0.72);
  font-weight: 800;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.collage-small {
  position: absolute;
  right: 0;
  width: 42%;
  aspect-ratio: 5 / 3;
  border: 6px solid var(--white);
}

.collage-small.top {
  top: 0;
}

.collage-small.bottom {
  bottom: 0.5rem;
}

.service-outcomes-section {
  background:
    linear-gradient(90deg, rgba(17,16,15,0.95), rgba(75,44,22,0.88)),
    url("/assets/images/tree-root-removal-minneapolis-mn-superior-07.jpg") center/cover;
  color: var(--white);
}

.service-outcomes-section .section-head .eyebrow {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.service-outcomes-section h2,
.service-outcomes-section .lead,
.service-outcomes-section p {
  color: var(--white);
}

.service-outcomes-section h2 {
  text-shadow:
    0 0 10px rgba(200, 255, 134, 0.55),
    0 0 32px rgba(155, 231, 107, 0.38),
    0 6px 18px rgba(0, 0, 0, 0.45);
}

.service-outcomes-section .section-head h2::after {
  background: linear-gradient(90deg, rgba(155, 231, 107, 0), var(--glow-green-hot), rgba(155, 231, 107, 0));
  box-shadow:
    0 0 14px rgba(200, 255, 134, 0.68),
    0 0 32px rgba(155, 231, 107, 0.42);
}

.service-value {
  min-height: 275px;
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.service-value h3 {
  color: var(--white);
}

.service-value p {
  color: rgba(255,255,255,0.78);
}

.value-kicker {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 950;
}

.service-path-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.service-path-intro {
  position: sticky;
  top: 112px;
}

.service-path-photo {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 5 / 3;
  box-shadow: var(--shadow-soft);
}

.service-path-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-path-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-path-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-path-list li > span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  font-weight: 950;
  font-size: 1.2rem;
}

.service-path-list h3 {
  color: var(--brand-dark);
}

.service-capabilities-section .mini-card {
  border-top: 4px solid var(--brand);
}

.service-finish-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.service-finish-card {
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 2rem);
}

.service-finish-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.2rem 0 0.2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand-dark);
  font-weight: 900;
}

.standards-section {
  background:
    linear-gradient(90deg, rgba(17,16,15,0.94), rgba(75,44,22,0.88)),
    url("/assets/images/large-stump-removal-minneapolis-mn-superior-04.jpg") center/cover;
  color: var(--white);
}

.standards-section .section-head .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.standards-section p,
.standards-section h2 {
  color: var(--white);
}

.standards-section h2 {
  text-shadow:
    0 0 10px rgba(200, 255, 134, 0.56),
    0 0 34px rgba(155, 231, 107, 0.38),
    0 6px 18px rgba(0, 0, 0, 0.45);
}

.standards-section .section-head h2::after {
  background: linear-gradient(90deg, var(--glow-green-hot), var(--glow-green), rgba(155, 231, 107, 0));
  box-shadow:
    0 0 14px rgba(200, 255, 134, 0.68),
    0 0 32px rgba(155, 231, 107, 0.42);
}

.standards-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.standards-list li {
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 800;
  color: rgba(255,255,255,0.9);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
}

.service-list li {
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 820;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  display: grid;
  align-content: space-between;
  min-height: 285px;
  padding: 1.35rem;
  border: 1px solid var(--line);
}

.review-stars {
  color: var(--brand);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.review-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.review-author {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review-author strong {
  color: var(--ink);
}

.review-author span {
  color: var(--muted);
  font-weight: 760;
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 0.8rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone-deep);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.areas-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: stretch;
}

.contact-card {
  border: 1px solid var(--line);
  padding: clamp(1.2rem, 3vw, 1.65rem);
}

.contact-card h2 {
  font-size: 1.28rem;
  line-height: 1.22;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 14px rgba(155, 231, 107, 0.14);
}

.area-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.area-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.62rem 0.85rem;
  font-weight: 820;
}

.area-button.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.area-map-panel {
  overflow: hidden;
  border: 1px solid var(--line);
}

.area-map-frame {
  width: 100%;
  height: 410px;
  border: 0;
}

.area-map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
}

.area-map-caption strong,
.area-map-caption span {
  display: block;
}

.area-map-caption span {
  color: var(--muted);
  margin-top: 0.22rem;
}

.faq-wrap {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 1.05rem 1.15rem;
  text-align: left;
  font-weight: 900;
}

.faq-question .icon {
  transition: transform 0.18s ease;
}

.faq-item.is-closed .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.15rem 1.05rem;
}

.faq-item.is-closed .faq-answer {
  display: none;
}

.quote-section {
  background:
    linear-gradient(90deg, rgba(17,16,15,0.94), rgba(47,69,35,0.9)),
    url("/assets/images/root-grinding-minneapolis-mn-superior-11.jpg") center/cover;
  color: var(--white);
}

.quote-section .section-head .eyebrow {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.quote-section h2,
.quote-section p {
  color: var(--white);
}

.quote-section h2 {
  text-shadow:
    0 0 10px rgba(200, 255, 134, 0.58),
    0 0 34px rgba(155, 231, 107, 0.4),
    0 6px 18px rgba(0, 0, 0, 0.48);
}

.quote-section .section-head h2::after {
  background: linear-gradient(90deg, var(--glow-green-hot), var(--glow-green), rgba(155, 231, 107, 0));
  box-shadow:
    0 0 14px rgba(200, 255, 134, 0.68),
    0 0 32px rgba(155, 231, 107, 0.42);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: start;
}

.quote-frame {
  width: 100%;
  min-height: 720px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-frame iframe {
  min-height: 720px;
}

.contact-lines {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.88);
  font-weight: 800;
}

.contact-lines a {
  color: var(--white);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.5rem;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 106px;
}

.contact-big {
  display: block;
  font-size: 1.75rem;
  font-weight: 950;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.process-grid,
.detail-grid,
.mini-grid {
  display: grid;
  gap: 1rem;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card,
.value-card,
.mini-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 950;
  margin-bottom: 1rem;
}

.value-card h3,
.mini-card h3 {
  color: var(--brand-dark);
  text-shadow: 0 0 14px rgba(155, 231, 107, 0.14);
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card {
  overflow: hidden;
  border: 1px solid var(--line);
}

.detail-card img {
  height: 270px;
}

.detail-card h3,
.detail-card p {
  margin-inline: 1.2rem;
}

.detail-card h3 {
  margin-top: 1.2rem;
}

.detail-card p {
  margin-bottom: 1.2rem;
}

.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-callout {
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--brand-soft), var(--white));
}

.quote-callout h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  text-shadow: 0 0 18px rgba(155, 231, 107, 0.18);
}

.site-footer {
  color: rgba(255,255,255,0.78);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 2rem;
  padding: 4rem 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
}

.footer-brand img {
  width: 104px;
  height: 82px;
  object-fit: contain;
  border-radius: 6px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 14px rgba(155, 231, 107, 0.28);
}

.site-footer ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-small {
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom .container {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-panel {
    position: fixed;
    inset: 84px 0 auto;
    z-index: 999;
    display: block;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
    background: rgba(7,7,6,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  body.menu-open .mobile-panel {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-panel-inner {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    padding: 1rem 0 1.25rem;
    display: grid;
    gap: 0.2rem;
  }

  .mobile-panel-inner a {
    color: var(--white);
    padding: 0.88rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 800;
  }

  .grid-3,
  .grid-4,
  .mini-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-art-grid,
  .service-path-grid,
  .service-finish-grid {
    grid-template-columns: 1fr;
  }

  .service-copy-panel {
    max-width: none;
  }

  .service-collage {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .collage-main,
  .collage-small {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    aspect-ratio: 5 / 3;
  }

  .collage-main {
    grid-column: 1 / -1;
  }

  .collage-small {
    border: 0;
  }

  .service-path-intro {
    position: static;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 720px;
    padding-top: 8.75rem;
    padding-bottom: 2.75rem;
  }

  .inner-hero {
    min-height: 500px;
  }

  .hero-stats,
  .info-strip-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .areas-grid,
  .quote-grid,
  .contact-page-grid,
  .process-grid,
  .detail-grid,
  .mini-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .snapshot-grid,
  .service-collage {
    grid-template-columns: 1fr;
  }

  .snapshot-item {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-left: 0;
  }

  .snapshot-item:first-child {
    border-top: 0;
  }

  .service-value {
    min-height: auto;
  }

  .service-path-list li {
    grid-template-columns: 46px 1fr;
    padding: 0.95rem;
  }

  .service-path-list li > span {
    width: 46px;
    height: 46px;
  }

  .info-strip-grid {
    padding: 0.9rem 0;
  }

  .info-strip-item + .info-strip-item {
    border-left: 0;
    padding-left: 0;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .standards-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .area-map-caption {
    display: grid;
  }

  .contact-sidebar {
    position: static;
  }

  .quote-frame,
  .quote-frame iframe {
    min-height: 760px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 1.5rem;
  }

  .stat {
    padding-left: 0.55rem;
  }

  .stat strong {
    font-size: 1.25rem;
  }

  .stat span {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .container,
  .hero-content {
    width: min(100% - 1.25rem, var(--container));
  }

  .brand-logo {
    width: 76px;
    height: 64px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-area {
    font-size: 0.66rem;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero {
    min-height: 760px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .inner-hero h1 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .section {
    padding: 4.6rem 0;
  }

  .service-list {
    justify-content: flex-start;
  }

  .quote-frame,
  .quote-frame iframe {
    min-height: 820px;
  }

  .footer-bottom .container {
    display: grid;
    padding: 1rem 0;
  }
}
