:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3.5rem,   0.5rem  + 9vw,    9rem);

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Custom palette: warm desert + volcanic orange */
  --color-bg:              #f5f2ec;
  --color-surface:         #f9f7f3;
  --color-surface-2:       #ffffff;
  --color-surface-offset:  #ede9e1;
  --color-surface-dynamic: #e2ddd4;
  --color-divider:         #d8d3c8;
  --color-border:          #ccc7bb;

  --color-text:          #1c1a15;
  --color-text-muted:    #6b6659;
  --color-text-faint:    #a89f90;
  --color-text-inverse:  #f9f7f3;

  --color-primary:           #F4C216;
  --color-primary-hover:     #E08C00;
  --color-primary-active:    #9e7a08;
  --color-primary-highlight: #fdf3cc;

  --color-accent-dark: #222222;

  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px oklch(0.15 0.02 60 / 0.07);
  --shadow-md: 0 4px 12px oklch(0.15 0.02 60 / 0.10);
  --shadow-lg: 0 12px 32px oklch(0.15 0.02 60 / 0.14);

  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:   1200px;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;
}

[data-theme="dark"] {
  --color-bg:              #161310;
  --color-surface:         #1c1915;
  --color-surface-2:       #211e1a;
  --color-surface-offset:  #1a1814;
  --color-surface-dynamic: #2a261f;
  --color-divider:         #302c24;
  --color-border:          #3d382e;
  --color-text:            #e8e2d8;
  --color-text-muted:      #857d6e;
  --color-text-faint:      #5a5347;
  --color-text-inverse:    #1c1a15;
  --color-primary:         #F4C216;
  --color-primary-hover:   #E08C00;
  --color-primary-active:  #f7d660;
  --color-primary-highlight: #3d3208;
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.25);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.45);
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-16);
}
body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.1; }
p, li { text-wrap: pretty; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a, button, [role="button"] {
  transition: color var(--transition-interactive),
              background var(--transition-interactive),
              border-color var(--transition-interactive),
              box-shadow var(--transition-interactive),
              opacity var(--transition-interactive);
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
::selection { background: oklch(from var(--color-primary) l c h / 0.2); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container--wide {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}
.site-logo svg { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
  color: var(--color-primary);
  line-height: 1;
}
.logo-text span { color: black; }
.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.theme-toggle {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid oklch(from var(--color-text) l c h / 0.12);
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface-offset); }
.btn-book-header {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #1a1500;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.btn-book-header:hover { background: var(--color-primary-hover); color: white;}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, oklch(0.1 0.03 50 / 0.35) 0%, oklch(0.08 0.03 40 / 0.85) 100%),
    url('hero-bg.webp') right center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-6) var(--space-10);
  padding-inline: var(--space-6);
  max-width: var(--content-wide);
  margin-inline: auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: oklch(from var(--color-primary) l c h / 0.85);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  letter-spacing: 0.02em;
  color: white;
  line-height: 0.95;
  margin-bottom: var(--space-6);
  max-width: 18ch;
}
.hero-title em {
  font-style: normal;
  color: var(--color-primary);
}
.hero-desc {
  font-size: var(--text-lg);
  color: oklch(1 0 0 / 0.85);
  max-width: 52ch;
  margin-bottom: var(--space-10);
  font-weight: 300;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: 700;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #1a1500;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px oklch(from var(--color-primary) l c h / 0.45);
}
.btn-primary:hover {color: white; background: var(--color-primary-hover); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: 600;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  border: 1.5px solid oklch(1 0 0 / 0.5);
  color: white;
  text-decoration: none;
}
.btn-outline:hover { border-color: white; background: oklch(1 0 0 / 0.08); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 2rem;
  row-gap: var(--space-6);
  margin-top: var(--space-10);
}
.hero-stat { }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--space-1);
}

/* ============================================================
   HERO REVIEW BADGES
   ============================================================ */
.hero-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.hero-review-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: oklch(1 0 0 / 0.10);
  border: 1px solid oklch(1 0 0 / 0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  text-decoration: none;
  color: white;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}
