/* ─── RESET & TOKENS ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  /* ── Surfaces ─────────────────── */
  --bg:           #FAFAF8;
  --surface:      #FFFFFF;
  --surface2:     #F3F4F6;
  --surface-dark: #111827;

  /* ── Brand palette ───────────── */
  --primary:       #0EA5E9;   /* sky-500  — backgrounds, icons, large headings */
  --primary-text:  #0369A1;   /* sky-700  — text on light bg, passes WCAG AA 4.5:1 */
  --primary-light: #60D4F5;   /* sky-300  — italic accents on dark backgrounds only */
  --secondary:     #0891B2;   /* cyan-600 */
  --accent:        #F59E0B;   /* amber-400 */
  --accent-dk:     #D97706;   /* amber-500 */

  /* ── Text ────────────────────── */
  --text:         #111827;   /* gray-900 */
  --text-muted:   #4B5563;   /* gray-600 — 6.2:1 on --bg, passes WCAG AA */
  --border:       rgba(0,0,0,0.09);

  /* ── Feedback ────────────────── */
  --success:        #059669;   /* emerald-600 */
  --success-bright: #10B981;   /* emerald-500 — for animated dots */
  --success-light:  #d1fae5;   /* emerald-100 */
  --success-border: #6ee7b7;   /* emerald-300 */
  --success-dark:   #065f46;   /* emerald-900 */
  --error:          #dc2626;   /* red-600 */
  --error-light:    #fef2f2;   /* red-50 */
  --error-border:   #fecaca;   /* red-200 */

  /* ── Typography ──────────────── */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  /* ── Shape & elevation ───────── */
  --r:         12px;
  --r-lg:      20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);

  /* ── Easing ──────────────────── */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}
html { scroll-behavior: smooth; }

/* ─── FOCUS ──────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 3px;
}
/* Form fields have a custom focus ring via border-color + box-shadow — suppress outline */
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.gfield input:focus-visible,
.gfield select:focus-visible,
.gfield textarea:focus-visible,
.ginput_container_chained_select select:focus-visible {
  outline: none;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ─── UTILITY ────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.overline {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--text);
}
.section-sub {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 580px; margin-top: 16px; line-height: 1.75;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r);
  font-size: 0.95rem; font-weight: 600; line-height: 1;
  transition: transform 150ms var(--ease-out), box-shadow 150ms var(--ease-out),
              background 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn-accent {
  background: var(--accent); color: #fff;
}
.btn-accent:hover { background: var(--accent-dk); box-shadow: 0 6px 24px rgba(245,158,11,0.35); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }
.btn-primary {
  background: var(--primary); color: #fff;
}
.btn-primary:hover { background: var(--primary-text); box-shadow: 0 6px 24px rgba(14,165,233,0.35); }
.btn-outline-dark {
  background: transparent; color: var(--primary-text);
  border: 1.5px solid rgba(3,105,161,0.35);
}
.btn-outline-dark:hover { border-color: var(--primary-text); background: rgba(3,105,161,0.05); }

.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  will-change: opacity, transform;
}
.fade-up.visible { opacity: 1; transform: translateY(0); will-change: auto; }

