:root {
  --coco-dark: #171813;
  --coco-lime: #5AFFB4;
  --coco-lime-bright: #5AFFB4;
  --coco-light: #f7f7f7;
  --coco-panel: #f9f9f9;
  --coco-muted: #5e6058;
  --coco-text: #3c3c3c;
  --coco-border: rgba(23, 24, 19, 0.12);
  --coco-shadow: 0 24px 60px rgba(23, 24, 19, 0.08);
  --coco-radius-xl: 2rem;
  --coco-font-sans: "SF Pro Display", "SF Pro Text", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--coco-font-sans);
  color: var(--coco-text);
  background: #fff;
  overflow-x: clip;
}

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

a {
  text-decoration: none;
}

.section-space {
  padding: 6rem 0;
}

.section-heading {
  max-width: 58rem;
}

.section-title {
  color: var(--coco-dark);
  font-size: clamp(2rem, 2.6vw, 3.25rem);
  line-height: 1.2;
  font-weight: 600;
}

.section-copy {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--coco-muted);
}

.eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--coco-lime);
}

.text-lime {
  color: var(--coco-lime) !important;
}

/* ── Global button shimmer ───────────────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.btn:hover::before,
.btn:focus::before {
  left: 130%;
}

.btn-lime-alt {
  background: #5AFFB4;
  border-color: #5AFFB4;
  color: var(--coco-dark);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-lime-alt:hover,
.btn-lime-alt:focus {
  background: #3fe09a;
  border-color: #3fe09a;
  color: var(--coco-dark);
}

.btn-lime {
  background: #5AFFB4;
  border-color: #5AFFB4;
  color: var(--coco-dark);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-lime:hover,
.btn-lime:focus {
  background: #3fe09a;
  border-color: #3fe09a;
  color: var(--coco-dark);
}

.btn-dark-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.btn-dark-glass:hover,
.btn-dark-glass:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.shadow-soft {
  box-shadow: var(--coco-shadow);
}

.hero-section {
  min-height: 100svh;
  min-height: 100dvh;
  background: url("../img/hero-bg.webp") center/cover no-repeat;
}

.hero-section--slider {
  background: none;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-carousel .hero-carousel-img {
  height: 100%;
}

.hero-carousel .carousel-inner {
  position: relative;
  z-index: 0;
}

.hero-carousel .hero-carousel-img {
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease;
}

.hero-carousel .carousel-item.active .hero-carousel-img {
  transform: scale(1.08);
}

.hero-carousel.carousel-fade .carousel-item {
  transition-duration: 0.95s;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 43, 50, 0) 4%, rgba(16, 43, 50, 0.9) 100%),
    linear-gradient(90deg, rgba(23, 24, 19, 0.32) 0%, rgba(23, 24, 19, 0.05) 55%, rgba(23, 24, 19, 0.18) 100%);
  pointer-events: none;
}

.hero-carousel-indicators {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 4;
  margin: 0;
  gap: 0.55rem;
}

.hero-carousel-indicators [data-bs-target] {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  transition: width 0.35s ease, background-color 0.35s ease;
}

.hero-carousel-indicators [data-bs-target].active {
  width: 1.8rem;
  background-color: rgba(255, 255, 255, 0.95);
}

.hero-carousel-indicators [data-bs-target]:focus-visible {
  outline: 2px solid rgba(223, 243, 158, 0.9);
  outline-offset: 3px;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: 11rem;
  padding-bottom: 0;
}

.contact-hero .hero-content {
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: 8rem;
}

.hero-copy {
  max-width: 48rem;
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
}

.avatar-cluster {
  display: flex;
  align-items: center;
}

.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  margin-left: -0.45rem;
}

.avatar-cluster .avatar:first-child {
  margin-left: 0;
}

.avatar--1 {
  background: url("../img/profile-1.webp") center/cover no-repeat;
}

.avatar--2 {
  background: url("../img/profile-2.webp") center/cover no-repeat;
}

.avatar--3 {
  background: url("../img/profile-3.webp") center/cover no-repeat;
}

.avatar--4 {
  background: url("../img/profile-4.webp") center/cover no-repeat;
}

.coco-navbar {
  padding: 1.6rem 1rem;
  transition: 0.3s ease;
  z-index: 2000;
}

.coco-navbar.is-scrolled {
  padding: 0.9rem 1rem;
}

.coco-navbar .hero-nav-shell {
  background: hsla(0, 0%, 98%, .6);
  border-radius: 1.5rem;
  padding: 0.5rem 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.coco-navbar.is-scrolled .hero-nav-shell {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-nav-shell {
  align-items: center;
}

.hero-logo img {
  width: 6.5rem;
  height: auto;
}

.coco-navbar .navbar-toggler {
  padding: 0.3rem;
}

.coco-navbar .navbar-toggler-icon {
  position: relative;
  width: 1.65rem;
  height: 1.65rem;
  background-image: none;
  background: linear-gradient(var(--coco-dark), var(--coco-dark)) center 50% / 1.4rem 0.14rem no-repeat;
}

.coco-navbar .navbar-toggler-icon::before,
.coco-navbar .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0.125rem;
  width: 1.4rem;
  height: 0.14rem;
  border-radius: 999px;
  background: var(--coco-dark);
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.coco-navbar .navbar-toggler-icon::before {
  top: 0.44rem;
}

.coco-navbar .navbar-toggler-icon::after {
  top: 1.02rem;
}

.coco-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0.74rem;
  transform: rotate(45deg);
}

.coco-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0.74rem;
  transform: rotate(-45deg);
}

.coco-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-size: 0 0;
}

.hero-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.coco-navbar .nav-link {
  color: var(--coco-dark);
}

.hero-section .nav-link {
  color: rgba(23, 24, 19, 0.92);
  font-weight: 500;
  font-size: 0.92rem;
  padding-inline: 1rem !important;
  letter-spacing: 0;
}


.hero-section .nav-link.active,
.hero-section .nav-link:hover,
.hero-section .nav-link:focus {
  color: #5AFFB4 !important;
}

.coco-navbar.is-scrolled .nav-link.active,
.coco-navbar.is-scrolled .nav-link:hover,
.coco-navbar.is-scrolled .nav-link:focus {
  color: #5AFFB4 !important;
}

.coco-navbar .nav-link.active,
.coco-navbar .nav-link:hover,
.coco-navbar .nav-link:focus {
  color: #5AFFB4;
}

.hero-tour-btn {
  font-size: 0.95rem;
}

.hero-icon-btn {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-grid;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  place-items: center;
  border-radius: 50%;
  background: var(--coco-dark);
  flex-shrink: 0;
}

.hero-icon-btn img {
  width: 1.35rem;
  height: 1.35rem;
}

.hero-icon-btn:hover {
  transform: translate(2px, -2px);
}

.hero-icon-btn--large {
  width: 2.6rem;
  height: 2.6rem;
}

.hero-copy-wrap {
  position: absolute;
  top: 56%;
  bottom: auto;
  transform: translateY(-50%);
  max-width: 50rem;
}

.hero-title {
  font-size: clamp(3rem, 4vw, 4.35rem);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0.05rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-cta-main {
  min-width: 10.5rem;
}

.hero-stats-pill {
  position: absolute;
  top: 9.2rem;
  right: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(74, 87, 30, 0.3);
  border: 1px solid rgba(90, 255, 180, 0.45);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-members,
.hero-reviews {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-reviews a {
  color: #fff;
}

.hero-reviews a:hover {
  color: #e4dbdb;
}

.hero-reviews i {
  color: #f1d83a;
}

.hero-stats-divider {
  width: 1px;
  height: 1.6rem;
  background: rgba(255, 255, 255, 0.35);
}

.hero-companies-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(40.5rem, calc(100vw - 1rem));
  height: 11.7rem;
  overflow: hidden;
}

.hero-companies-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-companies-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 2.55rem 1.9rem 1.35rem 3.35rem;
}

.hero-companies-title {
  color: #6d6d6d;
  font-size: 1.18rem;
  text-align: center;
  line-height: 1.55;
}

.hero-companies-logos {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-inline: 0.2rem;
}

.hero-companies-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: hero-logo-scroll 28s linear infinite;
}

.hero-companies-logos:hover .hero-companies-track {
  animation-play-state: paused;
}

.hero-company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.hero-company-logo img {
  max-height: 2rem;
  max-width: 7.5rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
}

@keyframes hero-logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.6rem));
  }
}

.image-card img {
  min-height: 100%;
  object-fit: cover;
}

.about-section {
  position: relative;
  overflow: hidden;
  /* background: #fbfbfb; */
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-shape {
  position: absolute;
  pointer-events: none;
  max-width: 100%;
}

.about-shape--left {
  top: clamp(4.5rem, 10vw, 8rem);
  left: clamp(-0.75rem, 1vw, 0.3rem);
  width: clamp(4.5rem, 8vw, 6rem);
}

.about-shape--right {
  top: clamp(0.5rem, 2vw, 0.9rem);
  right: clamp(-0.6rem, 1vw, 0.4rem);
  width: clamp(4.8rem, 8.5vw, 6.3rem);
}

.about-heading {
  max-width: 62rem;
}

.about-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: var(--coco-dark);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.about-title-line+.about-title-line {
  margin-top: 0.2rem;
}

.about-inline-photo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.6rem;
  box-shadow: 0 10px 24px rgba(23, 24, 19, 0.12);
}

.about-inline-photo--top {
  width: 3.9rem;
  height: 1.95rem;
}

.about-inline-photo--bottom {
  width: 4.05rem;
  height: 2rem;
}

.about-inline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-avatar-group {
  display: inline-flex;
  align-items: center;
  margin-inline: 0.15rem;
}

.about-avatar {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: 2px solid #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 6px 18px rgba(23, 24, 19, 0.16);
}

.about-avatar+.about-avatar {
  margin-left: -0.38rem;
}

.about-avatar--1 {
  background-image: url("../img/profile-1.webp");
}

.about-avatar--2 {
  background-image: url("../img/profile-2.webp");
}

.about-avatar--3 {
  background-image: url("../img/profile-3.webp");
}

.about-avatar--4 {
  background-image: url("../img/profile-4.webp");
}

.about-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  margin-top: 4.1rem;
}

.about-feature-media {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  height: 26rem;
  background: #ecebe7;
}

.video-audio-toggle {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.16s ease, background 0.16s ease, opacity 0.16s ease;
}

.video-audio-toggle i {
  font-size: 1.15rem;
  line-height: 1;
}

.video-audio-toggle:hover {
  background: rgba(0, 0, 0, 0.58);
  transform: translateY(-1px);
}

.video-audio-toggle:active {
  transform: translateY(0);
}

.video-audio-toggle:focus-visible {
  outline: 3px solid rgba(90, 255, 180, 0.7);
  outline-offset: 2px;
}

.video-audio-toggle.is-audio-on {
  background: var(--coco-lime);
  color: var(--coco-dark);
}

.about-feature-media img,
.about-feature-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-feature-copy {
  max-width: 31rem;
}

.about-feature-copy h3 {
  margin-bottom: 1.15rem;
  color: var(--coco-dark);
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.24;
  font-weight: 600;
}

.about-feature-copy p {
  margin-bottom: 0;
  color: #5f605a;
  font-size: 1rem;
  line-height: 2;
}

.workspace-section-heading {
  max-width: 63rem;
  margin-bottom: 2.8rem;
}

.workspace-kicker {
  color: var(--coco-dark);
  font-size: 1rem;
  font-weight: 600;
}

.workspace-section-title {
  margin-bottom: 1rem;
  color: var(--coco-dark);
  font-size: clamp(2.2rem, 3vw, 3.35rem);
  line-height: 1.16;
  font-weight: 600;
}

