
:root {
  --crema: #F5F0E8;
  --crema-oscura: #EDE7D9;
  --tierra: #8B6B47;
  --vino: #6B2D3E;
  --vino-oscuro: #4A1E2B;
  --texto: #2C2420;
  --texto-suave: #6B5E54;
  --blanco: #FDFAF5;
  --borde: rgba(107, 45, 62, 0.15);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--crema);
  color: var(--texto);
  line-height: 1.7;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--borde);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  color: var(--vino-oscuro);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texto-suave);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.activo { color: var(--vino); }
.nav-hamburguesa {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburguesa span {
  display: block; width: 24px; height: 2px; background: var(--vino-oscuro); transition: all 0.3s;
}
.nav-hamburguesa.abierto span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburguesa.abierto span:nth-child(2) { opacity: 0; }
.nav-hamburguesa.abierto span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
main { min-height: 60vh; }
footer {
  background: var(--crema-oscura);
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--borde);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  color: var(--vino-oscuro);
}

.footer-email {
  font-size: 0.85rem;
  color: var(--texto-suave);
  text-decoration: none;
  border-bottom: 1px solid var(--borde);
  transition: color 0.2s;
}

.footer-email:hover { color: var(--vino); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--texto-suave);
}

.footer-legal {
  margin: 0.5rem 0;
  font-size: 0.8rem;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}

.contenedor { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.eyebrow {
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.83rem;
  color: var(--tierra);
}
.titulo-seccion {
  margin: 0 0 1rem 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--vino-oscuro);
}
.texto-intro {
  max-width: 760px;
  font-size: 1.12rem;
  color: var(--texto-suave);
}
@media (max-width: 980px) {
  .nav-hamburguesa { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(245, 240, 232, 0.98);
    padding: 1rem 1.5rem 1.4rem;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--borde);
  }
  .nav-links.abierto { display: flex; }
}
@media (max-width: 720px) {
  nav { padding: 0 1rem; }
}
