/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #E06020;
  --orange-light: #F07840;
  --orange-pale: #FDF0E8;
  --cream: #FBF7F2;
  --sand: #F0E4D0;
  --warm-brown: #5C3418;
  --text-dark: #2E1A0C;
  --text-mid: #7A5040;
  --text-soft: #A87860;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.website-content { background: var(--cream); }

/* ===== NAV ===== */
.site-nav {
  background: rgba(251, 247, 242, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(224, 96, 32, 0.1);
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #E06020, #F07840);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 22px; height: 22px; }

.logo-text { line-height: 1.1; }
.logo-text-main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}
.logo-text-sub {
  font-size: 10px;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a.active { color: var(--orange); font-weight: 600; }
.nav-links a:hover { color: var(--text-dark); background: var(--sand); }

/* LANGUAGE SWITCHER */
.lang-switcher {
  position: relative;
  margin-left: auto;
  margin-right: 8px;
}
.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 2px solid var(--sand);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-dark);
  font-family: inherit;
  transition: border-color 0.2s;
}
.lang-switcher-btn:hover { border-color: var(--orange); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(92,52,24,0.12);
  border: 1px solid var(--sand);
  min-width: 160px;
  z-index: 200;
  overflow: hidden;
}
.lang-dropdown.show { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.15s;
}
.lang-option:hover { background: var(--orange-pale); }
.lang-option--active {
  background: var(--orange-pale);
  font-weight: 700;
  color: var(--orange);
}
.lang-flag { font-size: 18px; }
.lang-label { font-weight: 500; }

.nav-dots {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 10px;
  cursor: pointer;
  margin-right: 16px;
}

.nav-dots span {
  width: 4px;
  height: 4px;
  background: var(--text-soft);
  border-radius: 50%;
  display: block;
}

.nav-cta {
  background: var(--orange);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(224, 96, 32, 0.3);
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224, 96, 32, 0.4);
}

.nav-cta svg { width: 14px; height: 14px; }

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 720px;
  overflow: hidden;
  background: #C4874A;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(40, 16, 4, 0.72) 0%,
    rgba(40, 16, 4, 0.45) 40%,
    rgba(40, 16, 4, 0.15) 70%,
    transparent 100%
  );
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(
    to bottom,
    rgba(251, 247, 242, 0) 0%,
    rgba(251, 247, 242, 0.4) 40%,
    rgba(251, 247, 242, 0.85) 75%,
    var(--cream) 100%
  );
  pointer-events: none;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 90px 60px 240px;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #F0A060;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  font-weight: 700;
  color: white;
  line-height: 1.08;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 em {
  font-style: italic;
  color: #FFBA70;
}

.hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 440px;
  font-weight: 400;
}

.hero-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(224, 96, 32, 0.45);
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(224, 96, 32, 0.55);
}

.hero-btn svg { width: 16px; height: 16px; }

.hero-stats {
  position: absolute;
  bottom: 240px;
  right: 50px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 10px 16px;
  text-align: center;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.hero-stat-label {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== CARDS SECTION ===== */
.cards-section {
  position: relative;
  margin-top: -140px;
  padding: 0 40px 40px;
  z-index: 5;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  position: relative;
  aspect-ratio: 16 / 11;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

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

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

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 8, 2, 0.55) 0%,
    rgba(20, 8, 2, 0.15) 40%,
    rgba(20, 8, 2, 0.55) 100%
  );
}

.card-body {
  position: absolute;
  inset: 0;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-icon { display: none; }

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.card p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  max-width: 90%;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.card-top { /* groups title + description at the top */ }

.card-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 11px 28px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  box-shadow: 0 6px 20px rgba(224, 96, 32, 0.45);
  transition: background 0.2s, transform 0.2s;
}

.card-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

/* ===== ACTIVITIES SECTION ===== */
.activities-section {
  position: relative;
  padding: 130px 40px 130px;
  background:
    linear-gradient(180deg,
      #FBF7F2 0%,
      #FAEFDF 18%,
      #F6E7CE 42%,
      #F2DFC0 70%,
      #F0E4D0 100%
    );
  overflow: hidden;
}