.workspace-section-copy {
  margin-bottom: 0;
  color: #5f605a;
  font-size: 1rem;
  line-height: 2;
}

.workspace-deck {
  position: relative;
  overflow: visible;
  min-height: clamp(23rem, 34vw, 28rem);
  padding: 0.25rem 0 1.25rem;
  perspective: 1400px;
}

/* .workspace-card,
.feature-card,
.testimonial-card,
.insight-card,
.contact-card,
.pricing-stack {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--coco-shadow);
} */

.workspace-card {
  overflow: hidden;
  height: 100%;
}

.workspace-card--deck {
  --workspace-order: 0;
  position: absolute;
  top: 0;
  left: 63.5%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 36.5%;
  max-width: 36.5%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 1.5rem;
  appearance: none;
  background: #fff;
  text-align: left;
  transition: left 0.68s cubic-bezier(0.22, 1, 0.36, 1), transform 0.68s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, background-color 0.45s ease, box-shadow 0.45s ease, color 0.45s ease;
  transform-style: preserve-3d;
  transform-origin: center center;
  transform: none;
  cursor: pointer;
  min-height: 21.2rem;
  opacity: 1;
  will-change: transform, left, opacity;
  overflow: hidden;
  box-shadow: var(--coco-shadow);
}


.workspace-card--deck:not(:first-child) {
  margin-left: 0;
}

.workspace-card--deck:not(.is-active):hover {
  box-shadow: 0 28px 56px rgba(23, 24, 19, 0.18);
}

.workspace-card--deck:hover .workspace-media--deck {
  transform: scale(1.06);
}

.workspace-card--deck:not(.is-active) {
  box-shadow: 0 16px 34px rgba(23, 24, 19, 0.08);
}

.workspace-card--deck.is-active {
  background: var(--coco-lime);
  box-shadow: 0 20px 46px rgba(143, 170, 63, 0.28);
  z-index: 2;
  opacity: 1;
}

.workspace-card--accent {
  background: var(--coco-lime);
}

.workspace-media {
  height: 18rem;
  overflow: hidden;
  background: #eef0ea;
}

.workspace-media--deck {
  display: block;
  height: 13rem;
  margin: 1.05rem 0.95rem 0;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.workspace-media img,
.feature-card img,
.gallery-card img,
.insight-card img,
.product-highlight img,
.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workspace-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 4rem;
  color: var(--coco-dark);
  background: linear-gradient(135deg, #f1f4e8, #5AFFB4);
}

.workspace-body,
.feature-body,
.insight-body {
  padding: 1.6rem;
}

.workspace-card--deck .workspace-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.1rem 1.2rem 1.6rem;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.workspace-title {
  color: var(--coco-dark);
  font-size: 1.12rem;
  line-height: 1.35;
  font-weight: 600;
}

.workspace-copy {
  color: #50534e;
  font-size: 0.97rem;
  line-height: 2;
}

.workspace-card--deck.is-active .workspace-copy {
  color: rgba(23, 24, 19, 0.88);
}

.workspace-card--deck.is-active .workspace-media--deck {
  transform: scale(1.02);
}

.workspace-body h3,
.feature-body h3,
.insight-body h3,
.pricing-card h3,
.site-footer h3 {
  color: var(--coco-dark);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.workspace-body p,
.feature-body p,
.testimonial-card p,
.insight-body p,
.pricing-card p,
.site-footer p,
.footer-links a {
  color: var(--coco-muted);
  line-height: 1.8;
}

.designed-section .section-copy {
  max-width: 40rem;
  margin-left: auto;
  margin-right: 2.25rem;
}

.designed-row {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
}

.designed-row .designed-card {
  flex: 1 1 0;
  min-width: 0;
}

.designed-row .designed-card--wide {
  flex: 1.5 1 0;
}

@media (max-width: 767.98px) {
  .designed-row {
    flex-direction: column;
  }

  .designed-row .designed-card,
  .designed-row .designed-card--wide {
    flex: 0 0 auto;
  }
}

.designed-card {
  position: relative;
  overflow: hidden;
  height: 16rem;
  border-radius: 2rem;
  isolation: isolate;
  background: #171813;
}

.designed-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.designed-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 24, 19, 0.1) 30%, rgba(23, 24, 19, 0.7) 100%);
}

.designed-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 0;
  background: rgba(102, 146, 255, 0.2);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 0;
  box-shadow: none;
}

.section-facilities {
  position: relative;
  background: #f8f9f5;
  overflow: hidden;
}

.section-facilities::before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  background: url("../img/shapes/shape4.webp") center/contain no-repeat;
  top: 25rem;
  left: -4rem;
  pointer-events: none;
  opacity: 0.9;
}

.section-facilities::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  background: url("../img/shapes/shape2.webp") center/contain no-repeat;
  bottom: 25rem;
  right: -4rem;
  pointer-events: none;
  opacity: 0.9;
}

.section-facilities .container {
  position: relative;
  z-index: 1;
}

.section-facilities .display-stacked {
  color: var(--coco-dark);
}

.section-facilities .section-copy {
  color: var(--coco-muted);
}

.display-stacked {
  font-size: clamp(3.25rem, 6vw, 6rem);
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.fac-word--work {
  color: #000000;
}

.fac-word--eat {
  color: #FF6502;
}

.fac-word--shop {
  color: #5AFFB4;
}

.pill-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 1rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--coco-lime-bright);
  color: var(--coco-dark);
  font-weight: 600;
  text-decoration: none;
}

.pill-icon {
  position: absolute;
  right: -3rem;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--coco-dark);
  color: #fff;
  transform: translateY(-50%);
}

.pill-icon i {
  font-size: 0.65rem;
  line-height: 1;
}

.pill-icon img,
.load-more-arrow img,
.book-arrow img,
.insights-arrow img {
  width: 1.35rem;
  height: 1.35rem;
}

.pill-badge--soft {
  background: var(--coco-lime);
  color: var(--coco-dark);
}

.pill-badge--dark {
  background: var(--coco-dark);
  color: #fff;
}

.pill-badge--dark i {
  font-size: 1.1rem;
}

.facility-card {
  position: relative;
  overflow: hidden;
  height: 16rem;
  border-radius: 1.9rem;
  box-shadow: var(--coco-shadow);
}

.facility-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(16 43 50 / 9%) 40%, rgb(73 106 114 / 85%) 100%);
}

.facility-card span {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 55px;
  background: rgba(90, 255, 180, 0.2);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 24px rgba(23, 24, 19, 0.15);
}

.section-success {
  background: #fff;
}

.success-image {
  position: relative;
  overflow: hidden;
  height: 28rem;
  border-radius: 2rem;
  box-shadow: var(--coco-shadow);
}

.success-image img,
.success-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.success-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--coco-dark);
  margin-bottom: 1.25rem;
}

.success-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.success-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1.25rem;
  color: var(--coco-text);
  font-size: 0.95rem;
}

.success-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coco-dark);
}

.btn-success-coco {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: black;
  color: #5AFFB4;
  font-weight: 600;
  text-decoration: none;
}

.btn-success-coco .pill-icon {
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--coco-dark);
}

.stats-panel {
  padding: 2.5rem;
  /* background: linear-gradient(180deg, #ffffff 0%, #fafbf6 100%); */
}

.stat-item {
  border-right: 1px dashed rgba(89, 145, 63, 0.35);
}

.stat-item--last {
  border-right: 0;
}

.stat-item h3 {
  color: var(--coco-lime);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.stat-item p {
  margin: 0;
  color: var(--coco-muted);
  font-weight: 600;
  font-size: 22px;
}

.trusted-logos {
  overflow: hidden;
  white-space: nowrap;
}

.trusted-logos-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.trusted-logos:hover .trusted-logos-track {
  animation-play-state: paused;
}

.trusted-logos-track img {
  max-height: 2.25rem;
  max-width: 8rem;
  width: auto;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
}

.trusted-logos-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.trusted-logo-placeholder {
  color: var(--coco-muted);
  font-weight: 600;
  font-size: 1.1rem;
}

.clients-section {
  position: relative;
}

.clients-intro {
  height: 100%;
}

.clients-title {
  color: var(--coco-dark);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.clients-copy {
  font-size: 1.05rem;
  line-height: 1.9;
}

.clients-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.clients-featured-grid {
  height: 100%;
  display: block;
}

.clients-featured-card {
  position: relative;
  border-radius: 1.6rem;
  background: #fff;
  box-shadow: var(--coco-shadow);
  border: 1px solid rgba(18, 18, 18, 0.06);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.clients-featured-card img {
  max-width: min(230px, 72%);
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.clients-featured-card--primary {
  background: linear-gradient(180deg, rgba(90, 255, 180, 0.18) 0%, rgba(255, 255, 255, 1) 60%);
  padding: 0;
  min-height: 100%;
}

.clients-featured-card--primary img {
  position: absolute !important;
  inset: 0 !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center;
  filter: none !important;
  opacity: 1 !important;
}

.clients-featured-card:hover {
  transform: translateY(-6px);
}

.clients-featured-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.clients-divider {
  height: 1px;
  width: 100%;
  margin: clamp(2.2rem, 4vw, 3rem) 0;
  background: linear-gradient(90deg, transparent 0%, rgba(18, 18, 18, 0.08) 25%, rgba(18, 18, 18, 0.08) 75%, transparent 100%);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.client-logo-card {
  perspective: 900px;
  border-radius: 1.4rem;
}

.client-logo-inner {
  position: relative;
  border-radius: 1.4rem;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 120px;
}

.client-logo-face {
  position: absolute;
  inset: 0;
  border-radius: 1.4rem;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: var(--coco-shadow);
  border: 1px solid rgba(18, 18, 18, 0.06);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 1.25rem;
}

.client-logo-face img {
  max-height: 56px;
  max-width: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-logo-front img {
  filter: grayscale(100%);
  opacity: 0.78;
  transition: opacity 0.25s ease;
}

.client-logo-back {
  transform: rotateY(180deg);
  background: linear-gradient(180deg, rgba(90, 255, 180, 0.16) 0%, rgba(255, 255, 255, 1) 70%);
}

.client-logo-back img {
  filter: grayscale(0%);
  opacity: 1;
}

.client-logo-card:hover .client-logo-inner {
  transform: rotateY(180deg);
}

.client-logo-card--more .client-logo-face {
  background: #171813;
  border-color: transparent;
  box-shadow: none;
}

.client-logo-card--more .client-logo-back {
  background: linear-gradient(145deg, #2a3318 0%, #171813 55%, #1c2410 100%);
}

.client-more-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  padding: 0.25rem;
}

.client-more-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(90, 255, 180, 0.75);
}

.client-more-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.02em;
}

.client-more-title::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin: 0.55rem auto 0;
  border-radius: 999px;
  background: #5AFFB4;
}

@media (max-width: 992px) {
  .clients-featured-grid {
    display: block;
  }

  .clients-featured-card--primary {
    min-height: 320px;
  }

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

@media (max-width: 576px) {
  .clients-stats {
    grid-template-columns: 1fr;
  }

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

  .client-logo-inner {
    min-height: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .client-logo-inner,
  .clients-featured-card {
    transition: none !important;
  }

  .client-logo-card:hover .client-logo-inner {
    transform: none;
  }

  .client-logo-front img {
    filter: grayscale(0%);
    opacity: 1;
  }
}

.feature-card {
  overflow: hidden;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--coco-shadow);
}

.feature-card img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.gallery-col--text {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.gallery-card--tall {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.gallery-text h2 {
  margin-bottom: 1rem;
}

.gallery-text p {
  color: var(--coco-text);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--coco-shadow);
  min-height: 16rem;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(23, 24, 19, 0.1) 30%, rgba(23, 24, 19, 0.7) 100%); */
}

.gallery-tag {
  position: absolute;
  z-index: 1;
  left: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  padding: 0.65rem 1.25rem;
  border-radius: 55px;
  background: rgba(90, 255, 180, 0.2);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 24px rgba(23, 24, 19, 0.15);
}

@media (max-width: 991.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-col--text,
  .gallery-card--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-col--text {
    grid-column: 1 / 3;
    flex-direction: row;
    align-items: stretch;
  }

  .gallery-text {
    flex: 1 1 0;
  }

  .gallery-col--text .gallery-card {
    flex: 1 1 0;
  }
}

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

  .gallery-col--text {
    grid-column: auto;
    flex-direction: column;
  }
}

.product-highlight {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  min-height: 22rem;
  height: 100%;
  box-shadow: var(--coco-shadow);
}

.product-highlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border: 4px solid #F1D83A;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coco-lime);
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 0 0 0 rgba(90, 255, 180, 0.7);
  animation: badge-pulse 2s infinite;
  cursor: pointer;
}

@keyframes badge-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(90, 255, 180, 0.7);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(90, 255, 180, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(90, 255, 180, 0);
  }
}

.product-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  color: var(--coco-lime);
  font-weight: 600;
}

