:root {
  --green-950: #002d1e;
  --green-900: #003f2a;
  --green-800: #075333;
  --green-700: #0f6a43;
  --gold-600: #d49b1f;
  --gold-500: #e2b33d;
  --gold-200: #f8e5b3;
  --cream: #fff9ed;
  --ink: #111713;
  --muted: #5d655f;
  --line: rgba(212, 155, 31, .36);
  --shadow: 0 18px 55px rgba(0, 45, 30, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 0%, #fff 0, var(--cream) 38%, #fffaf0 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.section-pad { padding: 72px clamp(18px, 4vw, 54px); }
.anchor-target,
section[id],
.footer-art,
.contact-form {
  scroll-margin-top: 96px;
}
.anchor-target {
  display: block;
  height: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 249, 237, .88);
  border-bottom: 1px solid rgba(212, 155, 31, .18);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(1180px, 100%);
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand img {
  width: 170px;
  max-height: 76px;
  height: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-weight: 750;
  font-size: 14px;
}
.nav-links a { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--gold-600);
  transition: right .25s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-cta {
  padding: 15px 20px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-900), #005638);
  box-shadow: 0 12px 24px rgba(0, 63, 42, .22);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero-banner-section {
  padding: 22px clamp(12px, 2.5vw, 34px) 34px;
}
.hero-shell {
  position: relative;
  width: min(1500px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(212, 155, 31, .28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 45, 30, .16);
}
.hero-shell img {
  width: 100%;
  height: auto;
}
.banner-actions {
  position: absolute;
  left: clamp(24px, 4vw, 68px);
  bottom: clamp(24px, 4vw, 58px);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: bannerFloat .7s ease .25s both;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 710px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .94;
  letter-spacing: 0;
}
h1 span {
  display: block;
  color: var(--green-900);
  text-shadow: 0 8px 24px rgba(0, 63, 42, .13);
}
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 24px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-900), #006140);
  box-shadow: 0 14px 28px rgba(0, 63, 42, .25);
}
.btn-secondary {
  border: 1px solid var(--green-800);
  color: var(--green-950);
  background: rgba(255,255,255,.78);
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
}
.section-title span {
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600), transparent);
}
.section-title h2 {
  margin: 0;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
}
.section-title.light h2 { color: var(--gold-500); }
.category-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.category-card {
  min-height: 230px;
  padding: 20px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background: rgba(255,255,255,.58);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-600);
  box-shadow: var(--shadow);
}
.category-card img {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 12px 18px rgba(0, 45, 30, .12));
}
.category-card h3 { margin-bottom: 8px; font-size: 18px; }
.category-card p { margin: 0; line-height: 1.45; }

.job-tools {
  width: min(1120px, 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: 18px;
  align-items: end;
}
.search-box span {
  display: block;
  margin-bottom: 7px;
  color: var(--green-950);
  font-weight: 900;
}
.search-box input, .contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 63, 42, .18);
  border-radius: 8px;
  padding: 14px 15px;
  background: #fff;
  outline: 0;
}
.search-box input:focus, .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(212, 155, 31, .16);
}
.filter-group { display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.filter {
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--green-950);
  background: rgba(255,255,255,.75);
  cursor: pointer;
  font-weight: 850;
}
.filter.active { color: #fff; background: var(--green-900); border-color: var(--green-900); }
.jobs-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.job-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 30px rgba(0, 45, 30, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.job-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.job-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 750 / 492;
  object-fit: cover;
  background: var(--green-950);
}
.job-card h3 {
  margin: 0;
  padding: 10px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
}
.job-details {
  min-height: 246px;
  padding: 15px 16px 18px;
  display: grid;
  gap: 9px;
}
.job-details p { margin: 0; font-size: 14px; line-height: 1.35; }
.job-details b { color: var(--green-950); }
.job-card .btn {
  width: calc(100% - 32px);
  min-height: 42px;
  margin: 0 16px 16px;
  color: #111;
  background: linear-gradient(135deg, #f0c24e, var(--gold-600));
}
.empty-state {
  display: none;
  width: min(1120px, 100%);
  margin: 16px auto 0;
  color: var(--muted);
  text-align: center;
}

.why {
  padding: 0;
  background: var(--green-950);
}
.why-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.stats {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  padding: 26px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0,45,30,.08);
}
.stat strong {
  display: block;
  color: var(--green-900);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
}
.stat span { color: var(--muted); font-weight: 800; }

.process-art {
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  padding: 10px 0 12px;
  scrollbar-color: var(--gold-600) rgba(212, 155, 31, .16);
}
.process-art img {
  width: 100%;
  min-width: 980px;
  height: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 45, 30, .08);
}
.contact { padding-top: 34px; }
.footer-art {
  width: min(1120px, 100%);
  margin: 38px auto 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0,45,30,.16);
}
.footer-art img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.btn-whatsapp { color: #fff; background: #11a44d; }
.btn-call { color: var(--green-950); background: #fff; }
.contact-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
}
.contact-layout.single {
  width: min(760px, 100%);
  grid-template-columns: 1fr;
}
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 38px rgba(0,45,30,.08);
}
.contact-form {
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-intro,
.contact-form .form-wide,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}
.form-intro {
  margin-bottom: 6px;
}
.form-intro h2 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}
.form-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--green-950);
  font-weight: 900;
}
.phone-row {
  display: grid;
  grid-template-columns: minmax(130px, .45fr) 1fr;
  gap: 10px;
}
.form-status { margin: 0; color: var(--green-700); font-weight: 850; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #10a64d;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(16,166,77,.34);
  animation: pulse 2s infinite;
}
.footer {
  padding: 24px 18px;
  color: rgba(255,255,255,.78);
  background: var(--green-950);
  text-align: center;
}
.footer p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes bannerFloat {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1020px) {
  .category-grid, .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .nav { min-height: 74px; }
  .brand img { width: 126px; max-height: 62px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: grid;
    align-items: stretch;
    gap: 16px;
  }
  .nav-cta { text-align: center; }
  .section-pad { padding: 52px 18px; }
  .hero-banner-section { padding: 14px 10px 28px; }
  .hero-shell img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }
  .banner-actions {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    background: linear-gradient(135deg, var(--green-950), var(--green-800));
  }
  .banner-actions .btn {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 14px;
    white-space: nowrap;
  }
  .whatsapp-float {
    width: 48px;
    height: 48px;
    right: 14px;
    bottom: 14px;
    font-size: 22px;
  }
  .job-tools { grid-template-columns: 1fr; }
  .filter-group { justify-content: flex-start; }
  .category-grid, .jobs-grid, .stats, .contact-layout, .contact-form {
    grid-template-columns: 1fr;
  }
  .phone-row { grid-template-columns: 1fr; }
  .process-art img { min-width: 900px; }
}

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