@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,900;1,9..40,400&display=swap');

:root {
  --ink: #142019;
  --muted: #5b645e;
  --paper: #fffdf8;
  --soft: #f4f1e8;
  --soft-2: #e8efe6;
  --forest: #12311f;
  --forest-2: #1f4a31;
  --moss: #5f7f45;
  --accent: #d9902f;
  --accent-dark: #9a5b12;
  --line: #d9ddcf;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 45px rgb(20 32 25 / 0.12);
  --container: 1160px;
  --gutter: clamp(18px, 4vw, 36px);
  --section: clamp(24px, 3.5vw, 50px);
  font-family:
    'DM Sans', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  box-shadow: 0 18px 42px rgb(20 32 25 / 0.18);
}

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

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible {
  outline: 3px solid rgb(217 144 47 / 0.85);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - (var(--gutter) * 2), 780px);
}

.section {
  padding: var(--section) 0;
}

.page-hero + .section {
  padding-top: clamp(22px, 3vw, 36px);
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgb(18 49 31 / 0.92), rgb(18 49 31 / 0.98)),
    url("imgs/service-trees.jpg") center / cover;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(14px, 2.5vw, 24px);
}

.section-head h2,
.page-hero h1,
.hero h1,
.cta-band h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-head h2 {
  font-weight: 800;
}

/* DM Sans at large opsz (auto=40 at display sizes) has wide open letterforms — pin to narrow optical size */
.hero h1,
.page-hero h1,
.cta-band h2 {
  letter-spacing: -0.03em;
  font-variation-settings: 'wght' 900, 'opsz' 11;
}

.section-head h2,
.split h2,
.pricing-preview h2,
.about-layout h2,
.locations-layout h2 {
  letter-spacing: -0.02em;
  font-variation-settings: 'wght' 800, 'opsz' 14;
}

.section-head h2 {
  font-size: clamp(30px, 4.4vw, 48px);
}