.pricing-stack {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid #ecefe4;
  border-radius: 1.4rem;
  background: #fff;
  transition: background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.pricing-stack .pricing-card.is-active {
  background: #c8ffe0;
  border-color: #c8ffe0;
}

.pricing-stack .pricing-card:not(.is-active) .pricing-arrow {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pricing-stack .pricing-card.is-active .pricing-arrow {
  opacity: 1;
  transform: scale(1);
}

.pricing-body {
  flex: 1 1 0;
}

.pricing-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.pricing-card p {
  margin-bottom: 0.65rem;
  color: var(--coco-muted);
  font-size: 0.95rem;
}

.pricing-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--coco-lime);
  background: transparent;
  font-size: 2.35rem;
}

.pricing-stack .pricing-card.is-active .pricing-icon {
  background: transparent;
  color: var(--coco-dark);
}

.pricing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--coco-dark);
}

.pricing-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pricing-tags i {
  font-size: 0.9rem;
}

.pricing-arrow {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--coco-dark);
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

.testimonials-slider {
  overflow: hidden;
  margin-top: 2.5rem;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testimonial-slide 28s linear infinite;
  will-change: transform;
}

.testimonials-slider:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 22rem;
  flex-shrink: 0;
  padding: 2rem;
  background: var(--coco-light);
  border-radius: 1.5rem;
}

@keyframes testimonial-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.stars {
  color: #f1d83a;
  letter-spacing: 0.2em;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.person-avatar {
  position: relative;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coco-lime), #b8ffd9);
  color: var(--coco-dark);
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}

.person-avatar::before {
  content: attr(data-initial);
}

.person-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonial-card h5 {
  margin-bottom: 0.15rem;
  color: var(--coco-dark);
  font-size: 1.05rem;
  font-weight: 600;
}

.testimonial-person span {
  color: var(--coco-muted);
  font-size: 0.9rem;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  color: var(--coco-lime) !important;
  background-color: #171813;
}

.load-more-arrow {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-left: 0.4rem;
  border-radius: 50%;
  background: var(--coco-dark);
  color: var(--coco-lime);
  font-size: 1.1rem;
  vertical-align: middle;
}

.contact-panel {
  position: relative;
  background: #0f2328;
  border-radius: 2.5rem;
  padding: 3rem;
  overflow: hidden;
}

.contact-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.contact-shape--top {
  top: 0rem;
  left: 5rem;
  width: 8rem;
}

.contact-shape--right-top {
  top: 4rem;
  right: 0rem;
  width: 4rem;
}

.contact-shape--bottom-right {
  bottom: 0rem;
  right: 20%;
  width: 8rem;
}

.contact-shape--bottom-left {
  bottom: 2rem;
  left: 0rem;
  width: 4rem;
}

.contact-title {
  color: #fff;
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.35;
  font-weight: 600;
}

.book-arrow {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.4rem;
  margin-top: 12px;
  border-radius: 50%;
  background: #171813;
  color: var(--coco-lime);
  font-size: 1.1rem;
  vertical-align: middle;
}

.contact-card {
  position: relative;
  z-index: 1;
  padding: 2rem;
  background: #fff;
  border-radius: 1.5rem;
}

.contact-card .form-control {
  border: 1px solid rgba(60, 60, 60, 0.18);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  color: var(--coco-dark);
  font-size: 0.95rem;
}

.contact-card .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(90, 255, 180, 0.2);
  border-color: var(--coco-lime);
}

.contact-card .btn-dark {
  color: var(--coco-lime);
}

.insights-arrow {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--coco-dark);
  color: var(--coco-lime);
  font-size: 1.25rem;
  text-decoration: none;
}

.insight-card {
  overflow: hidden;
  background: var(--coco-light);
  border-radius: 1.5rem;
  padding: 1rem;
}

.insight-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 1rem;
}

.insight-body {
  padding: 1.5rem 0.5rem 0.5rem;
}

.insight-body h3 {
  margin-bottom: 1.25rem;
  color: var(--coco-dark);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
}

.insight-body p {
  color: var(--coco-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.insight-tag {
  display: inline-flex;
  margin-bottom: 1rem;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: var(--coco-lime);
  color: var(--coco-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.site-footer {
  padding: 5rem 0 2rem;
  background: #eaeaea;
}

.footer-top {
  align-items: flex-start;
}

.footer-title {
  max-width: 38rem;
  color: var(--coco-dark);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.25;
  font-weight: 600;
}

.footer-logo {
  height: 5rem;
  width: auto;
}

.site-footer h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--coco-dark);
}

.footer-address {
  line-height: 1.7;
}

.site-footer a {
  color: var(--coco-muted);
  display: inline-block;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--coco-dark);
}

.footer-links a {
  letter-spacing: 0;
  transition: letter-spacing 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
  letter-spacing: 0.06em;
}

.footer-legal a {
  letter-spacing: 0;
  transition: letter-spacing 0.3s ease, color 0.3s ease;
}

.footer-legal a:hover {
  letter-spacing: 0.06em;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  color: var(--coco-dark);
  font-size: 1.1rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(23, 24, 19, 0.16);
  color: var(--coco-muted);
  font-size: 0.95rem;
  text-align: center;
}

@media (min-width: 992px) {
  .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .footer-bottom > p:first-child {
    justify-self: start;
  }

  .footer-bottom > .footer-powered {
    justify-self: center;
  }

  .footer-bottom > .footer-legal {
    justify-self: end;
    text-align: right;
  }
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--coco-muted);
}

.footer-powered a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border-radius: 0.35rem;
  overflow: hidden;
  transition: transform 0.2s ease;
  letter-spacing: 0 !important;
}

.footer-powered a:hover {
  transform: translateY(-1px);
  color: inherit;
  letter-spacing: 0 !important;
}

