@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
  --navy: #050d1a;
  --navy-2: #0a1628;
  --navy-3: #0f2040;
  --navy-4: #1a3460;
  --gold: #c9a227;
  --gold-2: #e8c44a;
  --gold-3: #a07d10;
  --gold-glow: rgba(201, 162, 39, 0.35);
  --cream: #f5f0e8;
  --cream-2: #ede6d8;
  --white: #ffffff;
  --text-muted: rgba(245, 240, 232, 0.5);
  --text-mid: rgba(245, 240, 232, 0.7);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-2: rgba(255, 255, 255, 0.09);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-2: rgba(201, 162, 39, 0.25);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-2xl: 48px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t: 0.35s var(--ease);
  --sh-sm: 0 2px 12px rgba(0, 0, 0, 0.18);
  --sh-md: 0 8px 40px rgba(0, 0, 0, 0.28);
  --sh-lg: 0 24px 80px rgba(0, 0, 0, 0.4);
  --sh-gold: 0 0 60px rgba(201, 162, 39, 0.2);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--navy);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-wide {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad {
  padding: 120px 0;
}

.section-pad-sm {
  padding: 72px 0;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--gold);
}

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 22px;
}

.section-title span {
  color: var(--gold);
}

.section-title em {
  font-style: italic;
  font-weight: 300;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.25s;
}

.btn:hover::before {
  background: rgba(255, 255, 255, 0.08);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: var(--navy);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 162, 39, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-ghost {
  background: var(--glass);
  color: var(--cream);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
}

.btn-ghost:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.divider {
  width: 52px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 14px 0 32px;
}

.divider-center {
  margin: 14px auto 32px;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(201, 162, 39, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.35s, height 0.35s, opacity 0.35s, border-color 0.3s;
}

.cursor-ring.hovering {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  opacity: 0.9;
}

.cursor-dot.hovering {
  width: 0;
  height: 0;
  opacity: 0;
}

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--t);
  padding: 0;
}

#main-nav.scrolled {
  background: rgba(5, 13, 26, 0.97);
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  max-width: 1540px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--t);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(5, 13, 26, 0.98);
  border: 1px solid var(--glass-border-2);
  border-radius: var(--r-md);
  padding: 10px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  backdrop-filter: blur(24px);
  box-shadow: var(--sh-lg);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: all 0.2s;
}

.nav-dropdown-menu a:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--t);
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 13, 26, 0.99);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  padding: 10px 0;
  transition: color var(--t);
}

.mobile-menu a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 9s ease;
  will-change: transform;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 13, 26, 0.93) 0%, rgba(5, 13, 26, 0.72) 55%, rgba(5, 13, 26, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 48px 90px;
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeInDown 0.8s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 42px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 7.5vw, 6.2rem);
  font-weight: 900;
  line-height: 1.03;
  color: var(--cream);
  margin-bottom: 26px;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-mid);
  max-width: 530px;
  line-height: 1.85;
  margin-bottom: 44px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-stats {
  position: absolute;
  bottom: 64px;
  right: 48px;
  display: flex;
  gap: 44px;
  animation: fadeInUp 0.9s ease 0.4s both;
  z-index: 2;
}

.hero-stat {
  text-align: right;
}

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2.2s infinite;
}

.hero-scroll-line {
  width: 1.5px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-scroll-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.marquee-wrapper {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(201, 162, 39, 0.04);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 32s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 36px;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee-item span {
  color: var(--gold);
  font-size: 1rem;
}

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

.dest-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
}

.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sh-lg);
}

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

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

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 13, 26, 0.94) 0%, rgba(5, 13, 26, 0.3) 55%, transparent 100%);
  transition: background var(--t);
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top, rgba(5, 13, 26, 0.97) 0%, rgba(5, 13, 26, 0.5) 60%, rgba(5, 13, 26, 0.15) 100%);
}

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 26px;
}

.dest-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 7px;
}

.dest-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 9px;
}

.dest-card-desc {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.dest-card:hover .dest-card-desc {
  max-height: 90px;
}

.dest-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s, transform 0.35s;
}

.dest-card:hover .dest-card-link {
  opacity: 1;
  transform: translateY(0);
}