.hero-review-badge:hover {
  background: oklch(1 0 0 / 0.18);
  transform: translateY(-2px);
}
.hrb-logo {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hrb-logo--ta  { background: #00aa6c; }
.hrb-logo--gmb { background: #4285F4; }
.hrb-platform {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.65);
  line-height: 1;
  margin-bottom: 3px;
}
.hrb-score-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}
.hrb-score {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: white;
  line-height: 1;
  letter-spacing: 0.02em;
}
.hrb-stars {
  font-size: 1rem;
  color: #F4C216;
  letter-spacing: 1px;
}
.hrb-count {
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.55);
  margin-top: 2px;
}

/* ============================================================
   SECTION INTRO LABEL
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */

.video-section {
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
}
.video-band--top {
  background: var(--color-bg);
  padding-block: var(--space-8) var(--space-6);
}
.video-section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-top: var(--space-2);
  line-height: 1;
}
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
}
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .video-wrap { aspect-ratio: 1 / 1; }
  .video-band--top { padding-block: var(--space-6) var(--space-4); }
}
/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-bg);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.experience-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1;
}
.experience-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  max-width: 58ch;
  line-height: 1.7;
}
.experience-highlights {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.highlight-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 1rem;
}
.highlight-item strong { color: var(--color-text); display: block; margin-bottom: var(--space-1); font-size: var(--text-base); }

.experience-visual {
  position: relative;
}
.experience-img-main {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.experience-img-badge {
  position: absolute;
  bottom: var(--space-6);
  left: calc(-1 * var(--space-8));
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.badge-icon { font-size: 1.5rem; }
.badge-label { font-size: var(--text-xs); color: var(--color-text-muted); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.badge-value { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-text); line-height: 1.1; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-surface-offset);
}
.features-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.features-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.features-header p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-inline: auto;
}

/* Asymmetric bento layout */
.features-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-4);
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}
.feature-card--large {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  padding: var(--space-8);
  background: none;
  border: none;
}
.feature-card--large-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
}
.feature-card--large-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.1 0.04 50 / 0.9) 0%, transparent 60%);
  border-radius: var(--radius-xl);
}
.feature-card--large-content {
  position: relative;
  z-index: 1;
  color: white;
}
.feature-card--large-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-3);
}
.feature-card--large-content p { font-size: var(--text-sm); opacity: 0.8; max-width: 40ch; }

.feature-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.feature-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   BENTO CAROUSEL (inside feature-card--large)
   ============================================================ */
.feature-card--carousel {
  padding: 0 !important;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: none !important;
  position: relative;
}
.bento-carousel-track-wrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
}
.bento-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.bento-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.bento-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.bento-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    oklch(0.08 0.02 50 / 0.85) 0%,
    oklch(0.08 0.02 50 / 0.1) 55%,
    transparent 75%
  );
  pointer-events: none;
}
.bento-slide-sash {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: var(--space-5) var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.bento-sash-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px var(--space-2);
  border-radius: var(--radius-full);
  align-self: flex-start;
  line-height: 1.4;
}
.bento-sash-ta  { background: #00aa6c; color: white; }
.bento-sash-gmb { background: #4285F4; color: white; }
.bento-sash-stars {
  font-size: 1rem;
  color: #F4C216;
  letter-spacing: 2px;
  line-height: 1;
}
.bento-sash-quote {
  font-size: var(--text-sm);
  color: white !important;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  max-width: 36ch;
  text-shadow: 0 1px 6px oklch(0 0 0 / 0.5);
}
/* Prev/Next */
.bento-btn {
  position: absolute;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: oklch(0 0 0 / 0.45);
  border: 1.5px solid oklch(1 0 0 / 0.15);
  color: white;
  display: grid; place-items: center;
  backdrop-filter: blur(6px);
  transition: background var(--transition-interactive), transform var(--transition-interactive);
  top: var(--space-4);
}
.bento-btn:hover { background: oklch(0 0 0 / 0.85); }
.bento-btn--prev { right: calc(var(--space-4) + 44px); }
.bento-btn--next { right: var(--space-4); }
/* Dots */
.bento-dots {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-5);
  display: flex;
  gap: 5px;
  z-index: 10;
}
.bento-dot {
  width: 6px; height: 6px;
  border-radius: var(--radius-full);
  background: oklch(1 0 0 / 0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition-interactive), width var(--transition-interactive);
  padding: 0;
}
.bento-dot.active { background: #F4C216; width: 18px; }

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-bg);
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-12);
  align-items: start;
}
.booking-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1;
}
.booking-info p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.includes-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.includes-list li span.check { color: #3a9a4e; font-size: 1rem; }
.includes-list li span.cross { color: var(--color-text-faint); font-size: 1rem; }
.policy-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}
.policy-box h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.policy-box p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-2);
}
.policy-box p:last-child { margin-bottom: 0; }

