@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #101820;
  --ink-2: #123f42;
  --text: #26333d;
  --muted: #66717a;
  --line: #ddd7ce;
  --paper: #f6f3ee;
  --white: #ffffff;
  --signal: #f28c28;
  --signal-dark: #b75d12;
  --green: #0f766e;
  --shadow: 0 20px 54px rgba(16, 24, 32, 0.15);
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}
.site-header.solid,
.site-header.is-scrolled {
  background: rgba(16, 24, 32, 0.96);
  box-shadow: 0 10px 34px rgba(8, 25, 40, 0.2);
  backdrop-filter: blur(12px);
}
.top-bar {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  font-weight: 700;
}
.nav-bar {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 22px;
}
.brand { width: 252px; min-width: 252px; display: inline-flex; }
.brand img { display: block; width: 100%; height: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.desktop-nav a { color: rgba(255,255,255,0.8); }
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--white); }
.site-search {
  display: flex;
  width: 200px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.12);
}
.site-search input,
.mobile-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  outline: 0;
  padding: 0 10px;
}
.site-search input::placeholder,
.mobile-search input::placeholder { color: rgba(255,255,255,0.68); }
.site-search button,
.mobile-search button {
  border: 0;
  background: var(--signal);
  color: #17120a;
  font-weight: 900;
  cursor: pointer;
  padding: 0 12px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}
.mobile-nav {
  position: fixed;
  inset: 112px 16px auto;
  z-index: 28;
  display: none;
  padding: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.mobile-nav.is-open { display: grid; }
.mobile-nav a {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}
.mobile-search {
  display: flex;
  min-height: 44px;
  margin-top: 12px;
  background: var(--ink);
  color: var(--white);
}

.home-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
}
.home-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-yard.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}
.home-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,24,32,0.96), rgba(18,63,66,0.78) 45%, rgba(18,63,66,0.14));
}
.home-hero-content {
  position: relative;
  display: grid;
  min-height: 760px;
  align-content: end;
  max-width: 860px;
  padding: 170px clamp(20px,4vw,56px) 76px;
}
.page-main { padding-top: 118px; }
.page-hero {
  padding: 76px clamp(20px,4vw,56px) 64px;
  background:
    linear-gradient(135deg, rgba(16,24,32,0.98), rgba(18,63,66,0.96)),
    var(--ink);
  color: var(--white);
}
.page-hero.compact { padding-bottom: 52px; }
.page-hero p:not(.eyebrow),
.home-hero-content p:not(.eyebrow) {
  max-width: 710px;
  color: rgba(255,255,255,0.78);
  font-size: 19px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .btn, .quick-stats strong {
  font-family: "Barlow", Arial, Helvetica, sans-serif;
}
h1 { max-width: 900px; margin-bottom: 20px; font-size: clamp(42px,6vw,76px); line-height: 1; font-weight: 900; }
h2 { margin-bottom: 16px; font-size: clamp(30px,4vw,50px); line-height: 1.05; font-weight: 800; }
h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.2; font-weight: 800; }

.section { padding: 86px clamp(20px,4vw,56px); }
.split-intro,
.story-layout,
.section-title-row,
.cta-band {
  display: grid;
  grid-template-columns: minmax(0,0.9fr) minmax(300px,0.85fr);
  gap: clamp(28px,5vw,76px);
  align-items: start;
}
.lead-copy { color: var(--text); font-size: 18px; }
.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--signal-dark);
  font-weight: 900;
}
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  font-weight: 900;
}
.btn.primary { background: var(--signal); color: #17120a; }
.btn.secondary { border: 1px solid rgba(255,255,255,0.45); color: var(--white); }
.btn.dark { background: var(--ink); color: var(--white); }
.btn.dark-outline { border-color: rgba(11,31,51,0.34); color: var(--ink); }
.hero-actions,
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.home-service-chooser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.home-service-chooser a {
  display: grid;
  min-height: 190px;
  align-content: end;
  padding: 28px clamp(20px,3vw,38px);
  background: var(--white);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.home-service-chooser a:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.home-service-chooser span {
  color: var(--signal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-service-chooser strong {
  margin-top: 10px;
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  font-size: 27px;
  line-height: 1.08;
}
.home-service-chooser small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.home-service-chooser a:hover small,
.home-service-chooser a:hover span { color: rgba(255,255,255,0.72); }

.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--white);
}
.quick-stats.light { background: var(--white); color: var(--ink); }
.quick-stats div {
  min-height: 112px;
  padding: 24px clamp(18px,3vw,42px);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.quick-stats.light div { border-color: var(--line); }
.quick-stats span {
  display: block;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.quick-stats strong { display: block; margin-top: 6px; font-size: 22px; }
.quick-stats small {
  display: block;
  max-width: 240px;
  margin-top: 8px;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}
.home-proof div { min-height: 138px; }

.home-about {
  display: grid;
  grid-template-columns: minmax(0,0.9fr) minmax(320px,0.72fr);
  gap: clamp(30px,5vw,74px);
  align-items: stretch;
  background: var(--paper);
}
.home-about-copy { max-width: 780px; }
.home-about-copy p:not(.section-kicker) {
  color: var(--text);
  font-size: 18px;
}
.home-about-panel {
  display: grid;
  gap: 1px;
  background: var(--line);
  box-shadow: var(--shadow);
}
.home-about-panel div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  background: var(--white);
}
.home-about-panel strong {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: var(--signal);
  color: #17120a;
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  font-weight: 900;
}
.home-about-panel span {
  color: var(--text);
  font-weight: 800;
}

.service-preview,
.references-page,
.values { background: var(--white); }
.card-grid { display: grid; gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.info-card,
.process-band article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fbfcfc;
}
.info-card span,
.service-detail span,
.process-band strong {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 52px;
  place-items: center;
  background: var(--signal);
  color: #17120a;
  font-weight: 900;
}
.info-card p,
.service-detail p,
.process-band p { color: var(--muted); }
.info-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--signal-dark);
  font-weight: 900;
}
.service-preview.refined .info-card {
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16,24,32,0.06);
}

