/* ===== Variables ===== */
:root {
  --color-bg: #0f1419;
  --color-surface: #1a222c;
  --color-surface-2: #24303d;
  --color-text: #e8eaed;
  --color-text-muted: #9ca3af;
  --color-accent: #e8b86d;
  --color-accent-hover: #f0c97a;
  --color-border: rgba(255, 255, 255, 0.08);
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: 0.2s ease;
}

/* ===== Reset & base ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) var(--space-lg);
  background: rgba(15, 20, 25, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

/* Legacy nav hidden; overlay used for all viewports */
.nav-main {
  display: none;
}

/* ----- Hamburger trigger ----- */
.nav-trigger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-trigger:hover {
  background: rgba(255, 255, 255, 0.08);
}
.nav-trigger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.nav-trigger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: inherit;
}
body.nav-open .nav-trigger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-trigger-line:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-trigger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Slide-over menu overlay ----- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}
body.nav-open .nav-overlay {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.nav-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
body.nav-open .nav-overlay-backdrop {
  opacity: 1;
}
.nav-overlay-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  max-width: 100%;
  background: var(--color-bg);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: calc(var(--space-lg) + 52px) var(--space-xl) var(--space-xl);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
body.nav-open .nav-overlay-panel {
  transform: translateX(0);
}
.nav-overlay-link {
  display: flex;
  align-items: center;
  padding: var(--space-md) 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s ease, padding-left 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}
.nav-overlay-link:hover,
.nav-overlay-link:focus-visible {
  color: var(--color-accent);
  padding-left: var(--space-sm);
}
.nav-overlay-link:last-child {
  border-bottom: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  padding: 0.5rem;
}

.btn-ghost:hover {
  color: var(--color-text);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}


/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2a3a 0%, #0f1419 50%, #1a222c 100%);
  background-image:
    linear-gradient(180deg, rgba(15, 20, 25, 0.7) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(232, 184, 109, 0.12) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&q=85') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.4) 0%, var(--color-bg) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-xl);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* Scroll indicator: global; position from config (hero / floating / hide) */
.scroll-indicator {
  position: fixed;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

[data-scroll-indicator="floating"] .scroll-indicator {
  left: auto;
  right: var(--space-lg);
  transform: none;
}

[data-scroll-indicator="hero"] .scroll-indicator {
  opacity: 0;
  visibility: hidden;
}

[data-scroll-indicator="hero"] .scroll-indicator.scroll-indicator--near-top {
  opacity: 1;
  visibility: visible;
}

.scroll-indicator.scroll-indicator--hide {
  opacity: 0 !important;
  visibility: hidden !important;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-accent), transparent);
  border-radius: var(--radius-full);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Config panel */
.config-panel {
  position: fixed;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 150;
}

.config-toggle {
  padding: 0.5rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}

.config-toggle:hover {
  color: var(--color-accent);
  border-color: rgba(232, 184, 109, 0.4);
}

.config-drawer {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: var(--space-xs);
  padding: var(--space-md);
  min-width: 260px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.config-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}

.config-fieldset {
  margin: 0 0 var(--space-md);
  padding: 0;
  border: none;
}

.config-legend {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.config-option {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  cursor: pointer;
}

.config-option input {
  margin-right: 0.5rem;
}

.config-hint {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin: var(--space-sm) 0 0;
}

/* ===== Sections ===== */
.section {
  padding: var(--space-3xl) 0;
}

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 var(--space-xl);
  color: var(--color-text);
}

/* ===== Features ===== */
.section-features {
  background: var(--color-surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  padding: var(--space-lg);
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(232, 184, 109, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: var(--space-md);
}

.feature-icon--svg {
  font-size: 0;
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
}

.feature-icon--svg svg {
  width: 100%;
  height: 100%;
  color: var(--color-accent);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  color: var(--color-text);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ===== Destinations ===== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dest-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.dest-1 {
  background-image: linear-gradient(180deg, transparent 0%, var(--color-surface-2) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&q=85');
}

.dest-2 {
  background-image: linear-gradient(180deg, transparent 0%, var(--color-surface-2) 100%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=800&q=85');
}

.dest-3 {
  background-image: linear-gradient(180deg, transparent 0%, var(--color-surface-2) 100%),
    url('https://images.unsplash.com/photo-1480796927426-f609979314bd?w=800&q=85');
}

.dest-info {
  padding: var(--space-lg);
}

.dest-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  color: var(--color-text);
}

.dest-info p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ===== Gallery (horizontal scroll, fixed height) ===== */
.section-gallery {
  background: var(--color-surface);
  overflow: hidden;
  padding-bottom: var(--space-xl);
}

.gallery-head {
  margin-bottom: var(--space-lg);
}

.gallery-hint {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: var(--space-sm) 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-hint-icon {
  font-weight: 600;
  color: var(--color-accent);
}

/* Fixed-height horizontal strip: no long vertical scroll */
.gallery-scroll-wrap {
  position: relative;
  width: 100%;
  margin-bottom: var(--space-md);
}

.gallery-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: var(--space-md) var(--space-xl);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-height: 380px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

/* Edge fades to suggest more content */
.gallery-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 1;
}

.gallery-fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--color-surface) 0%, transparent 100%);
}

.gallery-fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--color-surface) 0%, transparent 100%);
}

