/* ────────────────────────────────────────────────
   Aura Art House — Professional Attraction Layout
   Inspired by jungleisland.com
   ──────────────────────────────────────────────── */

:root {
  /* Brand palette (match Aura logo) */
  --green:       #7c1fd4;   /* primary */
  --green-dk:    #4b0f8a;   /* primary dark */
  --green-lt:    #a44dff;   /* primary light */
  --pink:        #ff2d9b;
  --purple:      #7c1fd4;
  --cyan:        #00b8d4;
  --gold:        #c47f00;
  --slate:       #2e3848;
  --text:        #222222;
  --text-muted:  #666666;
  --bg:          #ffffff;
  --bg-gray:     #f6f6f6;
  --border:      #e0e0e0;
  --font-h:      "Montserrat", system-ui, sans-serif;
  --font-b:      "Open Sans", system-ui, sans-serif;
  --topbar-h:    38px;
  --header-h:    74px;
  --offset:      calc(var(--topbar-h) + var(--header-h));
  --r:           6px;
  --sh:          0 4px 20px rgba(0,0,0,.09);
  --sh-h:        0 10px 36px rgba(0,0,0,.14);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--offset);
  font-size: 16px;
}
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  padding-top: var(--offset);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
}
.container--narrow {
  width: min(800px, 100%);
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
}

/* Utility */
.hide-mobile { display: inline; }
body.nav-open { overflow: hidden; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem 1.6rem;
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-book {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-book:hover { background: var(--green-dk); border-color: var(--green-dk); }

.btn-lg { padding: .85rem 2rem; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.8);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

.btn-outline-dark {
  background: transparent;
  color: var(--green-dk);
  border-color: var(--green-dk);
}
.btn-outline-dark:hover { background: var(--green-dk); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--green-dk);
  border-color: #fff;
  align-self: flex-start;
  width: auto;
}
.btn-white:hover { background: #f0f0f0; border-color: #f0f0f0; }

/* ── Label tags ── */
.label-tag {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  border-radius: 2px;
  padding: .25rem .65rem;
  margin-bottom: .75rem;
}
.label-tag--light {
  color: rgba(255,255,255,.9);
}

/* ── Top bar ── */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  min-height: var(--topbar-h);
  background: var(--green-dk);
  color: #fff;
  font-size: .78rem;
  display: flex;
  align-items: center;
}
.top-bar .container {
  display: flex;
  align-items: center;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.top-bar .divider { opacity: .5; }
.top-bar-cta {
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-left: .5rem;
  text-decoration: underline;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 10px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: .75rem;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}
.logo-img {
  height: auto;
  max-height: 100px;
  width: auto;
  max-width: min(160px, 42vw);
  object-fit: contain;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .4rem .65rem;
  border-radius: 3px;
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--green); background: rgba(74,143,40,.07); }

.header-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-book-mobile {
  display: none;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: clamp(520px, 82vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 3rem;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(6,8,20,.92) 0%,
    rgba(6,8,20,.78) 45%,
    rgba(6,8,20,.55) 100%
  );
}

/* Paint blob decorations */
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: .22;
}
.blob-1 { width: 380px; height: 380px; background: #9b2dff; top: -80px; right: 15%; animation: bfloat 9s ease-in-out infinite; }
.blob-2 { width: 260px; height: 260px; background: #ff2d9b; bottom: 15%; right: 30%; animation: bfloat 7s ease-in-out infinite reverse; }
.blob-3 { width: 200px; height: 200px; background: #00f5ff; top: 30%; left: 5%; animation: bfloat 11s ease-in-out infinite; }
.blob-4 { width: 150px; height: 150px; background: #b8ff00; bottom: 20%; left: 20%; animation: bfloat 8s ease-in-out infinite reverse; }
@keyframes bfloat {
  0%,100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(18px,-22px) scale(1.06); }
  70% { transform: translate(-12px,14px) scale(.96); }
}

/* Split inner layout */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 1.75rem 0 2.5rem;
  min-height: 0;
}

.hero-text { max-width: 540px; }

.hero-eyebrow {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 45, 155, .92);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.hero-title {
  font-family: var(--font-h);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.ht-line {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fff;
  display: block;
  line-height: 1.05;
}
.ht-accent {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.9);
  text-stroke: 2px rgba(255,255,255,.9);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 440px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ── Hero Swiper ── */
.hero-swiper-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  justify-self: end;
  margin-left: auto;
  padding: 1rem 0;
  width: fit-content;
  max-width: 100%;
}

.heroSwiper {
  width: 360px;
  height: 500px;
  overflow: visible !important;
  margin-right: 0;
}

.heroSwiper .swiper-slide {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  position: relative;
  cursor: pointer;
  background: #111;
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.heroSwiper .swiper-slide-active img { transform: scale(1.04); }

.swiper-slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem .85rem;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  display: flex;
  flex-direction: column;
}

.slide-icon {
  font-size: 1.4rem;
  margin-bottom: .2rem;
}

.slide-name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .03em;
}

.slide-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.75);
  margin-top: .15rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  opacity: .6;
  transition: opacity .2s;
}
.hero-scroll:hover { opacity: 1; }
.scroll-dot { animation: scroll-bob 1.8s ease-in-out infinite; }
@keyframes scroll-bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Tiles ── */
.tiles-section {
  position: relative;
  z-index: 5;
  margin-top: -3.5rem;
  padding: 0 0 3.5rem;
  background: transparent;
  display: none;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .85rem;
}

