
:root {
  --green: #183f2b;
  --green-dark: #0d261a;
  --green-deep: #07180f;
  --green-light: #dfe8de;
  --cream: #f4f2e8;
  --white: #ffffff;
  --ink: #152019;
  --muted: #667168;
  --line: rgba(21,32,25,.12);
  --shadow: 0 18px 50px rgba(13,38,26,.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #faf9f4;
  line-height: 1.6;
  overflow-x: hidden;
}

img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(20px,5vw,72px);
  color: white;
  transition: .3s ease;
}

.site-header.scrolled {
  background: rgba(250,249,244,.94);
  color: var(--ink);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(21,32,25,.08);
}

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

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #b8d7a9;
  color: var(--green-dark);
  border-radius: 50%;
  font: 800 10px/1 "Manrope", sans-serif;
  letter-spacing: -.03em;
}

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

.brand-text strong {
  font: 800 15px/1.1 "Manrope", sans-serif;
}

.brand-text small {
  font-size: 11px;
  margin-top: 3px;
  opacity: .75;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a { transition: opacity .2s ease, transform .2s ease; }
.nav-links a:hover { opacity: .7; transform: translateY(-1px); }

.nav-cta {
  border: 1px solid currentColor;
  padding: 10px 16px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.hero-bg, .contact-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  transition: transform 8s ease;
}

.hero:hover .hero-bg, .contact:hover .contact-bg { transform: scale(1.08); }

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=2200&q=90");
}

.hero-overlay, .contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(7,24,15,.8),rgba(7,24,15,.42) 55%,rgba(7,24,15,.14));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(930px,100%);
  padding: 170px clamp(20px,7vw,110px) 100px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .82;
}

.eyebrow.dark { color: var(--green); opacity: 1; }

h1,h2,h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.06;
  margin: 0;
  letter-spacing: -.045em;
}

h1 { font-size: clamp(54px,8vw,124px); }
h1 span { color: #cce0c4; }

.hero-copy {
  max-width: 680px;
  font-size: clamp(17px,2vw,22px);
  margin: 28px 0 34px;
  color: rgba(255,255,255,.86);
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover { transform: translateY(-3px) scale(1.02); }

.button-primary {
  background: #c7e0ba;
  color: var(--green-dark);
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.button-secondary {
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.08);
  color: white;
  backdrop-filter: blur(10px);
}

.button-dark {
  background: var(--green-dark);
  color: white;
  width: 100%;
  margin-top: 20px;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: clamp(20px,6vw,90px);
  bottom: 90px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(244,242,232,.94);
  color: var(--green-dark);
  display: grid;
  align-content: center;
  justify-items: center;
  box-shadow: var(--shadow);
  transition: transform .35s ease;
}

.hero-badge:hover { transform: scale(1.08) rotate(-3deg); }
.badge-number { font: 800 35px/1 "Manrope", sans-serif; }

.badge-copy {
  width: 100px;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 7px;
  font-weight: 600;
}

.trust-strip {
  background: var(--green-dark);
  color: white;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  padding: 0 clamp(20px,5vw,72px);
}

.trust-item {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.11);
  display: grid;
  gap: 2px;
}

.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { font-family: "Manrope",sans-serif; }
.trust-item span { color: rgba(255,255,255,.63); font-size: 13px; }

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

.intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: start;
  padding: 120px 0 95px;
}

.section-heading h2, .section-top h2, .pricing h2, .contact h2 {
  font-size: clamp(38px,5.1vw,72px);
}

.section-copy {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
}

.section-copy p:first-child { margin-top: 0; }

.services { padding: 25px 0 120px; }

.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-top > p {
  margin: 0;
  color: var(--muted);
  max-width: 430px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 0 0 1px rgba(21,32,25,.07);
  transition: transform .35s ease, box-shadow .35s ease;
}

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

.service-image { overflow: hidden; aspect-ratio: 16/9; }

.service-image img, .work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.service-card:hover img, .work-card:hover img { transform: scale(1.08); }