.section-head p:last-child,
.section-intro,
.page-hero p,
.hero-lead {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.section--dark .section-head p,
.section--dark .section-intro {
  color: rgb(255 255 255 / 0.76);
}

.eyebrow,
.tag {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.page-hero--image .eyebrow,
.hero .eyebrow {
  color: #ffd28c;
}

/* polish: hero eyebrow pill badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 144, 47, 0.12);
  border: 1px solid rgba(217, 144, 47, 0.28);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #ffd28c;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-eyebrow .eyebrow-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: #d9902f;
  border-radius: 50%;
  flex-shrink: 0;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button--primary {
  color: #1b1204;
  background: var(--accent);
  border-color: rgb(0 0 0 / 0.04);
}

.button--primary:hover {
  background: #e6a64a;
}

.button--secondary {
  color: var(--forest);
  background: var(--white);
  border-color: var(--line);
}

.button--light {
  color: var(--white);
  background: rgb(255 255 255 / 0.12);
  border-color: rgb(255 255 255 / 0.34);
  backdrop-filter: blur(10px);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-2);
  font-weight: 800;
}

.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 160ms ease;
}

.text-link:hover .icon {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  background: rgb(255 253 248 / 0.92);
  border-bottom: 1px solid rgb(20 32 25 / 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.is-elevated {
  box-shadow: 0 12px 30px rgb(20 32 25 / 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  color: var(--forest);
  font-size: 19px;
}

.brand-name span {
  color: var(--accent-dark);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.desktop-nav a {
  color: rgb(20 32 25 / 0.74);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-variation-settings: 'wght' 700, 'opsz' 14;
}

.desktop-nav a:hover {
  color: var(--forest);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
  font-weight: 800;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 96px;
  height: 46px;
  padding: 0 14px;
  color: var(--forest);
  border: 1px solid rgb(20 32 25 / 0.12);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.92);
  box-shadow: 0 12px 24px rgb(20 32 25 / 0.08);
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgb(20 32 25 / 0.22);
}

.menu-toggle__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle__lines {
  display: inline-grid;
  gap: 4px;
}

.menu-toggle__lines span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

body.menu-open .menu-toggle {
  color: var(--white);
  background: var(--forest);
  border-color: rgb(255 255 255 / 0.16);
  box-shadow: 0 16px 34px rgb(20 32 25 / 0.24);
}

body.menu-open .menu-toggle__lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle__lines span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle__lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 73px 0 auto;
  z-index: 1400;
  height: calc(100vh - 73px);
  height: calc(100dvh - 73px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px 0 calc(18px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgb(8 20 13 / 0.4), rgb(8 20 13 / 0.66));
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
}

.mobile-nav[hidden] {
  display: none !important;
}

body.menu-open .mobile-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 0s;
}

.mobile-nav__panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgb(20 32 25 / 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgb(217 144 47 / 0.12), transparent 36%),
    linear-gradient(180deg, rgb(255 253 248 / 0.98), rgb(244 241 232 / 0.98));
  box-shadow: 0 24px 58px rgb(20 32 25 / 0.24);
}

.mobile-nav__eyebrow {
  margin: 0;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-nav__inner {
  display: grid;
  gap: 12px;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgb(20 32 25 / 0.08);
  border-radius: 18px;
  background: rgb(255 255 255 / 0.88);
  box-shadow: 0 12px 28px rgb(20 32 25 / 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.mobile-nav__link:hover {
  transform: translateY(-1px);
  border-color: rgb(20 32 25 / 0.16);
  box-shadow: 0 16px 32px rgb(20 32 25 / 0.12);
}

.mobile-nav__copy {
  display: grid;
  gap: 4px;
}

.mobile-nav__label {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--forest);
}

.mobile-nav__description {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.mobile-nav__link .icon {
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
}

.mobile-nav__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-nav__cta,
.mobile-nav__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 16px;
  font-weight: 800;
}

.mobile-nav__cta {
  color: var(--white);
  background: var(--forest);
}

.mobile-nav__secondary {
  color: var(--forest);
  background: rgb(232 239 230 / 0.86);
  border: 1px solid rgb(20 32 25 / 0.08);
}

.hero {
  position: relative;
  min-height: min(580px, 84vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-picture,
.hero-picture img,
.page-hero__media,
.page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture img,
.page-hero__media img {
  object-fit: cover;
}

.hero-overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(9 25 16 / 0.88), rgb(9 25 16 / 0.52) 48%, rgb(9 25 16 / 0.22)),
    linear-gradient(0deg, rgb(9 25 16 / 0.48), transparent 45%);
}

/* polish: richer hero gradient for index (no background image) */
.hero:not(.hero--image) {
  background:
    radial-gradient(ellipse 60% 80% at 72% 50%, rgba(217, 144, 47, 0.06), transparent),
    linear-gradient(160deg, #071a0e 0%, #0d2015 55%, #091710 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: clamp(72px, 9vw, 108px) 0 clamp(44px, 6vw, 68px);
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(42px, 7vw, 74px);
}

.hero-lead {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 0.88);
}

.hero-updated {
  margin: 16px 0 0;
  color: rgb(255 255 255 / 0.72);
  font-size: 13px;
}

.hero-updated a {
  color: #ffd28c;
  font-weight: 800;
}


.footer-updated {
  font-size: 13px;
  color: rgb(255 255 255 / 0.55);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: rgb(255 255 255 / 0.9);
  background: rgb(255 255 255 / 0.12);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.service-grid,
.reason-grid,
.realization-grid,
.article-grid {
  display: grid;
  gap: 18px;
}

.testimonial-row {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr));
}

.services-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(16px, 2.5vw, 24px);
}

.realizations-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(14px, 2.5vw, 24px);
  flex-wrap: wrap;
}

.realizations-head__content {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.realizations-head__content .eyebrow {
  margin: 0;
}

.realizations-head h2 {
  margin: 0;
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variation-settings: 'wght' 800, 'opsz' 14;
}

.realizations-head__content p:last-child {
  margin: 0;
  color: var(--muted);
}

.service-card--featured .service-card__media {
  aspect-ratio: 16 / 7;
}

.service-card,
.reason-card,
.realization-card,
.article-card,
.testimonial,
.side-panel,
.factor-panel,
.definition-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  overflow: hidden;
  box-shadow: 0 14px 32px rgb(20 32 25 / 0.08);
}