.tile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  background: #222;
}
.tile:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,.25); }
.tile:hover .tile-bg { transform: scale(1.06); }

.tile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .45s ease;
}

.tile-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.tile--purple .tile-shade { background: linear-gradient(180deg, rgba(80,20,140,.35) 0%, rgba(20,0,40,.75) 100%); }
.tile--green  .tile-shade { background: linear-gradient(180deg, rgba(20,80,20,.25) 0%, rgba(0,30,0,.72) 100%); }
.tile--cyan   .tile-shade { background: linear-gradient(180deg, rgba(0,80,100,.25) 0%, rgba(0,30,50,.72) 100%); }
.tile--gold   .tile-shade { background: linear-gradient(180deg, rgba(120,80,0,.25) 0%, rgba(40,20,0,.72) 100%); }
.tile--pink   .tile-shade { background: linear-gradient(180deg, rgba(180,20,80,.3) 0%, rgba(60,0,30,.72) 100%); }
.tile--dark   .tile-shade { background: linear-gradient(180deg, rgba(30,40,60,.35) 0%, rgba(10,15,25,.78) 100%); }

.tile-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem .65rem 1.1rem;
  background: linear-gradient(transparent 40%, rgba(0,0,0,.45) 100%);
}

.tile-label {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #fff;
  text-align: center;
  line-height: 1.25;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

.tile-sub {
  font-size: .62rem;
  color: rgba(255,255,255,.8);
  text-align: center;
  margin-top: .15rem;
  line-height: 1.3;
}

/* ── Feature block ── */
.feature-block {
  padding: 5rem 0;
  background: var(--bg);
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--sh-h);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  min-height: 240px;
  background: #eee;
}

.feature-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--green);
  color: #fff;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 3px;
}

.feature-title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: .75rem;
}

.feature-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-sub {
  font-family: var(--font-h);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .65rem;
}

.check-list {
  list-style: none;
  margin-bottom: 2rem;
}
.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .5rem;
  font-size: .92rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.check-list--light li { color: rgba(255,255,255,.9); }
.check-list--light li::before { color: rgba(255, 45, 155, .95); }