.service-content { padding: 26px 28px 28px; }
.service-content > span { color: #7d8d81; font-size: 12px; font-weight: 700; }
.service-content h3 { font-size: 30px; margin: 8px 0 10px; }
.service-content p { color: var(--muted); margin: 0 0 13px; }

.service-content ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: #4f5e53;
  font-size: 14px;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.card-bottom strong { color: var(--green); white-space: nowrap; }

.text-button {
  border: 0;
  background: none;
  color: var(--green);
  padding: 0;
  cursor: pointer;
  font-weight: 700;
  text-align: right;
}

.text-button:hover { text-decoration: underline; }

.work-section {
  background: var(--green-dark);
  color: white;
  padding: 115px 0;
}

.section-top.light > p { color: rgba(255,255,255,.58); }

.work-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2,320px);
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  min-height: 260px;
}

.work-card-large { grid-row: 1/3; }

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 45%,rgba(5,18,11,.68));
  pointer-events: none;
}

.work-card figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  display: grid;
  gap: 2px;
}

.work-card figcaption span { font: 700 20px/1.1 "Manrope",sans-serif; }
.work-card figcaption small { color: rgba(255,255,255,.68); }

.pricing {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
  padding: 120px 0;
}

.pricing-copy > p {
  color: var(--muted);
  font-size: 18px;
  max-width: 520px;
}

.pricing-note {
  border-left: 3px solid var(--green);
  padding-left: 16px;
  font-size: 14px !important;
}

.price-panel {
  background: var(--cream);
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 0 0 1px rgba(21,32,25,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.price-panel:hover { transform: scale(1.015); box-shadow: var(--shadow); }

.price-main {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.price-main > span { display: block; color: var(--muted); font-weight: 600; }

.price-main strong {
  display: block;
  font: 800 clamp(58px,8vw,100px)/1 "Manrope",sans-serif;
  letter-spacing: -.07em;
  color: var(--green);
  margin: 5px 0;
}

.price-main small { color: var(--muted); }
.price-lines { padding-top: 18px; }

.price-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-lines > div:last-child { border-bottom: 0; }

.process { padding: 20px 0 120px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
}

.step {
  padding: 32px 30px 10px 0;
  border-right: 1px solid var(--line);
}

.step + .step { padding-left: 30px; }
.step:last-child { border-right: 0; }

.step > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 42px;
}

.step h3 { font-size: 26px; margin-bottom: 10px; }
.step p { margin: 0; color: var(--muted); }

.faq { padding: 20px 0 120px; }
.faq .section-heading { max-width: 650px; margin-bottom: 42px; }

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 25px 46px 25px 0;
  font: 700 21px/1.25 "Manrope",sans-serif;
  position: relative;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 21px;
  font-size: 30px;
  font-weight: 400;
  color: var(--green);
}

.faq details[open] summary::after { content: "–"; }

.faq details p {
  color: var(--muted);
  max-width: 800px;
  margin: -4px 0 25px;
}

.contact {
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 760px;
}

.contact-bg {
  background-image: url("https://images.unsplash.com/photo-1558036117-15d82a90b9b1?auto=format&fit=crop&w=2200&q=90");
}

.contact-overlay { background: rgba(7,24,15,.76); }

.contact-inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 70px;
  align-items: center;
  padding: 100px 0;
}

.contact-copy p:last-child {
  color: rgba(255,255,255,.72);
  font-size: 18px;
  max-width: 520px;
}

.quote-form {
  padding: 32px;
  background: rgba(255,255,255,.97);
  color: var(--ink);
  border-radius: 26px;
  box-shadow: 0 25px 70px rgba(0,0,0,.24);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
}

.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid #d9ded9;
  background: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  border-color: #8db087;
  box-shadow: 0 0 0 4px rgba(141,176,135,.16);
}

.quote-form textarea { resize: vertical; }

.checkbox-row {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  gap: 10px !important;
  font-weight: 500 !important;
}

.checkbox-row input { width: 16px; height: 16px; margin-top: 3px; }

.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 10px 0 0;
}

