:root {
  --ink: #171513;
  --muted: #6f6861;
  --paper: #fffaf4;
  --surface: #ffffff;
  --warm: #f4eee6;
  --line: #e5ded7;
  --accent: #8f5c3b;
  --accent-dark: #6f4229;
  --forest: #263c33;
  --gold: #c59b63;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(229, 222, 215, 0.82);
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--accent);
  font-weight: 900;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

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

.nav-links a {
  text-decoration: none;
  color: #2b2723;
}

.nav-links a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  min-height: 42px;
  padding: 0 12px;
  font: inherit;
  font-weight: 800;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(23, 21, 19, 0.82), rgba(23, 21, 19, 0.26)),
    var(--hero-image) center / cover no-repeat;
  color: #fff;
  padding: 112px 0 76px;
}

.hero-inner {
  max-width: 930px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 960px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 760px;
  margin-bottom: 28px;
  color: #f4e9dd;
  font-size: clamp(18px, 2vw, 24px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 900;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

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

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

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

.section.compact {
  padding: 48px 0;
}

.section-title {
  max-width: 820px;
  margin-bottom: 32px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.25;
}

.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 24px;
}

.card p,
.project-copy,
.muted {
  color: var(--muted);
}

.card-link {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

.photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: var(--warm);
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: center;
}

.feature-photo {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 6px;
}

.band {
  background: var(--forest);
  color: #fff;
}

.band .lead,
.band li,
.band p {
  color: #e8ded2;
}

.check-list,
.plain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 16px;
}

.plain-list li {
  border-color: var(--line);
  background: var(--surface);
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.process-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 18px;
}

.process-card::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 18px 20px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--warm);
  padding: 42px;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-pills span,
.contact-pills a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  padding: 8px 12px;
  text-decoration: none;
  font-size: 15px;
}

.quote-tool {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 20px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.field select,
.field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
}

.site-footer {
  background: #161410;
  color: #f4e9dd;
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-grid a {
  color: #f4e9dd;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-list {
  display: grid;
  gap: 8px;
}

.breadcrumbs {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1f8f54;
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .nav {
    min-height: 64px;
    gap: 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 16px;
    height: 16px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .grid,
  .grid.two,
  .split,
  .process,
  .quote-tool,
  .cta-panel,
  .footer-grid,
  .check-list,
  .plain-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72svh;
    padding: 82px 0 56px;
  }

  .section {
    padding: 56px 0;
  }

  .feature-photo {
    min-height: 320px;
  }

  .button {
    width: 100%;
  }

  .cta-panel {
    padding: 26px;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 58px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-logo {
    width: 14px;
    height: 14px;
  }

  h1 {
    font-size: 40px;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
  }
}