.testimonial p {
  padding-top: 0;
}

.trust-note {
  max-width: 58rem;
  margin: 1.5rem 0 0;
  padding: 1rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.home-internal-links {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.home-internal-links .text-link {
  color: var(--forest-2);
  font-weight: 500;
}

.home-internal-links__sep {
  display: inline-block;
  margin: 0 0.35em;
  color: var(--line);
  font-weight: 500;
}

/* polish: card radius 10px + hover lift */
.service-card,
.realization-card,
.article-card {
  border-radius: 10px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
  will-change: transform;
}

.definition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px;
}

.definition-card {
  padding: 20px;
  box-shadow: 0 12px 30px rgb(20 32 25 / 0.07);
}

.definition-card h3 {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: 0;
  font-variation-settings: 'wght' 800, 'opsz' 16;
}

.definition-card p {
  margin: 0;
  color: var(--muted);
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 18px;
}

.reveal-on-scroll {
  --reveal-delay: 0ms;
}

html.js-reveal .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay);
}

html.js-reveal .reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-card:hover,
.realization-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(20, 32, 25, 0.14);
}

.service-card:hover {
  transform: translateY(-5px) scale(1.018);
  border-color: rgb(31 74 49 / 0.34);
  background-color: #f8fcf3;
  box-shadow: 0 24px 58px rgb(31 74 49 / 0.18);
}

html.js-reveal .service-card.reveal-on-scroll.is-revealed:hover {
  transform: translateY(-5px) scale(1.018);
}

html.js-reveal .realization-card.reveal-on-scroll.is-revealed:hover {
  transform: translateY(-4px);
}

.service-card__media {
  display: block;
  aspect-ratio: 16 / 8.8;
}

.service-card__media img,
.realization-card__media img,
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.03) saturate(1.1);
  transition: filter 280ms ease;
}

.service-card:hover .service-card__media img,
.realization-card:hover .realization-card__media img {
  filter: brightness(1.09) saturate(1.22);
}


.service-card__body,
.article-card,
.testimonial,
.reason-card,
.realization-card__body {
  padding: 18px;
}

.service-card h3,
.article-card h3,
.realization-card h3,
.reason-card h3,
.side-panel h2,
.factor-panel h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  font-variation-settings: 'wght' 700, 'opsz' 16;
}

.service-card p,
.article-card p,
.realization-card p,
.reason-card p,
.testimonial p,
.side-panel p,
.factor-panel p {
  margin: 0 0 16px;
  color: var(--muted);
}