/* ─── NAVIGATION ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background 0.35s var(--ease-in-out), padding 0.35s var(--ease-in-out), box-shadow 0.35s var(--ease-in-out);
}
.nav.scrolled,
.nav-no-hero .nav {
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  color: #fff;
  transition: color 0.35s var(--ease-in-out);
  line-height: 0;
}
.nav-logo svg { height: 42px; width: auto; display: block; }
.nav.scrolled .nav-logo,
.nav-no-hero .nav-logo { color: #000; }

/* ── Landing page header ──────────────────────────────────── */
.landing-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  background: #fff;
}
.landing-header .nav-logo {
  color: var(--surface-dark);
}
.landing-header .nav-logo svg {
  height: 80px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.03em;
  transition: color 150ms;
}
.nav.scrolled .nav-links a,
.nav-no-hero .nav-links a { color: rgba(17,24,39,0.7); }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover,
.nav-no-hero .nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 16px; }
.lang-switcher {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin-left: 24px;
}
.lang-switcher .lang-item a {
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.82);
  padding: 2px 6px; border-radius: 4px;
  transition: color 150ms;
}
.nav.scrolled .lang-switcher .lang-item a,
.nav-no-hero .lang-switcher .lang-item a { color: rgba(17,24,39,0.7); }
.lang-switcher .lang-item a:hover { color: #fff; }
.nav.scrolled .lang-switcher .lang-item a:hover,
.nav-no-hero .lang-switcher .lang-item a:hover { color: var(--text); }
.lang-switcher .lang-active a {
  color: #fff;
  background: rgba(255,255,255,0.15);
}
.nav.scrolled .lang-switcher .lang-active a,
.nav-no-hero .lang-switcher .lang-active a {
  color: var(--text);
  background: rgba(17,24,39,0.08);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: background 0.35s var(--ease-in-out), transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}
.nav.scrolled .hamburger span,
.nav-no-hero .hamburger span { background: var(--text); }
/* Hamburger → X morph when menu open */
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@keyframes menuOpen {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--surface); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; animation: menuOpen 0.28s var(--ease-out) both; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700; color: var(--text);
  transition: color 150ms var(--ease-out);
}
.mobile-menu a:hover { color: var(--primary-text); }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  background: none; font-size: 2rem; color: var(--text);
  transition: color 150ms var(--ease-out);
}
.mobile-menu-close:hover { color: var(--primary-text); }
.mobile-menu .lang-switcher {
  margin-left: 0; gap: 8px;
}
.mobile-menu .lang-switcher .lang-item a {
  font-size: 1rem; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(17,24,39,0.5);
  padding: 4px 10px; border-radius: 6px;
}
.mobile-menu .lang-switcher .lang-item a:hover { color: var(--text); }
.mobile-menu .lang-switcher .lang-active a {
  color: var(--text);
  background: rgba(17,24,39,0.08);
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.8s var(--ease-in-out);
}
.hero-slide.active { opacity: 1; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,15,30,0.52) 0%,
    rgba(8,15,30,0.28) 55%,
    rgba(8,15,30,0.10) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  /*max-width: 800px; */
  padding: 120px 24px 80px;
  margin: 0 auto 0 0;
  padding-left: max(24px, calc((100vw - 1180px)/2 + 24px));
}
.hero-overline {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-overline::before {
  content: ''; display: block;
  width: 32px; height: 1.5px; background: var(--accent);
}
.hero-title {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 28px;
}
.hero-title em { font-style: italic; 
  /* color: var(--primary-light);  */
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.88);
  max-width: 560px; margin-bottom: 44px;
}
.hero-sub strong { font-weight: 600; color: #fff; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
/* Hero entrance choreography */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-overline { animation: heroFadeUp 0.6s  var(--ease-out) 0.15s both; }
.hero-title    { animation: heroFadeUp 0.75s var(--ease-out) 0.3s  both; }
.hero-sub      { animation: heroFadeUp 0.6s  var(--ease-out) 0.5s  both; }
.hero-ctas     { animation: heroFadeUp 0.6s  var(--ease-out) 0.7s  both; }

.hero-bottom-right {
  position: absolute; bottom: 40px; right: 40px; z-index: 1;
  display: flex; align-items: center; gap: 12px;
  animation: heroFadeUp 0.5s var(--ease-out) 0.9s both;
}
.hero-badge {
  background: rgba(8,15,30,0.68);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success-bright); box-shadow: 0 0 0 3px rgba(16,185,129,0.3);
}
.hero-badge-text { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.hero-badge-text strong { color: #fff; }
.hero-audio-btn,
.hero-playpause-btn {
  width: 44px; height: 44px;
  background: rgba(8,15,30,0.68);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,0.85);
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.hero-audio-btn:hover,
.hero-playpause-btn:hover {
  background: rgba(8,15,30,0.85);
  border-color: rgba(255,255,255,0.25);
}
.hero-audio-btn svg,
.hero-playpause-btn svg { width: 20px; height: 20px; }
.hero-audio-btn .icon-sound { display: none; }
.hero-playpause-btn .icon-play { display: none; }
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.scroll-hint span {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.4);
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ─── CONCEPT ────────────────────────────────────── */
.concept { background: var(--bg); }
.concept-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.concept-header .section-sub { margin: 16px auto 0; }
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 48px 56px;
}
.pillar {
  background: transparent;
  border: none;
  border-top: 2px solid var(--primary);
  border-radius: 0;
  padding: 28px 0 0;
  box-shadow: none;
  transition: none;
}
.pillar:hover { transform: none; box-shadow: none; }
.pillar-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
}
.pillar-icon--blue { background: rgba(14,165,233,0.1); }
.pillar-icon--teal { background: rgba(8,145,178,0.1); }
.pillar-icon--amber { background: rgba(245,158,11,0.1); }
.pillar-icon--green { background: rgba(16,185,129,0.1); }
.pillar h3 {
  font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 10px; color: var(--text);
}
.pillar p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.concept-footer {
  text-align: center; margin-top: 56px;
  padding: 32px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
a.concept-footer {
  text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
a.concept-footer:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.concept-stat { text-align: center; }
.concept-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 700; color: var(--primary-text);
}
.concept-stat span { font-size: 0.85rem; color: var(--text-muted); }
.concept-divider { width: 1px; height: 48px; background: var(--border); }

/* ─── PACKAGES ───────────────────────────────────── */
.packages { background: var(--surface2); }
.packages-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.packages-header .section-sub { margin: 16px auto 0; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.pkg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg-card--featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 0 0 1px var(--primary), 0 24px 56px rgba(14,165,233,0.18);
}
.pkg-card--featured:hover { transform: translateY(-6px); }
.pkg-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 99px;
  white-space: nowrap;
}
.pkg-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 8px;
}
.pkg-name {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 700;
  margin-bottom: 4px; color: var(--text);
}
.pkg-duration {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px;
}
.pkg-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 24px;
}
.pkg-price .amount {
  font-family: var(--font-head);
  font-size: 2.6rem; font-weight: 700;
  color: var(--text);
}
.pkg-price .per { font-size: 0.85rem; color: var(--text-muted); }
.price-standard, .price-deluxe { display: contents; }
.pkg-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pkg-includes {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.pkg-tag {
  font-size: 0.78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 99px;
  background: rgba(3,105,161,0.07);
  color: var(--primary-text);
  border: 1px solid rgba(3,105,161,0.2);
}
.pkg-program {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.pkg-program li {
  display: flex; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; align-items: flex-start;
}
.pkg-program li:last-child { border-bottom: none; }
.pkg-day-badge {
  flex-shrink: 0;
  min-width: 42px; height: 22px; padding: 0 8px;
  background: rgba(14,165,233,0.1);
  border-radius: 99px;
  font-size: 0.7rem; font-weight: 700;
  color: var(--primary-text); letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pkg-program li .day-items { color: var(--text-muted); line-height: 1.5; }
.pkg-program li .day-items strong {
  color: var(--text); display: block;
  font-size: 0.8rem; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 2px;
}
.pkg-cta {
  width: 100%; padding: 15px; font-size: 0.95rem;
  border-radius: var(--r);
  margin-top: auto;
}

/* ─── PRICING TOGGLE ──────────────────────────────── */
.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.pricing-btn {
  padding: 10px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.18);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}
.pricing-btn:first-child {
  border-right: none;
  border-radius: var(--r) 0 0 var(--r);
}
.pricing-btn:last-child {
  border-radius: 0 var(--r) var(--r) 0;
}
.pricing-btn.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.pricing-desc {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.pricing-desc p { color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.pricing-desc p:last-child { margin-bottom: 0; }

/* ─── LOCATION ───────────────────────────────────── */
.location { background: var(--bg); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: var(--r-lg); overflow: hidden;
  min-height: 560px;
  box-shadow: var(--shadow-md);
}
.location-img {
  height: 100%; min-height: 420px;
  background-size: cover; background-position: center;
  position: relative;
}
.location-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, rgba(250,250,248,0.5));
}
.location-content {
  background: var(--surface);
  padding: 60px 52px; display: flex; flex-direction: column; justify-content: center;
}
.location-points { list-style: none; margin-top: 32px; margin-bottom: 40px; }
.location-points li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem;
}
.location-points li:first-child { border-top: 1px solid var(--border); }
.location-dot {
  flex-shrink: 0; margin-top: 5px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--secondary);
}
.location-points li span { color: var(--text-muted); }
.location-points li strong { color: var(--text); display: block; margin-bottom: 2px; }

