.laola-event-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.laola-event-card__image {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.laola-event-card__image img,
.laola-event-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.laola-event-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.laola-event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.laola-event-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  margin: 0;
}

.laola-event-card h3 a {
  color: var(--color-text);
  text-decoration: none;
}

.laola-event-card__excerpt {
  margin: 0;
  color: var(--color-text-soft);
}

.laola-event-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.laola-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 0.9rem;
}

.laola-pill--price {
  background: rgba(228, 120, 13, 0.12);
  color: #ad5f11;
  font-weight: 600;
}

.laola-event-card__footer {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.laola-event-card__footer .btn,
.laola-event-card__footer .disabled {
  flex: 1 1 180px;
}

.laola-event-detail__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0;
}

.laola-booking-summary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.laola-booking-summary li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.laola-sidebar-links--light {
  list-style: none;
  margin: 0;
  padding: 0;
}

.laola-sidebar-links--light li {
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 767.98px) {
  .laola-event-card__body {
    padding: 20px;
  }

  .laola-booking-summary li {
    flex-direction: column;
    align-items: flex-start;
  }
}
:root {
  --color-primary: #4087c1;
  --color-primary-alt: #3f85bf;
  --color-background: #fbfbfb;
  --color-text: #1a1a2e;
  --color-text-soft: #5a6a7a;
  --color-white: #ffffff;
  --color-accent: #e8f2fb;
  --color-border: rgba(64, 135, 193, 0.16);
  --shadow-soft: 0 4px 20px rgba(64, 135, 193, 0.1);
  --shadow-strong: 0 20px 40px rgba(26, 26, 46, 0.14);
  --leo-orange: #e4780d;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --navbar-main-height: 72px;
  --navbar-topbar-height: 56px;
  --navbar-height-expanded: calc(
    var(--navbar-main-height) + var(--navbar-topbar-height)
  );
  --navbar-height-compact: var(--navbar-main-height);
  --navbar-height-current: var(--navbar-height-expanded);
  --section-padding: 48px;
  --radius-soft: 4px;
}

.leo-link {
  color: var(--leo-orange) !important;
}

.text-whatsapp {
  color: #25d366 !important;
}

.text-instagram {
  color: #e4405f !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
  padding-top: var(--navbar-height-current);
  transition: padding-top 0.25s ease;
}

body.navbar-compact {
  --navbar-height-current: var(--navbar-height-compact);
}

main {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: calc(var(--navbar-height-current) + 1rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
}

p,
a,
button,
input,
select,
textarea,
label {
  font-family: var(--font-body);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-alt);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ola-section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background: var(--color-accent);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0;
}

.section-heading p {
  color: var(--color-text-soft);
  font-size: 1.04rem;
  margin-bottom: 0;
}

.section-heading--left {
  max-width: 100%;
}

.section-heading--light h2,
.section-heading--light p,
.section-heading--light .section-kicker {
  color: var(--color-text-soft);
}

.section-kicker,
.hero-eyebrow,
.offcanvas-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--color-primary);
}

.ola-divider {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}

.ola-divider--left {
  margin-left: 0;
}

.ola-divider--light {
  background: rgba(255, 255, 255, 0.75);
}

.btn-ola,
.btn-ola-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.btn-ola {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
}

.btn-ola:hover {
  background-color: var(--color-primary-alt);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-ola-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-ola-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-ola-outline--light {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--color-white);
}

