:root {
  --bg: #0c0d10;
  --bg-soft: #121418;
  --panel: #171a1f;
  --panel-soft: #1d2128;
  --line: rgba(255, 255, 255, 0.14);
  --text: #eef0ea;
  --muted: #b6bcad;
  --olive: #76835a;
  --olive-soft: rgba(118, 131, 90, 0.22);
  --sand: #cdbd95;
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Nunito Sans", "Century Gothic", "Avenir", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background:
    radial-gradient(circle at 13% -5%, rgba(118, 131, 90, 0.2), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(205, 189, 149, 0.14), transparent 35%),
    linear-gradient(160deg, #0a0b0e 0%, #12151b 55%, #0b0c10 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, calc(100% - 2.2rem));
  margin-inline: auto;
}

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

.home-page {
  padding-top: 0 !important;
}

.nav-shell {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav-group {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.8vw, 1.6rem);
}

.nav-group.left {
  justify-content: flex-start;
}

.nav-group.right {
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e7eadf;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--sand);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--olive) 35%, transparent 100%);
  opacity: 0;
  transform: scaleX(0.5);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.brand {
  justify-self: center;
}

.brand img {
  width: clamp(145px, 16vw, 215px);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.46rem 0.9rem;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-nav {
  display: none;
  padding: 0 1.1rem 1rem;
  border-top: 1px solid var(--line);
  background: #0b0c10;
}

.mobile-nav.is-open {
  display: grid;
  gap: 0.55rem;
}

.mobile-nav a {
  border: none;
  border-radius: 11px;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.page-section {
  padding: clamp(2.2rem, 5vw, 4.2rem) 0;
}

.hero {
  padding-top: clamp(2rem, 5vw, 3.3rem);
}

.hero-panel {
  border: none;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(30, 34, 40, 0.85), rgba(20, 23, 28, 0.75));
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.showcase {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(650px, 85vh, 1000px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

video.showcase-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.show-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.show-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.show-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.show-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.show-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.2) 0%,
    rgba(17, 24, 39, 0.45) 50%,
    rgba(17, 24, 39, 0.95) 100%
  );
}

.show-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: left;
}

.show-content p.flavor-text,
.show-content h1.main-title,
.show-content p.subtitle {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.show-date {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
}

.show-content h1,
.show-content h2 {
  margin: 0;
  font-family: "Questrial", "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 4.6vw, 2.85rem);
  line-height: 1.03;
}

.show-content p {
  margin: 0;
  color: var(--muted);
  max-width: 36ch;
}

.show-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.show-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.dot {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.34);
}

.dot.is-active {
  width: 1.55rem;
  background: linear-gradient(90deg, var(--olive), var(--sand));
}

.hero-panel-organic {
  border-radius: 28px 64px 28px 52px / 30px 38px 58px 32px;
}

.hero-panel-organic .hero-copy {
  position: relative;
}

.hero-panel-organic .hero-copy::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -88px;
  bottom: -112px;
  border-radius: 38% 62% 52% 48% / 52% 44% 56% 48%;
  border: 1px solid rgba(205, 189, 149, 0.22);
  pointer-events: none;
}

.hero-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  gap: 1rem;
}