/* ─── LANDING SECTION — info-points & buttons ────── */
.info-point-body { display: flex; flex-direction: column; gap: 4px; }
.info-point-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.info-point-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 99px;
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  border: 1.5px solid transparent; transition: opacity 0.15s;
  color: #fff;
}
.info-point-btn:hover { opacity: 0.8; }
.info-point-btn--call   { background: var(--primary); border-color: var(--primary); }
.info-point-btn--call::before { content: "📞"; }
.info-point-btn--whatsapp { background: #25D366; border-color: #25D366; }
.info-point-btn--whatsapp::before { content: "💬"; }
.info-point-btn--url    { background: var(--secondary); border-color: var(--secondary); }
.info-point-btn--url::before { content: "🔗"; }
.info-point-btn--email  { background: var(--text-muted); border-color: var(--text-muted); }
.info-point-btn--email::before { content: "✉️"; }

/* Featured info-point */
.location-points li.info-point--featured {
  background: rgba(245,158,11,0.07);
  border-radius: var(--r);
  padding-left: 12px; padding-right: 12px;
  border-bottom-color: transparent;
  box-shadow: 0 0 0 1.5px var(--accent);
  margin: 2px 0;
}
.location-points li.info-point--featured .location-dot { background: var(--accent); }
.location-points li.info-point--featured strong { color: var(--accent-dk); }

/* ─── EXPERIENCES ────────────────────────────────── */
.experiences { background: var(--surface2); }
.experiences-header { margin-bottom: 48px; }
.exp-scroll {
  display: flex; gap: 20px;
  overflow-x: auto; padding-bottom: 16px;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.exp-scroll::-webkit-scrollbar { height: 4px; }
.exp-scroll::-webkit-scrollbar-track { background: transparent; }
.exp-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
.exp-card {
  flex-shrink: 0; width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--r-lg); padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.exp-card:hover { border-top: 3px solid transparent; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.exp-icon {
  font-size: 2rem; margin-bottom: 16px; display: block;
}
.exp-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text);
}
.exp-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.exp-card .exp-price {
  margin-top: 14px; font-size: 0.8rem; font-weight: 700;
  color: var(--accent); letter-spacing: 0.03em;
}

/* ─── GALLERY ────────────────────────────────────── */
.gallery { background: var(--bg); padding: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 4px;
}
.gallery-item {
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s var(--ease-out);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.3); }
.gallery-item-label {
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  font-size: 0.8rem; font-weight: 600;
  color: #fff; letter-spacing: 0.08em; text-transform: uppercase;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

/* ─── TARGET ─────────────────────────────────────── */
.target { background: var(--surface); }
.target-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.target-img {
  border-radius: var(--r-lg); overflow: hidden;
  height: 480px;
  background-size: cover; background-position: center;
  position: relative;
  box-shadow: var(--shadow-md);
}
.target-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 55%);
}
.target-profile {
  background: rgba(8,15,30,0.78);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 20px 24px;
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 1;
}
.target-profile p { font-size: 0.9rem; color: rgba(255,255,255,0.9); line-height: 1.5; }
.target-profile strong { color: var(--primary-light); }
.markets { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.market-chip {
  padding: 7px 16px; border-radius: 99px;
  font-size: 0.8rem; font-weight: 600;
  background: rgba(3,105,161,0.07);
  border: 1px solid rgba(3,105,161,0.2);
  color: var(--primary-text);
}
.season-bar {
  margin-top: 36px; padding: 20px 24px;
  background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r);
  display: flex; align-items: center; gap: 16px;
}
.season-icon { font-size: 1.4rem; flex-shrink: 0; }
.season-bar p { font-size: 0.9rem; color: var(--text-muted); }
.season-bar strong { color: var(--text); display: block; }