.reference-strip {
  display: grid;
  grid-template-columns: minmax(0,0.8fr) minmax(360px,1fr);
  gap: 38px;
  align-items: center;
  padding: 78px clamp(20px,4vw,56px);
  background: #ebe7df;
}
.reference-strip p:not(.section-kicker) {
  max-width: 680px;
  color: var(--text);
  font-size: 17px;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.logo-row img,
.reference-card img {
  display: block;
  width: 100%;
  max-height: 104px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.82;
}
.logo-row img {
  min-height: 112px;
  padding: 22px;
  background: var(--white);
}
.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reference-card {
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 30px;
  border: 1px solid rgba(11,31,51,0.08);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(9,30,50,0.08);
}
.reference-card:hover img,
.logo-row img:hover { filter: grayscale(0); opacity: 1; }

.cta-band {
  padding: 78px clamp(20px,4vw,56px);
  background: #e7eee9;
}
.service-detail-list {
  display: grid;
  gap: 18px;
  background: var(--white);
}
.service-detail {
  display: grid;
  grid-template-columns: minmax(250px,0.8fr) minmax(320px,1fr);
  gap: 36px;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fbfcfc;
}
.service-detail ul { margin: 20px 0 24px; padding-left: 20px; color: var(--text); }
.process-band {
  background:
    linear-gradient(135deg, var(--ink), #143f42);
  color: var(--white);
}
.process-band .section-kicker { margin-bottom: 28px; }
.process-band article { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }
.process-band p { color: rgba(255,255,255,0.72); }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px,1fr) minmax(280px,0.58fr);
  gap: 18px;
  padding: 56px clamp(20px,4vw,56px) 90px;
}
.contact-map {
  min-height: 460px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}
.contact-info,
.contact-form {
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-info {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 30px;
}
.contact-info address {
  margin: 0 0 12px;
  color: var(--text);
  font-style: normal;
}
.contact-info a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  background: var(--paper);
  font-weight: 900;
}
.contact-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 30px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}
.contact-form .full,
.contact-form button,
.form-status { grid-column: 1 / -1; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfcfc;
  color: var(--ink);
  font: inherit;
  outline: 0;
}
.contact-form input { min-height: 46px; padding: 0 12px; }
.contact-form textarea { resize: vertical; padding: 12px; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(217,164,65,0.2);
}
.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}
.turnstile-wrap {
  display: flex;
  min-height: 70px;
  align-items: center;
}
.contact-form .consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}
.contact-form button {
  min-height: 48px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}
.contact-form button:disabled { cursor: wait; opacity: 0.68; }
.form-status { min-height: 22px; margin: 0; color: var(--text); font-size: 14px; font-weight: 800; }
.form-status.is-success { color: var(--green); }
.form-status.is-error { color: #a43424; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px,4vw,56px);
  background: #101820;
  color: rgba(255,255,255,0.72);
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--white); font-weight: 900; }
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 12px;
  background: #13a05f;
  color: var(--white);
  box-shadow: 0 16px 42px rgba(8,25,40,0.26);
  font-size: 15px;
  font-weight: 900;
}
.whatsapp-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid rgba(255,255,255,0.82);
  border-radius: 50%;
  font-size: 11px;
}

@media (max-width: 1180px) {
  .desktop-nav,
  .site-search { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .split-intro,
  .story-layout,
  .section-title-row,
  .cta-band,
  .reference-strip,
  .home-about,
  .service-detail,
  .contact-layout { grid-template-columns: 1fr; }
  .card-grid.three,
  .card-grid.four,
  .reference-grid,
  .logo-row,
  .home-service-chooser,
  .quick-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-form { grid-column: auto; }
}

@media (max-width: 640px) {
  .site-header { padding: 0 18px; }
  .top-bar {
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 12px;
  }
  .nav-bar { min-height: 68px; }
  .brand { width: 214px; min-width: 214px; }
  .mobile-nav { inset: 104px 16px auto; }
  .home-hero,
  .home-hero-content { min-height: 780px; }
  .home-hero-content { padding: 148px 18px 42px; }
  .page-main { padding-top: 104px; }
  .page-hero,
  .section,
  .reference-strip,
  .cta-band,
  .contact-layout { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .card-grid.three,
  .card-grid.four,
  .reference-grid,
  .logo-row,
  .home-service-chooser,
  .quick-stats,
  .contact-form { grid-template-columns: 1fr; }
  .quick-stats div { min-height: 96px; }
  .info-card span,
  .service-detail span,
  .process-band strong { margin-bottom: 32px; }
  .service-detail,
  .contact-form,
  .contact-info { padding: 22px; }
  .contact-map,
  .contact-map iframe { min-height: 320px; }
  .site-footer { flex-direction: column; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 10px 14px 10px 10px;
  }
}