/* Uniform cards: same size, consistent UI */
.gallery-card {
  flex: 0 0 320px;
  width: 320px;
  height: 360px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(232, 184, 109, 0.25);
}

.gallery-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.06);
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox:target {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lightbox-close::after {
  content: 'Close';
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover::after {
  background: var(--color-accent);
  color: var(--color-bg);
}

.lightbox-img {
  position: relative;
  z-index: 0;
  max-width: 90vw;
  max-height: 85vh;
  width: 100%;
  aspect-ratio: 16/10;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-md);
  animation: lightbox-zoom 0.3s ease;
}

@keyframes lightbox-zoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .gallery-track {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
    min-height: 320px;
  }

  .gallery-card {
    flex: 0 0 280px;
    width: 280px;
    height: 320px;
  }

  .gallery-fade {
    width: 40px;
  }
}

/* ===== CTA ===== */
.section-cta {
  position: relative;
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border-top: 1px solid var(--color-border);
}

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

.cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}

.cta-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-xl);
}

/* ===== Contact (in-page) ===== */
.section-contact {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--color-surface);
}

.contact-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.contact-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  outline: none;
  border: 1px solid var(--color-border);
}

/* Single accent bar on card only — no extra lines */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-accent);
}

.contact-card-inner {
  padding: var(--space-2xl) var(--space-xl);
}

.contact-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 var(--space-xs);
  color: var(--color-text);
}

.contact-tagline {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-xl);
  line-height: 1.5;
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  align-items: stretch;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.4rem;
  background: rgba(232, 184, 109, 0.08);
  border: 1px solid rgba(232, 184, 109, 0.35);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.contact-item:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(232, 184, 109, 0.14);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 184, 109, 0.2);
}

.contact-item:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.contact-icon {
  display: inline-flex;
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  color: var(--color-accent);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-value {
  font-weight: 500;
}

@media (max-width: 520px) {
  .contact-channels {
    flex-direction: column;
  }

  .contact-item {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  background: var(--color-surface);
  padding: 0 var(--space-lg) var(--space-xl);
}

.footer-top-accent {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.6;
  margin-bottom: var(--space-2xl);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: var(--space-xs);
}

.tagline {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 260px;
  line-height: 1.5;
}

.footer-social-block {
  text-align: right;
}

.footer-social-heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: flex-end;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform 0.2s ease;
}

.social-link:hover {
  color: var(--color-accent);
  border-color: rgba(232, 184, 109, 0.4);
  background: rgba(232, 184, 109, 0.08);
  transform: translateY(-2px);
}

.social-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-legal-links {
  font-size: 0.875rem;
  margin: 0.5rem 0 0;
  color: var(--color-text-muted);
}
.footer-legal-links a {
  color: var(--color-text-muted);
  text-underline-offset: 2px;
}
.footer-legal-links a:hover {
  color: var(--color-accent);
}
.footer-legal-links span {
  margin: 0 0.35em;
  opacity: 0.7;
}

@media (max-width: 640px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social-block {
    text-align: center;
  }

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

  .tagline {
    max-width: none;
  }
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: var(--space-2xl) 0;
  }
}

/* ===== Theme: New (v2) — bright & warm (no green) ===== */
body[data-theme="v2"] {
  --color-bg: #e8e6e2;
  --color-surface: #f0eeea;
  --color-surface-2: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #4a4a4a;
  --color-accent: #b45309;
  --color-accent-hover: #92400e;
  --color-border: rgba(0, 0, 0, 0.1);
}