/* ─── BOOK ───────────────────────────────────────── */
.book { background: var(--bg); }
.book-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
}
.book-intro { padding-top: 16px; }
.book-intro .section-title { margin-bottom: 20px; }
.book-promise { list-style: none; margin-top: 32px; }
.book-promise li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 0.92rem; color: var(--text-muted);
}
.book-promise li:first-child { border-top: 1px solid var(--border); }
.book-promise li::before {
  content: '✓';
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(16,185,129,0.12);
  color: var(--success); font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 700; margin-bottom: 32px;
  color: var(--text);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--text-muted);
  text-transform: uppercase; margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%; background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 13px 16px;
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(107,114,128,0.5); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; border-radius: var(--r); margin-top: 8px; }
.form-note {
  text-align: center; margin-top: 14px;
  font-size: 0.8rem; color: var(--text-muted);
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--surface-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 36px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .footer-logo {
  color: #fff; display: block; margin-bottom: 12px; line-height: 0;
}
.footer-brand .footer-logo svg { height: 50px; width: auto; display: block; }
.footer-payoff {
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  font-style: italic; line-height: 1.7;
}
.footer-col h5 {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  transition: color 150ms;
}
.footer-col ul a:hover { color: #fff; }
.footer-col .footer-email {
  display: block; margin-top: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  transition: color 150ms;
}
.footer-col .footer-email:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,0.5);
  transition: border-color 150ms, color 150ms;
  text-decoration: none;
}
.social-btn:hover { border-color: var(--primary); color: var(--primary); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-bottom .footer-loc {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.3);
}
.footer-bottom .footer-loc::before { content: '📍'; font-size: 0.75rem; }