.footer-powered img {
  display: block;
  height: 1.1rem;
  width: auto;
  filter: grayscale(1) brightness(0.52) contrast(1.05);
  opacity: 0.8;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.footer-powered a:hover img {
  filter: grayscale(1) brightness(0.42) contrast(1.05);
  opacity: 0.95;
}

@media (max-width: 991.98px) {
  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .footer-bottom .footer-powered {
    justify-content: center;
  }
}

@media (max-width: 1199.98px) {
  .coco-navbar .hero-nav-shell {
    border-radius: 1.75rem;
  }

  .coco-navbar .navbar-collapse {
    margin-top: 1rem;
  }

  .hero-nav-actions {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }

  /* .hero-nav-actions .hero-icon-btn,
  .coco-navbar .btn {
    width: auto;
  } */

  .hero-copy-wrap {
    left: 1rem;
    right: 1rem;
    top: 26rem;
    bottom: auto;
    transform: none;
  }

  .hero-stats-pill {
    right: 1rem;
  }
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 4.5rem 0;
  }

  .workspace-deck {
    display: grid;
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    min-height: 0;
    padding: 0;
    perspective: none;
  }

  .workspace-card--deck,
  .workspace-card--deck:not(:first-child) {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex: initial;
    width: 100%;
    max-width: none;
    height: auto;
    margin-left: 0;
    margin-top: 0;
    transform: none;
    opacity: 1;
  }

  .workspace-card--deck.is-active {
    width: 100%;
    max-width: none;
    flex-basis: auto;
  }

  .about-title-line {
    font-size: clamp(1.8rem, 4.4vw, 2.7rem);
  }

  .about-feature {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-top: 3rem;
  }

  .about-feature-copy {
    max-width: none;
  }

  .hero-section,
  .hero-content {
    min-height: 45rem;
  }

  .hero-section.contact-hero {
    min-height: 600px;
  }

  .contact-hero .hero-content {
    min-height: 700px;
    padding-top: 8rem;
  }

  .hero-section.contact-hero.gallery-hero,
  .hero-section.gallery-hero,
  .contact-hero.gallery-hero,
  .contact-hero.gallery-hero .hero-content {
    min-height: 0 !important;
    padding-top: 0 !important;
    height: auto !important;
  }

  .hero-content {
    padding-top: 9rem;
  }

  .stat-item {
    border-right: 0;
  }

  .contact-panel,
  .stats-panel {
    padding: 2rem;
  }

  .hero-stats-pill {
    top: 9.5rem;
    left: 1rem;
    right: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-copy-wrap {
    top: 20rem;
    bottom: auto;
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .hero-content {
    padding-top: 8rem;
    min-height: 48rem;
    padding-bottom: 0;
  }

  .workspace-section-heading {
    margin-bottom: 2rem;
  }

  .workspace-section-title {
    font-size: 2rem;
  }

  .workspace-section-copy {
    line-height: 1.85;
  }

  .workspace-deck {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .workspace-media--deck {
    height: 14rem;
  }

  .about-section {
    padding-top: 4.75rem;
  }

  .about-shape--left {
    top: 2.8rem;
    left: -1rem;
    width: 5.25rem;
  }

  .about-shape--right {
    top: 0.65rem;
    right: -0.9rem;
    width: 5.5rem;
  }

  .loc-shape--right {
    right: -0.9rem;
  }

  .loc-shape--between {
    right: 0.65rem;
  }

  .loc-shape {
    width: 5.5rem;
  }

  .about-heading {
    max-width: 100%;
    font-size: 1.95rem;
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: -0.035em;
  }

  .about-title-line {
    display: contents;
  }

  .about-title-line+.about-title-line {
    margin-top: 0;
  }

  .about-heading>span,
  .about-heading>.about-inline-photo,
  .about-heading>.about-avatar-group {
    vertical-align: middle;
  }

  .about-inline-photo--top,
  .about-inline-photo--bottom {
    width: 3.3rem;
    height: 1.7rem;
  }

  .about-avatar {
    width: 1.45rem;
    height: 1.45rem;
  }

  .about-feature {
    margin-top: 2.5rem;
  }

  .about-feature-media {
    min-height: 14rem;
  }

  .about-feature-copy {
    text-align: center;
  }

  .about-feature-copy h3 {
    font-size: 2rem;
    margin-bottom: 0.9rem;
  }

  .about-feature-copy p {
    line-height: 1.8;
  }

  .trusted-box,
  .contact-panel,
  .workspace-card,
  .feature-card,
  .testimonial-card,
  .insight-card,
  .contact-card {
    border-radius: 1.4rem;
  }

  .product-highlight {
    min-height: 20rem;
  }

  .site-footer {
    padding-top: 4rem;
  }

  .hero-stats-pill {
    top: 9.25rem;
    left: 0.85rem;
    right: 0.85rem;
    padding: 0.75rem 0.85rem;
  }

  .hero-copy-wrap {
    left: 1rem;
    right: 1rem;
    top: 15.5rem;
    bottom: auto;
    transform: none;
  }

  .hero-title {
    font-size: 2.45rem;
    margin-bottom: 1rem !important;
  }

  .hero-copy {
    font-size: 1rem;
    margin-bottom: 1rem !important;
  }

  .hero-cta {
    flex-wrap: wrap;
  }

  .hero-companies-card {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    height: auto;
    background: #fff;
    border: 0;
    border-radius: 1rem 1rem 0 0;
    box-shadow: none;
  }

  .hero-companies-panel {
    display: none;
  }

  .hero-companies-inner {
    position: relative;
    inset: auto;
    padding: 1.2rem 1rem 1rem;
  }

  .hero-companies-title {
    font-size: 0.98rem;
  }

  .hero-companies-logos {
    gap: 0.7rem;
  }

  .hero-companies-track {
    gap: 0.7rem;
  }

  .hero-company-logo img {
    max-height: 1.35rem;
  }
}

@media (max-width: 575.98px) {
  .coco-navbar .hero-nav-shell {
    padding: 0.75rem 1rem;
  }

  .about-shape--left {
    top: 7.3rem;
    left: -0.35rem;
    width: 3.7rem;
  }

  .about-shape--right {
    top: 0.9rem;
    right: -0.2rem;
    width: 3.9rem;
  }

  .loc-shape--right {
    right: -0.2rem;
  }

  .loc-shape--between {
    right: 0.5rem;
  }

  .loc-shape {
    width: 3.9rem;
  }

  .about-title-line {
    display: contents;
  }

  .about-heading {
    font-size: 1.75rem;
  }

  .about-feature-media {
    min-height: 12.5rem;
  }

  .hero-section,
  .hero-content {
    /* min-height: 45rem; */
    min-height: 40rem;
  }

  .hero-section.contact-hero,
  .contact-hero .hero-content {
    min-height: 600px !important;
  }

  .hero-section.contact-hero.gallery-hero,
  .hero-section.gallery-hero,
  .contact-hero.gallery-hero,
  .contact-hero.gallery-hero .hero-content {
    min-height: 0 !important;
    padding-top: 0 !important;
    height: auto !important;
  }

  .contact-panel,
  .stats-panel {
    padding: 1.4rem;
  }

  .footer-bottom {
    font-size: 0.95rem;
  }

  .hero-stats-pill {
    top: 8.5rem;
    font-size: 0.84rem;
    gap: 0.6rem;
    padding: 0.7rem 0.8rem;
  }

  .hero-members,
  .hero-reviews {
    gap: 0.5rem;
  }

  .hero-stats-divider {
    display: none;
  }

  .hero-copy-wrap {
    top: 14.5rem;
    transform: none;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-copy {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-companies-inner {
    padding: 1rem 0.75rem 0.85rem;
  }

  .hero-companies-title {
    margin-bottom: 0.85rem !important;
    font-size: 0.88rem;
  }

  .hero-companies-logos {
    padding-inline: 0;
  }

  .hero-companies-track {
    gap: 1.5rem;
  }

  .hero-company-logo img {
    max-height: 2rem;
  }

  .hero-company-logo img {
    max-width: 5rem;
  }
}

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */

.hero-section.contact-hero {
  min-height: 100svh;
  min-height: 100dvh;
}

.contact-hero .hero-content {
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: 8rem;
}

.contact-hero {
  position: relative;
  background: none !important;
  --page-banner-image: url("../img/contact-hero-bg.webp");
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--page-banner-image) center / cover no-repeat;
  transform: scale(1);
  transform-origin: center center;
  animation: contactHeroZoom 6s ease forwards;
}

.contact-hero.events {
  --page-banner-image: url("../img/banner-events.webp");
}

.contact-hero.products {
  --page-banner-image: url("../img/banner-product.webp");
}

.contact-hero.location {
  --page-banner-image: url("../img/banner-location.webp");
}

.contact-hero.contact {
  --page-banner-image: url("../img/banner-contact.webp");
}

@media (max-width: 767.98px) {
  .contact-hero.contact::before {
    background-position: right center;
  }
}

.contact-hero.about {
  --page-banner-image: url("../img/about-us.webp?v=2");
}

.contact-hero.about::before {
  background-position: center 10%;
}

.contact-hero.client {
  --page-banner-image: url("../img/banner-clients.webp");
}

.contact-hero.gallery-hero {
  min-height: 0;
  overflow: visible;
}

.contact-hero.gallery-hero::before,
.contact-hero.gallery-hero .hero-backdrop {
  display: none;
}

.contact-hero.gallery-hero .hero-content {
  display: none;
}

@keyframes contactHeroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.contact-section-bg {
  background: #f9f9f9;
}

.contact-section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}

.contact-section-sub {
  color: #000;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #1a1a18;
  color: #5AFFB4;
  font-size: 2rem;
}

.contact-info-label {
  color: #000;
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.8;
}

.contact-info-value {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
}

.contact-info-value a {
  color: var(--coco-dark);
  text-decoration: none;
}

.contact-info-value a:hover {
  color: var(--coco-lime);
}

.contact-form-card {
  background: #fff;
  border-radius: 1.8rem;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 0 41px rgba(0, 0, 0, 0.1);
  border: none;
}

.contact-form-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #171813;
}

.contact-form-sub {
  color: var(--coco-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-input {
  border: 1px solid #3c3c3c;
  border-radius: 0.9rem;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--coco-dark);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus {
  border-color: #5AFFB4;
  box-shadow: 0 0 0 3px rgba(90, 255, 180, 0.2);
  outline: none;
}

.contact-input::placeholder {
  color: #7e7e7e;
  font-weight: 300;
}

.contact-send-btn {
  background: #171813;
  color: #5AFFB4;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.contact-send-btn:hover {
  background: #2a3318;
  color: #5AFFB4;
}

.contact-input.is-error {
  border: 1px solid #e05252 !important;
  background-color: #fff;
  box-shadow: none;
}

.contact-input.is-error:focus {
  border-color: #e05252 !important;
  box-shadow: none;
}

.contact-input.is-valid {
  border: 1px solid #5AFFB4 !important;
  box-shadow: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23c3dd70' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 0.9rem 0.9rem;
}

.contact-input.is-valid:focus {
  border-color: #5AFFB4 !important;
  box-shadow: none;
}

textarea.contact-input.is-valid {
  background-position: right 0.9rem center;
}

.field-error {
  display: none;
  align-items: center;
  gap: 0.3rem;
  color: #e05252;
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 0.35rem;
  padding-left: 0.1rem;
}

.field-error.is-visible {
  display: flex;
  animation: errSlide 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.field-error.is-visible::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #e05252;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.contact-terms {
  text-align: left;
}

.contact-terms-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  cursor: pointer;
  color: var(--coco-muted);
  font-size: 0.86rem;
  line-height: 1.55;
  font-weight: 400;
}

.contact-terms-check {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  border: 1.5px solid rgba(23, 24, 19, 0.35);
  border-radius: 0.2rem;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.contact-terms-check::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  transform: scale(0);
  transition: transform 0.12s ease;
  background: var(--coco-dark);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%);
}

.contact-terms-check:checked {
  background: var(--coco-lime);
  border-color: var(--coco-lime);
}

.contact-terms-check:checked::before {
  transform: scale(1);
}

.contact-terms-check.is-error {
  border-color: #e05252;
}

.contact-terms-text a {
  color: var(--coco-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-terms-text a:hover {
  color: var(--coco-lime);
}

.contact-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit-error,
.form-status--error {
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
  color: #9b1c1c;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  text-align: left;
}

.form-submit-error:not([hidden]),
.form-status--error:not([hidden]),
.form-status--error.is-visible {
  display: flex;
  animation: errSlide 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.form-status-icon {
  font-size: 1.35rem;
  color: #e05252;
  line-height: 1;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.form-status-title {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #9b1c1c;
}

.form-status-text {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #b42318;
  line-height: 1.45;
}

@keyframes errSlide {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.form-success {
  display: none;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(90, 255, 180, 0.12) 0%, rgba(90, 255, 180, 0.04) 100%);
  border: 1.5px solid rgba(90, 255, 180, 0.4);
  animation: successPop 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes successPop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.form-success-icon {
  font-size: 3rem;
  color: #5AFFB4;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(90, 255, 180, 0.45));
}

.form-success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coco-dark);
  margin-bottom: 0.5rem;
}

.form-success-sub {
  color: var(--coco-muted);
  font-size: 0.95rem;
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-map-section {
  line-height: 0;
}

.contact-team-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.25rem;
}

.contact-team-title {
  font-size: 2.75rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
}

.contact-team-group {
  margin-top: 2.75rem;
}

.contact-team-divider {
  width: 100%;
  height: 1px;
  margin: 3.25rem 0 0.5rem;
  border: 0;
  background: rgba(160, 161, 154, 0.35);
}

.contact-team-group-title {
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 600;
  color: #171813;
  margin: 0 0 0.25rem;
  text-align: center;
}

.text-lime {
  color: #5AFFB4;
}

.contact-team-card {
  position: relative;
  border-radius: 1.875rem;
  overflow: hidden;
}

.contact-team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 1.875rem;
  background: #2a2a2a;
}

.contact-team-img--placeholder {
  background: linear-gradient(160deg, #3a3a36 0%, #1f201c 100%);
}

.contact-team-name-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(102, 146, 255, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0;
  white-space: nowrap;
  text-align: center;
  border: 0;
}

/* ════════════════════════════════════════
   PRIVACY PAGE
════════════════════════════════════════ */

.privacy-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.4rem;
}

.privacy-updated {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.privacy-sub-label {
  font-size: 1rem;
  font-weight: 600;
  color: #171813;
  margin-bottom: 0.25rem;
  margin-top: 0.75rem;
}

.privacy-intro {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
}

.privacy-block {
  margin-bottom: 2.5rem;
}

.privacy-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #171813;
  margin-bottom: 0.5rem;
}

.privacy-block p {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.privacy-list {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.privacy-list li {
  margin-bottom: 0.4rem;
}

.privacy-block a {
  color: #171813;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-block a:hover {
  color: #5AFFB4;
}

/* ════════════════════════════════════════
   LOCATION PAGE
════════════════════════════════════════ */

.loc-section {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.loc-section-alt {
  position: relative;
  background: #f4f5f0;
  overflow: hidden;
}

.loc-section .container,
.loc-section-alt .container {
  position: relative;
  z-index: 1;
}

.loc-shape {
  position: absolute;
  top: 0;
  pointer-events: none;
  max-width: 100%;
  z-index: 2;
  will-change: top;
  width: clamp(4.8rem, 8.5vw, 6.3rem);
}

.loc-info-col {
  position: relative;
  overflow: visible;
}

.loc-shape--right {
  right: clamp(-0.6rem, 1vw, 0.4rem);
  z-index: 0;
}

.loc-shape--between {
  left: auto;
  right: clamp(0.35rem, 1.2vw, 1rem);
}

.loc-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: black;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.loc-title {
  font-size: 2.75rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.loc-tabs {
  display: flex;
  gap: 2.5rem;
  border-bottom: none;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.loc-tab {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: #aaa;
  padding: 0 0 0.6rem 0;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.loc-tab.active {
  color: #5AFFB4;
  font-weight: 700;
}

.loc-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #5AFFB4;
  border-radius: 2px;
}

.loc-tab.disabled-tab {
  cursor: default;
  pointer-events: none;
}

.loc-divider {
  border-color: black;
  margin-top: 0;
  margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
  .loc-divider {
    margin-bottom: 1rem;
  }

  .loc-section .row.g-5.mt-2 {
    margin-top: 0 !important;
    --bs-gutter-y: 1.25rem;
  }
}

.loc-card {
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  background: #111;
  height: 100%;
  min-height: 26rem;
}

.loc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(0, 0, 0, 0.85) 100%);
  border-radius: 1.25rem;
  pointer-events: none;
}

.loc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.75;
  position: absolute;
  inset: 0;
}

.loc-card-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.loc-card-number {
  color: #5AFFB4;
  font-size: 1.5rem;
  font-weight: 700;
}

.loc-card-badge {
  background: rgba(90, 255, 180, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 55px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(90, 255, 180, 0.35);
}

.loc-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem 1.5rem;
  z-index: 2;
}

.loc-card-city {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
  letter-spacing: 0.02em;
}

.loc-card-district {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.loc-card-hint {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.loc-map-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.loc-map-btn {
  display: inline-flex;
  align-items: center;
  background: #5AFFB4;
  color: #171813;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
}

.loc-map-btn:hover {
  background: #3fe09a;
  color: #171813;
}

.loc-map-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #171813;
  color: #5AFFB4;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  font-size: 0.9rem;
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.2s;
}

.loc-map-arrow:hover {
  background: #2a3318;
  color: #5AFFB4;
}

.loc-info-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #171813;
  margin-bottom: 0.6rem;
}

.loc-info-address {
  color: #171813;
  font-size: 1rem;
  line-height: 1.8;
}

.loc-info-divider {
  border-color: black;
  margin: 1.5rem 0;
}

.loc-nearby-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.loc-nearby-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #333;
}

.loc-nearby-icon {
  color: #5AFFB4;
  font-size: 1.1rem;
  width: 1.4rem;
  flex-shrink: 0;
  text-align: center;
}

.loc-nearby-name {
  white-space: nowrap;
  color: #171813;
  font-weight: 500;
}

.loc-nearby-dots {
  flex: 1;
  position: relative;
  height: 1px;
  margin: 0 0.5rem;
  border-bottom: 1.5px dotted #5AFFB4;
}

.loc-nearby-dots::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #5AFFB4;
  border-radius: 50%;
}

.loc-nearby-time {
  background: #5AFFB4;
  color: #171813;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 6px;
  white-space: nowrap;
}

/* ════════════════════════════════════════
   EVENTS PAGE
════════════════════════════════════════ */

.ev-label {
  font-size: 0.95rem;
  color: black;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.ev-main-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #111;
}

.ev-featured-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  width: 100%;
  height: 370px;
}

.ev-featured-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.ev-featured-people {
  position: absolute;
  bottom: 0;
  right: 0;
  /* width: 68%; */
  /* height: 100%; */
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.ev-featured-overlay {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin: 1rem 1rem 1rem 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-radius: 1rem;
}

.ev-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--coco-lime);
  border-radius: 0.5rem;
  width: 52px;
  padding: 0.3rem 0.5rem;
  line-height: 1.2;
}

.ev-date-day {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
}

.ev-date-month {
  font-size: 0.75rem;
  font-weight: 600;
  color: #111;
}

.ev-category-tag {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.25rem 0.9rem;
  border-radius: 7px;
  width: fit-content;
}

.ev-featured-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}

.ev-featured-desc {
  font-size: 1rem;
  color: white;
  margin: 0;
  line-height: 1.5;
}

.ev-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #171813;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.2s;
}