.dest-card-flag {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(5, 13, 26, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid var(--glass-border);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.bento-card {
  background: var(--glass-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--t);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t);
}

.bento-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--glass-border-2);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-wide {
  grid-column: span 7;
}

.bento-narrow {
  grid-column: span 5;
}

.bento-third {
  grid-column: span 4;
}

.bento-full {
  grid-column: span 12;
}

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(201, 162, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--t);
}

.bento-card:hover .bento-icon {
  background: rgba(201, 162, 39, 0.2);
}

.bento-num {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(201, 162, 39, 0.12);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.bento-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 11px;
}

.bento-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.bento-large-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 10px;
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s var(--ease), filter 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.07);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 13, 26, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s;
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.gallery-tab {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--glass-border);
  background: transparent;
  color: var(--text-mid);
  transition: all 0.25s;
}

.gallery-tab.active,
.gallery-tab:hover {
  background: rgba(201, 162, 39, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 26, 0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
  backdrop-filter: blur(12px);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--r-md);
  object-fit: contain;
  box-shadow: var(--sh-lg);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-mid);
  transition: color var(--t);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: var(--text-mid);
  text-align: center;
}

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

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 38px;
  transition: all var(--t);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--glass-border-2);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.testimonial-q {
  font-family: 'Outfit', sans-serif;
  font-size: 5.5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 16px;
  opacity: 0.3;
  font-weight: 900;
}

.testimonial-text {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 26px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testimonial-star {
  color: var(--gold);
  font-size: 0.88rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-4), var(--navy-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid rgba(201, 162, 39, 0.3);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3px;
}

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

.blog-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--glass-border-2);
}

.blog-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.blog-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(201, 162, 39, 0.9);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.blog-card-body {
  padding: 26px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--gold);
  transition: gap var(--t);
}

.blog-card-link:hover {
  gap: 12px;
}

.newsletter-section {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(5, 13, 26, 0.5));
  border: 1px solid var(--glass-border-2);
  border-radius: var(--r-xl);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12), transparent 70%);
  border-radius: 50%;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.07), transparent 70%);
  border-radius: 50%;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 36px auto 0;
  position: relative;
  z-index: 1;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 14px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--t);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-input:focus {
  border-color: var(--gold);
}

footer {
  background: var(--navy-2);
  border-top: 1px solid var(--glass-border);
  padding-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo svg {
  flex-shrink: 0;
}

.footer-logo span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--t);
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-contact strong {
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.28);
}

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

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.28);
  transition: color var(--t);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--t);
}

.social-link:hover {
  background: rgba(201, 162, 39, 0.14);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 13, 26, 0.85) 0%, rgba(5, 13, 26, 0.6) 60%, rgba(5, 13, 26, 0.4) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 48px 80px;
  max-width: 860px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--t);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  opacity: 0.4;
}

.breadcrumb-current {
  color: var(--gold);
}

.destinations-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 26px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--glass-border);
  background: transparent;
  color: var(--text-mid);
  transition: all 0.25s;
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(201, 162, 39, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.country-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0;
}

.country-intro {
  font-size: 1.06rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.country-quickfacts {
  display: grid;
  gap: 16px;
}

.quickfact {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 16px 20px;
}

.quickfact-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quickfact-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.quickfact-value {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
}

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

.attraction-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t);
}

.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--glass-border-2);
}

.attraction-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.attraction-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

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

.attraction-card-body {
  padding: 24px;
}

.attraction-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 9px;
}

.attraction-desc {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.72;
}

.attraction-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.season-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--t);
}

.season-card:hover {
  border-color: var(--glass-border-2);
  transform: translateY(-4px);
}

.season-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.season-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.season-desc {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.season-rating {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 12px;
}

.season-star {
  color: var(--gold);
  font-size: 0.85rem;
}

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

.cuisine-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--t);
}

.cuisine-card:hover {
  border-color: var(--glass-border-2);
  transform: translateY(-4px);
}

.cuisine-dish {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 9px;
}

.cuisine-desc {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.cuisine-emoji {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.cta-strip {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(5, 13, 26, 0.4));
  border: 1px solid var(--glass-border-2);
  border-radius: var(--r-xl);
  padding: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 12px;
}

.cta-strip-text p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 500px;
}

.cta-strip-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 48px 0;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.team-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--glass-border-2);
}