.btn-ola-outline--light:hover {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-ola--sm {
  padding: 0.6rem 1rem;
  min-height: 42px;
  font-size: 0.75rem;
}

.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(251, 251, 251, 0.9);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.site-navbar.navbar-scrolled,
.site-navbar--solid {
  background: rgba(251, 251, 251, 0.98);
  box-shadow: 0 8px 22px rgba(26, 26, 46, 0.08);
}

.site-navbar .navbar {
  min-height: var(--navbar-main-height);
}

.site-navbar__topbar {
  max-height: var(--navbar-topbar-height);
  overflow: hidden;
  opacity: 1;
  transition:
    max-height 0.25s ease,
    opacity 0.2s ease,
    padding 0.25s ease,
    margin 0.25s ease;
}

.site-navbar.navbar-scrolled .site-navbar__topbar {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.site-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin-right: 1rem;
  flex-shrink: 0;
}

.site-navbar__brand-wrap {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-navbar__logo {
  display: block;
  width: auto;
  height: clamp(60px, 7vw, 82px);
  max-width: min(250px, 46vw);
}

.site-navbar__mobile-actions {
  margin-left: auto;
  flex-wrap: nowrap;
}

.site-navbar__mobile-actions .btn-ola,
.site-navbar__mobile-actions .btn-ola-outline {
  width: auto;
  flex: 0 0 auto;
}

.site-navbar__desktop-nav {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

.site-navbar__actions {
  flex: 0 0 auto;
}

.site-navbar__icon-link {
  min-width: 42px;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  color: var(--color-primary);
}

.footer-logo {
  display: block;
  width: auto;
  height: clamp(68px, 8vw, 96px);
  max-width: min(260px, 72vw);
}

.brand-wordmark__subtitle {
  color: var(--color-text-soft);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.site-navbar .nav-link {
  color: var(--color-text);
  font-weight: 500;
  padding: 0.35rem 0;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.nav-link--mobile:hover,
.nav-link--mobile:focus {
  color: var(--color-primary);
}

.site-navbar .navbar-toggler {
  padding: 0.35rem;
}

.site-navbar .navbar-toggler-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,26,46,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
  background: var(--color-background);
  z-index: 1095;
}

.offcanvas-backdrop {
  z-index: 1090;
}

.nav-link--mobile {
  font-size: 1.05rem;
  color: var(--color-text);
  font-weight: 500;
}

@media (min-width: 992px) {
  .site-navbar__main-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 1.5rem;
  }

  .site-navbar__brand-wrap {
    justify-self: start;
  }

  .site-navbar .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: center;
    grid-column: 2;
  }

  .site-navbar__desktop-nav .navbar-nav {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .site-navbar__actions {
    justify-self: end;
  }
}

.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #7ba6c8;
}

.page-hero--compact {
  min-height: 300px;
}

.page-hero__media,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__media {
  background-image: url("../images/header-img.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.page-hero__overlay {
  background: linear-gradient(135deg, rgba(64, 135, 193, 0.82) 0%, rgba(26, 26, 46, 0.62) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 4.5rem 0 3rem;
}

.page-hero__title {
  color: var(--color-white);
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  line-height: 0.98;
}

.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 640px;
}

.page-breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.52);
  --bs-breadcrumb-item-active-color: rgba(255, 255, 255, 0.76);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}

.page-breadcrumb a:hover,
.page-breadcrumb a:focus {
  color: var(--color-white);
}

.hero-wrapper {
  padding: 0 1rem;
}

.hero-section {
  position: relative;
  min-height: calc(100svh - var(--navbar-height-current));
  display: flex;
  align-items: center;
  background: #7ba6c8;
  overflow: hidden;
  border-radius: 1.50rem;
  transition: min-height 0.25s ease;
}

.hero-section__media,
.hero-section__overlay {
  position: absolute;
  inset: 0;
}

.hero-section__media {
  background-image: url("../images/hero-laola.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-section__overlay {
  background: linear-gradient(
    120deg,
    rgba(26, 26, 46, 0.45) 0%,
    rgba(64, 135, 193, 0.55) 100%
  );
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.hero-title {
  color: var(--color-white);
  font-size: clamp(2.7rem, 8vw, 5.6rem);
  line-height: 0.97;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 680px;
}

.ola-card,
.testimonial-card,
.contact-form-card,
.workshop-card,
.feature-strip,
.gallery-item,
.media-frame {
  background: var(--color-white);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
}

.ola-card {
  padding: 2rem 1.5rem;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ola-card:hover,
.workshop-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border);
  box-shadow: var(--shadow-strong);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(64, 135, 193, 0.12);
  color: var(--color-primary);
  font-size: 1.35rem;
}

.media-frame {
  overflow: hidden;
}

.media-frame img {
  width: 100%;
}

.media-frame--tall img {
  min-height: 100%;
}

.workshop-list {
  display: grid;
  gap: 1rem;
}

.workshop-card {
  padding: 1.5rem;
  border: 1px solid rgba(64, 135, 193, 0.12);
}

.workshop-card__date {
  width: 84px;
  min-width: 84px;
  border-radius: var(--radius-soft);
  background: var(--color-accent);
  color: var(--color-primary);
  text-align: center;
  padding: 0.9rem 0.75rem;
  margin-bottom: 1rem;
}

.workshop-card__date span {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.workshop-card__date small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gallery-filter {
  padding: 0.55rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-soft);
  background: rgba(255, 255, 255, 0.75);
}

.gallery-filter.is-active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.gallery-item {
  overflow: hidden;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.feature-strip {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1.25rem;
}

.feature-strip i,
.contact-meta__item i {
  color: var(--color-primary);
  font-size: 1.3rem;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
}

.process-step__number {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 1;
}

.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon {
  filter: invert(36%) sepia(25%) saturate(1068%) hue-rotate(172deg)
    brightness(91%) contrast(87%);
}

.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.testimonial-card__author {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  background: var(--color-background);
}

.contact-shell {
  border-radius: var(--radius-soft);
}

.contact-form-card {
  padding: 2rem;
}

.contact-meta__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 1rem;
  align-items: start;
  color: var(--color-text-soft);
}

.contact-meta__item a,
.contact-meta__item p {
  color: var(--color-text-soft);
}

.form-control,
.form-select {
  min-height: 48px;
  border-radius: 2px;
  border: 1px solid rgba(26, 26, 46, 0.14);
  padding: 0.85rem 1rem;
}

textarea.form-control {
  min-height: 140px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(64, 135, 193, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(64, 135, 193, 0.14);
}

#form-status {
  color: var(--color-text-soft);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  background: #132030;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  padding-bottom: 2rem;
}

.footer-copy,
.footer-schedule {
  color: rgba(255, 255, 255, 0.72);
}

.footer-title {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  min-height: 2.86rem;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-bottom a:hover,
.footer-socials a:hover {
  color: var(--color-white);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-socials a,
.footer-socials span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(26, 26, 46, 0.18);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  transform: translateY(6px);
  z-index: 1090;
}

.to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .contact-form-card {
    padding: 2.5rem;
  }
}

@media (min-width: 992px) {
  :root {
    --section-padding: 80px;
  }

  .workshop-card__date {
    margin-bottom: 0;
  }

  .gallery-grid .col-lg-4:nth-child(3) .gallery-item img {
    min-height: 560px;
  }

  .gallery-grid .col-lg-4:nth-child(5) .gallery-item img {
    min-height: 260px;
  }
}

@media (min-width: 1200px) {
  .hero-copy {
    padding-right: 2rem;
  }

  .contact-shell {
    padding: 1rem 0;
  }
}

@media (max-width: 991.98px) {
  :root {
    --navbar-main-height: 82px;
    --navbar-topbar-height: 44px;
  }

  .site-navbar__topbar {
    display: block;
  }

  .site-navbar__topbar .container {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .site-navbar__topbar .small {
    font-size: 0.95rem;
  }

  .site-navbar__topbar .btn.btn-sm {
    --bs-btn-padding-y: 0.2rem;
    --bs-btn-padding-x: 0.35rem;
    min-height: 32px;
  }

  .site-navbar__topbar svg {
    display: block;
  }

  .site-navbar .navbar {
    min-height: 82px;
  }

  .site-navbar__main-row {
    display: flex;
  }

  .site-navbar__logo {
    height: 62px;
    max-width: min(195px, 48vw);
  }

  .site-navbar .navbar-collapse {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .page-hero,
  .page-hero--compact {
    min-height: 250px;
  }

  .page-hero__content {
    padding: 3.75rem 0 2.5rem;
  }

  .hero-actions,
  .contact-form-card .d-flex {
    width: 100%;
  }

  .btn-ola,
  .btn-ola-outline {
    width: 100%;
  }

  .testimonial-card {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .hero-wrapper {
    padding: 0 0.5rem;
  }

  .hero-section {
    border-radius: 0.75rem;
  }
}