.ev-arrow-btn:hover {
  background: #3fe09a;
  color: #111;
}

/* Card Mobile View */
@media (max-width: 575px) {
  .ev-featured-card {
    height: auto;
    min-height: 400px;
  }

  .ev-featured-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ev-featured-people {
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
  }

  .ev-featured-card .row {
    /* align-items: flex-end !important; */
    height: 100%;
  }

  .ev-featured-card .col-sm-4 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .ev-featured-overlay {
    margin: 0.75rem;
    background: rgb(171 156 156 / 45%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .ev-featured-title,
  .ev-featured-desc,
  .ev-category-tag {
    color: #fff !important;
  }
}

/* Card Mobile View */

/* Events Grid Cards */
.ev-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 380px;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.ev-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  border-radius: 1rem;
  pointer-events: none;
}

.ev-card-date {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--coco-lime);
  border-radius: 0.4rem;
  width: 44px;
  padding: 0.2rem 0.4rem;
  line-height: 1.2;
}

.ev-card-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.ev-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

.ev-card--tall {
  margin-top: 2rem;
}

.ev-card-arrow {
  flex-shrink: 0;
  margin-top: 0;
  background: #171813;
  color: #fff;
}

@media (max-width: 767px) {
  .ev-card--tall {
    margin-top: 0;
  }

  .ev-reel-row {
    flex-wrap: wrap;
    height: auto !important;
    gap: 0.75rem;
  }

  .ev-reel-item,
  .ev-reel-item:hover {
    flex: 0 0 calc(50% - 0.375rem) !important;
    width: calc(50% - 0.375rem);
    height: 260px;
  }

  .ev-reel-card {
    height: 100%;
    aspect-ratio: unset;
  }
}

/* Instagram Reels */
.ev-insta-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ev-insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #111;
  color: var(--coco-lime);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.ev-insta-btn:hover {
  background: #333;
  color: #fff;
}

.ev-insta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #111;
  color: var(--coco-lime);
  border-radius: 50%;
  font-size: 1rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}

.ev-insta-arrow:hover {
  background: #333;
  color: var(--coco-lime);
}

.ev-reel-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  height: 400px;
  overflow: hidden;
}

.ev-reel-item {
  flex: 1;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
}

.ev-reel-item:hover {
  flex: 2.5;
}

.ev-reel-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  background: #111;
}

.ev-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ev-reel-insta {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 38px;
  height: 38px;
  border: 3px solid #F1D83A;
  border-radius: 50%;
  background: var(--coco-lime);
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 0 0 0 rgba(90, 255, 180, 0.7);
  animation: badge-pulse 2s infinite;
}

.ev-reel-audio-toggle {
  top: 0.75rem;
  left: auto;
  right: 0.75rem;
  z-index: 3;
}

/* ════════════════════════════════════════
   GALLERY PAGE
════════════════════════════════════════ */

.gallery-section {
  padding-top: calc(7.5rem + 2vw);
  background: #fff;
}

.gallery-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-tab {
  background: none;
  border: 1.5px solid transparent;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  color: #555;
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-tab.active {
  background: #5AFFB4;
  color: #171813;
  font-weight: 700;
  border-color: #5AFFB4;
}

.gallery-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.gallery-tab:hover::before {
  left: 130%;
}

.gallery-tab:not(.active):hover {
  color: #171813;
  border-color: #5AFFB4;
}

.gallery-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #171813;
  margin-bottom: 0.5rem;
}

.gallery-video-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.gallery-video-card img,
.gallery-video-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.gallery-video-card:hover img,
.gallery-video-card:hover video {
  opacity: 0.85;
}

.gallery-media-tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(90, 255, 180, 0.35);
  background: rgba(90, 255, 180, 0.22);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.gallery-play-btn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--coco-lime);
  border: 3px solid #F1D83A;
  color: #fff;
  font-size: 1.1rem;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(90, 255, 180, 0.7);
  animation: badge-pulse 2s infinite;
}

.gallery-play-btn:hover {
  background: #3fe09a;
}

.gallery-shuffle-item {
  opacity: 0;
  transform: translate3d(var(--shuffle-x, 0px), var(--shuffle-y, 72px), 0) scale(0.82) rotate(var(--shuffle-rotate, 0deg));
  transform-origin: center center;
  will-change: transform, opacity;
}

.gallery-shuffle-item.is-visible {
  animation: galleryShuffleIn 1.5s cubic-bezier(0.18, 0.9, 0.22, 1) forwards;
  animation-delay: var(--shuffle-delay, 0ms);
}

@keyframes galleryShuffleIn {
  0% {
    opacity: 0;
    transform: translate3d(var(--shuffle-x, 0px), var(--shuffle-y, 72px), 0) scale(0.82) rotate(var(--shuffle-rotate, 0deg));
    filter: blur(10px);
  }

  65% {
    opacity: 1;
    transform: translate3d(0, 16px, 0) scale(1.04) rotate(1deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
}

/* Events Gallery Grid */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 180px 180px 180px;
  gap: 0.5rem;
}

.eg-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #111;
}

.eg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

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

/* A: wide landscape — col1-2, row1 */
.eg-a {
  grid-column: 1 / 3;
  grid-row: 1;
}

/* B: small portrait — col3, row1 */
.eg-b {
  grid-column: 3;
  grid-row: 1;
}

/* C: small portrait — col4, row1 */
.eg-c {
  grid-column: 4;
  grid-row: 1;
}

/* D: small — col1, row2 */
.eg-d {
  grid-column: 1;
  grid-row: 2;
}

/* E: small — col2, row2 */
.eg-e {
  grid-column: 2;
  grid-row: 2;
}

/* F: tall portrait — col3-4, row2-3 */
.eg-f {
  grid-column: 3 / 5;
  grid-row: 2 / 4;
}

/* G: wide landscape — col1-2, row3 */
.eg-g {
  grid-column: 1 / 3;
  grid-row: 3;
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .events-grid .eg-item {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .events-grid .eg-item img {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .gallery-shuffle-item,
  .gallery-shuffle-item.is-visible {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* H: tall left — col1-2, row4-5 (same width as eg-a) */
.eg-h {
  grid-column: 1 / 3;
  grid-row: 4 / 6;
}

/* I: wide single top right — col3-4, row4 */
.eg-i {
  grid-column: 3 / 5;
  grid-row: 4;
}

/* J: small bottom right — col3, row5 */
.eg-j {
  grid-column: 3;
  grid-row: 5;
}

/* K: small bottom right — col4, row5 */
.eg-k {
  grid-column: 4;
  grid-row: 5;
}


.contact-banner {
  position: relative;
  min-height: 480px;
  background: url("../img/about-space.webp") center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  overflow: hidden;
}

.contact-banner-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 43, 50, 0.25) 0%, rgba(16, 43, 50, 0.72) 100%);
}

.contact-banner-content {
  position: relative;
  z-index: 2;
  padding-top: 9rem;
  padding-bottom: 4rem;
  max-width: 580px;
}

.contact-banner-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.contact-banner-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ════════════════════════════════════════
   PRODUCT PAGE
════════════════════════════════════════ */

.pro-subscription-section {
  position: relative;
  overflow: hidden;
}

.pro-bg-shape {
  position: absolute;
  top: 3rem;
  right: 0rem;
  width: 7rem;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.pro-subscription-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.pro-subscription-icon {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 2px solid var(--coco-lime);
  color: var(--coco-lime);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pro-subscription-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--coco-dark);
  margin: 0;
}

.pro-subscription-copy {
  color: black;
  font-size: 1rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.pro-card {
  border-radius: 1.25rem;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  background: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.pro-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.pro-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pro-card-body {
  padding: 1rem;
}

.pro-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--coco-dark);
  margin-bottom: 0.25rem;
}

.pro-card-sub {
  font-size: 0.800rem;
  color: #777;
  margin-bottom: 1.25rem;
}

.pro-card-desc {
  font-size: 0.9rem;
  color: #50534e;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}


.pro-card-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

/* Equal-height Monthly Subscription cards */
.pro-subscription-section .row > [class*="col-"] {
  display: flex;
}

.pro-subscription-section .row > [class*="col-"] > a {
  display: flex;
  flex: 1 1 auto;
}

.pro-subscription-section .pro-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.pro-subscription-section .pro-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}


.pro-book-btn {
  background: var(--coco-dark);
  color: #5AFFB4;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.pro-book-btn:hover {
  background: #2a3318;
  color: #5AFFB4;
}

.pro-arrow-btn {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #171813;
  color: #5AFFB4;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.pro-arrow-btn:hover {
  background: #3fe09a;
  color: var(--coco-dark);
}

.pro-conference-section {
  background: var(--coco-lime);
}

.pro-conf-title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--coco-dark);
  line-height: 1.15;
  margin: 0;
}

