:root {
  --ink: #17140f;
  --ink-soft: #3c3830;
  --muted: #6b655b;
  --paper: #f3eee4;
  --paper-2: #e7e0d2;
  --cream: #faf7f1;
  --line: #d7cfc0;
  --terra: #c24b1e;
  --terra-dark: #9a3814;
  --forest: #24362c;
  --forest-2: #31483c;
  --ok: #2f6b46;
  --shadow: 0 18px 50px rgba(23, 20, 15, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Sora", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

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

.topbar {
  background: var(--forest);
  color: #efe8d8;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a:hover { text-decoration: underline; }

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 238, 228, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.logo span { color: var(--terra); font-style: italic; }

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--terra); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.18s ease;
}
.btn-terra {
  background: var(--terra);
  color: #fff;
}
.btn-terra:hover { background: var(--terra-dark); transform: translateY(-1px); }
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: #000; }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }
.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
}

.hero {
  padding: 64px 0 28px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
}
.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 14px;
}
h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 560;
  margin-bottom: 20px;
}
.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 36ch;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.trust-row strong { color: var(--ink); display: block; font-size: 15px; }

.photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
  background: #ddd;
}
.hero-visual {
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  display: block;
}
.hero-visual figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(23,20,15,.78));
  color: #f3eee4;
  font-size: 14px;
}
.hero-card {
  background: var(--forest);
  color: #f3eee4;
  border-radius: 28px;
  padding: 28px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -60px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(194,75,30,.45), transparent 70%);
}
.hero-card h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.hero-list {
  list-style: none;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 24px 0;
  font-size: 15px;
}
.hero-list li::before { content: "→ "; color: #e7b39a; }
.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #cfc6b4;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
}

section { padding: 72px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}
h2.display {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 560;
}
.section-head p { max-width: 42ch; color: var(--ink-soft); }

.grid-3, .grid-4 { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
  margin: 10px 0 8px;
  font-weight: 560;
}
.num {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
}

.situations {
  background: var(--ink);
  color: var(--cream);
}
.situations .card {
  background: #211d17;
  border-color: #3a342b;
  color: #efe8d8;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip {
  border: 1px solid #4a4338;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: #d8d0c2;
}

.steps .card { min-height: 210px; }
.step-n {
  font-family: "Fraunces", Georgia, serif;
  font-size: 40px;
  color: var(--terra);
  line-height: 1;
}

.quote {
  background: var(--paper-2);
  border-radius: 28px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
blockquote {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 500;
}
.quote small { display: block; margin-top: 12px; color: var(--muted); }

.coverage-map {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(243,238,228,.2), rgba(243,238,228,.85)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(23,20,15,.04) 28px 29px),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(23,20,15,.04) 28px 29px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
}
.coverage-map strong { font-family: "Fraunces", Georgia, serif; font-size: 28px; }

.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--terra); font-size: 22px; }
.faq details[open] summary::after { content: "–"; }
.faq p { padding-top: 10px; color: var(--ink-soft); max-width: 70ch; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}
form { display: grid; gap: 12px; }
label { font-size: 13px; font-weight: 600; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}
textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); }

footer {
  background: var(--forest);
  color: #e8e0d0;
  padding: 42px 0 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
footer a:hover { text-decoration: underline; }
.legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #c4bba8;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1fa855;
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 50;
}
.whatsapp-float:hover { filter: brightness(1.05); }

@media (max-width: 900px) {
  .hero, .grid-3, .grid-4, .quote, .contact-grid, .foot-grid, .section-head {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    align-items: flex-start;
  }
  .menu-btn { display: block; }
  .hero { padding-top: 36px; }
}