/* ── Section generic ── */
.section { padding: 4.5rem 0; }
.section-gray { background: var(--bg-gray); }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading {
  font-family: var(--font-h);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.section-cta { text-align: center; margin-top: 2rem; }

/* ── Experiences (What We Offer) ── */
.experiences {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.experiences-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(124, 31, 212, .18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 100%, rgba(255, 45, 155, .12) 0%, transparent 50%),
    linear-gradient(165deg, #0f0a1a 0%, #1a1030 45%, #12081f 100%);
  z-index: 0;
}

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

.experiences .section-header {
  margin-bottom: 3rem;
}

.section-heading--light {
  color: #fff;
}

.section-intro {
  max-width: 520px;
  margin: .75rem auto 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

.label-tag--on-dark {
  color: rgba(255, 45, 155, .95);
  background: rgba(124, 31, 212, .25);
  border: 1px solid rgba(164, 77, 255, .35);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.exp-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  text-decoration: none;
  --exp-accent: var(--purple);
}

.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
  border-color: rgba(255, 255, 255, .15);
}

.exp-card--purple { --exp-accent: #a44dff; }
.exp-card--jungle { --exp-accent: #3dd68c; }
.exp-card--cyan   { --exp-accent: #00d4f0; }
.exp-card--pink   { --exp-accent: #ff2d9b; }
.exp-card--gold   { --exp-accent: #f5b800; }
.exp-card--dark   { --exp-accent: #8b9dc3; }

.exp-img-wrap {
  position: relative;
  overflow: hidden;
  background: #1a1a2e;
  aspect-ratio: 4 / 4;
  min-height: 220px;
}

.exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.exp-card:hover .exp-img-wrap img {
  transform: scale(1.08);
}

.exp-overlay {
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: opacity .35s;
  background: linear-gradient(
    180deg,
    rgba(8, 5, 18, .15) 0%,
    rgba(8, 5, 18, .25) 40%,
    rgba(8, 5, 18, .88) 100%
  );
}

.exp-card--purple .exp-overlay {
  background: linear-gradient(180deg, rgba(124, 31, 212, .2) 0%, rgba(8, 5, 18, .9) 100%);
}
.exp-card--jungle .exp-overlay {
  background: linear-gradient(180deg, rgba(45, 160, 100, .2) 0%, rgba(8, 5, 18, .9) 100%);
}
.exp-card--cyan .exp-overlay {
  background: linear-gradient(180deg, rgba(0, 184, 212, .2) 0%, rgba(8, 5, 18, .9) 100%);
}
.exp-card--pink .exp-overlay {
  background: linear-gradient(180deg, rgba(255, 45, 155, .25) 0%, rgba(8, 5, 18, .9) 100%);
}
.exp-card--gold .exp-overlay {
  background: linear-gradient(180deg, rgba(196, 127, 0, .25) 0%, rgba(8, 5, 18, .9) 100%);
}
.exp-card--dark .exp-overlay {
  background: linear-gradient(180deg, rgba(46, 56, 72, .35) 0%, rgba(8, 5, 18, .9) 100%);
}

.exp-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-h);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--exp-accent);
  padding: .35rem .7rem;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
}

.exp-img-foot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1.25rem 1.1rem;
  display: flex;
  align-items: flex-end;
  gap: .75rem;
}

.exp-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .45);
  flex-shrink: 0;
}

.exp-img-foot h3 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.exp-body {
  padding: 1.35rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  background: rgba(255, 255, 255, .97);
  border-top: 3px solid var(--exp-accent);
}

.exp-body p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.exp-tags span {
  font-family: var(--font-h);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green-dk);
  background: rgba(124, 31, 212, .08);
  border: 1px solid rgba(124, 31, 212, .15);
  padding: .3rem .55rem;
  border-radius: 3px;
}

.exp-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: auto;
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 800;
  color: var(--green-dk);
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color .2s, gap .25s;
}

.exp-cta i {
  font-style: normal;
  transition: transform .25s;
}

.exp-card:hover .exp-cta {
  color: var(--pink);
}

.exp-card:hover .exp-cta i {
  transform: translateX(4px);
}

/* ── Plan your visit ── */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.visit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sh);
  display: flex;
  flex-direction: column;
}

.visit-img-wrap {
  background: #ddd;
  overflow: hidden;
}
.visit-img-wrap img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  min-height: 160px;
  display: block;
}

.visit-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.visit-body h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: .3rem;
}
.visit-meta {
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: .65rem;
}
.visit-desc {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: .85rem;
  flex: 1;
}
.visit-list {
  list-style: none;
  margin-bottom: 1.25rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.visit-list li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: .3rem;
}
.visit-list li::before { content: "·"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

/* ── Promo split rows ── */
.promo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  height: 600px;
}
.promo-row--flip { direction: rtl; }
.promo-row--flip > * { direction: ltr; }

.promo-img {
  overflow: hidden;
  background: #333;
  min-height: 380px;
}
.promo-img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.promo-row:hover .promo-img img { transform: scale(1.02); }

.promo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
  background: var(--green);
  color: #fff;
}
.promo-text--slate { background: var(--slate); }

.promo-text .label-tag { margin-bottom: .65rem; }

.promo-text h2 {
  font-family: var(--font-h);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: .85rem;
  text-transform: none;
  letter-spacing: 0;
  opacity: 1;
}