/* Footer — simple (Landing Page) */
.footer-simple {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  text-align: center;
}
.footer-simple .footer-logo { color: #fff; line-height: 0; display: block; }
.footer-simple .footer-logo svg { height: 56px; width: auto; display: block; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-img { min-height: 320px; border-radius: 0; }
  .location-img-overlay { background: none; }
  .location-content { padding: 44px 36px; }
  .target-grid { grid-template-columns: 1fr; gap: 40px; }
  .target-img { height: 320px; }
  .book-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta, .nav > .nav-inner > .lang-switcher { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 100px 24px 80px; }
  .hero-badge { display: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item:first-child { grid-row: span 1; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .concept-footer { flex-direction: column; gap: 20px; }
  .concept-divider { width: 80px; height: 1px; }

}
@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }
}

/* ── Gravity Forms ───────────────────────────────────────────────────────── */
.gform_fields { list-style: none; padding: 0; margin: 0; }
.gform_required_legend { display: none; }
.gfield { margin-bottom: 20px; }
.gfield_label {
  display: block; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--text-muted);
  text-transform: uppercase; margin-bottom: 8px;
}
.hidden_sub_label {visibility: hidden; }
fieldset { border: none; padding: 0; margin: 0; }
.gfield_required { color: var(--accent); margin-left: 2px; }
.gfield input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="file"]),
.gfield select,
.gfield textarea {
  width: 100%; background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 13px 16px;
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
}
.gfield input::placeholder,
.gfield textarea::placeholder { color: rgba(107,114,128,0.5); }
.gfield input:not([type="radio"]):not([type="checkbox"]):focus,
.gfield select:focus,
.gfield textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.gfield textarea { resize: vertical; min-height: 100px; }
.gfield select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.gfield--width-half { grid-column: span 1; }
.gform_fields.gform_fields--columns-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gform_footer, .gform_page_footer { margin-top: 8px; }
.gform_button {
  width: 100%; padding: 16px; font-size: 1rem;
  border-radius: var(--r); cursor: pointer;
  background: var(--primary); color: #fff;
  border: none; font-family: var(--font-body); font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 200ms, box-shadow 200ms;
}
.gform_button:hover { background: var(--primary-text); box-shadow: 0 6px 24px rgba(14,165,233,0.35); }
.gfield_validation_message,
.validation_message {
  color: var(--error); font-size: 0.8rem; margin-top: 6px;
}
.gform_validation_errors {
  background: var(--error-light); border: 1px solid var(--error-border);
  border-radius: var(--r); padding: 12px 16px;
  color: var(--error); font-size: 0.85rem; margin-bottom: 20px;
}
.ginput_container_consent { display: flex; align-items: flex-start; gap: 10px; }
.ginput_container_consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }

