:root {
  --bg: #f6f1ea; /* crema papel */
  --ink: #2b2a28;
  --muted: #6c6761;

  --gold: #c6a25d; /* botón principal */
  --sage: #6f8b7a; /* verde suave */
  --mauve: #9c8fb2; /* lila suave */
  --umber: #9a7a4a; /* marrón suave */

  --card: rgba(255, 255, 255, 0.6);
  --card-border: rgba(40, 35, 25, 0.1);

  --radius: 14px;
  --container: 980px;

  --serif:
    "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans:
    "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    /* “papel” (textura sutil sin imagen) */
    radial-gradient(
      1200px 800px at 30% 10%,
      rgba(255, 255, 255, 0.55),
      transparent 60%
    ),
    radial-gradient(
      900px 700px at 80% 20%,
      rgba(255, 255, 255, 0.4),
      transparent 62%
    ),
    radial-gradient(
      1000px 900px at 40% 85%,
      rgba(255, 255, 255, 0.35),
      transparent 65%
    ),
    /* acuarela muy suave */
    radial-gradient(
        700px 400px at 20% 30%,
        rgba(111, 139, 122, 0.1),
        transparent 60%
      ),
    radial-gradient(
      700px 420px at 80% 35%,
      rgba(198, 162, 93, 0.1),
      transparent 60%
    ),
    radial-gradient(
      700px 420px at 65% 75%,
      rgba(156, 143, 178, 0.1),
      transparent 60%
    ),
    /* grano */
    repeating-radial-gradient(
        circle at 20% 30%,
        rgba(0, 0, 0, 0.018) 0 1px,
        transparent 1px 7px
      ),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 42px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}

/* HEADER centrado */
.site-header {
  padding: 16px 0 6px;
}
.header-inner {
  display: flex;
  justify-content: center;
}

.nav {
  position: relative;
}
.nav-toggle {
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
}

.nav-list a {
  font-size: 13px;
  color: rgba(43, 42, 40, 0.7);
  padding: 6px 10px;
  border-radius: 10px;
}
.nav-list a:hover {
  background: rgba(255, 255, 255, 0.45);
}

/* HERO */
.hero {
  padding: 24px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  min-height: 360px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.2px;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.95;
  margin: 0 0 14px;
  color: rgba(43, 42, 40, 0.86);
}

.hero-subtitle {
  margin: 0 0 18px;
  color: rgba(43, 42, 40, 0.7);
  font-size: 14px;
}

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

/* visual sin caja (como el ejemplo) */
.hero-visual {
  min-height: 340px;
  border-radius: var(--radius);
  background: transparent;
  border: none; /* <- esto saca la línea */
  box-shadow: none; /* <- opcional, por si también te molesta */
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

  /* fixes de render */
  transform: scale(1.01);
  backface-visibility: hidden;
}

/* bruma inferior del hero */
.hero-mist {
  height: 120px;
  margin-top: -30px;
  background:
    radial-gradient(
      1000px 130px at 40% 20%,
      rgba(255, 255, 255, 0.65),
      transparent 70%
    ),
    radial-gradient(
      900px 140px at 70% 35%,
      rgba(255, 255, 255, 0.55),
      transparent 72%
    ),
    radial-gradient(
      1200px 180px at 55% 60%,
      rgba(111, 139, 122, 0.1),
      transparent 70%
    ),
    radial-gradient(
      1200px 180px at 65% 70%,
      rgba(198, 162, 93, 0.1),
      transparent 70%
    );
}

/* SECCIONES */
.section {
  padding: 42px 0 56px;
  position: relative;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.2px;
  font-size: 30px;
  margin: 0 0 14px;
  color: rgba(43, 42, 40, 0.85);
}

/* bullets de color como el ejemplo */
.bullets-color {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 8px;
  color: rgba(43, 42, 40, 0.72);
  font-size: 13px;
}

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  margin-right: 10px;
  transform: translateY(1px);
}
.dot-gold {
  background: rgba(198, 162, 93, 0.85);
}
.dot-mauve {
  background: rgba(156, 143, 178, 0.85);
}
.dot-sage {
  background: rgba(111, 139, 122, 0.85);
}