.promo-text > p {
  font-size: .95rem;
  line-height: 1.6;
  opacity: .92;
  margin-bottom: .85rem;
}

/* ── Occasions (Perfect for Every Occasion) ── */
.occasions-section {
  padding: 5rem 0;
  background:
    linear-gradient(180deg, #faf8fc 0%, #fff 40%, #f5f0fa 100%);
  position: relative;
}

.occasions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--pink));
}

.section-intro--light {
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.occ-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(75, 15, 138, .08);
  border: 1px solid rgba(124, 31, 212, .1);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  --occ-accent: var(--purple);
}

.occ-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(124, 31, 212, .18);
  border-color: rgba(124, 31, 212, .28);
}

.occ-card--pink   { --occ-accent: #ff2d9b; }
.occ-card--purple { --occ-accent: #9b2dff; }
.occ-card--gold   { --occ-accent: #c47f00; }
.occ-card--cyan   { --occ-accent: #00b8d4; }
.occ-card--violet { --occ-accent: #7c1fd4; }
.occ-card--dark   { --occ-accent: #4b0f8a; }

.occ-card-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1030;
}

.occ-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.occ-card:hover .occ-card-media img {
  transform: scale(1.1);
}

.occ-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 10, 26, .2) 0%,
    rgba(15, 10, 26, .55) 100%
  );
  transition: opacity .35s;
}

.occ-card--pink .occ-card-shade {
  background: linear-gradient(180deg, rgba(255, 45, 155, .15) 0%, rgba(15, 10, 26, .75) 100%);
}
.occ-card--purple .occ-card-shade {
  background: linear-gradient(180deg, rgba(155, 45, 255, .2) 0%, rgba(15, 10, 26, .75) 100%);
}
.occ-card--gold .occ-card-shade {
  background: linear-gradient(180deg, rgba(196, 127, 0, .2) 0%, rgba(15, 10, 26, .75) 100%);
}
.occ-card--cyan .occ-card-shade {
  background: linear-gradient(180deg, rgba(0, 184, 212, .2) 0%, rgba(15, 10, 26, .75) 100%);
}
.occ-card--violet .occ-card-shade {
  background: linear-gradient(180deg, rgba(124, 31, 212, .25) 0%, rgba(15, 10, 26, .75) 100%);
}
.occ-card--dark .occ-card-shade {
  background: linear-gradient(180deg, rgba(75, 15, 138, .3) 0%, rgba(15, 10, 26, .8) 100%);
}

.occ-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.75rem;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .4));
  transition: transform .35s;
}

.occ-card:hover .occ-emoji {
  transform: translate(-50%, -50%) scale(1.12);
}

.occ-card-body {
  padding: 1.15rem 1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  border-top: 3px solid var(--occ-accent);
  background: #fff;
}

.occ-card-body h3 {
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.25;
  margin: 0;
}

.occ-card-body p {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
  flex: 1;
}

.occ-link {
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 700;
  color: var(--green-dk);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .35rem;
  transition: color .2s;
}

.occ-card:hover .occ-link {
  color: var(--pink);
}

/* ── FAQ ── */
.faq-section { background: var(--bg-gray); }

