:root {
  --ink: #151515;
  --ink-soft: #242424;
  --paper: #ffffff;
  --mist: #f4f5f5;
  --line: #dfe2e3;
  --accent: #f5a400;
  --accent-dark: #865300;
  --muted: #5d6468;
  --max: 1180px;
  --shadow: 0 18px 55px rgba(15, 20, 22, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: #000;
  background: var(--accent);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 3px;
  background: var(--accent);
  content: "";
}

h1, h2, h3 {
  margin: 0;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(2.45rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.85rem); }
p { margin: 0 0 1rem; }

.topbar {
  color: #fff;
  background: #0b0b0b;
  font-size: 0.9rem;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.4rem;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.topbar a:hover, .topbar a:focus-visible { color: var(--accent); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.brand { flex: 0 1 310px; }
.brand img { width: min(100%, 285px); height: auto; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle svg { width: 23px; }

.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav a {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  border-radius: 999px;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { background: #fff2d4; }
.site-nav .nav-cta { margin-left: 0.5rem; color: #111; background: var(--accent); }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { background: #ffb719; }

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #111 url("images/hero.jpg") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 10, 13, 0.92) 0%, rgba(4, 10, 13, 0.72) 48%, rgba(4, 10, 13, 0.12) 80%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -5vw;
  bottom: -8rem;
  width: 38vw;
  height: 15rem;
  background: var(--accent);
  transform: skewY(-10deg);
  content: "";
}

.hero__content { max-width: 780px; padding-block: 7rem; }
.hero .eyebrow { color: var(--accent); }
.page-hero .eyebrow, .contact-panel .eyebrow { color: var(--accent); }
.hero__lead {
  max-width: 650px;
  margin: 1.6rem 0 2rem;
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.hero__actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  color: #111;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 3px;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover, .button:focus-visible { background: #ffb719; transform: translateY(-2px); }
.button--ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,0.55); }
.button--ghost:hover, .button--ghost:focus-visible { color: #111; background: #fff; border-color: #fff; }
.button--dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.button--dark:hover, .button--dark:focus-visible { color: #111; background: #fff; border-color: #fff; }

.hero__facts {
  position: absolute;
  right: max(1rem, calc((100vw - var(--max)) / 2));
  bottom: 2rem;
  display: flex;
  gap: 0.75rem;
}

.fact {
  min-width: 150px;
  padding: 1rem 1.1rem;
  color: #fff;
  background: rgba(14,14,14,0.82);
  border-left: 4px solid var(--accent);
  backdrop-filter: blur(8px);
}

.fact strong { display: block; font-size: 1.35rem; }
.fact span { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

.section { padding-block: clamp(4.5rem, 8vw, 7.5rem); }
.section--muted { background: var(--mist); }
.section-head {
  max-width: 760px;
  margin-bottom: 3rem;
}
.section-head p:last-child { margin-top: 1.2rem; color: var(--muted); font-size: 1.08rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-card {
  position: relative;
  min-height: 490px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #222;
  box-shadow: var(--shadow);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover img { transform: scale(1.04); }

.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(8,10,11,0.92) 92%);
  content: "";
}

.service-card__body { position: relative; z-index: 1; padding: 1.6rem; }
.service-card__number { color: var(--accent); font-weight: 850; }
.service-card h3 { margin: 0.25rem 0 0.75rem; }
.service-card p { color: rgba(255,255,255,0.78); }
.service-card a { font-weight: 800; text-decoration-color: var(--accent); text-underline-offset: 5px; }

.service-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 1.2rem;
  border: 1px solid var(--line);
}

.service-links a {
  padding: 1.1rem;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid var(--line);
}
.service-links a:last-child { border: 0; }
.service-links a:hover, .service-links a:focus-visible { background: #fff2d4; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.split__image { position: relative; }
.split__image img { width: 100%; min-height: 470px; object-fit: cover; box-shadow: var(--shadow); }
.split__image::after {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 55%;
  height: 55%;
  z-index: -1;
  background: var(--accent);
  content: "";
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.check-list li::before { color: var(--accent-dark); font-weight: 900; content: "✓"; }

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.areas span,
.areas a {
  padding: 0.5rem 0.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.areas a { text-decoration: none; }
.areas a:hover, .areas a:focus-visible { background: #fff2d4; border-color: var(--accent); }
.section-action { margin-top: 2rem; }
.footer-region { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-block: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.breadcrumbs a { color: var(--ink); text-underline-offset: 3px; }

.detail-hero,
.local-hero { color: #fff; background: var(--ink); }
.detail-hero__grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.detail-hero h1, .local-hero h1 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
.detail-hero p:not(.eyebrow), .local-hero p:not(.eyebrow) { max-width: 720px; margin: 1.4rem 0 2rem; color: rgba(255,255,255,0.8); font-size: 1.12rem; }
.detail-hero__grid > img { width: 100%; min-height: 390px; aspect-ratio: 13/10; object-fit: cover; box-shadow: 18px 18px 0 var(--accent); }
.local-hero { position: relative; isolation: isolate; overflow: hidden; }
.local-hero::after { position: absolute; z-index: -1; right: -6vw; bottom: -8rem; width: 42vw; height: 15rem; background: var(--accent); transform: rotate(-8deg); content: ""; }
.local-hero__content { min-height: 520px; display: grid; align-content: center; padding-block: clamp(4rem, 8vw, 7rem); }
.local-hero__content > p { max-width: 760px; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); align-items: start; gap: clamp(2.5rem, 7vw, 7rem); }
.prose { max-width: 760px; }
.prose h2, .narrow h2 { margin-bottom: 1.4rem; }
.prose h3 { margin: 2rem 0 0.8rem; }
.prose p, .narrow p { color: #343a3d; font-size: 1.06rem; }
.prose a, .narrow a { color: #7a4b00; font-weight: 750; text-underline-offset: 3px; }
.narrow { max-width: 820px; }
.info-card { position: sticky; top: 9rem; padding: clamp(1.6rem, 4vw, 2.6rem); color: #fff; background: var(--ink); box-shadow: var(--shadow); }
.info-card h2 { margin-bottom: 1rem; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.info-card p:not(.eyebrow) { margin-bottom: 1.7rem; color: rgba(255,255,255,0.76); }

.steps { counter-reset: workstep; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 0; padding: 0; list-style: none; }
.steps li { min-height: 180px; padding: 1.5rem; background: #fff; border-top: 5px solid var(--accent); box-shadow: 0 10px 30px rgba(15,20,22,0.07); }
.steps li::before { counter-increment: workstep; display: block; margin-bottom: 1rem; color: var(--accent-dark); font-size: 1.65rem; font-weight: 900; content: "0" counter(workstep); }

.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
.area-card { min-height: 175px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.35rem; color: var(--ink); background: #fff; border: 1px solid var(--line); text-decoration: none; transition: transform 180ms ease, border-color 180ms ease; }
.area-card:hover, .area-card:focus-visible { border-color: var(--accent); transform: translateY(-3px); }
.area-card span { color: var(--muted); font-size: 0.78rem; font-weight: 750; text-transform: uppercase; letter-spacing: 0.08em; }
.area-card strong { margin: 0.3rem 0 1rem; font-size: 1.28rem; line-height: 1.15; }
.area-card em { color: var(--accent-dark); font-size: 0.9rem; font-style: normal; font-weight: 800; }

.cta-band { color: #111; background: var(--accent); }
.cta-band__inner {
  min-height: 255px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 3rem;
}
.cta-band h2 { max-width: 700px; }
.cta-band p { margin: 0.7rem 0 0; font-weight: 650; }

.site-footer { color: rgba(255,255,255,0.75); background: #111; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-block: 4rem;
}
.footer-logo { width: 230px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.site-footer h2 { margin-bottom: 1rem; color: #fff; font-size: 1rem; letter-spacing: 0; }
.footer-links { display: grid; gap: 0.55rem; }
.footer-links a { width: fit-content; text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--accent); }
.footer-contact a { color: #fff; font-weight: 800; text-decoration: none; }
.footer-bottom { padding-block: 1.1rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.82rem; }

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 1rem;
  bottom: 1rem;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #128c4a;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-whatsapp svg { width: 34px; height: 34px; }
.floating-whatsapp:hover, .floating-whatsapp:focus-visible { background: #0d713b; transform: translateY(-3px) scale(1.04); }

.page-hero {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
  color: #fff;
  background: #141414;
}
.page-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: url("images/subheader.png") center / cover;
  content: "";
}
.page-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -9rem;
  width: 42vw;
  height: 18rem;
  background: var(--accent);
  transform: rotate(-8deg);
  content: "";
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { max-width: 650px; margin-top: 1.2rem; color: rgba(255,255,255,0.78); font-size: 1.15rem; }

.legal { max-width: 900px; }
.legal h2 { margin: 2.4rem 0 1rem; font-size: 1.45rem; letter-spacing: -0.015em; }
.legal p, .legal li { color: #343a3d; }
.legal a { color: #8f5a00; }
.legal-note { padding: 1rem 1.2rem; background: #fff6df; border-left: 4px solid var(--accent); }

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}
.service-detail:nth-child(even) .service-detail__media { order: 2; }
.service-detail__media img { width: 100%; aspect-ratio: 13/9; object-fit: cover; box-shadow: var(--shadow); }
.service-detail__index { color: var(--accent-dark); font-weight: 900; letter-spacing: 0.12em; }
.service-detail h2 { margin: 0.7rem 0 1.2rem; font-size: clamp(2rem, 4vw, 3.2rem); }
.service-detail p { color: var(--muted); font-size: 1.05rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2rem, 6vw, 5rem);
}
.contact-panel { padding: 2rem; color: #fff; background: var(--ink); }
.contact-panel h2 { margin-bottom: 1rem; font-size: 2.2rem; }
.contact-list { display: grid; gap: 1.4rem; margin-top: 2rem; }
.contact-item small { display: block; color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: 0.11em; }
.contact-item a { color: #fff; font-size: 1.1rem; font-weight: 750; text-decoration: none; }
.contact-item address { font-style: normal; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field--full, .form-actions, .form-status, .consent { grid-column: 1 / -1; }
.field label { font-weight: 750; }
.field input, .field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #b8bec1;
  border-radius: 2px;
}
.field input:focus, .field textarea:focus { outline: 3px solid rgba(245,164,0,0.28); border-color: var(--accent-dark); }
.field textarea { min-height: 155px; resize: vertical; }
.consent { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.9rem; }
.consent input { width: 20px; height: 20px; margin-top: 0.15rem; accent-color: var(--accent-dark); }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-status { min-height: 1.6rem; color: #6c4600; font-weight: 700; }

.whatsapp-card {
  min-height: 100%;
  display: grid;
  place-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
  background: linear-gradient(145deg, #0b2f1b 0%, #128c4a 100%);
  box-shadow: var(--shadow);
}

.whatsapp-card h2 { margin-bottom: 1rem; }
.whatsapp-card p { max-width: 540px; color: rgba(255,255,255,0.86); font-size: 1.08rem; }
.whatsapp-card__tips { margin: 1.4rem 0 2rem; padding-left: 1.2rem; color: rgba(255,255,255,0.82); }

.button--whatsapp {
  width: fit-content;
  color: #083b20;
  background: #fff;
  border-color: #fff;
}

.button--whatsapp svg { width: 24px; height: 24px; }
.button--whatsapp:hover, .button--whatsapp:focus-visible { color: #fff; background: #083b20; border-color: #083b20; }

@media (max-width: 900px) {
  .topbar__inner { justify-content: center; }
  .site-header__inner { flex-wrap: wrap; gap: 0; padding-top: 0.55rem; }
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem;
    padding: 0.5rem 0 0.75rem;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-nav a { padding: 0.55rem 0.35rem; text-align: center; border-radius: 2px; }
  .site-nav .nav-cta { grid-column: 1 / -1; margin: 0.35rem 0 0; text-align: center; }
  .hero { min-height: 610px; background-position: 62% center; }
  .hero__facts { display: none; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 390px; }
  .service-links { grid-template-columns: 1fr 1fr; }
  .service-links a { border-bottom: 1px solid var(--line); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-hero__grid, .content-grid { grid-template-columns: 1fr; }
  .detail-hero__grid > img { min-height: 320px; }
  .info-card { position: static; }
  .area-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 1.4rem), var(--max)); }
  .topbar__inner { min-height: 38px; gap: 0.75rem; font-size: 0.75rem; }
  .topbar__label { display: none; }
  .site-header__inner { min-height: 76px; }
  .brand img { width: 225px; }
  .hero { min-height: 610px; align-items: end; background-position: 65% center; }
  .hero::before { background: linear-gradient(0deg, rgba(4,10,13,0.96) 0%, rgba(4,10,13,0.62) 70%, rgba(4,10,13,0.25) 100%); }
  .hero::after { width: 65vw; }
  .hero__content { padding: 6rem 0 4rem; }
  .hero__actions .button { flex: 1 1 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { min-height: 420px; grid-column: auto; }
  .service-links { grid-template-columns: 1fr; }
  .service-links a { border-right: 0; }
  .split__image img { min-height: 330px; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail__media { order: initial; }
  .contact-form { grid-template-columns: 1fr; }
  .field { grid-column: 1 / -1; }
  .site-nav a { font-size: 0.82rem; }
  .detail-hero__grid > img { min-height: 260px; box-shadow: 9px 9px 0 var(--accent); }
  .steps, .area-grid { grid-template-columns: 1fr; }
}

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