body[data-theme="v2"] .site-header {
  background: rgba(240, 238, 234, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body[data-theme="v2"] .nav-trigger { color: var(--color-text); }
body[data-theme="v2"] .nav-trigger:hover { background: rgba(0, 0, 0, 0.06); }
body[data-theme="v2"] .nav-overlay-panel { background: var(--color-bg); border-left: 1px solid var(--color-border); }
body[data-theme="v2"] .nav-overlay-link { color: var(--color-text); border-color: var(--color-border); }
body[data-theme="v2"] .nav-overlay-link:hover { color: var(--color-accent); }

body[data-theme="v2"] .hero-bg {
  background: linear-gradient(135deg, #e8f4f3 0%, #f5f3ef 50%, #fff5f0 100%);
  background-image:
    linear-gradient(180deg, rgba(245, 243, 239, 0.6) 0%, var(--color-bg) 100%),
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(180, 83, 9, 0.12) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&q=85') center/cover no-repeat;
}

body[data-theme="v2"] .hero-overlay {
  background: linear-gradient(180deg, rgba(232, 230, 226, 0.5) 0%, var(--color-bg) 100%);
}

body[data-theme="v2"] .btn-secondary {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

body[data-theme="v2"] .btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* v2: feature cards — section tint, cards white */
body[data-theme="v2"] .section-features {
  background: #ede8e4;
}

body[data-theme="v2"] .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

body[data-theme="v2"] .feature-card {
  background: #ffffff;
  border: none;
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: var(--space-xl) var(--space-lg);
}

body[data-theme="v2"] .feature-card:hover {
  border-left-color: var(--color-accent-hover);
  box-shadow: 0 12px 32px rgba(180, 83, 9, 0.12);
  transform: translateY(-4px);
}

body[data-theme="v2"] .feature-icon {
  font-size: 2rem;
}

/* v2: destination cards — section tint, cards white */
body[data-theme="v2"] .section-destinations {
  background: #ebe8e4;
}

body[data-theme="v2"] .destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
  min-height: 440px;
}

body[data-theme="v2"] .destinations-grid .dest-card:first-child {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

body[data-theme="v2"] .destinations-grid .dest-card:first-child .dest-image {
  flex: 1;
  min-height: 220px;
}

body[data-theme="v2"] .destinations-grid .dest-card:not(:first-child) .dest-image {
  height: 160px;
}

body[data-theme="v2"] .dest-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* No overlay on images — keep them sharp and visible */
body[data-theme="v2"] .dest-image::after {
  display: none;
}

body[data-theme="v2"] .dest-1 {
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&q=85');
  background-size: cover;
  background-position: center;
}

body[data-theme="v2"] .dest-2 {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=800&q=85');
  background-size: cover;
  background-position: center;
}

body[data-theme="v2"] .dest-3 {
  background-image: url('https://images.unsplash.com/photo-1480796927426-f609979314bd?w=800&q=85');
  background-size: cover;
  background-position: center;
}

body[data-theme="v2"] .dest-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

body[data-theme="v2"] .gallery-card:hover {
  border-color: rgba(180, 83, 9, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

body[data-theme="v2"] .section-gallery {
  background: #e4e8eb;
}

body[data-theme="v2"] .gallery-fade--left {
  background: linear-gradient(90deg, #e4e8eb 0%, transparent 100%);
}

body[data-theme="v2"] .gallery-fade--right {
  background: linear-gradient(270deg, #e4e8eb 0%, transparent 100%);
}

body[data-theme="v2"] .social-link:hover {
  border-color: rgba(180, 83, 9, 0.4);
  background: rgba(180, 83, 9, 0.08);
}

body[data-theme="v2"] .section-cta .cta-bg {
  background: linear-gradient(135deg, #d4e2e0 0%, #e2e6e4 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body[data-theme="v2"] .section-contact {
  background: #e2dfda;
}

body[data-theme="v2"] .site-footer {
  background: #d8d6d2;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body[data-theme="v2"] .config-drawer {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

body[data-theme="v2"] .config-toggle:hover {
  border-color: rgba(180, 83, 9, 0.4);
}

body[data-theme="v2"] .lightbox-close:hover::after {
  background: var(--color-accent);
  color: #fff;
}

body[data-theme="v2"] .contact-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

body[data-theme="v2"] .contact-card::before {
  background: var(--color-accent);
}

body[data-theme="v2"] .contact-item {
  background: rgba(180, 83, 9, 0.08);
  border: 1px solid rgba(180, 83, 9, 0.3);
}

body[data-theme="v2"] .contact-item:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(180, 83, 9, 0.14);
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.2);
}

body[data-theme="v2"] .contact-icon {
  color: var(--color-accent);
}

body[data-theme="v2"] .contact-item:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* v2: scroll-in animations */
@keyframes v2-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body[data-theme="v2"] .section-features .feature-card,
body[data-theme="v2"] .section-destinations .dest-card,
body[data-theme="v2"] .section-gallery .gallery-card {
  opacity: 0;
  animation: none;
}

body[data-theme="v2"] .section-features.in-view .feature-card,
body[data-theme="v2"] .section-destinations.in-view .dest-card {
  animation: v2-fadeInUp 0.6s ease forwards;
}

body[data-theme="v2"] .section-features.in-view .feature-card:nth-child(1) { animation-delay: 0.1s; }
body[data-theme="v2"] .section-features.in-view .feature-card:nth-child(2) { animation-delay: 0.2s; }
body[data-theme="v2"] .section-features.in-view .feature-card:nth-child(3) { animation-delay: 0.3s; }
body[data-theme="v2"] .section-destinations.in-view .dest-card:nth-child(1) { animation-delay: 0.1s; }
body[data-theme="v2"] .section-destinations.in-view .dest-card:nth-child(2) { animation-delay: 0.2s; }
body[data-theme="v2"] .section-destinations.in-view .dest-card:nth-child(3) { animation-delay: 0.25s; }

body[data-theme="v2"] .section-gallery.in-view .gallery-card {
  animation: v2-fadeInUp 0.5s ease forwards;
}

body[data-theme="v2"] .section-gallery.in-view .gallery-card:nth-child(1) { animation-delay: 0.05s; }
body[data-theme="v2"] .section-gallery.in-view .gallery-card:nth-child(2) { animation-delay: 0.1s; }
body[data-theme="v2"] .section-gallery.in-view .gallery-card:nth-child(3) { animation-delay: 0.15s; }
body[data-theme="v2"] .section-gallery.in-view .gallery-card:nth-child(4) { animation-delay: 0.2s; }
body[data-theme="v2"] .section-gallery.in-view .gallery-card:nth-child(5) { animation-delay: 0.25s; }
body[data-theme="v2"] .section-gallery.in-view .gallery-card:nth-child(6) { animation-delay: 0.3s; }
body[data-theme="v2"] .section-gallery.in-view .gallery-card:nth-child(7) { animation-delay: 0.35s; }
body[data-theme="v2"] .section-gallery.in-view .gallery-card:nth-child(8) { animation-delay: 0.4s; }
body[data-theme="v2"] .section-gallery.in-view .gallery-card:nth-child(9) { animation-delay: 0.45s; }
body[data-theme="v2"] .section-gallery.in-view .gallery-card:nth-child(10) { animation-delay: 0.5s; }

/* v2: section headings animate in */
body[data-theme="v2"] .section-eyebrow,
body[data-theme="v2"] .section-title {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

body[data-theme="v2"] .section.in-view .section-eyebrow,
body[data-theme="v2"] .section.in-view .section-title {
  opacity: 1;
  transform: translateY(0);
}

/* v2 responsive: destinations stack on small screens */
@media (max-width: 700px) {
  body[data-theme="v2"] .destinations-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  body[data-theme="v2"] .destinations-grid .dest-card:first-child {
    grid-row: auto;
    flex-direction: column;
  }

  body[data-theme="v2"] .destinations-grid .dest-card:first-child .dest-image {
    min-height: 200px;
  }

  body[data-theme="v2"] .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Theme: Version 3 — cinematic & immersive ===== */
body[data-theme="v3"] {
  --color-bg: #0c0e12;
  --color-surface: #14171e;
  --color-surface-2: #1c2028;
  --color-text: #f0f1f3;
  --color-text-muted: #8b92a0;
  --color-accent: #eab308;
  --color-accent-hover: #facc15;
  --color-border: rgba(255, 255, 255, 0.08);
}

body[data-theme="v3"] .site-header {
  background: rgba(12, 14, 18, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-theme="v3"] .nav-trigger { color: var(--color-text-muted); }
body[data-theme="v3"] .nav-trigger:hover { background: rgba(255, 255, 255, 0.08); }
body[data-theme="v3"] .nav-overlay-panel { background: var(--color-bg); border-left: 1px solid var(--color-border); }
body[data-theme="v3"] .nav-overlay-link { color: var(--color-text); border-color: var(--color-border); }
body[data-theme="v3"] .nav-overlay-link:hover { color: var(--color-accent); }

body[data-theme="v3"] .hero-bg {
  background-image:
    linear-gradient(180deg, rgba(12, 14, 18, 0.5) 0%, var(--color-bg) 100%),
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(234, 179, 8, 0.15) 0%, transparent 55%),
    url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&q=90') center/cover no-repeat;
}

body[data-theme="v3"] .hero-overlay {
  background: linear-gradient(180deg, transparent 0%, var(--color-bg) 95%);
}

body[data-theme="v3"] .hero-eyebrow {
  color: var(--color-accent);
  letter-spacing: 0.2em;
}

body[data-theme="v3"] .btn-primary {
  background: var(--color-accent);
  color: #0c0e12;
}

body[data-theme="v3"] .btn-primary:hover {
  background: var(--color-accent-hover);
}

body[data-theme="v3"] .section-features {
  background: #0f1116;
}

body[data-theme="v3"] .feature-card {
  background: var(--color-surface-2);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body[data-theme="v3"] .feature-card:hover {
  border-color: rgba(234, 179, 8, 0.3);
  box-shadow: 0 12px 40px rgba(234, 179, 8, 0.12);
}

body[data-theme="v3"] .feature-icon--svg svg {
  color: var(--color-accent);
}

body[data-theme="v3"] .section-destinations {
  background: #14171e;
}

body[data-theme="v3"] .dest-card {
  background: var(--color-surface-2);
  border-color: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

body[data-theme="v3"] .dest-card:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

body[data-theme="v3"] .dest-card:hover .dest-image {
  transform: scale(1.08);
}

body[data-theme="v3"] .dest-image {
  transition: transform 0.6s ease;
}

/* v3: Gallery — bento grid + spotlight (no horizontal scroll) */
body[data-theme="v3"] .section-gallery {
  background: #0f1116;
}

body[data-theme="v3"] .gallery-hint {
  font-size: 0;
}

body[data-theme="v3"] .gallery-hint::before {
  content: 'Hover to focus • click to expand';
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

body[data-theme="v3"] .gallery-scroll-wrap {
  overflow: visible;
  padding: 0 var(--space-lg);
}

body[data-theme="v3"] .gallery-fade--left,
body[data-theme="v3"] .gallery-fade--right {
  display: none;
}

body[data-theme="v3"] .gallery-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: var(--space-md);
  overflow: visible;
  min-height: 0;
  padding: var(--space-md) 0;
  scroll-snap-type: none;
}

body[data-theme="v3"] .gallery-track .gallery-card {
  flex: none;
  width: auto;
  height: auto;
  min-height: 200px;
  scroll-snap-align: none;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease, filter 0.45s ease, opacity 0.4s ease;
  border-radius: var(--radius-md);
}

/* First card larger in v3 */
body[data-theme="v3"] .gallery-track .gallery-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 0;
}

body[data-theme="v3"] .gallery-track .gallery-card:nth-child(4) {
  grid-column: span 2;
}

/* Spotlight: hovered card slides up + rotates, others shrink and tilt back */
body[data-theme="v3"] .gallery-track:has(.gallery-card:hover) .gallery-card:not(:hover) {
  transform: scale(0.95) translateY(8px) rotate(-1.5deg);
  filter: brightness(0.65);
}

body[data-theme="v3"] .gallery-track .gallery-card:hover {
  transform: scale(1.02) translateY(-12px) rotate(2deg);
  box-shadow: 0 28px 60px rgba(234, 179, 8, 0.28);
  border-color: rgba(234, 179, 8, 0.4);
  z-index: 2;
}

body[data-theme="v3"] .gallery-track .gallery-card:hover .gallery-card-img {
  transform: translateY(-8px) scale(1.06);
}

body[data-theme="v3"] .gallery-track .gallery-card-img {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* v3 gallery: staggered entrance — slide from different sides + fade + rotate */
body[data-theme="v3"] .section-gallery .gallery-card {
  opacity: 0;
  animation: none;
}

@keyframes v3-reveal-from-left {
  from {
    opacity: 0;
    transform: translateX(-50px) translateY(10px) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0);
  }
}

@keyframes v3-reveal-from-right {
  from {
    opacity: 0;
    transform: translateX(50px) translateY(10px) rotate(8deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0);
  }
}

@keyframes v3-reveal-from-bottom {
  from {
    opacity: 0;
    transform: translateY(40px) rotate(4deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

/* Fallback keyframe name for any card */
@keyframes v3-gallery-reveal {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(-3deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

/* v3: gentle floating after reveal (ambient movement) */
@keyframes v3-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

body[data-theme="v3"] .section-gallery.in-view .gallery-track .gallery-card {
  animation: v3-reveal-from-left 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards, v3-float 5s ease-in-out infinite;
  animation-delay: var(--reveal-delay, 0.1s), 1.2s;
}

body[data-theme="v3"] .section-gallery.in-view .gallery-track .gallery-card:nth-child(1) { --reveal-delay: 0.05s; animation-name: v3-reveal-from-left, v3-float; }
body[data-theme="v3"] .section-gallery.in-view .gallery-track .gallery-card:nth-child(2) { --reveal-delay: 0.12s; animation-name: v3-reveal-from-bottom, v3-float; }
body[data-theme="v3"] .section-gallery.in-view .gallery-track .gallery-card:nth-child(3) { --reveal-delay: 0.19s; animation-name: v3-reveal-from-right, v3-float; }
body[data-theme="v3"] .section-gallery.in-view .gallery-track .gallery-card:nth-child(4) { --reveal-delay: 0.26s; animation-name: v3-reveal-from-left, v3-float; }
body[data-theme="v3"] .section-gallery.in-view .gallery-track .gallery-card:nth-child(5) { --reveal-delay: 0.33s; animation-name: v3-reveal-from-bottom, v3-float; }
body[data-theme="v3"] .section-gallery.in-view .gallery-track .gallery-card:nth-child(6) { --reveal-delay: 0.4s; animation-name: v3-reveal-from-right, v3-float; }
body[data-theme="v3"] .section-gallery.in-view .gallery-track .gallery-card:nth-child(7) { --reveal-delay: 0.47s; animation-name: v3-reveal-from-left, v3-float; }
body[data-theme="v3"] .section-gallery.in-view .gallery-track .gallery-card:nth-child(8) { --reveal-delay: 0.54s; animation-name: v3-reveal-from-bottom, v3-float; }
body[data-theme="v3"] .section-gallery.in-view .gallery-track .gallery-card:nth-child(9) { --reveal-delay: 0.61s; animation-name: v3-reveal-from-right, v3-float; }

body[data-theme="v3"] .section-gallery.in-view .gallery-track .gallery-card:nth-child(even) {
  animation-direction: normal, reverse;
}

@media (max-width: 900px) {
  body[data-theme="v3"] .gallery-track {
    grid-template-columns: repeat(2, 1fr);
  }

  body[data-theme="v3"] .gallery-track .gallery-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  body[data-theme="v3"] .gallery-track .gallery-card:nth-child(4) {
    grid-column: span 2;
  }
}

body[data-theme="v3"] .section-contact {
  background: #14171e;
}

body[data-theme="v3"] .contact-card {
  background: var(--color-surface-2);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

body[data-theme="v3"] .contact-card::before {
  background: var(--color-accent);
}

body[data-theme="v3"] .contact-item {
  background: rgba(234, 179, 8, 0.08);
  border-color: rgba(234, 179, 8, 0.35);
}

body[data-theme="v3"] .contact-item:hover {
  background: rgba(234, 179, 8, 0.15);
  box-shadow: 0 4px 20px rgba(234, 179, 8, 0.2);
}

body[data-theme="v3"] .contact-icon {
  color: var(--color-accent);
}

body[data-theme="v3"] .site-footer {
  background: #0c0e12;
}

/* v3: Wanderlust section — staggered grid + 3D tilt */
body[data-theme="v3"] .section-wanderlust {
  background: #0c0e12;
  padding: var(--space-3xl) var(--space-lg);
}

body[data-theme="v3"] .section-wanderlust[hidden] {
  display: none !important;
}

body[data-theme="v3"] .v3-only:not([hidden]) {
  display: block !important;
}

.wanderlust-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wanderlust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.wanderlust-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

body[data-theme="v3"] .wanderlust-card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body[data-theme="v3"] .wanderlust-card:hover {
  box-shadow: 0 20px 50px rgba(234, 179, 8, 0.2);
}

.wanderlust-card--wide {
  grid-column: span 2;
}

.wanderlust-card--tall {
  grid-row: span 2;
}

.wanderlust-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

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

.wanderlust-label {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  z-index: 1;
}

body[data-theme="v3"] .section-wanderlust .section-eyebrow {
  color: var(--color-accent);
}

/* v3: scroll-in animations */
body[data-theme="v3"] .section-wanderlust .wanderlust-card {
  opacity: 0;
  transform: translateY(30px);
  animation: none;
}

body[data-theme="v3"] .section-wanderlust.in-view .wanderlust-card {
  animation: v2-fadeInUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

body[data-theme="v3"] .section-wanderlust.in-view .wanderlust-card:nth-child(1) { animation-delay: 0.05s; }
body[data-theme="v3"] .section-wanderlust.in-view .wanderlust-card:nth-child(2) { animation-delay: 0.1s; }
body[data-theme="v3"] .section-wanderlust.in-view .wanderlust-card:nth-child(3) { animation-delay: 0.15s; }
body[data-theme="v3"] .section-wanderlust.in-view .wanderlust-card:nth-child(4) { animation-delay: 0.2s; }
body[data-theme="v3"] .section-wanderlust.in-view .wanderlust-card:nth-child(5) { animation-delay: 0.25s; }
body[data-theme="v3"] .section-wanderlust.in-view .wanderlust-card:nth-child(6) { animation-delay: 0.3s; }

body[data-theme="v3"] .section-eyebrow,
body[data-theme="v3"] .section-title {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

body[data-theme="v3"] .section.in-view .section-eyebrow,
body[data-theme="v3"] .section.in-view .section-title {
  opacity: 1;
  transform: translateY(0);
}

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

  .wanderlust-card--wide {
    grid-column: span 2;
  }

  .wanderlust-card--tall {
    grid-row: span 1;
  }
}

/* ========== VERSION 4 — Fresh layout, styling, animations ========== */
body[data-theme="v4"] {
  --v4-bg: #0a0a0b;
  --v4-surface: #111113;
  --v4-surface-2: #1a1a1e;
  --v4-text: #f4f4f5;
  --v4-text-muted: #a1a1aa;
  --v4-accent: #06b6d4;
  --v4-accent-hover: #22d3ee;
  --v4-border: rgba(255, 255, 255, 0.06);
  --v4-font: 'DM Sans', system-ui, sans-serif;
  --v4-display: 'Syne', system-ui, sans-serif;
  font-family: var(--v4-font);
  color: var(--v4-text);
  background: var(--v4-bg);
}

body[data-theme="v4"] .content-default {
  display: none !important;
}

body[data-theme="v4"] .content-v4 {
  display: block;
}

body[data-theme="v4"] .site-header {
  background: rgba(10, 10, 11, 0.9);
  border-bottom-color: var(--v4-border);
}

body[data-theme="v4"] .nav-trigger { color: var(--v4-text-muted); }
body[data-theme="v4"] .nav-trigger:hover { background: rgba(255, 255, 255, 0.06); }
body[data-theme="v4"] .nav-overlay-panel { background: var(--v4-bg); border-left: 1px solid var(--v4-border); }
body[data-theme="v4"] .nav-overlay-link { color: var(--v4-text); border-color: var(--v4-border); }
body[data-theme="v4"] .nav-overlay-link:hover { color: var(--v4-accent); }

body[data-theme="v4"] .logo {
  font-family: var(--v4-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--v4-text);
}

body[data-theme="v4"] .nav-main a {
  color: var(--v4-text-muted);
  font-family: var(--v4-font);
}

body[data-theme="v4"] .nav-main a:hover {
  color: var(--v4-accent);
}

body[data-theme="v4"] .scroll-indicator--hide,
body[data-theme="v4"] .scroll-indicator {
  opacity: 0.5;
  color: var(--v4-text-muted);
}

body[data-theme="v4"] .scroll-line {
  background: linear-gradient(to top, var(--v4-accent), transparent);
}

body[data-theme="v4"] .site-footer {
  background: var(--v4-surface);
  border-top: 1px solid var(--v4-border);
  color: var(--v4-text-muted);
}

body[data-theme="v4"] .footer-top-accent {
  background: linear-gradient(90deg, var(--v4-accent), transparent);
  opacity: 0.4;
}

body[data-theme="v4"] .social-link:hover {
  color: var(--v4-accent);
}

/* v4 container */
.v4-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* v4 hero */
.v4-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.v4-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: v4-bg-zoom 20s ease-in-out infinite alternate;
}

@keyframes v4-bg-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.v4-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.4) 0%, rgba(10,10,11,0.85) 60%, var(--v4-bg) 100%);
}

.v4-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.v4-hero-label {
  display: inline-block;
  font-family: var(--v4-font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--v4-accent);
  margin-bottom: 1rem;
  opacity: 0;
  animation: v4-fade-up 0.8s ease forwards;
}

.v4-hero-title {
  font-family: var(--v4-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--v4-text);
  opacity: 0;
  transform: translateY(30px);
  animation: v4-fade-up 0.9s ease 0.15s forwards;
}

.v4-hero-desc {
  font-family: var(--v4-font);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--v4-text-muted);
  margin: 0 0 2rem;
  opacity: 0;
  transform: translateY(24px);
  animation: v4-fade-up 0.9s ease 0.3s forwards;
}

.v4-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: v4-fade-up 0.9s ease 0.45s forwards;
}

@keyframes v4-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.v4-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--v4-font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.v4-btn--primary {
  background: var(--v4-accent);
  color: #0a0a0b;
  border-color: var(--v4-accent);
}

.v4-btn--primary:hover {
  background: var(--v4-accent-hover);
  border-color: var(--v4-accent-hover);
  transform: translateY(-2px);
}

.v4-btn--outline {
  background: transparent;
  color: var(--v4-text);
  border-color: rgba(255,255,255,0.3);
}

.v4-btn--outline:hover {
  border-color: var(--v4-accent);
  color: var(--v4-accent);
}

.v4-btn--big {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* v4 section common */
.v4-section {
  padding: 4rem 0;
}

.v4-eyebrow {
  display: block;
  font-family: var(--v4-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v4-accent);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.v4-heading {
  font-family: var(--v4-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  color: var(--v4-text);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

body[data-theme="v4"] .v4-section.in-view .v4-eyebrow,
body[data-theme="v4"] .v4-section.in-view .v4-heading {
  opacity: 1;
  transform: translateY(0);
}

/* v4 features — numbered list, slide-in */
.v4-features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.v4-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--v4-surface);
  border: 1px solid var(--v4-border);
  border-radius: 16px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

body[data-theme="v4"] .v4-features.in-view .v4-feature {
  opacity: 1;
  transform: translateX(0);
}

body[data-theme="v4"] .v4-features.in-view .v4-feature:nth-child(1) { transition-delay: 0.1s; }
body[data-theme="v4"] .v4-features.in-view .v4-feature:nth-child(2) { transition-delay: 0.2s; }
body[data-theme="v4"] .v4-features.in-view .v4-feature:nth-child(3) { transition-delay: 0.3s; }

.v4-feature:hover {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.15);
}

.v4-feature-num {
  font-family: var(--v4-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--v4-accent);
  opacity: 0.8;
}

.v4-feature h3 {
  font-family: var(--v4-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  color: var(--v4-text);
}

.v4-feature p {
  grid-column: 2;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--v4-text-muted);
}

/* v4 destinations — card grid */
.v4-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.v4-dest {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body[data-theme="v4"] .v4-destinations.in-view .v4-dest {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body[data-theme="v4"] .v4-destinations.in-view .v4-dest:nth-child(1) { transition-delay: 0.1s; }
body[data-theme="v4"] .v4-destinations.in-view .v4-dest:nth-child(2) { transition-delay: 0.2s; }
body[data-theme="v4"] .v4-destinations.in-view .v4-dest:nth-child(3) { transition-delay: 0.3s; }

.v4-dest:hover {
  transform: translateY(-6px) scale(1.02);
}

.v4-dest-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v4-dest:hover .v4-dest-img {
  transform: scale(1.06);
}

.v4-dest-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(10,10,11,0.95), transparent);
  color: var(--v4-text);
  z-index: 1;
}

.v4-dest-caption h3 {
  font-family: var(--v4-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
}

.v4-dest-caption p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--v4-text-muted);
}

/* v4 gallery — masonry-style grid */
.v4-gallery-head {
  margin-bottom: 2rem;
}

/* v4 Stories gallery — 2.5D parallax layers (background, midground, foreground) */
.v4-gallery {
  --g: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--g);
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.v4-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

body[data-theme="v4"] .v4-gallery-wrap.in-view .v4-gallery-item {
  opacity: 1;
  transform: translateY(0);
}

body[data-theme="v4"] .v4-gallery-wrap.in-view .v4-gallery-item:nth-child(1) { transition-delay: 0.05s; }
body[data-theme="v4"] .v4-gallery-wrap.in-view .v4-gallery-item:nth-child(2) { transition-delay: 0.1s; }
body[data-theme="v4"] .v4-gallery-wrap.in-view .v4-gallery-item:nth-child(3) { transition-delay: 0.15s; }
body[data-theme="v4"] .v4-gallery-wrap.in-view .v4-gallery-item:nth-child(4) { transition-delay: 0.2s; }
body[data-theme="v4"] .v4-gallery-wrap.in-view .v4-gallery-item:nth-child(5) { transition-delay: 0.25s; }
body[data-theme="v4"] .v4-gallery-wrap.in-view .v4-gallery-item:nth-child(6) { transition-delay: 0.3s; }

.v4-gallery-item--tall {
  grid-row: span 2;
}

.v4-gallery-item--wide {
  grid-column: span 2;
}

/* 2.5D layers — same image stacked; parallax only on hover of that image (no blur) */
.v4-story-layer {
  position: absolute;
  inset: -15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: transform 0.6s ease-out;
}

/* Default: all layers at rest (sharp) */
.v4-story-bg {
  z-index: 1;
  transform: translateX(0) translateY(0);
}

.v4-story-mid {
  z-index: 2;
  transform: scale(1) translateX(0) translateY(0) rotate(0deg);
}

.v4-story-fg {
  z-index: 3;
  transform: scale(1) translateX(0) translateY(0);
}

/* Only the hovered item gets the 2.5D effect */
.v4-gallery-item:hover .v4-story-bg {
  transform: translateX(-6%) translateY(0);
}

.v4-gallery-item:hover .v4-story-mid {
  transform: scale(1.08) translateX(-3%) translateY(0) rotate(1.2deg);
}

.v4-gallery-item:hover .v4-story-fg {
  transform: scale(1.12) translateX(-2%) translateY(0);
}

/* v4 lightbox */
.v4-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(10,10,11,0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.v4-lightbox:target {
  opacity: 1;
  visibility: visible;
}

.v4-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--v4-text);
  text-decoration: none;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.v4-lightbox-close:hover {
  background: var(--v4-surface-2);
  color: var(--v4-accent);
}

.v4-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  width: 100%;
  border-radius: 12px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* v4 CTA */
.v4-cta {
  position: relative;
  padding: 5rem 0;
}

.v4-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--v4-surface-2) 0%, rgba(6, 182, 212, 0.08) 50%, var(--v4-surface) 100%);
}

.v4-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.v4-cta-title {
  font-family: var(--v4-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.5rem;
  color: var(--v4-text);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.v4-cta-text {
  font-size: 1.05rem;
  color: var(--v4-text-muted);
  margin: 0 0 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

body[data-theme="v4"] .v4-cta.in-view .v4-cta-title,
body[data-theme="v4"] .v4-cta.in-view .v4-cta-text {
  opacity: 1;
  transform: translateY(0);
}

body[data-theme="v4"] .v4-cta.in-view .v4-cta-text {
  transition-delay: 0.1s;
}

/* v4 contact */
.v4-contact-wrap {
  padding: 2rem 1.5rem;
}

.v4-contact-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--v4-surface);
  border: 1px solid var(--v4-border);
  border-radius: 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

body[data-theme="v4"] .v4-contact.in-view .v4-contact-card {
  opacity: 1;
  transform: translateY(0);
}

.v4-contact-card:hover {
  box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.2);
}

.v4-contact-heading {
  font-family: var(--v4-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--v4-text);
}

.v4-contact-tagline {
  font-size: 0.95rem;
  color: var(--v4-text-muted);
  margin: 0 0 1.5rem;
}

.v4-contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.v4-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--v4-surface-2);
  border-radius: 9999px;
  color: var(--v4-text);
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease;
}

.v4-contact-item:hover {
  background: rgba(6, 182, 212, 0.15);
  color: var(--v4-accent);
}

.v4-contact-icon {
  font-size: 1.1rem;
}

/* v4 config panel */
body[data-theme="v4"] .config-drawer {
  background: var(--v4-surface);
  border-color: var(--v4-border);
  color: var(--v4-text);
}

body[data-theme="v4"] .config-toggle {
  color: var(--v4-text-muted);
  border-color: var(--v4-border);
}

body[data-theme="v4"] .config-toggle:hover {
  color: var(--v4-accent);
  border-color: var(--v4-accent);
}

/* v4 responsive */
@media (max-width: 900px) {
  .v4-dest-grid {
    grid-template-columns: 1fr;
  }

  .v4-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .v4-gallery-item--wide {
    grid-column: span 2;
  }

  .v4-gallery-item--tall {
    grid-row: span 2;
  }
}

@media (max-width: 600px) {
  .v4-hero-title {
    font-size: 2.25rem;
  }

  .v4-feature {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .v4-feature p {
    grid-column: 1;
  }
}

/* ===== Floating WhatsApp + in-page chat panel ===== */
.whatsapp-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* Prevent the invisible container box from blocking clicks/hover underneath */
  pointer-events: none;
}
.whatsapp-chat-panel {
  width: 320px;
  max-width: calc(100vw - 2rem);
  margin-bottom: 0.75rem;
  background: var(--color-surface, #1a222c);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.whatsapp-widget.is-open .whatsapp-chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.whatsapp-chat-panel-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #25d366;
  color: #fff;
}
.whatsapp-chat-panel-header svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.whatsapp-chat-panel-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.whatsapp-chat-panel-header p {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  opacity: 0.95;
}
.whatsapp-chat-panel-body {
  padding: 1.25rem;
}
.whatsapp-chat-greeting {
  font-size: 0.9rem;
  color: var(--color-text-muted, #9ca3af);
  line-height: 1.5;
  margin: 0 0 1rem;
}
.whatsapp-chat-panel textarea {
  width: 100%;
  min-height: 88px;
  padding: 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg, #0f1419);
  color: var(--color-text);
  resize: vertical;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.whatsapp-chat-panel textarea::placeholder {
  color: var(--color-text-muted);
}
.whatsapp-chat-panel textarea:focus {
  outline: none;
  border-color: #25d366;
}
.whatsapp-chat-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: #25d366;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-chat-send:hover {
  background: #20bd5a;
  transform: translateY(-1px);
}
.whatsapp-chat-send:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 2px;
}
.whatsapp-chat-send svg {
  width: 20px;
  height: 20px;
}
.whatsapp-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  pointer-events: auto;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-widget.is-open .whatsapp-float {
  transform: scale(1.08);
}
.whatsapp-float:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 3px;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
@media (max-width: 480px) {
  .whatsapp-widget {
    bottom: 1rem;
    right: 1rem;
  }
  .whatsapp-chat-panel {
    width: 300px;
    margin-bottom: 0.5rem;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* Avoid the floating WhatsApp button covering footer social links on small screens */
@media (max-width: 640px) {
  .site-footer {
    padding-bottom: calc(var(--space-xl) + 5rem);
  }
}
body[data-theme="v2"] .whatsapp-chat-panel {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
body[data-theme="v2"] .whatsapp-chat-panel textarea {
  background: var(--color-surface-2);
}
body[data-theme="v3"] .whatsapp-chat-panel textarea,
body[data-theme="v4"] .whatsapp-chat-panel textarea {
  background: var(--color-bg);
}
