:root {
  --ink: #17211d;
  --muted: #5c6762;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --line: rgba(23, 33, 29, 0.14);
  --forest: #13231f;
  --sage: #829b82;
  --copper: #b66f3d;
  --gold: #d8b15c;
  --shadow: 0 22px 60px rgba(14, 25, 22, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 68px);
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 18, 16, 0.86), rgba(10, 18, 16, 0.1));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  font-size: 0.95rem;
  font-weight: 650;
}

.main-nav a {
  opacity: 0.88;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding: 160px clamp(20px, 6vw, 84px) 64px;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 16, 14, 0.88), rgba(8, 16, 14, 0.52), rgba(8, 16, 14, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #101714;
  background: var(--gold);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 18px clamp(20px, 5vw, 68px);
  color: #fff;
  background: var(--forest);
}

.trust-band span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
}

.intro {
  max-width: 920px;
  text-align: center;
}

.intro p,
.section-heading p,
.split p,
.seo-content p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

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

.service-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-number {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--copper);
  font-weight: 900;
}

.service-card p,
.service-card li,
.faq p,
.steps span {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 24px 24px 24px 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.seo-section {
  padding: clamp(56px, 8vw, 92px) 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--forest), #263b33 58%, #6a4a31);
}

.seo-content {
  width: min(980px, 100%);
  margin: 0 auto;
}

.seo-content p {
  color: rgba(255, 255, 255, 0.82);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  padding: 0 22px 22px;
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 36px;
  align-items: center;
  padding: clamp(56px, 8vw, 90px) clamp(20px, 6vw, 84px);
  color: #fff;
  background: var(--forest);
}

.contact .section-kicker {
  color: var(--gold);
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.form-field {
  display: grid;
  width: 100%;
  gap: 7px;
}

.form-field label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-field input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(216, 177, 92, 0.18);
}

.form-field input.is-invalid {
  border-color: #ff9f8c;
  box-shadow: 0 0 0 3px rgba(255, 159, 140, 0.16);
}

.field-hint,
.field-error {
  min-height: 18px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.field-hint {
  color: rgba(255, 255, 255, 0.62);
}

.field-error {
  color: #ffd2c8;
  font-weight: 750;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 10px 20px 10px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: #0f6f43;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(8, 48, 31, 0.34);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.whatsapp-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.whatsapp-copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
  white-space: nowrap;
}

.whatsapp-copy strong {
  font-size: 1rem;
  font-weight: 900;
}

.whatsapp-copy small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  background: #0b5f38;
  box-shadow: 0 20px 42px rgba(8, 48, 31, 0.4);
}

.site-footer {
  padding: clamp(42px, 6vw, 68px) clamp(20px, 5vw, 68px) 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #0d1714;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(28px, 5vw, 56px);
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #fff;
  font-weight: 900;
}

.footer-brand p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column span,
.footer-column a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.footer-contact a {
  word-break: break-word;
}

.footer-whatsapp {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  margin-top: 4px;
  padding: 10px 13px;
  border-radius: 6px;
  color: #fff !important;
  background: #0f6f43;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, 100%);
  margin: 38px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.footer-bottom a {
  flex: 0 0 auto;
  color: var(--gold);
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .main-nav {
    max-width: 240px;
  }

  .hero {
    min-height: 82vh;
    padding-top: 180px;
  }

  .section-heading,
  .service-grid,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

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

  .main-nav {
    gap: 6px 12px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 150px 18px 44px;
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 54px;
    padding: 9px 16px 9px 10px;
  }

  .whatsapp-icon {
    width: 34px;
    height: 34px;
  }

  .whatsapp-icon svg {
    width: 19px;
    height: 19px;
  }

  .whatsapp-copy strong {
    font-size: 0.92rem;
  }

  .whatsapp-copy small {
    font-size: 0.72rem;
  }

  .trust-band {
    justify-content: flex-start;
  }

  .service-card,
  .steps li,
  .contact-panel {
    padding: 22px;
  }

  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .contact-panel {
    gap: 14px;
  }

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

  .footer-whatsapp {
    width: 100%;
  }

  .steps li {
    padding-left: 68px;
  }

  .steps li::before {
    left: 18px;
  }
}
