:root {
  --paper: #f6f1e6;
  --paper-deep: #eee6d4;
  --card: #fcf9f2;
  --ink: #33291c;
  --ink-soft: #6f6252;
  --sepia: #9c6b3f;
  --sepia-dark: #7c5330;
  --line: #ded1b9;
  --dark: #2a2115;
  --radius: 10px;
  --shadow: 0 8px 28px rgba(74, 56, 30, 0.1);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--sepia); color: #fff; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.25;
  font-weight: 700;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 230, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.brand-icon {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--sepia);
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-menu a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-menu a:hover { color: var(--sepia-dark); }

.nav-menu .nav-cta {
  background: var(--sepia);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
}

.nav-menu .nav-cta:hover { background: var(--sepia-dark); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

/* ---------- Hero ---------- */

.hero {
  padding: 7rem 0 6rem;
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, var(--paper-deep), transparent),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-inner { max-width: 46rem; }

.hero-eyebrow {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  background: var(--card);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--sepia-dark);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--sepia);
  font-style: italic;
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 2.5rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.1s;
}

.btn-primary { background: var(--sepia); color: #fff; }
.btn-primary:hover { background: var(--sepia-dark); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--sepia);
}
.btn-ghost:hover { border-color: var(--sepia-dark); color: var(--sepia-dark); }

/* ---------- Sections ---------- */

.section { padding: 5rem 0; scroll-margin-top: 4.25rem; }
.section-alt {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sepia);
  margin-bottom: 0.5rem;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}

/* ---------- About ---------- */

.about { max-width: 46rem; }

.about p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.fact {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--sepia);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}

.fact strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.fact span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  border: 1px solid var(--sepia);
  color: var(--sepia);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg { width: 1.55rem; height: 1.55rem; }

.card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-cta {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}

.whatsapp-badge {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #5e8a68;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.whatsapp-badge svg { width: 2rem; height: 2rem; }

.contact-cta h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }

.contact-cta-text {
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  max-width: 30rem;
}

.contact-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #5e8a68;
  color: #fff;
}

.btn-whatsapp:hover { background: #4d7356; color: #fff; }

.form-note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.contact-info h3 { font-size: 1.15rem; margin-bottom: 1.25rem; }

.contact-info address { font-style: normal; }

.contact-line {
  margin-bottom: 1.1rem;
  color: var(--ink-soft);
}

.contact-line strong {
  display: block;
  color: var(--sepia-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.contact-line a { color: var(--ink); text-decoration: none; }
.contact-line a:hover { color: var(--sepia-dark); }

.map-wrap {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  filter: sepia(0.35) saturate(0.85);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--dark);
  color: rgba(246, 241, 230, 0.8);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(246, 241, 230, 0.5);
}

/* ---------- Consent banner ---------- */

.consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 1048px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.consent-banner[hidden] { display: none; }

.consent-banner p {
  flex: 1;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.consent-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.consent-actions .btn {
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
}

/* ---------- Mobile ---------- */

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }

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

  .nav-menu li { border-top: 1px solid var(--line); }

  .nav-menu a {
    display: block;
    padding: 1rem 1.25rem;
  }

  .nav-menu .nav-cta {
    border-radius: 0;
    padding: 1rem 1.25rem;
  }

  .hero { padding: 4.5rem 0 4rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .section { padding: 3.5rem 0; }

  .consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }
}