/* Warm cinematic haze at top — blends with hero/cards above */
.activities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 320px;
  background:
    radial-gradient(
      ellipse 75% 100% at 50% 0%,
      rgba(232, 140, 70, 0.22) 0%,
      rgba(232, 140, 70, 0.10) 35%,
      rgba(232, 140, 70, 0.04) 60%,
      transparent 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* Faint balloon silhouettes in the far background */
.activities-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800'%3E%3Cg fill='rgba(92,52,24,0.055)'%3E%3Cellipse cx='180' cy='180' rx='38' ry='44'/%3E%3Cpath d='M168 220 L192 220 L188 234 L172 234 Z'/%3E%3Cline x1='180' y1='234' x2='180' y2='250' stroke='rgba(92,52,24,0.055)' stroke-width='1'/%3E%3Cellipse cx='320' cy='130' rx='28' ry='32'/%3E%3Cpath d='M312 158 L328 158 L325 168 L315 168 Z'/%3E%3Cellipse cx='1180' cy='220' rx='42' ry='48'/%3E%3Cpath d='M1166 264 L1194 264 L1190 280 L1170 280 Z'/%3E%3Cellipse cx='1320' cy='150' rx='30' ry='34'/%3E%3Cpath d='M1311 180 L1329 180 L1326 190 L1314 190 Z'/%3E%3Cellipse cx='80' cy='320' rx='22' ry='26'/%3E%3Cellipse cx='1380' cy='340' rx='24' ry='28'/%3E%3C/g%3E%3Cg fill='rgba(92,52,24,0.04)'%3E%3Cpath d='M0,720 Q120,680 240,700 T480,710 T720,690 T960,720 T1200,700 T1440,710 L1440,800 L0,800 Z'/%3E%3Cpath d='M0,750 Q180,720 360,740 T720,730 T1080,750 T1440,740 L1440,800 L0,800 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.experiences-header,
.experience-slider {
  position: relative;
  z-index: 2;
}

.section-header { margin-bottom: 32px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-eyebrow.center { justify-content: center; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 14.5px;
  color: var(--text-mid);
  max-width: 500px;
}

/* Experiences header (title + subtitle stacked) */
.experiences-header {
  margin-bottom: 40px;
}

.experiences-header .section-title {
  white-space: nowrap;
  margin-bottom: 14px;
}

.experiences-subtitle {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
}

/* Horizontal expandable slider */
.experience-slider {
  display: flex;
  gap: 14px;
  height: 620px;
  width: 100%;
}

.experience-card {
  flex: 1 1 0;
  min-width: 90px;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transition: flex 0.85s cubic-bezier(0.25, 1, 0.4, 1),
              box-shadow 0.4s ease;
  isolation: isolate;
}

.experience-card.active {
  flex: 6 1 0;
  box-shadow: 0 30px 70px rgba(20, 8, 2, 0.38);
}

.experience-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter 0.6s ease;
  filter: saturate(0.85) brightness(0.85);
}

.experience-card.active .experience-img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(1);
}

.experience-card:hover:not(.active) .experience-img {
  filter: saturate(1) brightness(0.95);
  transform: scale(1.03);
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 8, 2, 0.92) 0%,
    rgba(20, 8, 2, 0.55) 35%,
    rgba(20, 8, 2, 0.05) 65%,
    rgba(20, 8, 2, 0.4) 100%
  );
  transition: opacity 0.5s ease;
}

.experience-card.active .experience-overlay {
  background: linear-gradient(
    to top,
    rgba(20, 8, 2, 0.88) 0%,
    rgba(20, 8, 2, 0.4) 40%,
    rgba(20, 8, 2, 0) 70%,
    rgba(20, 8, 2, 0.25) 100%
  );
}

/* Vertical title (shown when card is inactive) */
.experience-vertical-title {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.experience-card.active .experience-vertical-title {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Expanded content (shown when active) */
.experience-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 44px;
  color: white;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
}

.experience-card.active .experience-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.experience-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.experience-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-light);
  letter-spacing: 0.1em;
}

.experience-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.08);
}

.experience-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.experience-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 24px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.experience-btn {
  align-self: flex-start;
  background: var(--orange);
  color: white;
  border: none;
  padding: 13px 26px;
  border-radius: 28px;
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(224, 96, 32, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.experience-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(224, 96, 32, 0.65);
}

.experience-btn svg { width: 14px; height: 14px; }

/* ===== PHONE MOCKUP ===== */
.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  gap: 16px;
}

