:root{
  --bg:#F5F5F2;
  --card:#FFFFFF;
  --ink:#111111;
  --muted:#343434;

  --lime:#63C132;
  --orange:#FF7A00;
  --yellow:#FFD54A;

  --stroke:2px;
  --radius:18px;
  --shadow:0 14px 30px rgba(0,0,0,.12);
  --max:1050px;

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  background:var(--bg);
  color:var(--ink);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:focus{outline:3px solid var(--yellow); outline-offset:3px; border-radius:12px}

.wrap{max-width:var(--max); margin:0 auto; padding:22px 18px 70px}

.topbar{
  position:sticky; top:0; z-index:10;
  background:rgba(245,245,242,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(0,0,0,.08);
}
.topbar .inner{
  max-width:var(--max);
  margin:0 auto;
  padding:10px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{
  display:flex; align-items:center; gap:10px;
}
.brand img{
  height: 100px;
  width: auto;
  display: block;
  filter: none;
  transform: rotate(-2deg);
}

.nav{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.pill{
  background:#fff;
  border:1px solid rgba(0,0,0,.22);
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
}
.pill:hover{transform:translateY(-1px); box-shadow:0 10px 18px rgba(0,0,0,.10)}
.pill.lime{background:var(--lime); border-color:var(--ink)}
.pill.orange{background:var(--orange); border-color:var(--ink)}

.card{
  background:var(--card);
  border:var(--stroke) solid var(--ink);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero{
  padding: 26px 0 10px;   /* puedes subirlo luego si quieres */
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  align-items: stretch;   /* <- clave para que NO se estire la foto */
}
.hero-left{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-left .ctaRow{
  margin-top: auto;                /* empuja los botones al fondo */
}

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
}

.hero-left{padding:22px}
.tagline{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:10px}
.chip{
  background:#fff;
  border:1px solid rgba(0,0,0,.22);
  padding:6px 10px;
  border-radius:999px;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  display:inline-flex; align-items:center; gap:8px;
}
.dot{width:10px; height:10px; border-radius:999px; display:inline-block; border:1px solid rgba(0,0,0,.25)}

h1{
  margin:8px 0 8px;
  font-size:clamp(40px, 5.4vw, 68px);
  line-height:.92;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:-.02em;
}

.scribble{
  width:240px; height:14px;
  background:var(--ink);
  border-radius:999px;
  margin:10px 0 16px;
  position:relative;
  transform:rotate(-1deg);
}
.scribble:before{
  content:"";
  position:absolute; left:-10px; right:-8px; top:5px;
  height:6px; background:var(--ink);
  border-radius:999px;
  opacity:.9;
  transform:rotate(.6deg);
}

.lead{margin:0 0 16px; color:var(--muted); font-size:18px; max-width:58ch}

.ctaRow{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:var(--stroke) solid var(--ink);
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:13px;
  background:#fff;
}
.btn:hover{transform:translateY(-1px); box-shadow:0 14px 22px rgba(0,0,0,.12)}
.btn.orange{background:var(--orange)}
.btn.lime{background:var(--lime)}

.hero-media{padding:16px; display:grid; gap:12px; align-self: start;}
.photo{
  border-radius:calc(var(--radius) - 2px);
  border:var(--stroke) solid var(--ink);
  overflow:hidden;
  background:#ddd;

  aspect-ratio: 4 / 5;
  min-height: 280px;
  height: auto;
}
.photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:none;
}

.section{padding:18px 0}
.sectionHead{display:flex; justify-content:space-between; gap:12px; align-items:flex-end}
h2{
  margin:0;
  font-size:26px;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.sub{margin:6px 0 0; color:var(--muted); max-width:75ch; font-size:15px}
.divider{border-top:2px dashed rgba(0,0,0,.85); margin:14px 0}

.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
@media(max-width:900px){ .grid3{grid-template-columns:1fr} }
.mini{padding:16px}
.mini h3{margin:0 0 8px; font-size:13px; font-weight:1000; text-transform:uppercase; letter-spacing:.1em}
.mini p{margin:0; color:var(--muted); font-size:14px}

.eventCard{padding:18px; display:grid; grid-template-columns:1.05fr .95fr; gap:14px}
@media(max-width:900px){ .eventCard{grid-template-columns:1fr} }
.eventTitle{font-size:22px; font-weight:1000; margin:0 0 8px}
.meta{display:flex; gap:8px; flex-wrap:wrap; margin:8px 0 10px}

.footer{margin-top:26px}
.footerInner{padding:16px; display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap}
.icons{display:flex; gap:10px}
.iconBtn{
  width:38px; height:38px;
  border-radius:14px;
  border:var(--stroke) solid var(--ink);
  background:#fff;
  display:grid; place-items:center;
  box-shadow:0 10px 18px rgba(0,0,0,.10);
}
.iconBtn img{width:22px; height:22px; display:block}
.small{font-size:12px; color:#555; margin:6px 0 0}
.footer{
  background:#111;
  color:white;
}

.footer .card{
  background:#111;
  border-color:white;
}

.iconBtn{
  background:#111;
  border:2px solid white;
}

.iconBtn img{
  width:20px;
  height:20px;
  filter: brightness(100%);
}

.iconBtn:hover{
  transform:translateY(-3px);
  box-shadow:0 0 12px #63C132;
}

/* ====== LOGO URBAN STYLE ====== */

.topbar {
  padding: 20px 32px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  padding: 3px 0;   /* antes era más grande */
  border-bottom: 1px solid #111;
}

.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Logo container */
.brand {
  display: inline-block;
}

/* Logo image */
.brand img {
  height: 130px;     /* tamaño equilibrado */
  width: auto;
  display: block;   /* elimina espacio fantasma */
  transform: rotate(-6deg);
}

.brand img:hover {
  transform: rotate(0deg) scale(1.05);
}

/* Hover effect */
.brand img:hover {
  transform: rotate(0deg) scale(1.05);
}

/* ===== HEADER: más compacto + logo más grande/urbano ===== */

.topbar{
  padding: 10px 0 !important;   /* baja la “altura” del header */
}

.topbar .inner{
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

/* Logo: grande pero sin crear un bloque enorme */
.brand{
  display:flex !important;
  align-items:center !important;
  line-height: 0 !important;   /* elimina aire vertical */
}

.brand img{
  height: 100px !important;     /* sube/baja esto (56–72 suele ir perfecto) */
  width: auto !important;
  display: block !important;
  filter: none !important;     /* quita el shadow/filter que no te gusta */
  transform: rotate(-3deg) !important; /* urbano */
  transform-origin: left center !important;
}

/* Nav a la derecha sin empujar raro */
.nav{
  margin-left: auto !important;
}

/* Quita “huequito” típico entre header y el main */
main.wrap{
  padding-top: 0 !important;
}

.hero{
  margin-top: 0 !important;
  padding-top: 0 !important;   /* ajusta si quieres más/menos pegado */
}