/* Tropic Boost — look deportivo, morado intenso + degradados */
:root {
  --ink: #f3eafc;
  --ink-soft: #c4a8de;
  --purple-deep: #0e0618;
  --purple: #8b4fc4;
  --purple-mid: #a05fd4;
  --lavender: #c9a8e8;
  --lavender-bright: #e2cdf5;
  --bg: #160a24;
  --bg-2: #1e1030;
  --surface: #26163c;
  --surface-2: #32204e;
  --accent: #9b5fd4;
  --line: rgba(201, 168, 232, 0.16);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Syne", "Outfit", system-ui, sans-serif;
  --radius: 1.5rem;
  --radius-sm: 0.9rem;
  --pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  --gradient-brand: linear-gradient(145deg, #1a0c2e 0%, #3a1868 55%, #5a2a96 100%);
  --gradient-btn: linear-gradient(135deg, #7a35c0 0%, #a855e0 100%);
  --gradient-soft: linear-gradient(180deg, rgba(38, 22, 60, 0.9) 0%, rgba(46, 26, 72, 0.95) 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background-color: #12081c;
  background-image:
    radial-gradient(ellipse 120% 80% at 85% 0%, rgba(110, 50, 170, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 10% 60%, rgba(70, 30, 120, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(50, 20, 90, 0.22) 0%, transparent 55%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1.1rem, 4vw, 2.5rem);
  background: rgba(14, 6, 24, 0.88);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.header-logo {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
  filter: brightness(0) invert(0.92) sepia(0.25) hue-rotate(240deg) saturate(1.2);
}

.site-nav {
  display: none;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-btn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.site-nav a:hover {
  color: var(--lavender-bright);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: none !important;
}

.nav-toggle {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--purple-deep);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem clamp(1.1rem, 4vw, 2.5rem);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a:not(.btn) {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex !important;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.75rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  border-radius: var(--pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s, border-color 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 2.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.72rem;
}

.btn-primary {
  border: 0;
  background-color: #8b45d0;
  background-image: linear-gradient(135deg, #7a35c0 0%, #a855e0 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(122, 53, 192, 0.45);
}

.btn-primary:hover {
  background-color: #9b55e0;
  background-image: linear-gradient(135deg, #8a45d0 0%, #b868f0 100%);
  box-shadow: 0 12px 36px rgba(122, 53, 192, 0.55);
  color: #fff;
}

.btn-outline {
  background: transparent;
  background-image: none;
  color: var(--lavender-bright);
  border-color: rgba(201, 168, 232, 0.55);
}

.btn-outline:hover {
  background-color: rgba(168, 85, 224, 0.2);
  background-image: none;
  border-color: var(--lavender);
  color: #fff;
}

/* —— Shared —— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

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

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-sub {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.18s;
}

/* —— Hero —— */
.hero {
  width: min(1240px, calc(100% - 1.25rem));
  margin: 0.75rem auto 0;
}

.hero-stage {
  position: relative;
  min-height: min(90vh, 820px);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--purple-deep);
  display: grid;
  align-items: end;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(168, 85, 224, 0.2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  transform: scale(1.04);
}

.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(10, 4, 18, 0.88) 0%,
      rgba(14, 6, 24, 0.55) 26%,
      rgba(14, 6, 24, 0.15) 48%,
      transparent 68%
    ),
    linear-gradient(
      to top,
      rgba(10, 4, 18, 0.55) 0%,
      transparent 42%
    );
  pointer-events: none;
}

.hero-panel {
  position: relative;
  z-index: 2;
  margin: 1rem;
  background: rgba(22, 10, 36, 0.88);
  backdrop-filter: blur(18px);
  border-radius: calc(var(--radius) - 0.35rem);
  padding: clamp(1.5rem, 4vw, 2.35rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.6rem);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  max-width: 28rem;
  border: 1px solid rgba(168, 85, 224, 0.35);
  overflow: visible;
}

.hero-panel .btn-primary {
  box-shadow: 0 6px 18px rgba(122, 53, 192, 0.4);
}

.hero-panel .btn-primary:hover {
  box-shadow: 0 8px 22px rgba(122, 53, 192, 0.5);
}

.hero-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4.2vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-lead {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 32ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

@media (min-width: 880px) {
  .hero {
    margin-top: 1rem;
  }

  .hero-stage {
    min-height: min(86vh, 780px);
    align-items: center;
  }

  .hero-bg {
    object-position: 72% 42%;
  }

  .hero-panel {
    margin: 0 0 0 clamp(1.75rem, 4vw, 3.25rem);
    padding: 2.6rem 2.5rem;
    max-width: 27rem;
  }
}

@media (min-width: 1100px) {
  .hero-panel {
    max-width: 29rem;
  }

  .hero h1 {
    font-size: 2.85rem;
  }
}

/* —— About —— */
.about {
  background: transparent;
  position: relative;
}

.about::before {
  display: none;
}

.about-layout {
  position: relative;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 880px) {
  .about-layout {
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }
}

.about-copy h2 {
  margin-bottom: 1rem;
}

.about-copy > p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
  max-width: 40ch;
}

.about-copy strong {
  color: var(--lavender-bright);
}

.about-cards {
  display: grid;
  gap: 1rem;
}

.about-cards li {
  background: var(--gradient-soft);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(168, 85, 224, 0.22);
  border-left: 3px solid var(--accent);
}

.about-cards strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--lavender);
  margin-bottom: 0.35rem;
}

.about-cards h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #fff;
}

.about-cards p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* —— Bowls carousel —— */
.bowls {
  background: transparent;
  overflow: hidden;
}

.bowls .section-inner {
  max-width: none;
  width: min(1240px, calc(100% - 2.2rem));
}

.carousel {
  margin-top: 0.5rem;
}

.carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-right: 0.25rem;
}

.carousel-nav {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 232, 0.45);
  background: var(--surface);
  color: var(--lavender-bright);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, opacity 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.carousel-btn:hover:not(:disabled) {
  background-color: #8b45d0;
  border-color: #8b45d0;
  color: #fff;
  box-shadow: 0 6px 18px rgba(122, 53, 192, 0.4);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.carousel-track {
  display: flex;
  gap: 1.35rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.15rem 1.4rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(168, 85, 224, 0.45) transparent;
}

.carousel-track:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.bowl-card {
  flex: 0 0 min(88vw, 380px);
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(168, 85, 224, 0.2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

@media (min-width: 720px) {
  .bowl-card {
    flex-basis: min(62vw, 460px);
  }
}

@media (min-width: 1000px) {
  .bowl-card {
    flex-basis: 480px;
  }
}

.bowl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(122, 53, 192, 0.3);
}

.bowl-card-media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--surface-2);
}

.bowl-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.bowl-card:hover .bowl-card-media img {
  transform: scale(1.05);
}

.bowl-card-body {
  padding: 1.55rem 1.65rem 1.85rem;
}

.bowl-meta {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 0.45rem;
}

.bowl-card h3 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.bowl-card-body > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.bowl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.bowl-tags li {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: var(--pill);
  background: rgba(168, 85, 224, 0.22);
  color: var(--lavender-bright);
}

/* —— Promo banner —— */
.promo {
  width: min(1100px, calc(100% - 2.2rem));
  margin: 0 auto 1rem;
}

.promo-inner {
  display: grid;
  background: linear-gradient(145deg, #1a0c2e 0%, #3a1868 60%, #4e2280 100%);
  color: var(--lavender-bright);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  position: relative;
  border: 1px solid rgba(168, 85, 224, 0.22);
}

.promo-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 15% 85%, rgba(168, 85, 224, 0.25), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 800px) {
  .promo-inner {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.promo-copy {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.promo-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
}

.promo-copy h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

.promo-copy > p {
  color: rgba(226, 205, 245, 0.88);
  max-width: 34ch;
}

.promo-copy .btn-primary {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.promo-photo {
  position: relative;
  z-index: 1;
  min-height: 240px;
}

.promo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

/* —— Events —— */
.events {
  background: transparent;
}

.event-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .event-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.event-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(168, 85, 224, 0.2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(122, 53, 192, 0.28);
}

.event-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.event-card-body {
  padding: 1rem 1.1rem 1.25rem;
}

.event-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #fff;
}

.event-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* —— Gallery —— */
.gallery {
  background: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .g-wide {
    grid-column: span 2;
  }
}

.g-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(168, 85, 224, 0.15);
}

.g-wide {
  aspect-ratio: 16 / 9;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.g-item:hover img {
  transform: scale(1.04);
}

/* —— CTA band —— */
.cta-band {
  background: transparent;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.cta-band-inner {
  width: min(720px, calc(100% - 2.2rem));
  margin-inline: auto;
  text-align: center;
  background: linear-gradient(145deg, #1a0c2e 0%, #3a1868 60%, #4e2280 100%);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 224, 0.22);
}

.cta-band-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 0%, rgba(201, 168, 232, 0.2), transparent 55%);
  pointer-events: none;
}

.cta-band-inner > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin-bottom: 0.65rem;
  color: #fff;
}

.cta-band p {
  color: var(--lavender-bright);
  margin-bottom: 1.5rem;
}

/* —— Footer —— */
.site-footer {
  background: linear-gradient(180deg, #160a24 0%, #1a0c2e 40%, #241040 100%);
  color: var(--lavender-bright);
  padding: 2.5rem clamp(1.1rem, 4vw, 2.5rem) 1.75rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 168, 232, 0.2);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: brightness(0) invert(0.88) sepia(0.3) hue-rotate(240deg) saturate(1.3);
}

.footer-brand strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}

.footer-brand span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-top: 0.15rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-nav a:hover {
  opacity: 1;
  color: #fff;
}

.footer-copy {
  padding-top: 1.25rem;
  font-size: 0.82rem;
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
}