/* Checkbox & Radio */
.gfield--type-checkbox .gfield_checkbox,
.gfield--type-radio .gfield_radio { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.gfield--type-checkbox .gfield_checkbox li,
.gfield--type-radio .gfield_radio li { display: flex; align-items: center; gap: 10px; }
.gfield--type-checkbox input[type="checkbox"],
.gfield--type-radio input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: 4px;
  background: var(--bg); cursor: pointer;
  transition: border-color 150ms, background 150ms;
  position: relative;
}
.gfield--type-radio input[type="radio"] { border-radius: 50%; }
.gfield--type-checkbox input[type="checkbox"]:checked,
.gfield--type-radio input[type="radio"]:checked {
  background: var(--primary); border-color: var(--primary);
}
.gfield--type-checkbox input[type="checkbox"]:checked::after {
  content: ''; position: absolute;
  left: 4px; top: 1px; width: 6px; height: 10px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.gfield--type-radio input[type="radio"]:checked::after {
  content: ''; position: absolute;
  left: 4px; top: 4px; width: 8px; height: 8px;
  background: #fff; border-radius: 50%;
}
.gfield--type-checkbox .gfield_checkbox label,
.gfield--type-radio .gfield_radio label {
  font-size: 0.9rem; font-weight: 400; text-transform: none;
  letter-spacing: 0; color: var(--text); cursor: pointer; margin: 0;
}

/* Field description */
.gfield_description {
  font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; line-height: 1.5;
}
.gfield_description + .ginput_container { margin-top: 8px; }

/* Consent checkbox (ginput_container_consent) */
.ginput_container_consent {
  display: flex; align-items: flex-start; gap: 10px;
}
.ginput_container_consent input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  border: 1.5px solid var(--border); border-radius: 4px;
  background: var(--bg); cursor: pointer; position: relative;
  transition: border-color 150ms, background 150ms;
}
.ginput_container_consent input[type="checkbox"]:checked {
  background: var(--primary); border-color: var(--primary);
}
.ginput_container_consent input[type="checkbox"]:checked::after {
  content: ''; position: absolute;
  left: 4px; top: 1px; width: 6px; height: 10px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.ginput_container_consent .ginput_container_consent_text {
  font-size: 0.85rem; color: var(--text); line-height: 1.5;
}
.ginput_container_consent .ginput_container_consent_text a {
  color: var(--primary); text-decoration: underline;
}

/* Textarea sizes */
.gfield textarea.small  { min-height: 80px;  font-size: 0.85rem; }
.gfield textarea.medium { min-height: 120px; }
.gfield textarea.large  { min-height: 180px; }

/* Field sizes */
.gfield--width-full    { grid-column: 1 / -1; }
.gfield input.small,  .gfield select.small  { padding: 9px 12px;  font-size: 0.85rem; }
.gfield input.medium, .gfield select.medium { padding: 11px 14px; font-size: 0.9rem; }
.gfield input.large,  .gfield select.large  { padding: 16px 18px; font-size: 1rem; }

/* Layout — grid GF nativo */
.gform_fields {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 16px;
}
.gfield { grid-column: 1 / -1; }
.gfield--width-half  { grid-column: span 6; }
.gfield--width-third { grid-column: span 4; }
.gfield--width-quarter { grid-column: span 3; }
@media (max-width: 600px) {
  .gfield--width-half,
  .gfield--width-third,
  .gfield--width-quarter { grid-column: 1 / -1; }
}

/* Validazione campo */
.gfield--error input,
.gfield--error select,
.gfield--error textarea {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}
.gfield_validation_message,
.validation_message {
  color: var(--error); font-size: 0.78rem; margin-top: 6px;
  display: flex; align-items: center; gap: 4px;
}
.gform_validation_errors {
  background: var(--error-light); border: 1px solid var(--error-border);
  border-radius: var(--r); padding: 12px 16px;
  color: var(--error); font-size: 0.85rem; margin-bottom: 20px;
}
.gform_validation_errors h2 { font-size: 0.9rem; font-weight: 600; margin: 0; }

/* Form multipagina — steps */
.gf_step_wrapper,
.gf_progressbar_wrapper { margin-bottom: 32px; }
.gf_progressbar_wrapper .gf_progressbar_title {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.gf_progressbar {
  background: var(--border); border-radius: 999px;
  height: 6px; overflow: hidden;
}
.gf_progressbar_percentage {
  height: 100%; background: var(--primary);
  border-radius: 999px;
  transition: width 400ms var(--ease-out);
}
.gf_progressbar_percentage span { display: none; }
.gf_step_wrapper { display: flex; gap: 8px; align-items: center; }
.gf_step {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
}
.gf_step_number {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  transition: background 200ms, border-color 200ms;
}
.gf_step_active .gf_step_number {
  background: var(--primary); border-color: var(--primary); color: #fff;
}
.gf_step_active { color: var(--text); }
.gf_step_completed .gf_step_number {
  background: var(--success-light); border-color: var(--success-border); color: var(--success-dark);
}
.gf_step_separator { flex: 1; height: 1.5px; background: var(--border); max-width: 32px; }
.gform_next_button,
.gform_previous_button {
  padding: 13px 28px; border-radius: var(--r); font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--primary); transition: background 200ms, box-shadow 200ms;
}
.gform_next_button { background: var(--primary); color: #fff; }
.gform_next_button:hover { background: var(--primary-text); box-shadow: 0 6px 24px rgba(14,165,233,0.35); }
.gform_previous_button { background: transparent; color: var(--primary); }
.gform_previous_button:hover { background: rgba(14,165,233,0.05); }
.gform_page_footer { display: flex; gap: 12px; margin-top: 8px; }

/* ─── REDUCED MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  .hero-overline, .hero-title, .hero-sub, .hero-ctas, .hero-badge {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .mobile-menu.open { animation: none; }

  .hamburger[aria-expanded="true"] span:nth-child(1),
  .hamburger[aria-expanded="true"] span:nth-child(2),
  .hamburger[aria-expanded="true"] span:nth-child(3) {
    transition: none;
  }

  .hero-slide {
    transition: none !important;
  }

  .scroll-arrow {
    animation: none;
    opacity: 0.5;
    transform: rotate(45deg) translateY(3px);
  }

  .nav,
  .nav-logo,
  .nav-links a,
  .hamburger span,
  .pillar,
  .pkg-card,
  .exp-card,
  .gallery-item img,
  .gallery-item-label,
  .gallery-item-overlay,
  .venue-card-bg,
  .venue-card-body,
  .venue-gallery-thumb {
    transition: none;
  }
  .venue-card:hover .venue-card-bg { transform: none; }
  .venue-card:hover .venue-card-body { transform: none; }
}

/* ─── EXPERIENCES REGION ─────────────────────────── */
.exp-scroll:focus {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--r);
}

/* ─── SCROLL SHADOW — experiences overflow indicator */
.exp-scroll-wrap {
  position: relative;
}
.exp-scroll-wrap::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 16px;
  width: 64px; pointer-events: none;
  background: linear-gradient(to right, transparent, var(--surface2));
}