.split {
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.split h2,
.pricing-preview h2,
.locations-layout h2,
.content-main h2,
.about-layout h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.how-it-works {
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.how-it-works__intro h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.steps-visual {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps-visual--progress {
  position: relative;
  --process-progress: 0%;
}

.steps-visual--progress::before,
.steps-visual--progress::after {
  content: "";
  position: absolute;
  top: 18px;
  left: clamp(32px, 5vw, 48px);
  width: 3px;
  border-radius: 999px;
  pointer-events: none;
}

.steps-visual--progress::before {
  bottom: 18px;
  background: linear-gradient(180deg, rgb(232 239 230 / 0.72), rgb(217 221 207 / 0.44));
}

.steps-visual--progress::after {
  height: var(--process-progress);
  max-height: calc(100% - 36px);
  background: linear-gradient(180deg, var(--moss), var(--accent));
  box-shadow: 0 0 0 5px rgb(95 127 69 / 0.08);
  transition: height 320ms ease-out;
}

.steps-visual li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.steps-visual li:first-child {
  padding-top: 0;
}

.step-num {
  position: relative;
  grid-row: 1 / 3;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
  color: var(--soft-2);
  letter-spacing: -0.03em;
  font-variation-settings: 'wght' 900, 'opsz' 11;
  align-self: center;
  min-width: 3.5ch;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.step-num::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -1;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgb(95 127 69 / 0.12);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.78);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.steps-visual li.is-process-active .step-num {
  color: var(--forest-2);
  transform: translateX(2px);
}

.steps-visual li.is-process-active .step-num::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.steps-visual li.is-process-active strong {
  color: var(--forest);
}

.steps-visual strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.steps-visual p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 16px 18px 16px 66px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  position: absolute;
  left: 20px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.trust-layout {
  display: grid;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.trust-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  font-variation-settings: 'wght' 900, 'opsz' 11;
}

.trust-intro p {
  margin: 0 0 24px;
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(16px, 1.8vw, 19px);
  max-width: 42ch;
}

.trust-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.trust-list li:first-child {
  border-top: 1px solid rgb(255 255 255 / 0.12);
}

.trust-list span {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #ffd28c;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.trust-list p {
  margin: 0;
  color: rgb(255 255 255 / 0.72);
  font-size: 15px;
}

.reason-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.section--dark .reason-card {
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.16);
}

.section--dark .reason-card p {
  color: rgb(255 255 255 / 0.75);
}

.section-trust-note {
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  max-width: 720px;
  color: rgb(255 255 255 / 0.78);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

.section--dark .section-trust-note a {
  color: #ffd28c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section--dark .section-trust-note a:hover {
  color: #ffe6b8;
}

.reason-card .icon {
  width: 24px;
  height: 24px;
  margin-bottom: 14px;
  color: var(--accent);
}

.pricing-preview,
.locations-layout,
.about-layout,
.contact-layout {
  display: grid;
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.pricing-preview > div:first-child {
  max-width: 620px;
}

.factor-list,
.check-list,
.site-footer ul,
.side-panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.factor-list {
  display: grid;
  gap: 10px;
}

.factor-list li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgb(20 32 25 / 0.12);
}

.factor-list .icon,
.check-list .icon {
  margin-top: 3px;
  color: var(--moss);
}

.chips,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span,
.filter-row span {
  padding: 9px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.realization-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.realization-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 34px rgb(20 32 25 / 0.08);
}

.realization-card__media {
  aspect-ratio: 16 / 11;
}

.realization-card__body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.realization-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.realization-card .tag {
  margin: 0;
  padding: 7px 11px;
  color: var(--forest-2);
  background: rgb(232 239 230 / 0.82);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.realization-card__index {
  color: rgb(18 49 31 / 0.52);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonial-showcase {
  display: grid;
  gap: 20px;
  margin-top: clamp(20px, 4vw, 32px);
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgb(20 32 25 / 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.86), rgb(244 241 232 / 0.96)),
    var(--white);
  box-shadow: 0 18px 42px rgb(20 32 25 / 0.08);
}

.testimonial-showcase__intro {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.testimonial-showcase__intro .eyebrow {
  margin: 0;
}

.testimonial-showcase__intro h3 {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.testimonial-showcase__intro p:last-child {
  margin: 0;
  color: var(--muted);
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 16px;
  margin-top: 0;
}

.testimonial {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgb(20 32 25 / 0.08);
  border-radius: 18px;
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 14px 30px rgb(20 32 25 / 0.08);
}

.testimonial-topline {
  display: flex;
  align-items: center;
}

.testimonial p {
  color: var(--ink);
  flex: 1;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  font-style: normal;
}

.testimonial-name {
  display: block;
  font-size: 15px;
  color: var(--ink);
  font-weight: 800;
}

.testimonial-meta {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.testimonial-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  color: #b86b14;
  background: rgb(217 144 47 / 0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.testimonial-footer {
  display: grid;
  gap: 3px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgb(20 32 25 / 0.08);
}

.article-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.article-grid--wide {
  margin-top: 24px;
}

.article-card {
  min-height: 100%;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero--plain {
  padding: clamp(34px, 4.4vw, 58px) 0 clamp(14px, 2vw, 24px);
  background:
    linear-gradient(180deg, rgb(232 239 230 / 0.96), rgb(255 253 248 / 1)),
    var(--soft-2);
}

.page-hero--image {
  min-height: min(620px, 76vh);
  display: grid;
  align-items: end;
  color: var(--white);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: clamp(88px, 12vw, 138px) 0 clamp(46px, 7vw, 78px);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(40px, 7vw, 72px);
}

.page-hero--image p {
  color: rgb(255 255 255 / 0.86);
}

.content-layout {
  display: grid;
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.content-main {
  max-width: 760px;
}

.content-main > *:first-child {
  margin-top: 0;
}

.content-main p {
  color: var(--muted);
  font-size: 18px;
}

.content-main h2 {
  margin-top: 44px;
}

.content-side {
  display: grid;
  gap: 16px;
}

.side-panel,
.factor-panel {
  padding: 22px;
  box-shadow: 0 12px 30px rgb(20 32 25 / 0.08);
}

.side-panel--plain {
  box-shadow: none;
  background: var(--soft);
}

.side-panel li {
  border-bottom: 1px solid rgb(20 32 25 / 0.12);
}

.side-panel li a {
  display: block;
  padding: 12px 0;
  color: var(--forest-2);
  font-weight: 800;
}

.answer-box {
  padding: 18px 20px;
  margin: 0 0 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--moss);
  border-radius: var(--radius);
}

.answer-box strong {
  display: block;
  color: var(--forest-2);
  font-variation-settings: 'wght' 850, 'opsz' 16;
}

.answer-box p {
  margin: 8px 0 0;
}

.local-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.local-link {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
  box-shadow: 0 10px 22px rgb(20 32 25 / 0.06);
}

.local-link:hover {
  color: var(--forest-2);
  border-color: rgb(91 124 69 / 0.45);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-list details {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-variation-settings: 'wght' 700, 'opsz' 16;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-right: 4px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--moss);
  transition: transform 200ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.about-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-info {
  display: grid;
  gap: 12px;
}

.contact-method {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-method strong,
.contact-method small {
  display: block;
}

.contact-method small {
  color: var(--muted);
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3.5vw, 26px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-form textarea {
  resize: vertical;
}

.file-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--soft);
  border: 1.5px dashed var(--moss);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  font-weight: 400;
}

.file-field:hover,
.file-field:focus-within {
  background: var(--soft-2);
  border-color: var(--forest-2);
}

.file-field input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  background: var(--forest);
  color: var(--white);
  border-radius: calc(var(--radius) - 2px);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
}

.file-status {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  pointer-events: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.map-frame {
  overflow: hidden;
  min-height: 240px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-frame iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.article-body h2 {
  font-size: clamp(26px, 3.2vw, 38px);
}

.article-cta {
  margin-top: 46px;
  padding: clamp(20px, 4vw, 30px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-row {
  margin-bottom: 20px;
}

.cta-band {
  color: var(--white);
  background: linear-gradient(135deg, #0d2015 0%, #12311f 60%, #1a3d28 100%);
}

.cta-band__inner {
  display: grid;
  gap: 18px;
  align-items: center;
}

.cta-band h2 {
  max-width: 720px;
  font-size: clamp(30px, 4.4vw, 48px);
}

.cta-band p {
  max-width: 660px;
  color: rgb(255 255 255 / 0.78);
}

/* Contact Form Enhancements */

.file-preview {
  margin-top: 8px;
  padding: 12px 16px;
  background: var(--soft-2);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--moss);
}

.quote-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Toast Notifications */

.toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
  box-shadow: var(--shadow);
  z-index: 9999;
  animation: slideUp 280ms ease;
}

.toast--success {
  background: var(--moss);
  color: var(--white);
}

.toast--error {
  background: #a84a3a;
  color: var(--white);
}

.toast--info {
  background: var(--ink);
  color: var(--white);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .toast {
    bottom: 80px;
    left: 12px;
    right: 12px;
  }
}

.cta-band .button--secondary {
  color: var(--white);
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.24);
}

.site-footer {
  padding: 46px 0 24px;
  color: rgb(255 255 255 / 0.78);
  background: #0d2015;
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.brand--footer .brand-name {
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: #ffd28c;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 0.12);
}

.footer-credit {
  margin-top: 12px;
  padding-top: 12px;
  padding-bottom: 20px;
  border-top: 1px solid rgb(255 255 255 / 0.06);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgb(255 255 255 / 0.32);
  text-align: center;
}

.footer-credit a {
  color: rgb(255 255 255 / 0.5);
  text-decoration: none;
  border-bottom: 1px solid rgb(255 255 255 / 0.18);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-credit a:hover {
  color: rgb(255 255 255 / 0.85);
  border-bottom-color: rgb(255 255 255 / 0.5);
}

.mobile-action {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 900;
  width: 64px;
  height: 64px;
  pointer-events: none;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.mobile-action a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-weight: 850;
  pointer-events: auto;
  box-shadow: 0 18px 40px rgb(18 49 31 / 0.26);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.mobile-action a:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgb(18 49 31 / 0.32);
}

.mobile-action a span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.mobile-action .icon {
  width: 26px;
  height: 26px;
}

.mobile-action__call {
  color: var(--white);
  background: var(--forest);
}

.mobile-action__call::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgb(217 144 47 / 0.35);
  border-radius: inherit;
  opacity: 0;
  animation: call-pulse 2600ms ease-out infinite;
}

.mobile-action__quote {
  color: var(--forest);
  background: var(--soft-2);
}

body.menu-open .mobile-action {
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
}

@keyframes call-pulse {
  0% {
    opacity: 0.62;
    transform: scale(0.9);
  }

  68%,
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 86px;
  z-index: 1200;
  width: min(calc(100% - 32px), 560px);
  transform: translateX(-50%);
  padding: 14px 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

@media (min-width: 720px) {
  .service-card--featured {
    grid-column: span 2;
  }

  .how-it-works {
    grid-template-columns: 1fr 1fr;
  }

  .trust-layout {
    grid-template-columns: 1fr 1fr;
  }

  .desktop-nav {
    display: flex;
  }

  .header-phone {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .form-grid,
  .split,
  .pricing-preview,
  .locations-layout,
  .about-layout,
  .contact-layout,
  .cta-band__inner,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps--horizontal {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps--horizontal li {
    padding: 70px 18px 18px;
  }

  .steps--horizontal span {
    top: 18px;
  }

  .content-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  }

  .content-side {
    position: sticky;
    top: 96px;
  }

  .cta-actions {
    justify-content: flex-end;
  }

  .mobile-action {
    display: none;
  }
}

@media (min-width: 980px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .testimonial-showcase {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    align-items: start;
  }
}

@media (min-width: 720px) and (max-width: 979px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

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

  .mobile-nav {
    display: block;
  }
}

@media (max-width: 719px) {
  body {
    padding-bottom: 78px;
  }

  .hero {
    min-height: 540px;
  }

  .hero-content {
    padding-bottom: 80px;
  }

  .hero-overlay,
  .page-hero__overlay {
    background:
      linear-gradient(180deg, rgb(9 25 16 / 0.86), rgb(9 25 16 / 0.62)),
      linear-gradient(0deg, rgb(9 25 16 / 0.4), transparent);
  }

  .button {
    width: 100%;
  }

  .hero-facts li {
    width: auto;
    flex: 1 1 auto;
  }

  .hero-facts li:nth-child(3) {
    display: none;
  }

  .header-inner {
    gap: 12px;
  }

  .brand-name {
    font-size: 17px;
  }

  .mobile-nav {
    padding-top: 12px;
  }

  .mobile-nav__panel {
    padding: 16px;
    border-radius: 22px;
  }

  .mobile-nav__actions {
    grid-template-columns: 1fr;
  }

  .realizations-head {
    align-items: stretch;
  }

  .realizations-head .text-link {
    width: 100%;
    justify-content: space-between;
  }

  .realization-card__media {
    aspect-ratio: 16 / 9;
  }

  .realization-card__body {
    padding: 18px;
  }

  .testimonial-showcase {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .testimonial-row {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 18px;
  }

  .step-num {
    font-size: 40px;
    min-width: 3ch;
  }

  .trust-intro p {
    font-size: 16px;
  }

  .service-card--featured .service-card__media {
    aspect-ratio: 16 / 9;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .steps-visual--progress {
    --process-progress: 100%;
  }

  .mobile-action__call::before {
    animation: none !important;
    opacity: 0 !important;
  }
}