/* Booking widget wrapper */
.booking-widget-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.booking-widget-header {
  background: var(--color-primary);
  padding: var(--space-5) var(--space-6);

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.booking-widget-header h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: 0.04em;
  color: #1a1500;
}
.price-tag {
  font-size: var(--text-xs);
  color: oklch(0 0 0 / 0.6);
  text-align: right;
}
.price-tag strong { display: block; font-size: var(--text-lg); color: #1a1500; font-family: var(--font-display); letter-spacing: 0.03em; }
.booking-widget-body {
  padding: var(--space-6);
}
/* iframe Bokun */
.booking-widget-body iframe {
  width: 100%;
  min-height: 520px;
  border: none;
  display: block;
}


/* ============================================================
   CTA STRIP
   ============================================================ */

.cta-strip {
  background: var(--color-accent-dark);
  padding-block: var(--space-5);
  border-top: 1px solid oklch(1 0 0 / 0.06);
  border-bottom: 1px solid oklch(1 0 0 / 0.06);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.cta-strip-text {
  font-size: var(--text-lg);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: white;
  margin: 0;
}
.cta-strip-btn {
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .cta-strip-btn { width: 100%; justify-content: center; }
}


/* ============================================================
   IMPORTANT INFO
   ============================================================ */
.info-section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-20));
  background: var(--color-surface-offset);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.info-card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.info-card-icon { font-size: 1.75rem; margin-bottom: var(--space-3); }
.info-card h3 { font-size: var(--text-base); font-weight: 700; color: var(--color-text); margin-bottom: var(--space-2); }
.info-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; }

/* ============================================================
   REVIEWS / SOCIAL PROOF
   ============================================================ */
.reviews {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-bg);
}
.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.review-platform-card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.review-platform-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.platform-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}
.platform-logo--ta { background: #00aa6c; color: white; }
.platform-logo--gmb { background: #4285F4; color: white; }
.platform-name { font-weight: 700; font-size: var(--text-base); color: var(--color-text); }
.platform-url { font-size: var(--text-xs); color: var(--color-text-muted); }
.review-score-row {
  display: flex;
  align-items: flex-end;
  gap: var(--space-3);
}
.review-score {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--color-text);
  line-height: 1;
  letter-spacing: 0.02em;
}
.review-score-detail { }
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-1);
}
.star { color: #f5a623; font-size: 1rem; }
.star-half { color: #f5a623; opacity: 0.5; }
.review-count {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.review-highlight {
  background: var(--color-surface-offset);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  position: relative;
}
.review-highlight::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-primary);
  opacity: 0.3;
  position: absolute;
  top: -8px;
  left: var(--space-3);
  line-height: 1;
}
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: oklch(0.45 0.16 145 / 0.12);
  color: #2b7a42;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  align-self: flex-start;
}
[data-theme="dark"] .review-badge { background: oklch(0.45 0.16 145 / 0.2); color: #5dba78; }
.review-link {
  font-size: var(--text-sm);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  align-self: flex-end;
  margin-top: auto;
}
.review-link:hover { text-decoration: underline; }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-20));
  background: var(--color-surface-offset);
}
.map-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-8);
  align-items: start;
}
.map-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-5);
  line-height: 1;
}
.map-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.map-detail-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.map-detail-text strong { display: block; font-size: var(--text-sm); font-weight: 700; color: var(--color-text); margin-bottom: 2px; }
.map-detail-text p { font-size: var(--text-sm); color: var(--color-text-muted); }
.map-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary);
  color: #1a1500;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  margin-top: var(--space-5);
}
.map-cta:hover { background: var(--color-primary-hover); }