.team-img {
  aspect-ratio: 1;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

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

.team-body {
  padding: 26px;
}

.team-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-desc {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.72;
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 160px 28px 100px;
}

.policy-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 12px;
}

.policy-content .updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--glass-border);
}

.policy-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin: 40px 0 14px;
}

.policy-content p {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.policy-content ul {
  padding-left: 22px;
  list-style: disc;
  margin-bottom: 18px;
}

.policy-content ul li {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 8px;
}

.policy-content a {
  color: var(--gold);
}

.policy-content a:hover {
  text-decoration: underline;
}

.policy-content strong {
  color: var(--cream);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 44px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 13px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--t);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-select {
  cursor: pointer;
  appearance: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-cards {
  display: grid;
  gap: 20px;
}

.contact-info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--t);
}

.contact-info-card:hover {
  border-color: var(--glass-border-2);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 500;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(-10px)
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes pulse-gold {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4)
  }

  50% {
    box-shadow: 0 0 0 12px rgba(201, 162, 39, 0)
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg)
  }
}

@media(max-width:1100px) {
  .bento-wide {
    grid-column: span 12;
  }

  .bento-narrow {
    grid-column: span 12;
  }

  .bento-third {
    grid-column: span 6;
  }

  .gallery-masonry {
    columns: 2;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .country-hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-strip {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip-text p {
    max-width: 100%;
  }

  .cta-strip-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 18px 24px;
  }

  .hero-content {
    padding: 110px 24px 80px;
  }

  .hero-stats {
    right: 24px;
    bottom: 40px;
    gap: 24px;
  }

  .hero-stat-num {
    font-size: 1.8rem;
  }

  .destinations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .attractions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-masonry {
    columns: 2;
  }

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

  .cuisine-grid {
    grid-template-columns: 1fr;
  }

  .bento-third {
    grid-column: span 12;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

  .page-hero-content {
    padding: 130px 24px 60px;
  }

  .policy-content {
    padding: 130px 24px 80px;
  }

  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .section-pad {
    padding: 80px 0;
  }
}

@media(max-width:480px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .attractions-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 1;
  }

  .bento-third {
    grid-column: span 12;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

.flag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 22px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.flag-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.dest-card-flag {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(5, 13, 26, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dest-card-flag .flag-icon {
  width: 26px;
  height: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(5, 13, 26, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-2);
  border-radius: var(--r-md);
  padding: 16px 22px;
}

.about-img-badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
}

.about-img-badge-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.value-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all var(--t);
}

.value-card:hover {
  border-color: var(--glass-border-2);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(201, 162, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.value-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.78;
}

@media(max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  .hero-title {
    font-size: clamp(2.1rem, 9vw, 3.4rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.6rem);
  }

  .page-hero-content h1.section-title {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .cta-strip {
    padding: 40px 24px;
  }

  .newsletter-section {
    padding: 48px 28px;
  }

  .dest-card-title {
    font-size: 1.3rem;
  }

  .bento-large-num {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

.custom-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.custom-popup.show {
  opacity: 1;
  visibility: visible;
}

.custom-popup-content {
  background: var(--navy-2);
  border: 1px solid var(--glass-border-2);
  padding: 40px;
  border-radius: var(--r-lg);
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.custom-popup.show .custom-popup-content {
  transform: translateY(0) scale(1);
}

.custom-popup-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(39, 201, 122, 0.1);
  color: #27c97a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.custom-popup-icon.error {
  background: rgba(237, 41, 57, 0.1);
  color: #ed2939;
}

.custom-popup-icon svg {
  width: 32px;
  height: 32px;
}

.custom-popup-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 12px;
}

.custom-popup-message {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.6;
}

.custom-popup-close {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: var(--navy);
  border: none;
  padding: 14px 32px;
  border-radius: var(--r-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: none;
  transition: all var(--t);
  display: inline-block;
  width: 100%;
}

.custom-popup-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
}

@media(max-width: 768px) {

  .seasonal-grid,
  .cuisine-grid,
  .stats-row,
  .values-grid,
  .destinations-grid,
  .attractions-grid,
  .footer-inner {
    grid-template-columns: 1fr !important;
  }

  .gallery-masonry {
    columns: 1 !important;
  }
}