.pro-conf-title--white {
  color: #fff;
}

.pro-conf-title--lime {
  color: #fff;
}

.pro-conf-desc {
  color: var(--coco-dark);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.pro-conf-list {
  list-style: none;
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}

.pro-conf-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--coco-dark);
}

.pro-conf-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--coco-dark);
}

.pro-conference-section .pro-arrow-btn {
  background: var(--coco-dark);
  color: #5AFFB4;
}

.pro-conference-section .pro-arrow-btn:hover {
  background: #2a3318;
  color: #5AFFB4;
}

.pro-conf-img {
  border-radius: 1.25rem;
  overflow: hidden;
}

.pro-conf-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

#event-floor,
#trusted {
  scroll-margin-top: 90px;
}

#contact,
#contact-form {
  scroll-margin-top: 90px;
}

/* ════════════════════════════════════════
   DEDICATED DESK PAGE
════════════════════════════════════════ */

.dd-info-section {
  background: #fff;
}

.dd-info-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.25rem;
  align-items: stretch;
}

.dd-info-card {
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dd-info-card--lime {
  background: var(--coco-lime);
}

.dd-info-card--gray {
  background: #f0f0f0;
}

.dd-info-card--right {
  flex-direction: row;
  padding: 0;
  overflow: hidden;
  gap: 0;
}

.dd-info-right-text {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dd-info-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.dd-info-tagline {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--coco-dark);
  line-height: 1.3;
  margin: 0;
}

.dd-info-logo {
  width: 6rem;
  opacity: 0.9;
}

.dd-info-stat {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--coco-dark);
  margin: 0;
  line-height: 1;
}

.dd-info-stat-label {
  font-size: 1.1rem;
  color: var(--coco-dark);
  margin: 0.3rem 0 0;
}

.dd-info-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--coco-dark);
  margin-bottom: 1rem;
}

.dd-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dd-info-list li {
  font-size: 0.95rem;
  color: #444;
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
}

.dd-info-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--coco-dark);
}

.dd-book-btn {
  background: var(--coco-dark);
  color: #5AFFB4;
  border-radius: 999px;
  padding: 0.6rem 2rem;
  font-weight: 600;
}

.dd-book-btn:hover {
  background: #2a3318;
  color: #5AFFB4;
}

.dd-arrow-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coco-dark);
  color: var(--coco-lime);
  font-size: 1.1rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.dd-arrow-btn:hover {
  background: #2a3318;
  color: var(--coco-lime);
  transform: translate(2px, -2px);
}

.dd-info-img {
  flex: 1;
  overflow: hidden;
  border-radius: 0 1.25rem 1.25rem 0;
  min-height: 240px;
}

.dd-info-img--curve {
  border-radius: 22% 1.25rem 1.25rem 22% / 28% 1.25rem 1.25rem 28%;
}

.dd-info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767.98px) {
  .dd-info-grid {
    grid-template-columns: 1fr;
  }

  .dd-info-card--right {
    flex-direction: column;
  }

  .dd-info-img {
    border-radius: 0 0 1.25rem 1.25rem;
    min-height: 220px;
  }

  .dd-info-img--curve {
    border-radius: 20% 20% 1.25rem 1.25rem / 16% 16% 1.25rem 1.25rem;
  }
}

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

.dd-gallery-img {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.dd-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767.98px) {
  .dd-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dd-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.dd-feature-row:last-child {
  margin-bottom: 0;
}


.dd-feature-img {
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 1136 / 716;
  width: 100%;
}

.dd-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dd-feature-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--coco-dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.dd-feature-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

@media (max-width: 767.98px) {

  .dd-feature-row,
  .dd-feature-row--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.vs-benefits-section {
  /* background-color: #f9fdf4; */
  position: relative;
  overflow: hidden;
}

.vs-benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 8rem;
  background-image: url('../img/shapes/abt-bg2.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  pointer-events: none;
  z-index: 0;
}


.vs-benefits-section .container {
  position: relative;
  z-index: 1;
}

.vs-benefits-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--coco-dark);
  margin-bottom: 3rem;
}

.vs-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
}

.vs-benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.vs-benefit-icon {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  background: rgba(90, 255, 180, 0.44);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--coco-dark);
}

.vs-benefit-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--coco-dark);
  margin-bottom: 0.4rem;
}

.vs-benefit-desc {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .vs-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .vs-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.vs-features-section {
  position: relative;
  overflow: hidden;
}

.vs-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 8rem;
  background-image: url('../img/shapes/abt-bg2.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  pointer-events: none;
  z-index: 0;
  transform: rotate(180deg);
}

.vs-features-section .container {
  position: relative;
  z-index: 1;
}

.vs-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vs-features-img {
  border-radius: 1.5rem;
  overflow: hidden;
  max-height: 450px;
}

.vs-features-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vs-features-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vs-feature-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #F7F7F7;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: background 0.25s ease;
}

.vs-feature-card:hover {
  background: #5AFFB4;
}

.vs-feature-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--coco-dark);
}

.vs-feature-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--coco-dark);
  margin-bottom: 0.4rem;
}

.vs-feature-card-desc {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767.98px) {
  .vs-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Lightbox ─────────────────────────────────── */
.coco-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.coco-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.coco-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
  z-index: 1;
}

.coco-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.coco-lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.coco-lightbox-count {
  position: absolute;
  top: 1.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.coco-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, opacity 0.2s;
  z-index: 1;
}

.coco-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.coco-lightbox-prev {
  left: 1.25rem;
}

.coco-lightbox-next {
  right: 1.25rem;
}

.coco-lightbox-img {
  max-width: 82vw;
  max-height: 88vh;
  border-radius: 1rem;
  object-fit: contain;
  display: block;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}

.coco-lightbox-video {
  width: min(82vw, 1100px);
  max-height: 88vh;
  border-radius: 1rem;
  display: block;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}

.pro-daypass-section {
  background: #fff;
}

.pro-daypass-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--coco-dark);
  margin-bottom: 0.3rem;
}

.pro-daypass-subheading {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--coco-lime);
  margin-bottom: 1rem;
}

.pro-daypass-desc {
  color: #50534e;
  font-size: 1rem;
  line-height: 1.8;
}



.pro-daypass-img {
  border-radius: 1.25rem;
  overflow: hidden;
}

.pro-daypass-img img {
  width: 100%;
  height: auto;
  display: block;
}

.pro-ticket {
  display: flex;
  align-items: stretch;
  background: #e8294c;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 200px;
}

.pro-ticket-img {
  flex-shrink: 0;
  width: 35%;
}

.pro-ticket-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pro-ticket-divider {
  width: 2px;
  background: repeating-linear-gradient(to bottom,
      #fff 0,
      #fff 8px,
      transparent 8px,
      transparent 16px);
  flex-shrink: 0;
  margin: 1rem 0;
}

.pro-ticket-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  flex: 1;
}

.pro-ticket-info {
  flex: 1;
}

.pro-ticket-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.pro-ticket-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
}

.pro-ticket-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.pro-ticket-btn {
  background: #fff;
  color: var(--coco-dark);
  border-radius: 999px;
  padding: 0.6rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.pro-ticket-btn:hover {
  background: #f0f0f0;
  color: var(--coco-dark);
}

@media (max-width: 767.98px) {
  .pro-ticket {
    flex-direction: column;
  }

  .pro-ticket-img {
    width: 100%;
    height: 200px;
  }

  .pro-ticket-divider {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right,
        #fff 0,
        #fff 8px,
        transparent 8px,
        transparent 16px);
    margin: 0;
  }

  .pro-ticket-right {
    flex-direction: column;
    align-items: flex-start;
  }
}

.pro-eventfloor-section {
  background: #102B32;
  position: relative;
  overflow: hidden;
}

.pro-eventfloor-shape {
  position: absolute;
  opacity: 0.5;
  pointer-events: none;
}

.pro-eventfloor-shape--tl {
  top: 0rem;
  left: 8rem;
  width: 9rem;
}

.pro-eventfloor-shape--br {
  bottom: 4rem;
  right: 0rem;
  width: 4rem;
}