.footer {
  background: var(--green-deep);
  color: white;
  padding: 52px clamp(20px,5vw,72px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.footer-brand { margin-bottom: 16px; }
.footer p { color: rgba(255,255,255,.55); margin: 0; }

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

.copyright {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 950px) {
  .site-header { min-height: 68px; }
  .menu-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border-radius: 18px;
    background: rgba(250,249,244,.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 8px; }

  .hero-content { padding-bottom: 190px; }
  .hero-badge { width: 120px; height: 120px; bottom: 48px; }

  .trust-strip { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child {
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.11);
  }
  .trust-item:last-child { border-bottom: 0; }

  .intro, .pricing, .contact-inner, .area-card { grid-template-columns: 1fr; gap: 38px; }
  .service-grid, .work-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-rows: none; }
  .work-card, .work-card-large { grid-row: auto; height: 360px; }

  .steps { grid-template-columns: 1fr; }
  .step, .step + .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }
  .step:last-child { border-bottom: 0; }
  .step > span { margin-bottom: 20px; }

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

  .area-card { padding: 26px; }
}


@media (max-width: 640px) {
  .brand-text strong { font-size: 13px; }
  .brand-text small { font-size: 9px; }

  h1 { font-size: clamp(47px,16vw,76px); }
  .hero { min-height: 820px; }
  .hero-content { padding: 130px 20px 215px; }
  .hero-copy { font-size: 17px; }
  .hero-badge { right: 20px; bottom: 48px; }

  .intro { padding-top: 86px; }
  .section-shell { width: min(100% - 28px,1180px); }

  .section-top { align-items: start; flex-direction: column; }
  .service-grid { grid-template-columns: 1fr; }
  .service-content { padding: 22px; }

  .card-bottom { align-items: flex-start; flex-direction: column; gap: 9px; }
  .text-button { text-align: left; }

  .work-section, .pricing, .process, .faq { padding-top: 86px; padding-bottom: 86px; }
  .work-card, .work-card-large { height: 300px; }

  .price-panel { padding: 24px; }
  .price-main strong { font-size: 58px; }

  .price-lines > div {
    align-items: start;
    flex-direction: column;
    gap: 2px;
  }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 22px; }
  .footer-links { flex-wrap: wrap; }
  .area-detail strong { font-size: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}


.nav-phone {
  border: 1px solid rgba(255,255,255,.22);
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.site-header.scrolled .nav-phone {
  border-color: rgba(21,32,25,.14);
}

.service-area {
  padding: 0 0 40px;
}

.area-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
  background: white;
  border-radius: 28px;
  box-shadow: 0 0 0 1px rgba(21,32,25,.06);
}

.area-copy p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 680px;
}

.area-details {
  display: grid;
  gap: 14px;
}

.area-detail {
  background: var(--cream);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 0 0 1px rgba(21,32,25,.05);
}

.area-detail span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 600;
}

.area-detail strong {
  font: 700 24px/1.2 "Manrope", sans-serif;
  color: var(--green-dark);
}

.contact-extra {
  color: rgba(255,255,255,.92) !important;
  font-size: 18px !important;
  line-height: 1.6;
}

.contact-extra a {
  color: #d9ebd2;
  font-weight: 700;
}

.footer-contact {
  display: inline-block;
  margin-top: 6px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}


.area-details a {
  color: inherit;
}

.area-detail a:hover {
  opacity: .82;
}

.contact-extra a:hover {
  opacity: .86;
}


.form-status {
  display: none;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
}

.form-status.success,
.form-status.error {
  display: grid;
  gap: 3px;
}

.form-status.success {
  background: #e8f3e3;
  color: #183f2b;
  border: 1px solid rgba(24, 63, 43, .16);
}

.form-status.error {
  background: #fff0ec;
  color: #762b1c;
  border: 1px solid rgba(118, 43, 28, .14);
}

.form-status strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.form-status span {
  opacity: .82;
}

#quote-submit:disabled {
  cursor: wait;
  opacity: .82;
}


/* H.L.P. custom logo */
.brand-mark {
  overflow: hidden;
  padding: 0;
  background: transparent;
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}


/* V15 logo cleanup */
.brand-mark {
  width: 52px !important;
  height: 52px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.brand-mark img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}


/* V16 transparent logo fix */
.brand-mark {
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.brand-mark img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}


/* V19 card image fixes */
.work-card img{display:block;width:100%;height:100%;object-fit:cover;}
.work-card:nth-child(1) img{object-position:center center;}
.work-card:nth-child(2) img{object-position:center top;}
.work-card:nth-child(3) img{object-position:center center;}
.service-card .service-image img{display:block;width:100%;height:100%;object-fit:cover;object-position:center;}