.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  height: 400px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   OTHER TOURS
   ============================================================ */
.other-tours {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-bg);
}
.tours-header { margin-bottom: var(--space-10); }
.tours-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.tours-header p { font-size: var(--text-base); color: var(--color-text-muted); }
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.tour-card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tour-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.tour-card-body { padding: var(--space-5) var(--space-6); }
.tour-card-tag {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.tour-card h3 { font-size: var(--text-base); font-weight: 700; color: var(--color-text); margin-bottom: var(--space-2); }
.tour-card p { font-size: var(--text-sm); color: var(--color-text-muted); }


/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */

.wa-cta{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 18px 0 16px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font: 600 15px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.wa-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
  background: #1fb95a;
}

.wa-cta svg{
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  transform: translate(.5px,.5px);
}

.wa-cta span{
  white-space: nowrap;
}

@media (max-width: 768px){
  .wa-cta{
    right: 16px;
    bottom: 16px;
    height: 52px;
    padding: 0 16px 0 14px;
    font-size: 14px;
    gap: 8px;
  }

  .wa-cta svg{
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-accent-dark);
  padding-block: var(--space-12) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}
.footer-brand .logo-text span { color: white; }
.footer-desc {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.5);
  margin-top: var(--space-3);
  max-width: 40ch;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.5);
  margin-bottom: var(--space-4);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col a {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.65);
  text-decoration: none;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid oklch(1 0 0 / 0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-copy {
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.35);
}
.footer-legal { display: flex; gap: var(--space-5); }
.footer-legal a { font-size: var(--text-xs); color: oklch(1 0 0 / 0.35); text-decoration: none; }
.footer-legal a:hover { color: oklch(1 0 0 / 0.65); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero { min-height: unset; height: auto; justify-content: flex-start; padding-top: 64px; }
  .hero-content { padding-block: var(--space-8) var(--space-12); }
  .experience-grid,
  .booking-layout,
  .map-layout,
  .reviews-layout {
    grid-template-columns: 1fr;
  }
  .features-bento {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card--large {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 320px;
  }
  .tours-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .experience-img-badge { left: var(--space-4); }
  .booking-layout > .booking-info { order: 2; }
  .booking-layout > .booking-widget-wrap { order: 1; }
}
@media (max-width: 600px) {
  .header-inner .logo-text {display: none;}
  .hero { min-height: unset; height: auto; justify-content: flex-start; padding-top: 64px; }
  .hero-content { padding-block: var(--space-8) var(--space-12); }
  .hero-badge {margin-bottom: var(--space-3);}
  .hero-title {margin-bottom: var(--space-4);}
  .hero-desc {margin-bottom: var(--space-6);}
  .hero-ctas {margin-bottom: var(--space-6);}
  .hero-reviews { flex-direction: row; flex-wrap: wrap; gap: var(--space-3) var(--space-2); margin-left: 0; margin-top: var(--space-3); width: 100%; }
  .hero-review-badge { flex: 1 1 calc(50% - var(--space-2)); min-width: 0; padding: var(--space-2) var(--space-3); justify-content: center; }
  .hero-stat { flex: 1 1 calc(50% - var(--space-2)); min-width: 0; text-align: center; }
  .hero-scroll-cue { display: none; }
  .hrb-logo { width: 34px; height: 34px; }
  .hero-ctas .btn-outline {display: none;}
  .features-bento { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: 1; }
  .tours-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { column-gap: 1rem; row-gap: var(--space-2); margin-top: var(--space-8); }
  .info-grid { grid-template-columns: 1fr; }
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #161310;
    --color-surface: #1c1915;
    --color-surface-2: #211e1a;
    --color-surface-offset: #1a1814;
    --color-surface-dynamic: #2a261f;
    --color-divider: #302c24;
    --color-border: #3d382e;
    --color-text: #e8e2d8;
    --color-text-muted: #857d6e;
    --color-text-faint: #5a5347;
    --color-text-inverse: #1c1a15;
    --color-primary: #F4C216;
    --color-primary-hover: #f5cc3a;
    --color-primary-active: #f7d660;
    --color-primary-highlight: #3d3208;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.25);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.35);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}