:root {
  --bg: #edf1ee;
  --surface: #ffffff;
  --surface-2: #f5f7f4;
  --ink: #152126;
  --ink-soft: #44545b;
  --line: rgba(21, 33, 38, 0.12);
  --brand: #0d1c1f;
  --brand-soft: #132b31;
  --accent: #ea7d21;
  --accent-2: #f4b45f;
  --success: #6da36f;
  --shadow-sm: 0 12px 30px rgba(11, 24, 26, 0.08);
  --shadow-lg: 0 32px 70px rgba(7, 14, 18, 0.15);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: min(1180px, calc(100% - 2rem));
  --font-body: "Manrope", system-ui, sans-serif;
  --font-heading: "Space Grotesk", "Manrope", sans-serif;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -5%, rgba(234, 125, 33, 0.18), transparent 44%),
    radial-gradient(circle at 100% 10%, rgba(109, 163, 111, 0.14), transparent 40%),
    linear-gradient(180deg, #e9efea 0%, #edf1ee 35%, #f4f6f3 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 3px solid #f4b45f;
  outline-offset: 3px;
  border-radius: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  background: var(--brand);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  backdrop-filter: blur(12px);
  background: rgba(237, 241, 238, 0.82);
  border-bottom: 1px solid rgba(21, 33, 38, 0.08);
}

.header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand__mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--brand);
  line-height: 1.05;
}

.brand__tag {
  font-size: 0.72rem;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(21, 33, 38, 0.08);
  padding: 0.35rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(8, 17, 19, 0.05);
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  color: var(--brand);
  background: rgba(13, 28, 31, 0.06);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(21, 33, 38, 0.12);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.6rem;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  flex-direction: column;
}

.nav-toggle__line {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

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

.btn--solid {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-soft) 100%);
  color: #fff;
  border-color: rgba(13, 28, 31, 0.7);
  box-shadow: 0 10px 24px rgba(13, 28, 31, 0.22);
}

.btn--solid:hover {
  color: #fff;
  box-shadow: 0 16px 28px rgba(13, 28, 31, 0.28);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(21, 33, 38, 0.14);
  color: var(--brand);
}

.btn--outline:hover {
  border-color: rgba(21, 33, 38, 0.24);
  color: var(--brand);
  background: #fff;
}

.btn--sm {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
}

.header__cta {
  white-space: nowrap;
}

.hero {
  position: relative;
  padding: 2rem 0 0;
}

.hero__bg {
  position: absolute;
  inset: 0 0 auto;
  height: 42rem;
  background:
    radial-gradient(circle at 18% 16%, rgba(244, 180, 95, 0.24), transparent 36%),
    radial-gradient(circle at 86% 16%, rgba(109, 163, 111, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.9fr);
  gap: 1.25rem;
  align-items: start;
  padding-top: 1.4rem;
}

.hero__content {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(21, 33, 38, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--brand);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero__lead {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  max-width: 60ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.hero__actions .btn {
  padding: 0.95rem 1.15rem;
}

.hero__checks {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.hero__checks li {
  position: relative;
  padding-left: 1.7rem;
  font-weight: 600;
  color: var(--ink);
}

.hero__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 14%, transparent 15%),
    linear-gradient(135deg, var(--success), #4d7f57);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.panel-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 33, 38, 0.09);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.panel-card h2 {
  font-size: 1.35rem;
}

.panel-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
}

.panel-card__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
}

.panel-card--accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.8)),
    linear-gradient(135deg, rgba(234, 125, 33, 0.12), rgba(109, 163, 111, 0.14));
  border-color: rgba(234, 125, 33, 0.24);
}

.contact-card dl {
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.contact-card dl div {
  display: grid;
  gap: 0.3rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(21, 33, 38, 0.08);
}

.contact-card dt {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card dd {
  margin: 0;
  font-weight: 600;
}

.contact-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.stats-strip {
  margin-top: 1rem;
  padding-bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(21, 33, 38, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(8, 17, 19, 0.05);
}

.stat__value {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--brand);
}

.stat__label {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.section {
  padding: clamp(2.4rem, 6vw, 5.5rem) 0;
}

.section--tint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.35));
  border-top: 1px solid rgba(21, 33, 38, 0.06);
  border-bottom: 1px solid rgba(21, 33, 38, 0.06);
}