.faq-list { display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item summary {
  font-family: var(--font-h);
  font-size: .92rem;
  font-weight: 700;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { background: rgba(74,143,40,.05); }
.faq-item summary::after { content: "+"; font-size: 1.3rem; font-weight: 300; color: var(--green); }
.faq-item[open] summary::after { content: "−"; }
.faq-item > p {
  padding: 0 1.25rem 1.25rem;
  font-size: .9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ── Partners ── */
.partners-bar {
  padding: 2.5rem 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: none;
}
.partners-label {
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-style: italic;
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 2.5rem;
}
.partners-logos span {
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .03em;
}

/* ── Footer ── */
.site-footer { background: #42236E; color: rgb(255, 255, 255); }

.footer-top {
  padding: 3.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
}

.footer-brand {}
.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(1.15);
}
.footer-brand p {
  font-size: .85rem;
  color:#fff;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.social-icons {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.social-icons a:hover { background: var(--green); color: #fff; }

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

.footer-col h4 {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: .85rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .35rem; }
.footer-col a {
  font-size: .82rem;
  color:#fff;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-col p {
  font-size: .82rem;
  color:#fff;
  line-height: 1.55;
  margin-bottom: .5rem;
}
.footer-note { font-size: .75rem !important; opacity: .7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
}
.footer-bottom-inner { text-align: center; }
.footer-partners-line {
  font-size: .75rem;
  color: #fff;
  margin-bottom: .4rem;
}
.copyright {
  font-size: .78rem;
  color: #fff;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .75s cubic-bezier(0.22, 1, 0.36, 1),
    transform .75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal--left  { transform: translateX(-36px); }
.reveal--right { transform: translateX(36px); }
.reveal--scale { transform: scale(0.94); }
.reveal.visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile · Tablet · Laptop · Desktop
   Breakpoints: 576 | 768 | 992 | 1200
   ═══════════════════════════════════════════════════════════ */

/* ── Laptop (992px – 1199px) ── */
@media (max-width: 1199px) {
  .hero-inner {
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .heroSwiper {
    width: 260px;
    height: 360px;
  }

  .ht-line {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
  }

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

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

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

  .visit-grid .visit-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Tablet landscape / small laptop (768px – 991px) ── */
@media (max-width: 991px) {
  .tiles-section {
    margin-top: -2rem;
    padding-bottom: 2.5rem;
  }

  .tiles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 1.25rem 0 1.5rem;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    order: 1;
  }

  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }

  .hero-swiper-wrap {
    display: flex;
    order: 2;
    justify-self: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 1.75rem auto 0;
    padding: 0 0 1rem;
    overflow: hidden;
    min-height: 300px;
  }

  .heroSwiper {
    width: 260px;
    height: 320px;
    margin: 0 auto;
  }

  .hero-scroll {
    bottom: 1rem;
    display: none;
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-content {
    text-align: center;
  }

  .feature-content .check-list {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-media {
    max-width: 560px;
    margin: 0 auto;
  }

  .experiences {
    padding: 4rem 0;
  }

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

  .plan-visit .visit-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .visit-grid .visit-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .promo-row,
  .promo-row--flip {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .promo-img img {
    min-height: 280px;
  }

  .promo-text {
    padding: 2.75rem 2rem;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}

/* ── Tablet portrait / large phone (576px – 767px) ── */
@media (max-width: 767px) {
  :root {
    --topbar-h: 40px;
    --header-h: 64px;
  }

  .hide-mobile {
    display: none !important;
  }

  .top-bar {
    min-height: var(--topbar-h);
    padding: .35rem 0;
  }

  .top-bar-icon {
    display: none;
  }

  .top-bar .container {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: .5rem;
    font-size: .7rem;
    line-height: 1.3;
  }

  .top-bar-main {
    flex: 1 1 auto;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-bar-cta {
    margin-left: 0;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: .5rem;
    padding: 0;
    height: var(--header-h);
  }

  .site-header {
    height: var(--header-h);
  }

  .logo-img {
    max-height: 48px;
    max-width: min(130px, 38vw);
  }

  .header-actions {
    gap: .35rem;
  }

  .header-actions .btn-book {
    display: none;
  }

  .nav-toggle {
    display: flex;
    justify-content: center;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--offset);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem 1.25rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    border-top: 1px solid var(--border);
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 1rem .5rem;
    border-bottom: 1px solid var(--bg-gray);
    font-size: .9rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-book-mobile {
    display: inline-flex !important;
    margin-top: .75rem;
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 0;
    padding-bottom: 2rem;
    overflow: hidden;
  }

  .hero-inner {
    padding: 3rem 0 0;
    gap: 0;
  }

  .hero-eyebrow {
    font-size: .62rem;
    letter-spacing: .14em;
    margin-bottom: .65rem;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .hero-title {
    margin-bottom: .75rem;
  }

  .ht-line {
    font-size: clamp(1.85rem, 8.5vw, 2.65rem);
    line-height: 1.08;
  }

  .ht-accent {
    -webkit-text-stroke-width: 1.5px;
    text-stroke-width: 1.5px;
  }

  .hero-sub {
    font-size: .88rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    max-width: 100%;
    padding: 0 .25rem;
  }

  .hero-btns {
    gap: .65rem;
    margin-bottom: .25rem;
  }

  .hero-swiper-wrap {
    margin: 1.5rem auto 0;
    min-height: 260px;
    max-height: 300px;
    padding-bottom: .5rem;
  }

  .heroSwiper {
    width: 220px !important;
    height: 275px !important;
    margin: 0 auto;
  }

  .tiles-section {
    margin-top: -1.25rem;
    padding-bottom: 2rem;
  }

  .tiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem;
  }

  .tile {
    aspect-ratio: 3 / 4;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-heading {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .section-intro,
  .section-intro--light {
    font-size: .92rem;
    padding: 0 .25rem;
  }

  .feature-block {
    padding: 3.5rem 0;
  }

  .experiences {
    padding: 3.5rem 0;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .exp-img-wrap {
    aspect-ratio: 16 / 10;
    min-height: 200px;
  }

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

  .occ-card-media {
    aspect-ratio: 4 / 3;
  }

  .promo-text {
    padding: 2.25rem 1.5rem;
  }

  .promo-text h2 {
    font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  }

  .faq-section {
    padding: 3.5rem 0;
  }

  .partners-logos {
    gap: .75rem 1.25rem;
  }

  .partners-logos span {
    font-size: .75rem;
  }

  .footer-top {
    padding: 2.5rem 0 2rem;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: left;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    align-items: left;
  }

  .footer-partners-line {
    font-size: .68rem;
    line-height: 1.5;
    padding: 0 1rem;
  }

}

/* ── Mobile (max 575px) ── */
@media (max-width: 575px) {
  :root {
    --header-h: 60px;
  }

  html {
    font-size: 15px;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .btn {
    min-height: 44px;
    padding: .75rem 1.25rem;
  }

  .btn-lg {
    width: 100%;
    max-width: 320px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-sub {
    font-size: .85rem;
    margin-bottom: 1rem;
  }

  .hero-swiper-wrap {
    width: 100%;
    min-height: 250px;
    max-height: 285px;
    margin-top: 1.25rem;
  }

  .heroSwiper {
    width: 200px !important;
    height: 255px !important;
  }

  .logo-img {
    max-height: 70px;
    max-width: min(120px, 36vw);
  }

  .tiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
  }

  .tile-label {
    font-size: .58rem;
  }

  .tile-sub {
    font-size: .55rem;
  }

  .feature-badge {
    font-size: .65rem;
    padding: .3rem .65rem;
  }

  .experience-grid,
  .visit-grid {
    max-width: 100%;
  }

  .exp-body {
    padding: 1.15rem 1rem 1.25rem;
  }

  .occasion-grid {
    grid-template-columns: 1fr;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
  }

  .occ-card-body h3 {
    font-size: .78rem;
  }

  .section-cta .btn-lg {
    width: 100%;
    max-width: none;
  }

  .hstat {
    padding: 0 1rem;
  }

  .promo-img img {
    min-height: 220px;
  }

  .promo-text {
    padding: 2rem 1.25rem;
  }

  .check-list li {
    font-size: .88rem;
  }

  .faq-item summary {
    font-size: .85rem;
    padding: .95rem 1rem;
  }

  .faq-item p {
    font-size: .85rem;
    padding: 0 1rem 1rem;
  }

  .footer-logo-img {
    height: 44px;
  }

  .footer-partners-line {
    font-size: .62rem;
  }
}

/* ── Small mobile (max 380px) ── */
@media (max-width: 380px) {
  .ht-line {
    font-size: 2rem;
  }

  .hero-eyebrow {
    font-size: .65rem;
    letter-spacing: .12em;
  }

  .tiles-grid {
    gap: .4rem;
  }

  .tile {
    aspect-ratio: 1;
  }

  .exp-num {
    font-size: 1.5rem;
  }

  .exp-img-foot h3 {
    font-size: 1.1rem;
  }
}

/* ── Large desktop (1200px+) fine-tuning ── */
@media (min-width: 1200px) {
  .hero-inner {
    gap: 3rem;
  }

  .experience-grid {
    gap: 1.75rem;
  }

  .occasion-grid {
    gap: 1.25rem;
  }
}

/* ── Touch devices ── */
@media (hover: none) and (pointer: coarse) {
  .exp-card:hover,
  .occ-card:hover,
  .tile:hover,
  .visit-card:hover,
  .occasion-item:hover {
    transform: none;
  }

  .main-nav a,
  .btn,
  .nav-toggle {
    min-height: 44px;
  }
}

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

  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
