:root {
  --ink: #17201c;
  --muted: #5f6b64;
  --paper: #f6f3ea;
  --surface: #fffdf7;
  --line: #d8d1c2;
  --accent: #c8582b;
  --accent-dark: #873719;
  --green: #243f35;
  --green-soft: #e2eadf;
  --shadow: 0 22px 60px rgba(23, 32, 28, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(246, 243, 234, 0.94);
  border-bottom: 1px solid rgba(216, 209, 194, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--green);
  border-radius: 50%;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--green);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 7px;
  padding: 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(23, 32, 28, 0.9), rgba(23, 32, 28, 0.72) 45%, rgba(23, 32, 28, 0.38)),
    radial-gradient(circle at 75% 34%, rgba(200, 88, 43, 0.28), transparent 24%),
    linear-gradient(135deg, #31483d 0%, #1b2722 58%, #cdbf9e 100%);
  color: #fffdf7;
}

.hero-visual {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  transform: rotate(-5deg) scale(1.06);
}

.tool-grid {
  position: absolute;
  right: -5vw;
  top: 12vh;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 16px;
  width: min(620px, 58vw);
}

.tool-grid span {
  display: grid;
  place-items: center;
  min-height: 130px;
  border: 1px solid rgba(255, 253, 247, 0.35);
  background: rgba(255, 253, 247, 0.09);
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0;
  color: rgba(255, 253, 247, 0.74);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #f3b18d;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 850px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 26px;
  color: rgba(255, 253, 247, 0.86);
  font-size: 1.17rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  border-color: rgba(255, 253, 247, 0.55);
  color: #fffdf7;
}

.page-hero .btn.secondary,
.final-cta .btn.secondary {
  border-color: rgba(255, 253, 247, 0.6);
}

.btn.full {
  width: 100%;
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  width: min(860px, 100%);
  background: rgba(255, 253, 247, 0.22);
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.hero-summary div {
  padding: 18px;
  background: rgba(20, 30, 25, 0.58);
}

.hero-summary strong,
.hero-summary span {
  display: block;
}

.hero-summary span {
  margin-top: 5px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.92rem;
}

.section {
  padding: clamp(58px, 9vw, 108px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 720px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: start;
  background: var(--surface);
}

.intro-text {
  color: var(--muted);
  font-size: 1.08rem;
}

.services-band {
  background: var(--green);
  color: #fffdf7;
}

.services-band .section-heading .eyebrow {
  color: #f3b18d;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  background: rgba(255, 253, 247, 0.18);
  border: 1px solid rgba(255, 253, 247, 0.18);
}

.service-list article {
  min-height: 210px;
  padding: 26px;
  background: rgba(255, 253, 247, 0.055);
  transition: background 180ms ease, transform 180ms ease;
}

.service-list article:hover {
  background: rgba(255, 253, 247, 0.11);
  transform: translateY(-3px);
}

.service-list span,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.service-list p {
  color: rgba(255, 253, 247, 0.76);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.steps article,
.values article,
.service-detail article,
.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  padding: 26px;
}

.steps p,
.values p,
.service-detail p,
.wide-text {
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 1fr);
  gap: 34px;
  align-items: end;
  padding: clamp(42px, 7vw, 76px) clamp(18px, 5vw, 76px);
  background: var(--green-soft);
}

.trust-strip p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.quick-request {
  background: var(--surface);
}

.request-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(280px, 1fr);
  gap: clamp(26px, 6vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 8px;
  background: var(--ink);
  color: #fffdf7;
  box-shadow: var(--shadow);
}

.request-panel.small {
  display: block;
  padding: 30px;
}

.request-panel p {
  color: rgba(255, 253, 247, 0.78);
}

.phone-link {
  display: inline-flex;
  margin-top: 12px;
  color: #f3b18d;
  font-weight: 800;
}

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

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 253, 247, 0.26);
  border-radius: 7px;
  padding: 13px 14px;
  font: inherit;
  color: #fffdf7;
  background: rgba(255, 253, 247, 0.08);
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 253, 247, 0.5);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin-top: 28px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  padding: clamp(58px, 9vw, 104px) clamp(18px, 5vw, 76px);
  background: linear-gradient(135deg, var(--green), #14211c);
  color: #fffdf7;
}

.final-cta h2 {
  max-width: 760px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 76px);
  background: #111816;
  color: #fffdf7;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 253, 247, 0.72);
}

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

.page-hero {
  padding: clamp(66px, 10vw, 116px) clamp(18px, 5vw, 76px);
  background: var(--green);
  color: #fffdf7;
}

.page-hero h1 {
  max-width: 930px;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 1.12rem;
}

.service-detail,
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--surface);
}

.service-detail ul {
  padding-left: 18px;
  color: var(--muted);
}

.compact {
  background: var(--paper);
}

.wide-text {
  max-width: 900px;
  font-size: 1.1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 100px);
  background: var(--surface);
}

.about-grid p {
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-actions {
  margin-top: 30px;
}

.contact-card {
  display: grid;
  min-width: min(100%, 310px);
  color: var(--ink);
  background: #fffdf7;
  transition: transform 180ms ease;
}

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

.contact-card span {
  color: var(--muted);
  font-weight: 800;
}

.contact-card strong {
  overflow-wrap: anywhere;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 80px);
  align-items: start;
  background: var(--surface);
}

.contact-layout > div:first-child p {
  color: var(--muted);
}

.reveal {
  animation: riseIn 700ms ease both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 70px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    color: var(--ink);
  }

  .hero {
    min-height: auto;
    padding: 28px 18px 34px;
  }

  .tool-grid {
    right: -22vw;
    top: 11vh;
    width: 92vw;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .tool-grid span {
    min-height: 92px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4.2rem);
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .hero-summary {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-summary div {
    padding: 14px;
  }

  .intro,
  .trust-strip,
  .request-panel,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-list,
  .steps,
  .service-detail,
  .values,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-list article {
    min-height: auto;
  }

  .section {
    padding: 52px 18px;
  }

  .page-hero {
    padding: 54px 18px;
  }

  .request-panel {
    padding: 24px 18px;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.75rem;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-summary span {
    font-size: 0.88rem;
  }

  .contact-card {
    padding: 20px;
  }
}