.section--dark {
  background:
    radial-gradient(circle at 8% 0%, rgba(234, 125, 33, 0.14), transparent 32%),
    radial-gradient(circle at 95% 10%, rgba(109, 163, 111, 0.16), transparent 34%),
    linear-gradient(180deg, #0d1c1f 0%, #112429 100%);
  color: rgba(255, 255, 255, 0.88);
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark .eyebrow {
  color: #f4b45f;
}

.section__head {
  max-width: 56rem;
  margin-bottom: 1.25rem;
}

.section__head p:last-child {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
}

.section--dark .section__head p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.section__head--compact {
  margin-bottom: 0.5rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(21, 33, 38, 0.08);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.service-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, rgba(13, 28, 31, 0.9), rgba(19, 43, 49, 0.85));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  margin-bottom: 0.4rem;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.stack {
  display: grid;
  gap: 1rem;
}

.quote-card,
.guarantee-card,
.feature-list article,
.client-list-card,
.cta-panel {
  border-radius: var(--radius-md);
  border: 1px solid rgba(21, 33, 38, 0.09);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.quote-card,
.guarantee-card,
.client-list-card {
  padding: 1.1rem;
}

.quote-card blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--brand);
  line-height: 1.35;
}

.quote-card__author {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.guarantee-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, rgba(234, 125, 33, 0.14), rgba(13, 28, 31, 0.03));
}

.guarantee-card p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
}

.feature-list {
  display: grid;
  gap: 0.8rem;
}

.feature-list article {
  padding: 1rem;
}

.feature-list h3 {
  margin-bottom: 0.35rem;
}

.feature-list p {
  margin: 0;
  color: var(--ink-soft);
}

.timeline {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.timeline__index {
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgba(234, 125, 33, 0.88), rgba(244, 180, 95, 0.9));
}

.timeline__item p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-group {
  margin-top: 1.35rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(21, 33, 38, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
}

.gallery-group__head {
  margin-bottom: 0.9rem;
}

.gallery-group__head p {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
}

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

.gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(21, 33, 38, 0.1);
  background: #fff;
  box-shadow: 0 12px 22px rgba(9, 16, 19, 0.07);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e7ece8;
}

.gallery-item figcaption {
  padding: 0.6rem 0.7rem;
  font-size: 0.83rem;
  color: var(--ink-soft);
  border-top: 1px solid rgba(21, 33, 38, 0.07);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip-grid span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 33, 38, 0.08);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.86rem;
}

.client-list-card h3 {
  margin-bottom: 0.65rem;
}

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

.client-list-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
}

.client-list-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #f09334;
}

.section--cta {
  padding-top: 1rem;
}

.cta-panel {
  padding: clamp(1.1rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(13, 28, 31, 0.96), rgba(19, 43, 49, 0.93) 55%, rgba(33, 63, 70, 0.92));
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
  color: #fff;
  margin-top: 0.1rem;
}

.cta-panel p:last-child {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-panel .eyebrow {
  color: var(--accent-2);
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.btn--light {
  background: #fff;
  color: var(--brand);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.btn--light:hover {
  color: var(--brand);
  background: #f4f6f5;
}

.btn--light-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--light-outline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(21, 33, 38, 0.08);
  background: rgba(255, 255, 255, 0.45);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
  padding: 1.3rem 0;
}

.brand--footer {
  align-items: flex-start;
}

.brand--footer .brand__mark {
  width: 56px;
  height: 56px;
}

.brand--footer .brand__tag {
  white-space: normal;
  max-width: 34ch;
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--ink-soft);
}

.footer__bottom {
  border-top: 1px solid rgba(21, 33, 38, 0.08);
  padding: 0.9rem 0 1.4rem;
}

.footer__bottom p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--delay-1 {
  transition-delay: 0.08s;
}

.reveal--delay-2 {
  transition-delay: 0.16s;
}

.reveal--delay-3 {
  transition-delay: 0.24s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(21, 33, 38, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
  }

  .header__cta {
    display: none;
  }

  .hero__grid,
  .two-col,
  .cta-panel,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-panel__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
    --container: min(1180px, calc(100% - 1rem));
  }

  .brand__tag {
    display: none;
  }

  .hero {
    padding-top: 0.8rem;
  }

  .hero__content,
  .panel-card,
  .stat,
  .service-card,
  .quote-card,
  .guarantee-card,
  .feature-list article,
  .client-list-card,
  .gallery-group,
  .cta-panel {
    border-radius: 16px;
  }

  .stats-strip,
  .cards--3,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .timeline__item {
    grid-template-columns: 1fr;
  }

  .timeline__index {
    width: 2.5rem;
  }

  .hero__actions .btn,
  .cta-panel__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-panel__actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
