:root {
  --ink: #1c2421;
  --muted: #5e6b64;
  --paper: #f6f1e8;
  --surface: #fffaf1;
  --line: #dfd3c1;
  --accent: #b7522e;
  --accent-dark: #7e341f;
  --deep: #2f3d35;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(42, 35, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(246, 241, 232, 0.94);
  border-bottom: 1px solid rgba(223, 211, 193, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--surface);
  background: var(--deep);
  font-weight: 800;
  border-radius: 7px;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(183, 82, 46, 0.1);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 70px clamp(20px, 6vw, 84px);
  color: var(--surface);
  background:
    linear-gradient(105deg, rgba(28, 36, 33, 0.95), rgba(47, 61, 53, 0.88) 45%, rgba(28, 36, 33, 0.55)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 22px),
    #2f3d35;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.7;
}

.hero-bg span {
  position: absolute;
  width: 38vw;
  height: 22vw;
  border: 1px solid rgba(255, 250, 241, 0.16);
  transform: rotate(-12deg);
}

.hero-bg span:nth-child(1) {
  right: 3%;
  top: 14%;
  background: rgba(183, 82, 46, 0.16);
}

.hero-bg span:nth-child(2) {
  right: 15%;
  bottom: 9%;
}

.hero-bg span:nth-child(3) {
  right: -8%;
  top: 45%;
  background: rgba(255, 250, 241, 0.08);
}

.hero-inner {
  position: relative;
  width: min(760px, 100%);
  animation: rise 0.7s ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

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


.hero-summary {
  max-width: 680px;
  margin-top: 30px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.08);
  backdrop-filter: blur(8px);
}

.hero-summary h2 {
  margin-bottom: 16px;
  color: var(--surface);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
}

.hero-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-summary li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 250, 241, 0.88);
  font-size: 17px;
}

.hero-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.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: 900;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

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

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

.btn.secondary {
  color: var(--surface);
  border-color: rgba(255, 250, 241, 0.5);
  background: rgba(255, 250, 241, 0.08);
}

.page-hero .btn.secondary,
.request-box .btn.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.btn.light {
  background: var(--surface);
  color: var(--accent-dark);
}

.section,
.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

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

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.intro,
.section-lead,
.trust-band,
.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

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

.text-link,
.large-link {
  color: var(--accent-dark);
  font-weight: 900;
}

.service-grid,
.steps-grid,
.contact-grid,
.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-grid article,
.steps-grid div,
.contact-grid article,
.service-list article,
.request-box,
.fact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(42, 35, 26, 0.06);
}

.service-grid article,
.steps-grid div,
.contact-grid article,
.service-list article,
.fact-panel {
  padding: 25px;
}

.service-grid article {
  min-height: 260px;
}

.service-grid span,
.steps-grid strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 7px;
  color: var(--surface);
  background: var(--deep);
  font-weight: 900;
}

.service-grid p,
.steps-grid p,
.service-list p,
.contact-grid p,
.about-layout p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

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

.trust-band {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto;
  padding: 48px;
  color: var(--surface);
  background: var(--deep);
  border-radius: 8px;
}

.trust-band p:last-child {
  color: rgba(255, 250, 241, 0.78);
  font-size: 18px;
}

.request-box {
  padding: clamp(22px, 4vw, 38px);
}

.quick-request .section-lead {
  margin-bottom: 30px;
}

label {
  display: block;
  margin: 16px 0 6px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

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

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

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

.service-list {
  grid-template-columns: repeat(2, 1fr);
}

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

.large-link {
  display: inline-block;
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 32px);
}

.fact-panel dl {
  margin: 0;
}

.fact-panel dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-panel dd {
  margin: 0 0 16px;
  font-weight: 900;
}

.final-cta {
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: 70px 20px;
  color: var(--surface);
  text-align: center;
  background:
    linear-gradient(105deg, rgba(28, 36, 33, 0.96), rgba(47, 61, 53, 0.9)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 28px);
}

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

.final-cta p {
  color: rgba(255, 250, 241, 0.78);
  font-size: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(20px, 6vw, 72px);
  color: var(--surface);
  background: #1b221f;
}

.site-footer a,
.site-footer strong {
  display: block;
}

.site-footer a {
  color: rgba(255, 250, 241, 0.78);
  text-decoration: none;
}

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

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

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .main-nav a {
    min-height: 46px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding: 28px 20px 38px;
  }

  .hero-inner {
    padding-top: 12px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .request-actions {
    flex-direction: column;
  }
  .hero-summary {
    margin-top: 24px;
    padding: 22px 22px;
  }

  .hero-summary li {
    font-size: 16px;
  }


  
.hero-summary {
  max-width: 680px;
  margin-top: 30px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.08);
  backdrop-filter: blur(8px);
}

.hero-summary h2 {
  margin-bottom: 16px;
  color: var(--surface);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
}

.hero-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-summary li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 250, 241, 0.88);
  font-size: 17px;
}

.hero-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.btn {
    width: 100%;
  }

  .section,
  .page-hero {
    width: min(100% - 32px, 1180px);
    padding: 58px 0;
  }

  .intro,
  .section-lead,
  .trust-band,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-grid,
  .steps-grid,
  .contact-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

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

  .service-grid span,
  .steps-grid strong {
    margin-bottom: 18px;
  }

  .trust-band {
    width: min(100% - 32px, 1180px);
    padding: 30px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 34px;
  }
  .hero-summary {
    margin-top: 22px;
    padding: 20px;
  }

  .hero-summary h2 {
    font-size: 24px;
  }


  .hero-inner {
    padding-top: 0;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }
}