/* Chained Select (GF add-on) */
.ginput_container_chained_select { display: flex; flex-wrap: wrap; gap: 10px; }
.ginput_container_chained_select .ginput_full,
.ginput_container_chained_select .gf_chained_select_field { flex: 1 1 140px; }
.ginput_container_chained_select select {
  width: 100%; background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 13px 40px 13px 16px;
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  outline: none; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  transition: border-color 150ms, box-shadow 150ms;
}
.ginput_container_chained_select select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.ginput_container_chained_select select:disabled {
  opacity: 0.4; cursor: not-allowed;
}
.ginput_container_chained_select .gf_chained_select_label {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}

/* ─── VENUES ─────────────────────────────────────── */

/* Showcase — smart grid (12 col, span assigned per card by PHP) */
.venue-showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .venue-showcase-grid .venue-card {
    grid-column: span 12 !important;
  }
}
.venue-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background-color: var(--surface2);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.venue-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
}
.venue-card:hover .venue-card-bg {
  transform: scale(1.05);
}
.venue-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.62) 100%);
}
.venue-card--no-img::after { display: none; }
.venue-card--no-img .venue-card-body { background: transparent; border-top-color: var(--border); }
.venue-card--no-img .venue-card-name,
.venue-card--no-img .venue-card-city { color: var(--text); }
.venue-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
}
.venue-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 14px 20px;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
}
.venue-card:hover .venue-card-body {
  transform: translateY(-4px);
}
.venue-card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.25;
}
.venue-card-city {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.venue-cta {
  align-self: flex-start;
  padding: 6px 16px;
  font-size: 0.82rem;
}

/* ─── EXTRAS ─────────────────────────────────────────── */

.extra-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.extra-card--full {
  grid-column: 1 / -1;
}
.extra-card {
  display: flex;
  flex-direction: row;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 300ms ease, transform 300ms ease;
}
.extra-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}
.extra-card-img {
  flex: 0 0 40%;
  width: 40%; /* override global img { width: 100% } */
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.extra-card-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.extra-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--surface2);
  color: var(--text-muted);
}
.extra-card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.25;
}
.extra-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.extra-cta {
  align-self: flex-start;
  padding: 6px 16px;
  font-size: 0.82rem;
}
@media (max-width: 768px) {
  .extra-showcase-grid {
    grid-template-columns: 1fr;
  }
  .extra-card--full {
    grid-column: auto;
  }
  .extra-card {
    flex-direction: column;
  }
  .extra-card-img {
    flex: none;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* Detail — 2-column layout */
.venue-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.venue-detail-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.venue-detail-img img {
  width: 100%;
  border-radius: var(--r-lg);
  display: block;
}
.venue-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.venue-gallery-thumb-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
  text-decoration: none;
  cursor: zoom-in;
}
.venue-gallery-thumb-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 250ms cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}
.venue-gallery-thumb-wrap:hover::after {
  background: rgba(0,0,0,0.18);
}
.venue-gallery-thumb-wrap:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--r);
}
.venue-gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 450ms cubic-bezier(0.25, 1, 0.5, 1);
}
.venue-gallery-thumb-wrap:hover .venue-gallery-thumb {
  transform: scale(1.08);
}
/* Items 5+ rendered in DOM for lightbox navigation, hidden from strip UI */
.venue-gallery-thumb-wrap--hidden {
  display: none;
}
.venue-gallery-more {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.venue-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.venue-video-wrap iframe,
.venue-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.venue-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 24px;
}
.venue-type-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--primary-light);
  color: var(--primary-text);
  align-self: flex-start;
}
.venue-detail-sidebar h2 {
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-style: italic;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.venue-description {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}
.venue-description p { margin: 0 0 0.5em; }
.venue-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.venue-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.venue-contact-row address {
  font-style: normal;
  line-height: 1.5;
}
.venue-contact-row a {
  color: var(--primary-text);
  text-decoration: none;
}
.venue-contact-row a:hover { text-decoration: underline; }
.venue-contact-icon { flex-shrink: 0; margin-top: 2px; color: var(--text-muted); }
.venue-contact-icon svg { display: block; }

/* Venue lightbox */
#venue-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0);
  opacity: 0;
  pointer-events: none;
  transition: background 280ms var(--ease-out), opacity 280ms var(--ease-out);
}
#venue-lightbox.is-open {
  background: rgba(0,0,0,0.92);
  opacity: 1;
  pointer-events: all;
}
.venue-lb-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r);
  display: block;
  transform: scale(0.94);
  transition: transform 350ms cubic-bezier(0.25, 1, 0.5, 1);
}
#venue-lightbox.is-open .venue-lb-img {
  transform: scale(1);
}
/* shared style for all lightbox buttons */
.venue-lb-close,
.venue-lb-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms, color 150ms;
  z-index: 1;
}
.venue-lb-close,
.venue-lb-nav {
  width: 44px;
  height: 44px;
}
.venue-lb-close:hover,
.venue-lb-nav:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}
.venue-lb-close:focus-visible,
.venue-lb-nav:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.venue-lb-close svg,
.venue-lb-nav svg { pointer-events: none; }

.venue-lb-close { top: 20px; right: 24px; }
.venue-lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.venue-lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
  .venue-lb-prev { left: 8px; }
  .venue-lb-next { right: 8px; }
  .venue-lb-close { top: 12px; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  #venue-lightbox { transition: none; }
  .venue-lb-img   { transition: none; transform: scale(1); }
}

/* Responsive */
@media (max-width: 1024px) {
  .venue-detail-grid { gap: 28px; }
}
@media (max-width: 768px) {
  .venue-showcase-grid { grid-template-columns: 1fr; }
  .venue-detail-grid   { grid-template-columns: 1fr; }
  .venue-detail-sidebar { position: static; }
}

/* ─── PARTNERSHIP ────────────────────────────────────────── */
.partnership-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 56px;
  padding-top: 48px; border-top: 1px solid var(--border);
}
.partnership-col-title {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 24px;
}
.partnership-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.partnership-list li {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 1rem; color: var(--text); line-height: 1.5;
}
.partnership-list li::before {
  content: '—'; color: var(--secondary);
  flex-shrink: 0; font-size: 0.85rem;
}
@media (max-width: 640px) {
  .partnership-cols { grid-template-columns: 1fr; gap: 36px; }
}