.phone-frame {
  width: 200px;
  background: #1A1A1A;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin: 0 auto;
}

.phone-screen {
  background: var(--cream);
  border-radius: 26px;
  overflow: hidden;
  height: 380px;
}

.phone-screen-header {
  background: linear-gradient(160deg, #E8784A 0%, #C05020 100%);
  padding: 20px 16px 16px;
}

.phone-notch {
  width: 80px;
  height: 6px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  margin: 0 auto 16px;
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.phone-brand-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-brand-text {
  font-size: 11px;
  font-weight: 700;
  color: white;
}

.phone-hero-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 6px;
}

.phone-hero-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.phone-screen-body { padding: 12px; }

.phone-search {
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.phone-search-icon { width: 14px; height: 14px; color: #bbb; }
.phone-search-text { font-size: 11px; color: #bbb; flex: 1; }
.phone-search-filter {
  width: 20px;
  height: 20px;
  background: var(--orange-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.phone-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.phone-tile {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

.phone-tile img { width: 100%; height: 100%; object-fit: cover; }

.phone-tile-label {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.phone-ai-btn {
  background: var(--orange);
  border: none;
  border-radius: 12px;
  padding: 10px;
  width: 100%;
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(224, 96, 32, 0.35);
}

.phone-app-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.app-badge {
  background: var(--text-dark);
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: white;
}

.app-badge-icon { width: 20px; height: 20px; }
.app-badge-label { font-size: 8px; color: rgba(255, 255, 255, 0.6); line-height: 1; }
.app-badge-store { font-size: 12px; font-weight: 700; line-height: 1.2; }

/* ===== REGIONS SLIDER ===== */
.regions-section {
  position: relative;
  padding: 90px 40px 90px;
  background: linear-gradient(180deg,
    #F0E4D0 0%,
    #EDDFC4 35%,
    #EBDCBE 65%,
    #F0E4D0 100%
  );
  overflow: hidden;
}

.regions-header {
  max-width: 1400px;
  margin: 0 auto 36px;
}

.regions-header .section-title {
  font-size: 36px;
  margin-bottom: 8px;
}

.regions-title {
  font-family: 'Nunito', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.regions-title-1 {
  color: var(--text-dark);
}

.regions-title-2 {
  color: var(--orange);
}

.regions-subtitle {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 500px;
}

.regions-slider-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.regions-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.regions-slider::-webkit-scrollbar { display: none; }

.region-card {
  flex: 0 0 320px;
  height: 460px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 40px rgba(20, 8, 2, 0.22);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.region-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(20, 8, 2, 0.32);
}

.region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 8, 2, 0.92) 0%,
    rgba(20, 8, 2, 0.55) 25%,
    rgba(20, 8, 2, 0.05) 55%,
    rgba(20, 8, 2, 0) 100%
  );
}

.region-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 30px 30px;
}

.region-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.region-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

/* Slider arrows */
.regions-arrow {
  position: absolute;
  top: calc(50% - 8px);
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 6px 22px rgba(20, 8, 2, 0.18);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.regions-arrow:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 28px rgba(224, 96, 32, 0.45);
}

.regions-arrow svg { width: 20px; height: 20px; }

.regions-arrow--prev { left: -22px; }
.regions-arrow--next { right: -22px; }

/* ===== AI SECTION ===== */
.ai-section {
  padding: 70px 40px 50px;
  background: linear-gradient(180deg, #F0E4D0 0%, var(--sand) 30%);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23FBF7F2' d='M0,40 C200,80 400,0 600,40 C800,80 1000,10 1200,45 C1320,65 1380,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
}

.ai-silhouette {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='rgba(92,52,24,0.08)' d='M0,60 L20,55 L40,58 L60,45 L80,50 L100,35 L120,40 L150,30 L180,38 L210,25 L240,32 L280,20 L320,28 L360,18 L400,25 L450,15 L500,22 L550,12 L600,20 L650,10 L700,18 L750,8 L800,15 L850,22 L900,12 L950,20 L1000,14 L1060,22 L1120,16 L1180,24 L1240,18 L1300,26 L1360,20 L1420,28 L1440,22 L1440,100 L0,100 Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
  pointer-events: none;
}

.ai-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.ai-title {
  font-size: 34px;
}

.ai-title em {
  font-style: italic;
  color: var(--orange);
}

.ai-subtitle {
  margin: 10px auto 0;
  text-align: center;
}

.ai-search-bar {
  background: white;
  border-radius: 50px;
  padding: 6px 6px 6px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1.5px solid rgba(224, 96, 32, 0.15);
  margin-top: 28px;
}

.ai-search-icon { flex-shrink: 0; }

.ai-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--text-dark);
  font-family: 'Nunito', sans-serif;
  background: transparent;
  min-width: 0;
}

.ai-input::placeholder { color: #bbb; }

.ai-divider { width: 1px; height: 28px; background: var(--sand); }

.ai-date-input {
  font-size: 13px;
  color: var(--text-mid);
  white-space: nowrap;
  padding: 0 8px;
}

.ai-submit {
  background: var(--orange);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 44px;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(224, 96, 32, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.ai-submit:hover { transform: translateY(-1px); }
.ai-submit svg { width: 15px; height: 15px; }

.ai-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

.ai-chip {
  background: white;
  border: 1.5px solid rgba(224, 96, 32, 0.2);
  color: var(--text-mid);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.ai-chip:hover {
  background: var(--orange-pale);
  border-color: var(--orange);
  color: var(--orange);
}

/* ===== FOOTER ===== */
footer {
  background: #2E1A0C;
  padding: 52px 40px 30px;
  position: relative;
  overflow: hidden;
}

.footer-cave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23FBF7F2' d='M0,0 C200,40 400,0 600,30 C800,55 1000,10 1200,35 C1320,50 1380,30 1440,20 L1440,0 Z'/%3E%3C/svg%3E") top/cover no-repeat;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(240, 120, 64, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-top: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg { width: 20px; height: 20px; }

.footer-logo-text-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.footer-logo-text-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn:hover { background: rgba(255, 255, 255, 0.15); }
.social-btn svg { width: 15px; height: 15px; }

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255, 255, 255, 0.85); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-contact-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.footer-quick-links { margin-top: 16px; }

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.7); }

.footer-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.store-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: background 0.2s;
}

.store-badge:hover { background: rgba(255, 255, 255, 0.14); }
.store-badge-icon { width: 18px; height: 18px; }
.store-badge-sub { font-size: 8px; color: rgba(255, 255, 255, 0.45); line-height: 1; }
.store-badge-name { font-size: 11.5px; font-weight: 700; color: rgba(255, 255, 255, 0.9); line-height: 1.3; }

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
  .site-nav { padding: 0 24px; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 8px 10px; font-size: 12.5px; }
  .nav-dots { display: none; }

  .hero-content { padding: 60px 40px 160px; }
  .hero h1 { font-size: 50px; }
  .hero-stats { right: 24px; bottom: 180px; }
  .hero-stat { padding: 8px 14px; }
  .hero-stat-num { font-size: 18px; }

  .cards-section { padding: 0 24px 30px; }

  .activities-section { padding: 110px 24px 110px; }
  .experiences-subtitle { font-size: 13.5px; }

  .experience-slider { height: 540px; gap: 10px; }
  .experience-card { min-width: 70px; border-radius: 22px; }
  .experience-card.active { flex: 5 1 0; }
  .experience-vertical-title { font-size: 18px; bottom: 28px; }
  .experience-content { padding: 32px 32px; }
  .experience-title { font-size: 42px; }
  .experience-desc { font-size: 13px; max-width: 380px; }

  .regions-section { padding: 80px 24px; }
  .regions-header .section-title { font-size: 32px; }
  .regions-title { font-size: 52px; }
  .region-card { flex: 0 0 280px; height: 410px; }
  .region-title { font-size: 28px; }
  .region-desc { font-size: 13px; }
  .region-content { padding: 24px 26px 26px; }
  .regions-arrow--prev { left: -16px; }
  .regions-arrow--next { right: -16px; }

  .ai-section { padding: 50px 24px; }
  .ai-title { font-size: 30px; }

  footer { padding: 52px 24px 30px; }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
  /* NAV */
  .site-nav {
    padding: 0 16px;
    height: 64px;
  }

  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .nav-links {
    position: fixed;
    top: 64px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 64px);
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    margin: 0;
    gap: 4px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
  }

  /* HERO */
  .hero {
    height: auto;
    min-height: 600px;
  }

  .hero-content {
    padding: 50px 24px 60px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 42px;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    right: auto;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 24px 40px;
  }

  .hero-stat { flex: 1; min-width: 90px; }

  /* CARDS — horizontal swipe (one card per view) */
  .cards-section {
    margin-top: -40px;
    padding: 0 0 24px;
  }

  .cards-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 16px 8px;
    scroll-padding: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .cards-grid::-webkit-scrollbar { display: none; }

  .card {
    flex: 0 0 calc(100% - 40px);
    height: auto;
    aspect-ratio: 16 / 11;
    scroll-snap-align: center;
  }

  /* ACTIVITIES / EXPERIENCES — horizontal swipe (one card per view) */
  .activities-section { padding: 90px 0 90px; }
  .activities-section > .experiences-header,
  .activities-section > .section-header { padding: 0 16px; }

  .section-title { font-size: 32px; }
  .section-subtitle { font-size: 13.5px; }

  .experiences-header { margin-bottom: 28px; padding: 0 16px; }
  .experiences-header .section-title { white-space: normal; }
  .experiences-subtitle { max-width: 100%; }

  /* Single-card horizontal swipe slider */
  .experience-slider {
    display: flex;
    flex-direction: row;
    height: auto;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 16px 12px;
    scroll-padding: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .experience-slider::-webkit-scrollbar { display: none; }

  .experience-card {
    flex: 0 0 calc(100% - 40px);
    min-width: 0;
    aspect-ratio: 3 / 4;
    border-radius: 22px;
    scroll-snap-align: center;
  }

  /* Mobile: every card shows full content (no accordion behavior) */
  .experience-card,
  .experience-card.active {
    flex: 0 0 calc(100% - 40px);
  }

  .experience-vertical-title { display: none; }

  .experience-content {
    padding: 32px 28px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
  }

  .experience-card .experience-img {
    filter: saturate(1.05) brightness(1);
  }

  .experience-title { font-size: 36px; margin-bottom: 14px; }
  .experience-desc { font-size: 13.5px; }

  /* REGIONS — one card per view on mobile */
  .regions-section { padding: 60px 0 60px; }
  .regions-header { margin: 0 auto 24px; padding: 0 16px; }
  .regions-header .section-title { font-size: 28px; }
  .regions-title { font-size: 40px; }
  .regions-subtitle { font-size: 13px; }

  .regions-slider-wrap { padding: 0; }

  .regions-slider {
    padding: 8px 16px 24px;
    gap: 14px;
  }

  .region-card {
    flex: 0 0 calc(100% - 40px);
    height: 460px;
    border-radius: 22px;
    scroll-snap-align: center;
  }

  .region-title { font-size: 30px; }
  .region-desc { font-size: 13.5px; }
  .region-content { padding: 26px 26px 26px; }

  /* Hide arrows on mobile — use swipe instead */
  .regions-arrow { display: none; }

  /* AI */
  .ai-section { padding: 40px 16px; }
  .ai-title { font-size: 26px; }

  .ai-search-bar {
    flex-wrap: wrap;
    border-radius: 24px;
    padding: 12px 16px;
    gap: 8px;
  }

  .ai-input {
    width: 100%;
    flex: 1 1 100%;
    padding: 8px 0;
  }

  .ai-divider { display: none; }

  .ai-date-input {
    flex: 1;
    padding: 0;
  }

  .ai-submit {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  /* FOOTER */
  footer { padding: 60px 16px 24px; }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand { grid-column: auto; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

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

/* ===== RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero-content { padding: 40px 20px 50px; }

  .card { aspect-ratio: 4 / 5; }

  .experience-card,
  .experience-card.active { aspect-ratio: 3 / 4; }
  .experience-title { font-size: 30px; }
  .experience-content { padding: 26px 22px; }

  .region-card { height: 420px; }
  .region-title { font-size: 26px; }

  .regions-title { font-size: 34px; }

  .footer-badges { flex-direction: column; }
  .store-badge { width: fit-content; }
}