.hero-kicker,
.page-kicker {
  margin: 0;
  color: var(--sand);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-copy h1,
.page-title {
  margin: 0;
  font-family: "Questrial", "Nunito Sans", sans-serif;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.hero-copy p,
.page-subtitle,
.panel p,
.feature-card p,
.info-note {
  margin: 0;
  color: var(--muted);
}

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

.btn,
.btn-ghost,
.btn-soft {
  border-radius: 999px;
  padding: 0.62rem 1.1rem;
  font-size: 0.94rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}

.btn {
  background: linear-gradient(90deg, var(--olive) 0%, #8f9e72 100%);
  color: #0a0d06;
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-soft {
  background: rgba(118, 131, 90, 0.2);
  border-color: rgba(118, 131, 90, 0.45);
  color: #edf0e6;
}

.btn:hover,
.btn-ghost:hover,
.btn-soft:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.hero-visual {
  min-height: 320px;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 24%, rgba(205, 189, 149, 0.3), transparent 38%),
    radial-gradient(circle at 75% 75%, rgba(118, 131, 90, 0.33), transparent 42%),
    linear-gradient(130deg, #0d1014 0%, #161920 53%, #121512 100%);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-visual::before {
  width: clamp(160px, 24vw, 270px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  right: 18%;
  top: 12%;
}

.hero-visual::after {
  width: clamp(190px, 30vw, 330px);
  aspect-ratio: 1 / 1;
  border: 10px solid rgba(255, 255, 255, 0.14);
  right: -40px;
  bottom: -52px;
}

.hero-tag {
  position: absolute;
  left: 1.2rem;
  bottom: 1.15rem;
  background: rgba(11, 13, 17, 0.75);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.68rem 0.78rem;
  max-width: 240px;
}

.hero-tag strong {
  display: block;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-tag span {
  color: var(--muted);
  font-size: 0.9rem;
}

.organic-scene {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "events events cumple"
    "contacto carta carta"
    "galeria ubicacion ubicacion";
  gap: 0.95rem;
}

.mood-card {
  position: relative;
  border: none;
  background: transparent;
  padding: 1rem 0;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 0.5rem;
  min-height: 175px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mood-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -68px;
  top: -72px;
  border-radius: 52% 48% 63% 37% / 41% 58% 42% 59%;
  background: radial-gradient(circle, rgba(118, 131, 90, 0.2), transparent 70%);
  pointer-events: none;
}

.mood-card h3 {
  margin: 0;
  font-family: "Questrial", "Nunito Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.mood-card p {
  margin: 0;
  color: var(--muted);
}

.mood-card .btn-soft {
  justify-self: start;
}

.mood-events {
  grid-area: events;
  border-radius: 26px 54px 24px 50px / 28px 34px 58px 32px;
}

.mood-cumple {
  grid-area: cumple;
  border-radius: 42px 20px 48px 22px / 26px 52px 30px 44px;
  transform: rotate(-0.6deg);
}

.mood-carta {
  grid-area: carta;
  border-radius: 34px 54px 20px 42px / 56px 28px 46px 32px;
}

.mood-contacto {
  grid-area: contacto;
  border-radius: 52px 26px 48px 20px / 32px 52px 26px 44px;
}

.mood-ubicacion {
  grid-area: ubicacion;
  border-radius: 28px 52px 34px 54px / 54px 34px 44px 30px;
}

.mood-galeria {
  grid-area: galeria;
  border-radius: 48px 24px 44px 26px / 30px 50px 30px 56px;
  transform: rotate(0.4deg);
}

.upcoming-section {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.9rem;
}

.upcoming-card {
  border: none;
  background: transparent;
  display: grid;
  align-content: start;
  gap: 0.5rem;
}
.upcoming-card img {
  border-radius: 12px;
}

.upcoming-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.upcoming-card > div {
  padding: 0.9rem 0.95rem 1rem;
  display: grid;
  gap: 0.5rem;
}

.upcoming-card h3 {
  margin: 0;
  font-family: "Questrial", "Nunito Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.upcoming-card p {
  margin: 0;
  color: var(--muted);
}

.upcoming-card .btn-soft {
  justify-self: start;
}

.card-a {
  border-radius: 26px 54px 28px 48px / 28px 32px 52px 30px;
}

.card-b {
  border-radius: 44px 20px 52px 24px / 30px 58px 30px 46px;
}

.card-c {
  border-radius: 30px 52px 22px 40px / 58px 26px 44px 32px;
}

.home-contact-band {
  margin-top: 2rem;
  border: none;
  background: transparent;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0.95rem;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-contact-band h3 {
  margin: 0.2rem 0 0;
  font-family: "Questrial", "Nunito Sans", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 500;
}

.home-contact-band p {
  margin: 0;
  color: #e2e8d7;
}

.feature-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.feature-card {
  border: none;
  border-radius: 0;
  padding: 1.5rem 0;
  background: transparent;
  display: grid;
  gap: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
  margin: 0;
  font-family: "Questrial", "Nunito Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.feature-card .btn-ghost {
  justify-self: start;
}

.info-strip {
  margin-top: 1rem;
  border: none;
  background: transparent;
  border-left: 3px solid var(--olive);
  padding: 0.8rem 1rem;
  color: #e6eadb;
}

.page-head {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.panel {
  border: none;
  border-radius: 0;
  padding: 1.5rem 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -64px;
  bottom: -70px;
  border-radius: 58% 42% 40% 60% / 44% 66% 34% 56%;
  background: radial-gradient(circle, rgba(118, 131, 90, 0.15), transparent 70%);
  pointer-events: none;
}

.panel h2,
.panel h3,
.panel h4,
.events-title {
  margin: 0 0 0.6rem;
  font-family: "Questrial", "Nunito Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.page-grid-2,
.page-grid-3 {
  margin-top: 1rem;
  display: grid;
  gap: 0.95rem;
}

.page-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inline-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 16px;
}

.events-layout {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.15fr 0.85fr;
}

.events-list {
  display: grid;
  gap: 0.8rem;
}

.event-item {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sand);
}

.event-title {
  margin: 0.35rem 0 0;
  font-size: 1.18rem;
  font-family: "Questrial", "Nunito Sans", sans-serif;
  font-weight: 500;
}

.event-subtitle {
  margin: 0.2rem 0 0;
  color: #dee4d0;
  font-size: 0.96rem;
}

.event-description {
  margin: 0.38rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.add-calendar {
  margin-top: 0.65rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  padding-top: 0.55rem;
}

.add-calendar summary {
  cursor: pointer;
  color: #e5ead8;
  font-size: 0.92rem;
}

.calendar-actions {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.mini-btn {
  border: 1px solid rgba(118, 131, 90, 0.48);
  background: rgba(118, 131, 90, 0.18);
  color: #f0f3e9;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  font-size: 0.88rem;
}

.calendar-panel {
  border: none;
  border-radius: 0;
  padding: 1.5rem 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
}

.calendar-title {
  text-align: center;
  margin: 0;
  font-family: "Questrial", "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 1.24rem;
}

.control {
  border-radius: 50%;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.calendar-week,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.calendar-week {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.calendar-week span {
  text-align: center;
}

.calendar-grid {
  margin-top: 0.42rem;
}

.calendar-day {
  border-radius: 10px;
  border: none;
  min-height: 42px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.87rem;
  font-weight: 500;
  position: relative;
}

.calendar-day[disabled] {
  opacity: 0.25;
}

.calendar-day.has-event {
  border-color: rgba(118, 131, 90, 0.72);
  background: rgba(118, 131, 90, 0.2);
}

.calendar-day.has-event::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand);
}

.calendar-day.selected {
  outline: 2px solid rgba(205, 189, 149, 0.8);
  outline-offset: -2px;
}

.calendar-selected {
  margin-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 0.7rem;
  min-height: 72px;
  color: var(--muted);
}

.calendar-selected ul {
  margin: 0.45rem 0 0;
  padding-left: 1rem;
}

.site-footer {
  margin-top: clamp(2.2rem, 6vw, 4rem);
  border-top: 1px solid var(--line);
  background: rgba(8, 9, 12, 0.88);
}

.footer-inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-links a:hover {
  color: var(--sand);
}

.social-rail {
  position: fixed;
  left: 0;
  top: 46%;
  transform: translateY(-50%);
  z-index: 35;
  display: grid;
  gap: 0.3rem;
}

.social-rail a {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 10, 13, 0.92);
  color: #e7ebde;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
}

.social-rail a:hover {
  background: rgba(118, 131, 90, 0.32);
}

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

  .hero-visual {
    min-height: 240px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .events-layout {
    grid-template-columns: 1fr;
  }

  .page-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .organic-scene {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "events events"
      "cumple carta"
      "contacto ubicacion"
      "galeria galeria";
  }

  .upcoming-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    min-height: 82px;
  }

  .nav-group {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: start;
  }

  .brand {
    justify-self: center;
  }

  .feature-grid,
  .page-grid-2,
  .page-grid-3 {
    grid-template-columns: 1fr;
  }

  .organic-scene {
    grid-template-columns: 1fr;
    grid-template-areas:
      "events"
      "cumple"
      "carta"
      "contacto"
      "ubicacion"
      "galeria";
  }

  .mood-cumple,
  .mood-galeria {
    transform: none;
  }

  .social-rail {
    display: none;
  }

  .show-content {
    position: static;
    width: 100%;
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(8, 10, 13, 0.9);
  }

  .showcase-slider {
    border-radius: 24px;
  }

  .show-slide {
    position: static;
    display: none;
  }

  .show-slide.is-active {
    display: block;
  }

  .show-media img {
    height: min(56vw, 330px);
  }

  .upcoming-section {
    grid-template-columns: 1fr;
  }

  .card-a {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1140px, calc(100% - 1.3rem));
  }

  .hero-actions,
  .calendar-actions {
    width: 100%;
  }

  .btn,
  .btn-ghost,
  .btn-soft,
  .mini-btn {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    padding: 1rem 0;
  }
}
/* --- INDEX RESTRUCTURE --- */
.events-stack-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.events-stack-header h2 {
  font-family: "Questrial", "Nunito Sans", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  margin: 0.5rem 0 1rem;
}

.events-stack-header p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 90%;
}

.events-list-stacked {
  display: flex;
  flex-direction: column;
}

.event-stacked-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.3rem;
}

.event-stacked-item:first-child {
  padding-top: 0;
}

.event-stack-meta {
  color: var(--sand);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-stacked-item h3 {
  margin: 0;
  font-family: "Questrial", "Nunito Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.event-stacked-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.link-forward {
  display: inline-block;
  margin-top: 1.5rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  /* explicit override to ensure no hover effect globally applies */
  transition: none !important;
  transform: none !important;
  filter: none !important;
}

.cotiza-section {
  padding: 5rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cotiza-content {
  max-width: 600px;
  margin: 0 auto;
}

.cotiza-content h2 {
  font-family: "Questrial", "Nunito Sans", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  margin: 0.5rem 0 1rem;
}

.cotiza-content p {
  color: var(--muted);
  font-size: 1.1rem;
}

.map-section {
  padding: 4rem 0;
}

.map-section .page-kicker {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .events-stack-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* --- FORMS --- */
.form-wrapper {
  background: rgba(22, 25, 30, 0.4);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.minimal-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group.row-2 {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.minimal-form label {
  color: var(--sand);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.minimal-form input,
.minimal-form select,
.minimal-form textarea {
  width: 100%;
  padding: 0.8rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  transition: border-color 0.2s ease;
}

.minimal-form input::placeholder,
.minimal-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.minimal-form input:focus,
.minimal-form select:focus,
.minimal-form textarea:focus {
  outline: none;
  border-bottom-color: var(--sand);
}

.minimal-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1rem;
}

.minimal-form select option {
  background: #121418;
  color: #fff;
}

@media (max-width: 768px) {
  .form-group.row-2 {
    grid-template-columns: 1fr;
  }
  .form-wrapper {
    padding: 1.5rem;
  }
}