/* CARDS (como bloques flotantes) */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.card-icon {
  width: 38px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px 0 10px;
  opacity: 0.75;
}

.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 6px;
}

.card p {
  margin: 0 0 12px;
  color: rgba(43, 42, 40, 0.7);
  font-size: 13px;
}

/* BOTONES (idéntica lógica del ejemplo: filled + outline) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.35);
  color: rgba(43, 42, 40, 0.78);
}

.btn-primary {
  background: rgba(198, 162, 93, 0.86);
  border-color: rgba(198, 162, 93, 0.55);
  color: rgba(255, 255, 255, 0.94);
}

.btn-outline {
  background: transparent;
  border-color: rgba(43, 42, 40, 0.25);
  color: rgba(43, 42, 40, 0.72);
}

.btn-card {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.96);
}

.btn-sage {
  background: rgba(111, 139, 122, 0.9);
}
.btn-gold {
  background: rgba(198, 162, 93, 0.9);
}
.btn-umber {
  background: rgba(154, 122, 74, 0.9);
}

/* Para quién (layout + lista suave) */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.lead-small {
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(43, 42, 40, 0.62);
}

.list-soft {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: rgba(43, 42, 40, 0.72);
}

.portrait-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(40, 35, 25, 0.1);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  min-height: 260px;
}

.portrait-placeholder {
  height: 320px;
  background:
    radial-gradient(
      600px 240px at 35% 35%,
      rgba(255, 255, 255, 0.75),
      transparent 60%
    ),
    radial-gradient(
      600px 280px at 70% 35%,
      rgba(198, 162, 93, 0.14),
      transparent 60%
    ),
    radial-gradient(
      600px 280px at 55% 70%,
      rgba(111, 139, 122, 0.12),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.45);
}

/* About */
.about {
  max-width: 720px;
}
.about-lead {
  margin: 0 0 10px;
  color: rgba(43, 42, 40, 0.74);
  font-size: 14px;
}
.about-text {
  margin: 0;
  color: rgba(43, 42, 40, 0.7);
  font-size: 13px;
}

/* Contact */
.contact {
  max-width: 520px;
}
.small {
  font-size: 12px;
  margin-top: 10px;
}
.muted {
  color: var(--muted);
}

/* “lavados” acuarela entre secciones */
.section-wash {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 120px;
  pointer-events: none;
  opacity: 0.9;
}

.wash-1 {
  background:
    radial-gradient(
      1200px 180px at 55% 45%,
      rgba(111, 139, 122, 0.14),
      transparent 70%
    ),
    radial-gradient(
      1200px 180px at 70% 55%,
      rgba(198, 162, 93, 0.12),
      transparent 70%
    ),
    radial-gradient(
      1200px 180px at 40% 70%,
      rgba(156, 143, 178, 0.12),
      transparent 70%
    );
}

.wash-2 {
  background:
    radial-gradient(
      1200px 180px at 35% 45%,
      rgba(198, 162, 93, 0.12),
      transparent 70%
    ),
    radial-gradient(
      1200px 180px at 60% 55%,
      rgba(156, 143, 178, 0.12),
      transparent 70%
    ),
    radial-gradient(
      1200px 180px at 70% 70%,
      rgba(111, 139, 122, 0.12),
      transparent 70%
    );
}

.wash-3 {
  background:
    radial-gradient(
      1200px 180px at 60% 45%,
      rgba(111, 139, 122, 0.12),
      transparent 70%
    ),
    radial-gradient(
      1200px 180px at 45% 60%,
      rgba(198, 162, 93, 0.12),
      transparent 70%
    );
}

/* Footer */
.site-footer {
  padding: 26px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.18);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 12px;
  color: rgba(43, 42, 40, 0.65);
}
.back-top {
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.3);
}

/* WhatsApp flotante (súper discreto) */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 139, 122, 0.2);
  border: 1px solid rgba(111, 139, 122, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  color: rgba(43, 42, 40, 0.75);
}

/* Responsive */
@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    height: 320px;
  }
  .hero-illustration {
    right: 0;
    top: -20px;
    width: min(520px, 100%);
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    margin: 0 auto;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.35);
  }
  .nav-list.open {
    display: flex;
  }
}
