:root{
  --bg: #e7dfd2;
/* fondo */
--panel: #f7f3ec;
/* paneles destacados */
--accent: #880739;
/* enlaces / botones / cabeceras */
--text: #484745;
/* texto principal */
--muted: #6b6765;
/* texto secundario */
--radius: 10px;
  --max-width:1100px;
  --font: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

{box-sizing:border-box}

html,body {
  height:100%
}
body {
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  min-height:100vh;
}
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:28px
}
.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background: #9b063f;
  backdrop-filter: blur(4px);
  border-bottom:1px solid rgba(0,0,0,0.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px
}
.logo{
  height:56px;
  width:auto
}
.social-inline{
  display:flex;
  gap:12px
}
.icon-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
  opacity:.95;
  text-decoration:none
}
.icon-link svg{
  color:var(--bg)
}
.hero{
  position:relative;
  padding:64px 0 80px;
  background-image: url('../img/bg.jpg');
  background-size:cover;
  background-position:center;
}
.hero .overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(231,223,210,0.6), rgba(231,223,210,0.85));
  mix-blend-mode:multiply;
  border-radius:0
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:820px
}
.hero h1{
  margin:0;
  font-size:clamp(28px,6vw,48px);
  color:var(--accent);
  letter-spacing:-0.02em
}
.lead{
  margin-top:12px;
  font-size:1.05rem;
  color:var(--text);
  line-height:1.5
}
.cta-row{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap
}
.btn{
  background:var(--accent);
  color:white;
  padding:10px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 6px 18px rgba(136,7,57,0.12)
}
.btn.ghost{
  background:transparent;
  border:1px solid rgba(72,71,69,0.08);
  color:var(--text)
}
.section{
  padding:36px 0;
  border-top:1px solid rgba(0,0,0,0.04)
}
.calendar-wrap{
  background:var(--panel);
  padding:12px;
  border-radius:var(--radius);
  box-shadow: 0 6px 18px rgba(72,71,69,0.06)
}
.social-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;margin-top:12px
}
.social-card{
  display:flex;
  gap:12px;
  align-items:center;
  padding:12px;
  border-radius:12px;
  background:var(--panel);
  text-decoration:none;
  color:inherit;
  box-shadow:0 4px 12px rgba(72,71,69,0.04)
}
.muted{
  color:var(--muted);
  font-size:0.95rem
}
.site-footer{
  padding:20px 0;
  border-top:1px solid rgba(0,0,0,0.04);
  margin-top:32px;
  background: #9b063f;
  color:var(--bg)
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap
}
a{
  color:var(--accent)
}
a:hover{
  filter:brightness(0.95)
}
@media (max-width:720px){
  .logo{
    height:48px
  }
  .hero{
    padding:40px 0
  }
  .hero-content{
    padding:0 12px
  }
}