.pro-eventfloor-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pro-eventfloor-sub {
  color: var(--coco-lime);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.pro-eventfloor-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.pro-eventfloor-img-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

.pro-eventfloor-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.pro-innovate-section {
  background: #fff;
}

.pro-innovate-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--coco-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.pro-innovate-desc {
  color: #50534e;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

.pro-innovate-imgs {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  height: 360px;
}

.pro-innovate-img {
  border-radius: 1.25rem;
  overflow: hidden;
  flex: 1;
}

.pro-innovate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.amenities-open {
  overflow: hidden;
}

.amenities-drawer {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
}

.amenities-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 10, 8, 0.44);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.amenities-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(1240px, 96vw);
  height: 100%;
  padding: 1.75rem 0 0;
  background:
    radial-gradient(circle at top left, rgba(90, 255, 180, 0.18) 0%, rgba(90, 255, 180, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #f8f8f4 100%);
  border-radius: 0 2.2rem 2.2rem 0;
  box-shadow: 28px 0 80px rgba(23, 24, 19, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateX(-104%);
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.amenities-drawer.is-open {
  pointer-events: auto;
}

.amenities-drawer.is-open .amenities-drawer__backdrop {
  opacity: 1;
}

.amenities-drawer.is-open .amenities-drawer__panel {
  transform: translateX(0);
}

.amenities-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0 2rem;
  flex-shrink: 0;
}

.amenities-drawer__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7d74;
}

.amenities-drawer__title {
  margin: 0;
  color: var(--coco-dark);
  font-size: clamp(2.2rem, 3.4vw, 3.1rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.amenities-drawer__close {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(23, 24, 19, 0.1);
  color: var(--coco-dark);
  display: inline-grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(23, 24, 19, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.amenities-drawer__close:hover {
  background: var(--coco-dark);
  color: var(--coco-lime);
  transform: rotate(90deg) scale(1.03);
}

.amenities-drawer__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 2rem 2.2rem;
  border-radius: 0 0 2.2rem 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.amenity-card {
  position: relative;
  padding: 1.35rem 1.35rem 1.4rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 24, 19, 0.07);
  box-shadow: 0 12px 28px rgba(23, 24, 19, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.amenity-card:hover {
  transform: translateY(-2px);
  border-color: rgba(90, 255, 180, 0.55);
  box-shadow: 0 16px 36px rgba(23, 24, 19, 0.07);
}

.amenity-card--wide {
  grid-column: 1 / -1;
}

.amenity-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.95rem;
  background: rgba(90, 255, 180, 0.28);
  color: #2a3318;
  font-size: 1.15rem;
}

.amenity-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8c83;
}

.amenity-card__title {
  margin: 0 0 0.65rem;
  color: var(--coco-dark);
  font-size: 1.12rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.amenity-card__text {
  margin: 0;
  color: #5e6058;
  font-size: 0.92rem;
  line-height: 1.65;
}

.amenities-extras {
  margin-top: 1.75rem;
  padding: 1.5rem 1.5rem 1.6rem;
  border-radius: 1.5rem;
  background: #171813;
  color: #fff;
}

.amenities-extras__head {
  margin-bottom: 1.1rem;
}

.amenities-extras__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.amenities-extras__sub {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.amenities-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.amenities-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(90, 255, 180, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
}

.amenities-chips i {
  color: #5AFFB4;
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .pro-innovate-imgs {
    height: auto;
    flex-direction: column;
  }

  .pro-innovate-img {
    height: 220px;
  }

  .amenities-drawer__panel {
    width: 100%;
    padding: 1.2rem 0 0;
    border-radius: 0;
  }

  .amenities-drawer__header {
    align-items: center;
    padding: 0 1rem;
  }

  .amenities-drawer__title {
    margin-top: 0;
  }

  .amenities-drawer__body {
    padding: 0 1rem 1.5rem;
    border-radius: 0;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card--wide {
    grid-column: auto;
  }

  .amenities-extras {
    padding: 1.25rem 1.1rem 1.35rem;
  }

  .amenities-chips li {
    font-size: 0.78rem;
  }
}

.pro-facilities-section {
  background: #F7F7F7;
}

.pro-facilities-title {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  color: var(--coco-dark);
  line-height: 1.35;
  margin: 0;
}

.pro-facilities-title--lime {
  color: var(--coco-lime);
}

.pro-facilities-desc {
  color: #50534e;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

.pro-facilities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.pro-facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.75rem 1rem;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}

.pro-facility-item:nth-child(6n) {
  border-right: none;
}

.pro-facility-item:nth-last-child(-n+6) {
  border-bottom: none;
}

.pro-facility-item i {
  font-size: 2rem;
  color: var(--coco-dark);
}

.pro-facility-item span {
  font-size: 0.8rem;
  color: var(--coco-dark);
  font-weight: 500;
  line-height: 1.4;
}

.pro-facility-item--text {
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro-facilities-more {
  color: #777;
  font-size: 0.95rem;
}

@media (max-width: 991.98px) {
  .pro-facilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pro-facility-item:nth-child(6n) {
    border-right: 1px solid #e0e0e0;
  }

  .pro-facility-item:nth-child(3n) {
    border-right: none;
  }

  .pro-facility-item:nth-last-child(-n+6) {
    border-bottom: 1px solid #e0e0e0;
  }

  .pro-facility-item:nth-last-child(-n+3) {
    border-bottom: none;
  }
}

@media (max-width: 575.98px) {
  .pro-facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pro-facility-item:nth-child(3n) {
    border-right: 1px solid #e0e0e0;
  }

  .pro-facility-item:nth-child(2n) {
    border-right: none;
  }

  .pro-facility-item:nth-last-child(-n+3) {
    border-bottom: 1px solid #e0e0e0;
  }

  .pro-facility-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* ════════════════════════════════════════
   EVENT DETAILS PAGE
════════════════════════════════════════ */

.ed-section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--coco-dark);
}

.ed-section-copy {
  color: #50534e;
  font-size: 1rem;
  line-height: 1.9;
}

.ed-image-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
}

.ed-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ed-gallery-img {
  border-radius: 1.25rem;
  overflow: hidden;
}

.ed-gallery-img img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
}

/* ══ SITE-WIDE SCROLL REVEAL & CARD HOVER ═══════════════════════ */

/* Ensure overflow hidden so image zoom stays clipped */
.feature-card,
.insight-card {
  overflow: hidden;
}

/* ── Scroll-reveal base states ─────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  /* Fade-up: text blocks & panels */
  .success-title,
  .section-success .section-copy,
  .section-success .success-list,
  .section-success .btn-success-coco,
  .stats-panel,
  .section-heading {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Slide from left */
  .success-image,
  .gallery-text,
  .product-highlight,
  .contact-title {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Slide from right */
  .contact-card {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Cards — fade-up, then switch to fast hover transition once revealed */
  .feature-card,
  .gallery-card,
  .pricing-card,
  .insight-card {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Visible: text/panel elements */
  .success-title.is-visible,
  .section-success .section-copy.is-visible,
  .section-success .success-list.is-visible,
  .section-success .btn-success-coco.is-visible,
  .stats-panel.is-visible,
  .section-heading.is-visible,
  .success-image.is-visible,
  .gallery-text.is-visible,
  .product-highlight.is-visible,
  .contact-title.is-visible,
  .contact-card.is-visible {
    opacity: 1;
    transform: none;
  }

  /* Visible: cards — swap to hover-ready transition */
  .feature-card.is-visible,
  .gallery-card.is-visible,
  .pricing-card.is-visible,
  .insight-card.is-visible {
    opacity: 1;
    transform: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.4s ease;
  }
}

/* ── Card Hover Effects ─────────────────────────────────────────── */
.feature-card,
.gallery-card,
.insight-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.feature-card:hover,
.gallery-card:hover,
.insight-card:hover {
  box-shadow: 0 22px 46px rgba(23, 24, 19, 0.14);
}

.feature-card img,
.gallery-card img,
.insight-card img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover img,
.gallery-card:hover img,
.insight-card:hover img {
  transform: scale(1.06);
}

.pricing-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.pricing-card:hover {
  box-shadow: 0 18px 38px rgba(23, 24, 19, 0.12);
}

.pricing-card .pricing-arrow {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover .pricing-arrow {
  transform: translateY(-2px) translateX(2px);
}

.product-highlight {
  overflow: hidden;
  background: #d7dbc9;
  transition: box-shadow 0.4s ease;
}

.ph-layer {
  transition: opacity 0.55s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.ph-front {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.ph-back {
  opacity: 0;
  transform: scale(1.06);
  z-index: 1;
}

.product-highlight:hover .ph-front {
  transform: scale(1.04);
}

/* ── Product Page Scroll Reveal ─────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  /* Fade up */
  .pro-subscription-heading,
  .pro-subscription-copy,
  .pro-conf-desc,
  .pro-conf-list,
  .pro-conf-img,
  .pro-daypass-heading,
  .pro-daypass-subheading,
  .pro-daypass-desc,
  .pro-daypass-img,
  .pro-eventfloor-sub,
  .pro-eventfloor-desc,
  .pro-innovate-desc,
  .pro-facilities-title,
  .pro-facilities-desc,
  .pro-facility-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Slide from left */
  .pro-conf-title,
  .pro-eventfloor-title,
  .pro-innovate-title {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Slide from right */
  .pro-eventfloor-img-wrap,
  .pro-innovate-imgs {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Cards — switch to hover-ready transition once revealed */
  .pro-card {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Visible states */
  .pro-subscription-heading.is-visible,
  .pro-subscription-copy.is-visible,
  .pro-conf-desc.is-visible,
  .pro-conf-list.is-visible,
  .pro-conf-img.is-visible,
  .pro-daypass-heading.is-visible,
  .pro-daypass-subheading.is-visible,
  .pro-daypass-desc.is-visible,
  .pro-daypass-img.is-visible,
  .pro-eventfloor-sub.is-visible,
  .pro-eventfloor-desc.is-visible,
  .pro-innovate-desc.is-visible,
  .pro-facilities-title.is-visible,
  .pro-facilities-desc.is-visible,
  .pro-facility-item.is-visible,
  .pro-conf-title.is-visible,
  .pro-eventfloor-title.is-visible,
  .pro-innovate-title.is-visible,
  .pro-eventfloor-img-wrap.is-visible,
  .pro-innovate-imgs.is-visible {
    opacity: 1;
    transform: none;
  }

  .pro-card.is-visible {
    opacity: 1;
    transform: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.4s ease;
  }
}

/* ── Pro Card Hover ──────────────────────────────────────────────── */
.pro-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.pro-card:hover {
  box-shadow: 0 22px 46px rgba(23, 24, 19, 0.15);
}

.pro-card-img {
  overflow: hidden;
}

.pro-card-img img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pro-card:hover .pro-card-img img {
  transform: scale(1.06);
}

@keyframes coco-icon-pop {
  0% {
    transform: scale(1) translateY(0);
  }

  45% {
    transform: scale(1.4) translateY(-5px);
  }

  75% {
    transform: scale(0.9) translateY(0);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

.pro-facility-item:not(.pro-facility-item--empty) {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.pro-facility-item:not(.pro-facility-item--empty):hover {
  background: rgba(90, 255, 180, 0.12);
  box-shadow: 0 8px 24px rgba(23, 24, 19, 0.08);
}

.pro-facility-item:not(.pro-facility-item--empty):hover i {
  animation: coco-icon-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  color: #5a6e20;
}

/* ── Virtual Space Page Scroll Reveal ───────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  .vs-benefits-title {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .vs-benefit-item {
    opacity: 0;
    transform: scale(0.82);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .vs-features-img {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .vs-feature-card {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .vs-benefits-title.is-visible,
  .vs-benefit-item.is-visible,
  .vs-features-img.is-visible,
  .vs-feature-card.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ── Virtual Space Hover ─────────────────────────────────────────── */
.vs-benefit-item {
  border-radius: 0.75rem;
  transition: background 0.3s ease;
}

.vs-benefit-item:hover {
  background: rgba(90, 255, 180, 0.08);
}

.vs-benefit-icon {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.vs-benefit-item:hover .vs-benefit-icon {
  transform: rotate(360deg);
  box-shadow: 0 0 0 5px rgba(90, 255, 180, 0.4);
}

.vs-feature-card {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.vs-feature-card:hover {
  background: rgba(90, 255, 180, 0.08);
  box-shadow: 0 12px 32px rgba(23, 24, 19, 0.12);
}

/* ── Dedicated Desk Page Scroll Reveal ──────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  /* Info cards */
  .dd-info-card--lime {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .dd-info-card--right {
    opacity: 0;
    transform: translateX(44px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Gallery */
  .dd-gallery-img {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Feature rows — row 1: img left, text right */
  .dd-feature-row .dd-feature-img,
  .dd-feature-row--reverse .dd-feature-text {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Feature rows — row 1: text right / row 2: img right */
  .dd-feature-row .dd-feature-text,
  .dd-feature-row--reverse .dd-feature-img {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Visible states */
  .dd-info-card--lime.is-visible,
  .dd-info-card--right.is-visible,
  .dd-gallery-img.is-visible,
  .dd-feature-row .dd-feature-img.is-visible,
  .dd-feature-row--reverse .dd-feature-text.is-visible,
  .dd-feature-row .dd-feature-text.is-visible,
  .dd-feature-row--reverse .dd-feature-img.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ── Dedicated Desk Hover ────────────────────────────────────────── */
.dd-info-card {
  transition: box-shadow 0.35s ease;
}

.dd-info-card:hover {
  box-shadow: 0 18px 44px rgba(23, 24, 19, 0.14);
}

.dd-gallery-img {
  overflow: hidden;
}

.dd-gallery-img img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.dd-gallery-img:hover img {
  transform: scale(1.06);
}

/* ── Contact Page Scroll Reveal ─────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  .contact-section-title,
  .contact-section-sub {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .contact-section-sub {
    transition-delay: 0.1s;
  }

  /* Info items slide from left */
  .contact-info-item {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Form card slides from right */
  .contact-form-card {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .contact-team-label,
  .contact-team-title,
  .contact-team-group-title {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .contact-team-title {
    transition-delay: 0.1s;
  }

  .contact-team-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .contact-section-title.is-visible,
  .contact-section-sub.is-visible,
  .contact-info-item.is-visible,
  .contact-form-card.is-visible,
  .contact-team-label.is-visible,
  .contact-team-title.is-visible,
  .contact-team-group-title.is-visible,
  .contact-team-card.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ── Contact Page Hover ──────────────────────────────────────────── */
.contact-info-item {
  transition: background 0.25s ease, padding-left 0.25s ease;
  border-radius: 0.75rem;
  padding-left: 0;
}

.contact-info-item:hover {
  background: rgba(90, 255, 180, 0.1);
  padding-left: 0.5rem;
}

.contact-team-card {
  overflow: hidden;
}

.contact-team-img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-team-card:hover .contact-team-img {
  transform: scale(1.05);
}

/* ── Events Page Scroll Reveal (above Celebration Moments) ──────── */
@media (prefers-reduced-motion: no-preference) {

  .ev-label,
  .ev-main-title {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .ev-main-title {
    transition-delay: 0.1s;
  }

  .ev-featured-card {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .ev-card {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .ev-label.is-visible,
  .ev-main-title.is-visible,
  .ev-featured-card.is-visible,
  .ev-card.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ── Ev Card Hover ───────────────────────────────────────────────── */
.ev-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.ev-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(23, 24, 19, 0.22);
}

.ev-featured-card {
  transition: box-shadow 0.4s ease;
}

.ev-featured-card:hover {
  box-shadow: 0 20px 50px rgba(23, 24, 19, 0.2);
}

/* ── Location Page Scroll Reveal ────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  /* Fade up */
  .loc-label,
  .loc-title,
  .loc-tabs,
  .loc-info-heading,
  .loc-info-address,
  .loc-info-divider,
  .loc-nearby-list li {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Stagger delays for heading group */
  .loc-title.is-visible {
    transition-delay: 0.08s;
  }

  .loc-tabs.is-visible {
    transition-delay: 0.16s;
  }

  /* Stagger delays for info group */
  .loc-info-address.is-visible {
    transition-delay: 0.08s;
  }

  .loc-info-divider.is-visible {
    transition-delay: 0.16s;
  }

  /* Stagger each nearby list item */
  .loc-nearby-list li:nth-child(1).is-visible {
    transition-delay: 0.08s;
  }

  .loc-nearby-list li:nth-child(2).is-visible {
    transition-delay: 0.18s;
  }

  .loc-nearby-list li:nth-child(3).is-visible {
    transition-delay: 0.28s;
  }

  .loc-nearby-list li:nth-child(4).is-visible {
    transition-delay: 0.38s;
  }

  .loc-nearby-list li:nth-child(5).is-visible {
    transition-delay: 0.48s;
  }

  /* Section 1 card slides from left */
  .loc-section .loc-card {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
      transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Section 2 card slides from right */
  .loc-section-alt .loc-card {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
      transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Visible states */
  .loc-label.is-visible,
  .loc-title.is-visible,
  .loc-tabs.is-visible,
  .loc-info-heading.is-visible,
  .loc-info-address.is-visible,
  .loc-info-divider.is-visible,
  .loc-nearby-list li.is-visible,
  .loc-section .loc-card.is-visible,
  .loc-section-alt .loc-card.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ── Loc Card Hover ──────────────────────────────────────────────── */
.loc-card {
  overflow: hidden;
}

.loc-card-img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.loc-nearby-list li {
  transition: background 0.25s ease, padding-left 0.25s ease;
  border-radius: 0.5rem;
  padding-left: 0;
}

.loc-nearby-list li:hover {
  background: rgba(90, 255, 180, 0.1);
  padding-left: 0.5rem;
}

/* ── Facilities Section Scroll Reveal ───────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .section-facilities .display-stacked {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .section-facilities .section-copy,
  .section-facilities .fac-cta,
  .facility-card {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .section-facilities .section-copy.is-visible {
    transition-delay: 0.12s;
  }

  .section-facilities .fac-cta.is-visible {
    transition-delay: 0.22s;
  }

  .section-facilities .display-stacked.is-visible,
  .section-facilities .section-copy.is-visible,
  .section-facilities .fac-cta.is-visible,
  .facility-card.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ── Designed Section Scroll Reveal ─────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  .designed-section .section-title,
  .designed-section .section-copy,
  .designed-card {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .designed-section .section-title.is-visible,
  .designed-section .section-copy.is-visible,
  .designed-card.is-visible {
    opacity: 1;
    transform: none;
  }

  .designed-section .section-copy.is-visible {
    transition-delay: 0.1s;
  }

  .designed-card:nth-child(2).is-visible {
    transition-delay: 0.15s;
  }

  .designed-card:nth-child(3).is-visible {
    transition-delay: 0.3s;
  }
}

/* ── About Section Animations ───────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  .about-heading,
  .about-feature-media,
  .about-feature-copy {
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
      transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .about-heading {
    transform: translateY(32px);
  }

  .about-feature-media {
    transform: translateX(-40px);
  }

  .about-feature-copy {
    transform: translateX(40px);
  }

  .about-heading.is-visible {
    opacity: 1;
    transform: none;
  }

  .about-feature-media.is-visible {
    opacity: 1;
    transform: none;
  }

  .about-feature-copy.is-visible {
    opacity: 1;
    transform: none;
    transition-delay: 0.15s;
  }
}

/* ── Shared Image Zoom ───────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  :is(.image-card,
    .about-inline-photo,
    .about-feature-media,
    .workspace-media,
    .facility-card,
    .designed-card,
    .success-image,
    .feature-card,
    .gallery-card,
    .product-highlight,
    .insight-card,
    .contact-team-card,
    .ev-featured-card,
    .gallery-video-card,
    .eg-item,
    .pro-card,
    .pro-conf-img,
    .dd-info-img,
    .dd-gallery-img,
    .dd-feature-img,
    .vs-features-img,
    .pro-daypass-img,
    .pro-ticket,
    .pro-eventfloor-img-wrap,
    .pro-innovate-img,
    .ed-image-wrap,
    .ed-gallery-img,
    .loc-card) :is(img,
    .contact-team-img,
    .loc-card-img,
    .ev-featured-img) {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.22s ease;
    transform-origin: center center;
    will-change: transform;
  }

  :is(.image-card,
    .about-inline-photo,
    .about-feature-media,
    .workspace-media,
    .facility-card,
    .designed-card,
    .success-image,
    .feature-card,
    .gallery-card,
    .product-highlight,
    .insight-card,
    .contact-team-card,
    .ev-featured-card,
    .gallery-video-card,
    .eg-item,
    .pro-card,
    .pro-conf-img,
    .dd-info-img,
    .dd-gallery-img,
    .dd-feature-img,
    .vs-features-img,
    .pro-daypass-img,
    .pro-ticket,
    .pro-eventfloor-img-wrap,
    .pro-innovate-img,
    .ed-image-wrap,
    .ed-gallery-img,
    .loc-card):is(:hover, :focus-within) :is(img,
    .contact-team-img,
    .loc-card-img,
    .ev-featured-img) {
    transform: scale(1.06);
  }
}

/* ── Legal pages (Terms, Privacy, Cookies) section spacing ── */
.legal-section {
  padding-top: calc(7.5rem + 2vw) !important;
  background: #fff;
}

/* ── About page ── */
.about-hero-label {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(90, 255, 180, 0.92);
}

.about-page-label {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7d74;
}

.about-page-label--light {
  color: rgba(90, 255, 180, 0.85);
}

.about-page-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--coco-dark);
}

.about-page-title--light {
  color: #fff;
}

.about-page-copy {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--coco-muted);
}

.about-page-copy:last-child {
  margin-bottom: 0;
}

.about-page-copy--light {
  color: rgba(255, 255, 255, 0.72);
}

.about-page-media {
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow: 0 24px 60px rgba(23, 24, 19, 0.1);
  aspect-ratio: 16 / 10;
}

.about-page-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-page-media img.about-page-media-img--top {
  object-position: center 72%;
}

.about-page-media--stack {
  position: relative;
  box-shadow: none;
  overflow: visible;
  border-radius: 0;
}

.about-page-media-main {
  width: 100%;
  min-height: 420px;
  border-radius: 1.75rem;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(23, 24, 19, 0.1);
}

.about-page-media-accent {
  position: absolute;
  right: -4%;
  bottom: -10%;
  width: min(48%, 240px);
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: 1.25rem;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 18px 40px rgba(23, 24, 19, 0.14);
}

.about-page-highlights {
  background: #171813;
  padding: 3.25rem 0;
}

.about-page-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.about-page-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.about-page-highlight:last-child {
  border-right: 0;
}

.about-page-highlight-value {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #5AFFB4;
}

.about-page-highlight-label {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  max-width: 18rem;
}

.about-page-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.about-page-point {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--coco-dark);
  font-weight: 500;
}

.about-page-point i {
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 0.7rem;
  background: rgba(90, 255, 180, 0.28);
  color: #2a3318;
  font-size: 1rem;
}

.about-page-community-panel {
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(90, 255, 180, 0.16) 0%, rgba(90, 255, 180, 0) 36%),
    #171813;
}

.about-page-quote {
  padding: 1.5rem 1.6rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(90, 255, 180, 0.22);
}

.about-page-quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.about-page-cta.section-space {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.about-page-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  min-height: 12rem;
  padding: 0;
  border-top: 1px solid rgba(23, 24, 19, 0.1);
}

.about-page-cta-title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--coco-dark);
}

.about-page-cta-copy {
  margin: 0;
  max-width: 34rem;
  color: var(--coco-muted);
  line-height: 1.6;
}

.about-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.about-page-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.about-page-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--coco-dark);
  text-decoration: none;
}

.about-page-cta-link:hover {
  color: #2a3318;
}

@media (max-width: 991.98px) {
  .about-page-highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .about-page-highlight {
    border-right: 0;
    padding: 0 0 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-page-highlight:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .about-page-media-accent {
    right: 4%;
    bottom: -8%;
    width: min(42%, 180px);
  }

  .about-page-space .about-page-media--stack {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .about-page-media-main {
    min-height: 280px;
  }

  .about-page-media-accent {
    display: none;
  }

  .about-page-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── About Page Scroll Reveal ───────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  .about-page-label,
  .about-page-title,
  .about-page-copy,
  .about-page-point,
  .about-page-community-panel,
  .about-page-quote,
  .about-page-cta-row {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .about-page-title {
    transition-delay: 0.08s;
  }

  .about-page-copy {
    transition-delay: 0.14s;
  }

  .about-page-copy + .about-page-copy {
    transition-delay: 0.22s;
  }

  .about-page-intro .about-page-media {
    opacity: 0;
    transform: translateX(44px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.12s;
  }

  .about-page-space .about-page-media {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.08s;
  }

  .about-page-highlight {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .about-page-highlight:nth-child(1) {
    transition-delay: 0.05s;
  }

  .about-page-highlight:nth-child(2) {
    transition-delay: 0.16s;
  }

  .about-page-highlight:nth-child(3) {
    transition-delay: 0.27s;
  }

  .about-page-highlight-value {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
  }

  .about-page-highlight-label {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.22s,
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
  }

  .about-page-label.is-visible,
  .about-page-title.is-visible,
  .about-page-copy.is-visible,
  .about-page-point.is-visible,
  .about-page-community-panel.is-visible,
  .about-page-quote.is-visible,
  .about-page-cta-row.is-visible,
  .about-page-intro .about-page-media.is-visible,
  .about-page-space .about-page-media.is-visible,
  .about-page-highlight.is-visible {
    opacity: 1;
    transform: none;
  }

  .about-page-highlight.is-visible .about-page-highlight-value,
  .about-page-highlight.is-visible .about-page-highlight-label {
    opacity: 1;
    transform: none;
  }
}
