:root {
  --cream: #faf6ec;
  --ink: #1a0f1a;
  --primary: #990066;
  --primary-foreground: #faf6ec;
  --muted: #6b5a64;
  --border: rgba(26, 15, 26, 0.12);
  --card: #fdfaf3;
  --secondary: #f3dceb;
  --radius: 1rem;
  --shadow-soft: 0 10px 40px -12px rgba(26, 15, 26, 0.18);
  --shadow-glow: 0 20px 60px -20px rgba(153, 0, 102, 0.45);
  --font-display: "Ubuntu";
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  --c-beaches: #0ea5b7;
  --c-gorges: #7c5b2e;
  --c-villages: #d6a23a;
  --c-archaeology: #a4185a;
  --bg: #fcfbf8;
  --fg: #1f1418;
  --muted-bg: #efeae0;
}

body {
  font-family: var(--font-display);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  background-image: radial-gradient(
    rgba(26, 15, 26, 0.04) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  -webkit-font-smoothing: antialiased;
}

.ui-menu {
  overflow: hidden;
}

.ui-autocomplete.ui-menu {
  font-family: var(--font-display);
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
  padding: 0.35rem !important;
  box-shadow: var(--shadow-soft) !important;
  max-height: min(320px, 46vh);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 99999 !important;
}

.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
}

.ui-menu .ui-menu-item-wrapper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem !important;
  border-radius: 12px !important;
  color: var(--ink) !important;
  font-size: 0.98rem;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease;
}

.ui-menu .ui-menu-item-wrapper:hover,
.ui-menu .ui-menu-item-wrapper.ui-state-hover {
  background: rgba(153, 0, 102, 0.08) !important;
}

.ui-menu .ui-menu-item-wrapper.ui-state-active,
.ui-menu .ui-state-active,
.ui-menu .ui-state-focus,
.ui-menu .ui-menu-item-wrapper:focus-visible {
  background: rgba(153, 0, 102, 0.12) !important;
  color: var(--ink) !important;
  outline: none !important;
}

.ui-menu .ui-menu-item-wrapper:active {
  transform: scale(0.99);
}

.ui-menu ::selection {
  background: rgba(153, 0, 102, 0.18);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

ul {
  list-style: none;
}

em {
  color: var(--primary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.pagination {
  max-width: fit-content;
  margin: auto;
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pagination li a {
  padding: 0.7rem 1rem;
  height: 20px;
  background-color: var(--primary);
  border-radius: 20px;
  color: var(--cream);
  transition: all 0.3s;
}

.pagination li a:hover {
  background-color: var(--muted);
}

.pagination .current a {
  background-color: var(--muted);
}

.container.articles {
  margin-top: 4rem;
}

.fancybox-container,
.fancybox-is-open,
.fancybox-can-swipe {
  z-index: 100001 !important;
}

#static .container {
  margin-top: 14rem;
}

.articlelistingrow {
  position: relative;
  height: 500px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.related-listings-wrap .articlelistingrow {
  height: unset !important;
}

.cat-card-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.cat-card-title.related {
  font-size: 20px;
}

.cat-card-desc {
  font-size: 18px;
  line-height: 1.65;
  color: white;
  font-weight: 300;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition:
    max-height 1s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.articlelistingrow:hover .cat-card-desc {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.cat-card-arrow {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(250, 246, 236, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(250, 246, 236, 0.2);
  display: grid;
  place-items: center;
  color: var(--cream);
  font-size: 24px;
  z-index: 3;
  transition: all 0.3s ease;
}

.cat-card-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: calc(100% - 4rem);
  z-index: 3;
  color: var(--cream);
}

.articlelistingrow:hover .cat-card-arrow {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(45deg);
}

.articlelistingrow:hover img {
  transform: scale(1.1);
}

.articlelistingrow:hover {
  transform: translateY(-12px);
}

.articlelistingrow a {
  height: 100%;
}

.articlelistingrow img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  object-fit: cover;
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 15, 26, 0.8) 0%,
    rgba(26, 15, 26, 0.2) 50%,
    transparent 100%
  );
  z-index: 2;
}

.article-listings {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 120px;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  /* filter: brightness(0.6); */
}

.hero-frame {
  /* height: 72vh; */
}

.display.light {
  color: var(--cream);
}

.video-container iframe {
  width: 150%;
  height: 150%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none !important;
}

.nav-wrap {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1580px;
  z-index: 100000;
}

.text-primary {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(26, 15, 26, 0.08);
  border-radius: 999px;
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 8px;
}

.brand img {
  max-width: 32px;
  width: 32px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
}

.nav-links a {
  position: relative;
  transition: color 0.3s;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 18px;
  height: 18px;
  background-image: url("../img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links ul {
  display: flex;
  gap: 28px;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta ul {
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 20px;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-lg {
  padding: 14px 24px;
  font-size: 14px;
}

.btn-ghost {
  background: var(--card);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-cream {
  background: var(--cream);
  color: var(--ink);
  padding: 16px 24px;
  font-size: 16px;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--ink);
  padding: 16px 24px;
  font-size: 16px;
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--primary-foreground);
}

.btn-outline-cream {
  background: transparent;
  border: 1px solid rgba(250, 246, 236, 0.4);
  color: var(--cream);
  padding: 16px 24px;
  font-size: 16px;
}

.btn-outline-cream:hover {
  background: rgba(250, 246, 236, 0.1);
}

.btn-block {
  display: flex;
  justify-content: space-between;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.arr {
  display: inline-block;
  position: relative;
  margin-left: 1rem;
}

.arr::after {
  position: absolute;
  content: "";
  top: -0.8rem;
  left: -1rem;
  width: 25px;
  height: 25px;
  background-image: url("../img/logo-black.png");
  background-size: cover;
  background-position: center;
  transition: all 0.2s;
}

.arr.white::after {
  background-image: url("../img/logo-white.png");
}

.btn:hover .arr::after {
  transform: rotate(-180deg);
  background-image: url("../img/logo-white.png");
}

.mobile-only {
  display: grid;
}

/* HERO */
.hero {
  padding: 140px 0 112px;
}

.lead {
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 40px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.display {
  font-size: clamp(2.6rem, 5vw, 7.5rem);
  font-weight: 600;
  text-wrap: balance;
}

.hero-row {
  margin-top: 40px;
  display: grid;
  gap: 32px;
}

.hero-frame {
  position: relative;
  margin-top: 56px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 820px;
}

.hero-frame img {
  width: 100%;
  height: 58vh;
  min-height: 420px;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 26, 0.4), transparent 80%);
}

.pin {
  color: var(--primary);
}

.hero-stats {
  display: none;
  position: absolute;
  right: 32px;
  bottom: 32px;
  align-items: center;
  gap: 16px;
  background: rgba(250, 246, 236, 0.9);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.hero-stats .big {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-align: right;
}

.hero-stats .big span {
  font-size: 16px;
}

.hero-stats .small {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.vline {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.badge-spin {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 112px;
  height: 112px;
}

.spin {
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.badge-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.badge-center::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
}

.badge-center {
  color: var(--primary-foreground);
  font-size: 20px;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 112px;
  height: 112px;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.5);
  transition:
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-cursor .badge-center svg {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-cursor.active .badge-center svg {
  opacity: 1;
  transform: scale(1);
}

.custom-cursor.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.custom-cursor .badge-spin {
  display: block !important;
  position: relative;
  width: 100%;
  height: 100%;
}

.custom-cursor .badge-center::before {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-cursor.active .badge-center::before {
  transform: scale(1);
  border: 1px solid var(--border);
}

body.custom-cursor-active a,
body.custom-cursor-active button,
body.custom-cursor-active [role="button"],
body.custom-cursor-active .card,
body.custom-cursor-active .gallery-badge-wrapper {
  cursor: none !important;
}

.marquee {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 40px 0;
  overflow: hidden;
  border-block: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 28px;
  animation: marquee 40s linear infinite;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.marquee-item .star {
  opacity: 0.5;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 80px 0;
}

.section-top {
  padding-top: 0;
}

.section-soft {
  background: rgba(243, 220, 235, 0.4);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.kicker {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 12px;
}

.kicker.on-dark {
  color: rgba(250, 246, 236, 0.8);
}

.h-display {
  font-size: 36px;
  text-wrap: balance;
}

.h-display.on-dark {
  color: var(--cream);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(1, 1fr);
}

.slick-next:before {
  content: url("../img/logo.png") !important;
  background-size: contain !important;
}

.slick-prev:before {
  content: url("../img/logo.png") !important;
  background-size: contain !important;
}

.dest-slider {
  margin: 0 -12px;
}

.dest-slider .slick-list {
  padding: 20px 0 60px;
}

.dest-slider .slick-slide {
  height: auto !important;
  display: flex !important;
  outline: none;
}

.dest-slider .slick-prev {
  left: -60px !important;
  transform: rotate(90deg);
}

.dest-slider .slick-next {
  right: -27px !important;
}

.dest-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}

.dest-slider .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}

.dest-slider .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(26, 15, 26, 0.25);
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  margin-right: 2rem;
}

.card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.album-container .card-img {
  aspect-ratio: unset;
}

.album-container .share-row-container {
  margin-top: 2rem;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(250, 246, 236, 0.9);
  backdrop-filter: blur(8px);
  padding: 10px 12px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  max-width: 18rem;
}

.card-info {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.card-info button {
  margin-left: auto;
}

.card.article .card-img {
  position: relative;
}

.card.article .card-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(250, 246, 236, 0.95);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 999px;
  width: auto;
  z-index: 10;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.card.article .card-info p {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

.card.article .card-arrow {
  width: 32px;
  height: 32px;
}

.card.article .card-arrow::after {
  width: 18px;
  height: 18px;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px;
  flex-grow: 1;
}

.card-foot h3 {
  font-size: 20px;
}

.card-foot p {
  font-size: 18px;
  color: var(--muted);
}

.card-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
  position: relative;
}

.card-arrow::after,
.gallery-item-arrow::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background-image: url("../img/logo-white.png");
  background-size: cover;
  background-position: center;
  transition: all 0.2s;
}

.gallery-item-arrow::after {
  background-image: url("../img/logo.png");
  width: 20px;
  height: 20px;
}

.gallery-item:hover .gallery-item-arrow {
  background: var(--primary);
}

.gallery-item:hover .gallery-item-arrow::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  background-image: url("../img/logo-white.png");
}

.card:hover .card-arrow::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

/* STATS */
.stats {
  display: grid;
  gap: 40px 24px;
  grid-template-columns: 1fr 1fr;
}

.stat:first-child {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.stat:not(:first-child) {
  border-left: 1px solid var(--border);
  padding-left: 24px;
}

.stat-n {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary), var(--ink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-l {
  margin-top: 8px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* EXPERIENCES */

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.exp {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.exp-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.exp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.exp:hover .exp-img img {
  transform: scale(1.05);
}

.exp-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 26, 0.7), transparent 50%);
}

.exp-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(250, 246, 236, 0.9);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 22px;
}

.exp-text {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: var(--cream);
}

.exp-text h3 {
  font-size: 24px;
}

.exp-text p {
  font-size: 16px;
  opacity: 0.9;
  margin-top: 8px;
}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: var(--primary);
  color: var(--primary-foreground);
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: luminosity;
}

.cta-inner {
  position: relative;
  display: grid;
  gap: 40px;
  padding: 40px;
}

.cta-inner h2 {
  font-size: 72px;
  color: var(--cream);
  margin-bottom: 24px;
}

.cta-inner {
  font-size: 18px;
  color: rgba(250, 246, 236, 0.9);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 16px;
}

/* FOOTER */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 128px 0 48px;
  position: relative;
  overflow: hidden;
}

.footer-main {
  display: grid;
  gap: 4.5rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-links img {
  max-width: 7rem;
}

.footer-main {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand-side {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-brand .brand-name {
  font-size: 32px;
  color: var(--cream);
}

.footer-desc {
  font-size: 18px;
  color: rgba(250, 246, 236, 0.7);
  /* max-width: 24rem; */
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 246, 236, 0.05);
  border: 1px solid rgba(250, 246, 236, 0.1);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.footer-links-grid {
  display: grid;
  gap: 40px;
}

.footer-col ul li:first-child a {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 16px;
  color: rgba(250, 246, 236, 0.6);
  transition:
    color 0.2s,
    transform 0.2s;
  display: inline-block;
}

.footer-col ul a:hover {
  color: var(--cream);
  transform: translateX(4px);
}

.footer-newsletter {
  margin-top: 80px;
  padding: 48px;
  background: rgba(250, 246, 236, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(250, 246, 236, 0.08);
  border-radius: 32px;
  display: grid;
  gap: 32px;
  align-items: center;
}

.newsletter-text h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--cream);
}

.newsletter-text {
  color: rgba(250, 246, 236, 0.6);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  background: rgba(250, 246, 236, 0.05);
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(250, 246, 236, 0.1);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 20px;
  color: var(--cream);
  font-family: inherit;
  font-size: 16px;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form .btn {
  padding: 12px 24px;
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 246, 236, 0.08);
  display: flex;
  align-items: center;
  gap: 24px;
  /* text-align: center; */
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
}

.footer-bottom-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.footer-bottom-links a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(250, 246, 236, 0.4);
  position: relative;
  transition: color 0.3s;
}

.footer-bottom-links a::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 18px;
  height: 18px;
  background-image: url("../img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-col ul a::before {
  content: "";
  position: absolute;
  left: -1rem;
  width: 18px;
  height: 18px;
  background-image: url("../img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-col ul a:hover::before {
  opacity: 1;
  transform: translateX(-50%) translatex(0);
}

.footer-bottom-links a:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer-bottom-links a:hover {
  color: var(--cream);
}

.copyright {
  font-size: 16px;
  color: rgba(250, 246, 236, 0.4);
}

.footer-watermark {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 22rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(250, 246, 236, 0.02);
  white-space: nowrap;
  pointer-events: none;
  text-transform: uppercase;
}

.watermark {
  user-select: none;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(153, 0, 102, 0.15);
  font-size: clamp(4rem, 18vw, 16rem);
  margin-top: 40px;
}

/* MAP SECTION */
.map-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px 0;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 20px;
}

.map-title {
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
}

.map-title em {
  font-style: normal;
  color: var(--primary);
}

.map-sub {
  margin: 16px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.search-chips {
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--cream);
  /* color: white; */
  border-radius: 20px;
  gap: 2rem;
  max-width: fit-content;
  margin: auto;
  margin-top: 20px;
}

.search-chips p {
  font-size: 16px !important;
}

.chips {
  z-index: 100;
  margin: 2rem 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  border: 1px solid transparent;
  background: var(--muted-bg);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s,
    box-shadow 0.15s;
}

.chip:hover {
  background: #f5f0e6;
  color: var(--fg);
}

.chip.is-active {
  background: var(--bg);
  color: var(--fg);
  border-color: var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #999;
}

.map-frame {
  margin-top: 28px;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -40px rgba(60, 20, 40, 0.4);
  background: #e9e3d4;
}

#map {
  height: min(72vh, 640px);
  width: 100%;
}

.pop-cat {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  /* text-transform: uppercase */
}

.pop-name {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.pop-desc {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* GALLERY */
.gallery-section {
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(
    rgba(26, 15, 26, 0.04) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  padding-bottom: 96px;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.gallery-title {
  max-width: 48rem;
}

.gallery-wrapper {
  position: relative;
  margin-top: 9rem;
}

.gallery-badge-wrapper {
  pointer-events: auto;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 8px;
  z-index: 20;
  display: none;
  width: 128px;
  height: 128px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-badge-wrapper:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-badge-wrapper:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.category-display {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  opacity: 1;
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.gallery-badge-wrapper {
  display: block;
}

.gallery-spin {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-badge-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.gallery-badge-center::before {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: var(--shadow-glow);
  position: absolute;
}

.gallery-badge-center svg {
  position: relative;
  color: var(--primary-foreground);
  z-index: 1;
}

.gallery-tilt {
  position: relative;
  transform: rotate(-2deg);
}

.gallery-track-wrap {
  overflow: hidden;
  padding: 40px 0;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: marquee 40s linear infinite;
  margin-top: 5rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 240px;
  height: 320px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.gallery-module {
  display: none !important;
}

.gallery-module.active {
  display: flex !important;
  animation:
    fadeInGallery 0.6s ease forwards,
    marquee 100s linear infinite;
  align-items: stretch;
}

.gallery-module .card {
  /* height: 460px; */
  width: 320px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.gallery-module .card-foot {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-module .card-img {
  height: 400px;
  aspect-ratio: auto;
}

@keyframes fadeInGallery {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .footer-bottom {
    text-align: center;
  }

  .gallery-badge-wrapper {
    display: block;
  }

  .footer-newsletter {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .marquee-track {
    font-size: 32px;
  }

  .section {
    padding: 128px 0;
  }

  .h-display {
    font-size: 60px;
  }

  .cta-inner {
    grid-template-columns: 1.4fr 1fr;
    padding: 64px;
  }

  .badge-spin {
    display: block;
  }

  .hero-stats {
    display: flex;
  }

  .hero-frame img {
    height: 72vh;
  }

  .hero-row {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .gallery-item {
    width: 280px;
    height: 380px;
  }

  .nav-cta .btn-primary {
    display: inline-flex;
  }

  .mobile-only {
    display: none;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 26, 0.6), transparent 50%);
}

.gallery-item-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
}

.gallery-item-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.gallery-item-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(250, 246, 236, 0.9);
  color: var(--ink);
  transition:
    background 0.2s,
    color 0.2s;
  position: relative;
}

/* VIDEO STATS OVERLAY */
.hero-video-stats-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.video-stats-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  padding: 1.25rem;
  /* background: rgba(255, 255, 255, 0.03); */
  /* backdrop-filter: blur(25px); */
  -webkit-backdrop-filter: blur(25px);
  border-radius: 999px;
  /* border: 1px solid rgba(255, 255, 255, 0.12); */
  /* box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5); */
  animation: videoStatsEntry 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  pointer-events: auto;
  justify-content: end;
}

.video-stats-container h1 {
  text-align: end;
  margin-top: auto;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

.stat-pill {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  color: #fff;
  padding: 1.2rem 2.8rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-pill .label {
  font-size: 0.5em;
  font-weight: 600;
  opacity: 0.7;
  letter-spacing: 0.05em;
  margin-top: 0.2em;
}

@keyframes videoStatsEntry {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(40px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.dest-slider .slick-dots {
  bottom: -40px;
}

.dest-slider .slick-dots li {
  margin: 0 4px;
}

.dest-slider .slick-dots li button:before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--border);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.dest-slider .slick-dots li.slick-active button:before {
  background: var(--primary);
  transform: scale(1.5);
}

/* Mega Menu CSS */
.mega-menu {
  position: fixed;
  inset: 0;
  background-color: var(--primary);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0.4s ease;
  color: #fff;
}

.mega-menu-header {
  position: absolute;
  top: 60px;
  left: 60px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  opacity: 0.8;
}

.mega-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.mega-menu-inner {
  width: 100%;
  max-width: 1200px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mega-section-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.5;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}

.mega-menu-brands {
  padding-top: 30px;
}

.mega-menu-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
}

.mega-prefectures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: 2rem;
}

.mega-prefectures .menu-links {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 18px;
}

.mega-menu-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mega-content-section.active .mega-menu-col {
  opacity: 1;
  transform: translateY(0);
}

.mega-menu-col:nth-child(2) {
  transition-delay: 0.1s;
}

.mega-content-section {
  display: none !important;
  width: 100%;
}

.mega-content-section.active {
  display: block !important;
}

.mega-menu-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mega-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;

  .menu-links {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    font-size: 18px;
  }

  .menu-links:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
  }
}

.mega-visual-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 160px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
}

.mega-content-section.active .mega-visual-card {
  opacity: 1;
  transform: translateY(0);
}

.mega-visual-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  transition: all 0.6s ease;
  z-index: 0;
}

.mega-visual-card:hover::before {
  opacity: 0.6;
  transform: scale(1.1);
}

.mega-visual-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.mega-visual-card .social-icon-wrapper,
.mega-visual-card span {
  position: relative;
  z-index: 2;
}

.mega-visual-card span {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.mega-visual-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mega-visual-card:nth-child(1) {
  transition-delay: 0.1s;
}

.mega-visual-card:nth-child(2) {
  transition-delay: 0.15s;
}

.mega-visual-card:nth-child(3) {
  transition-delay: 0.2s;
}

.mega-visual-card:nth-child(4) {
  transition-delay: 0.25s;
}

.mega-visual-card:nth-child(5) {
  transition-delay: 0.3s;
}

.mega-visual-card:nth-child(6) {
  transition-delay: 0.35s;
}

.mega-visual-card:nth-child(7) {
  transition-delay: 0.4s;
}

.mega-visual-card:nth-child(8) {
  transition-delay: 0.45s;
}

.mega-secondary-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  margin-top: 40px;
}

.mega-secondary-links a {
  max-width: fit-content;
}

.menu-links {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-radius: 12px;
  width: 100%;
  min-width: 280px;
  max-width: 400px;
  margin: 0 auto;

  /* Entrance Animation */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease;
}

.mega-menu-regions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 60px;
}

.mega-secondary-links .menu-links {
  font-size: 16px;
  min-width: auto;
  padding: 8px 16px;
  opacity: 0.6;
}

.mega-secondary-links .menu-links:hover {
  opacity: 1 !important;
}

.mega-content-section.active .menu-links {
  opacity: 1;
  transform: translateY(0);
}

.menu-links:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  opacity: 1 !important;
}

.menu-links::after {
  content: "→";
  font-size: 0.8em;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  margin-left: 10px;
}

.menu-links:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Specific overrides for Social section */
.mega-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.mega-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: scale(0.9) translateY(20px);
}

.mega-content-section.active .mega-social-card {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.mega-social-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-icon-wrapper {
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.mega-social-card:hover .social-icon-wrapper {
  transform: rotate(-10deg) scale(1.2);
}

.social-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.mega-social-card.instagram:hover {
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3);
}

.mega-social-card.facebook:hover {
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.mega-social-card.youtube:hover {
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.mega-social-card.twitter:hover {
  box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}

.mega-social-card:nth-child(1) {
  transition-delay: 0.1s;
}

.mega-social-card:nth-child(2) {
  transition-delay: 0.15s;
}

.mega-social-card:nth-child(3) {
  transition-delay: 0.2s;
}

.mega-social-card:nth-child(4) {
  transition-delay: 0.25s;
}

/* Link Staggering */
.mega-menu-col:nth-child(1) .menu-links:nth-child(1) {
  transition-delay: 0.1s;
}

.mega-menu-col:nth-child(1) .menu-links:nth-child(2) {
  transition-delay: 0.15s;
}

.mega-menu-col:nth-child(1) .menu-links:nth-child(3) {
  transition-delay: 0.2s;
}

.mega-menu-col:nth-child(1) .menu-links:nth-child(4) {
  transition-delay: 0.25s;
}

.mega-menu-col:nth-child(1) .menu-links:nth-child(5) {
  transition-delay: 0.3s;
}

.mega-menu-col:nth-child(1) .menu-links:nth-child(6) {
  transition-delay: 0.35s;
}

.mega-menu-col:nth-child(1) .menu-links:nth-child(7) {
  transition-delay: 0.4s;
}

.mega-menu-col:nth-child(2) .menu-links:nth-child(1) {
  transition-delay: 0.1s;
}

.mega-menu-col:nth-child(2) .menu-links:nth-child(2) {
  transition-delay: 0.15s;
}

.mega-menu-col:nth-child(2) .menu-links:nth-child(3) {
  transition-delay: 0.2s;
}

.mega-menu-col:nth-child(2) .menu-links:nth-child(4) {
  transition-delay: 0.25s;
}

.mega-menu-col:nth-child(2) .menu-links:nth-child(5) {
  transition-delay: 0.3s;
}

.mega-menu-col:nth-child(2) .menu-links:nth-child(6) {
  transition-delay: 0.35s;
}

.mega-menu-col:nth-child(2) .menu-links:nth-child(7) {
  transition-delay: 0.4s;
}

.mega-region:nth-child(1) {
  transition-delay: 0.1s;
}

.mega-region:nth-child(2) {
  transition-delay: 0.15s;
}

.mega-region:nth-child(3) {
  transition-delay: 0.2s;
}

.mega-region:nth-child(4) {
  transition-delay: 0.25s;
}

.mega-close {
  position: absolute;
  top: 60px;
  right: 60px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  cursor: pointer;
  z-index: 10;
  padding: 8px;
  color: #fff !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.mega-close svg {
  stroke: white !important;
}

/* ==========================================================================
   ARTICLE PAGE
   ========================================================================== */

.article-container,
.album-container {
  margin-top: 8rem;
}

.article-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  text-wrap: balance;
  margin-top: 1rem;
}

.article-sub-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  text-wrap: balance;
  font-weight: 400;
}

.article-head {
  max-width: 820px;
  padding-top: 24px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.article-head h1 {
  font-weight: 400;
}

.article-lead {
  font-size: 18px;
  color: var(--muted);
  margin-top: 0.5rem;
}

.article-image {
  width: 100%;
  max-width: 1100px;
  height: clamp(320px, 60vh, 640px);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.article-image > div {
  border-radius: 28px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-auto-rows: 240px; */
  gap: 20px;
}

.album-photo {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.album-photo img {
  transition: scale 0.5s;
  border-radius: 20px;
  width: 100%;
}

.album-photo:hover img {
  scale: 1.1;
}

.article-body {
  max-width: 840px;
  /* padding-top: 64px; */
  padding-bottom: 64px;
  font-size: 18px;
  line-height: 1.7;
  color: #2a1d28;
}

.album {
  margin-top: 1rem;
}

.album-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  /* justify-content: center; */
  gap: 16px;
  margin-bottom: 40px;
}

.article-views {
  align-items: center;
  display: flex;
  gap: 0.3rem;
  margin-top: 1.5rem;
}

/* ==========================================================================
   CATEGORY PAGE
   ========================================================================== */

/* Breadcrumbs Styling */
.breadcrumbs {
  background: rgba(250, 246, 236, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(26, 15, 26, 0.05);
  padding: 8px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  max-width: fit-content;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 0.05em;
  color: var(--muted);
  font-family: var(--font-display);
}

.breadcrumbs li a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.breadcrumbs li a:hover {
  color: var(--primary);
}

.breadcrumbs li a.current {
  color: var(--primary);
  pointer-events: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--border);
  display: inline-block;
  vertical-align: middle;
}

/* Premium Search Bar Redesign */
#homeSearch {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

#homeSearch .row.collapse {
  display: flex;
  align-items: center;
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(26, 15, 26, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: var(--shadow-soft);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

#homeSearch .row.collapse:focus-within {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

#homeSearch input.search {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  outline: none;
}

#homeSearch input.search::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

#homeSearch .search-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-glow);
}

#homeSearch .search-btn:hover {
  transform: scale(1.1);
  background: var(--ink);
}

#homeSearch .search-btn i {
  font-size: 16px;
}

#homeSearch .columns {
  float: none !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}

#homeSearch .columns:first-child {
  flex: 1;
}

/* Category Top Bar */
.category-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.category-top-bar .breadcrumbs-wrap {
  flex: 1;
  min-width: 300px;
}

.category-top-bar .search-wrap {
  flex-shrink: 0;
  width: 100%;
  max-width: 500px;
}

/* Hero Section */
.category-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 230px 0px 100px;
  border-radius: 40px;
  margin-bottom: 60px;
  color: var(--cream);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
}

.category-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
}

.category-title-large {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--cream);
}

.category-meta {
  font-size: 18px;
  font-weight: 500;
  background: rgba(250, 246, 236, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 999px;
  width: fit-content;
}

.category-intro-section {
  padding: 40px 0;
}

.category-intro-section .contentBody {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 900px;
  margin: 0 auto;
}

.category-intro-section .contentBody p {
  margin-bottom: 24px;
}

#map,
#cat_map {
  height: min(72vh, 640px);
  width: 100%;
}

/* Share Row Styling */
.share-row-container {
  display: flex;
  justify-content: center;
  margin: 0px auto 60px;
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

.share-row {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 28px;
  background: rgba(250, 246, 236, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
  z-index: 100;
  max-width: 100%;
  box-sizing: border-box;
  z-index: 999;
}

.sharethis-inline-share-buttons {
  max-width: 100%;
  overflow: visible;
}

#st-1 {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 6px !important;
}

#st-1 .st-btn {
  margin: 2px !important;
  padding: 0;
  border: 0 !important;
  border-radius: 999px !important;
}

#st-1 {
  transition: transform 10s ease !important;
}

.share-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  white-space: nowrap;
}

.share-row.fixed {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) scale(1.05);
  background: rgba(250, 246, 236, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(26, 15, 26, 0.12) !important;
  box-shadow: 0 20px 50px -10px rgba(26, 15, 26, 0.25) !important;
  margin: 0 !important;
  animation: shareFloatUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.share-row.fixed:hover {
  transform: translateX(-50%) translateY(-3px) scale(1.07);
}

@keyframes shareFloatUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(30px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1.05);
  }
}

/* ==========================================================================
   ARTICLE PAGE REFINEMENTS
   ========================================================================== */

.article-meta-section {
  margin: 60px auto !important;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.meta-card {
  background: rgba(250, 246, 236, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(26, 15, 26, 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
  height: 100%;
}

.meta-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(26, 15, 26, 0.08);
}

.meta-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(153, 0, 102, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.meta-icon svg {
  stroke: var(--primary);
}

.meta-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.meta-label {
  font-size: 11px;
  font-weight: 700;
  /* text-transform: uppercase; */
  letter-spacing: 0.1em;
  color: var(--muted);
}

.meta-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.meta-value.category-link {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.meta-value.category-link:hover {
  opacity: 0.8;
}

.meta-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.meta-tag-pill {
  font-size: 13px;
  font-weight: 600;
  background: rgba(26, 15, 26, 0.04);
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
  border: 1px solid rgba(26, 15, 26, 0.05);
}

.meta-tag-pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.05);
}

/* Editor card styling */
.editor-card .editor-wrapper {
  margin-top: 8px;
}

.editor-card .editor-wrapper a {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}

.editor-card .editor-wrapper a:hover {
  color: var(--primary);
}

/* Disqus Comments Container */
.article-comments-section {
  margin: 60px auto !important;
  max-width: 1200px;
}

.comments-card {
  background: #ffffff;
  border: 1px solid rgba(26, 15, 26, 0.08);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.comments-card .section-title-small {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--ink);
  border-bottom: 1px solid rgba(26, 15, 26, 0.08);
  padding-bottom: 16px;
}

/* Related articles section */
.article-related-section {
  margin: 80px auto;
  max-width: 1600px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0;
  margin: 0;
}

.related-grid li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Premium No-Image Articles/Categories Styling */
.no-image-articles-section {
  margin: 80px 0 120px 0;
}

.no-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px;
}

.no-image-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.no-image-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -15px rgba(153, 0, 102, 0.15);
}

.no-image-card-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 36px;
  height: 100%;
  text-decoration: none;
}

.no-image-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 16px;
}

.no-image-kicker .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.no-image-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.no-image-card:hover .no-image-title {
  color: var(--primary);
}

.no-image-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  opacity: 0.9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.no-image-arrow {
  align-self: flex-end;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(26, 15, 26, 0.04);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--ink);
  transition: all 0.3s ease;
  margin-top: 24px;
}

.no-image-card:hover .no-image-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
  transform: rotate(45deg);
}

/* Wide Category Banner Cards (Top Destinations Chania/Heraklion etc.) */
.wide-category-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 !important;
  margin: 40px 0 80px 0 !important;
  list-style: none !important;
}

.wide-category-card {
  position: relative;
  height: 420px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wide-category-card a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.wide-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(26, 15, 26, 0.2);
}

.wide-category-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.wide-category-card:hover .card-bg {
  transform: scale(1.04);
}

.wide-category-card .cat-card-overlay {
  background: linear-gradient(
    to top,
    rgba(26, 15, 26, 0.85) 0%,
    rgba(26, 15, 26, 0.3) 60%,
    rgba(26, 15, 26, 0) 100%
  );
  z-index: 2;
}

.wide-category-card .wide-card-content {
  position: relative;
  z-index: 3;
  padding: 50px 60px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 200px;
}

.wide-category-card .wide-card-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary-foreground);
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wide-category-card .wide-card-kicker .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.wide-category-card .wide-card-title {
  font-size: clamp(28px, 4vw, 42px) !important;
  font-weight: 800 !important;
  font-family: var(--font-display) !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  margin: 0 !important;
  max-width: 800px;
}

.wide-category-card .cat-card-arrow {
  position: absolute;
  top: 50px;
  right: 60px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #ffffff;
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.wide-category-card:hover .cat-card-arrow {
  background: #ffffff;
  color: var(--ink);
  transform: rotate(45deg);
  border-color: #ffffff;
}

.categories {
  margin: auto;
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.categories-page {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 3rem;
}

.categories-page a {
  display: inline-flex;
  padding: 2rem;
  width: 100%;
  border-radius: 20px;
  color: var(--cream);
}

.categories-page li {
  background-color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: scale 0.3s;
}

.categories-page li:hover {
  scale: 1.05;
}

/* ==========================================================================
   STATIC & INSTAGRAM HASHTAG PAGE
   ========================================================================== */

#instagram {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
}

#instagram li {
  list-style: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s ease;
  aspect-ratio: 1/1;
  background: var(--card);
  border: 1px solid var(--border);
}

#instagram li:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

#instagram li a {
  display: block;
  width: 100%;
  height: 100%;
}

#instagram li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

#instagram li:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   CONTACT FORM PAGE
   ========================================================================== */

.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
  max-width: 900px;
  margin: 0 auto 80px auto;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  cursor: pointer;
  width: 100%;
}

.newsletter-form input {
  background: transparent !important;
  border: unset !important;
}

.newsletter-form input:focus {
  border-color: unset !important;
  box-shadow: unset !important;
  color: var(--cream);
}

.newsletter-form .form-label input {
  color: var(--cream);
}

.form-label input,
.form-label select,
.form-label textarea {
  margin-top: 4px;
  background: rgba(250, 246, 236, 0.5);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  width: 100%;
  text-transform: none;
}

.form-label textarea {
  resize: vertical;
}

.form-label input:focus,
.form-label select:focus,
.form-label textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(153, 0, 102, 0.1);
  background: #ffffff;
}

.form-label.error input,
.form-label.error textarea,
.form-label.error select,
.form-label input.error,
.form-label textarea.error,
.form-label select.error {
  border-color: #d61c4e !important;
  background: rgba(214, 28, 78, 0.03) !important;
  box-shadow: 0 0 0 4px rgba(214, 28, 78, 0.1) !important;
}

.form-label small.error {
  display: none;
  color: #d61c4e;
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  text-transform: none;
}

.form-label.error small.error {
  display: block;
}

/* Captcha styling alignment */
.captcha-group .captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.captcha-group .captcha-wrapper input {
  background: rgba(250, 246, 236, 0.5);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  max-width: 200px;
}

.captcha-group .captcha-wrapper input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(153, 0, 102, 0.1);
  background: #ffffff;
}

.categories-container {
  padding: 0 20px;
  margin-top: 6rem;
}

@media (max-width: 1800px) {
  .slick-prev,
  .slick-next {
    position: unset !important;
    height: unset !important;
    width: unset !important;
  }
  .dest-slider .slick-next {
    margin-left: auto;
  }

  .slick-slider {
    padding-left: 1rem !important;
  }
}
@media (max-width: 1400px) {
  .stat-pill {
    font-size: 100px;
  }
}
@media (max-width: 1300px) {
  .footer-bottom {
    flex-direction: column;
  }

  .gallery-section {
    padding-bottom: 0px;
  }

  .cta-inner h2 {
    font-size: 50px;
  }

  .mega-prefectures {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-listings {
    grid-template-columns: repeat(2, 1fr);
  }

  .share-row.fixed {
    bottom: 180px;
  }

  .album-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .no-image-articles-section {
    margin: 80px 0 50px 0;
  }

  .categories-page {
    grid-template-columns: repeat(3, 1fr);
  }

  .article-listings {
    margin-bottom: 33px;
  }

  .category-top-bar {
    flex-direction: column;
  }

  .hero-frame {
    min-height: 620px;
  }

  .stat-pill {
    font-size: 80px;
  }
}

@media (max-width: 1024px) {
  .fabulous-stats-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 2rem;
  }

  .article-meta-section {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero .container {
    margin-top: 3rem;
    padding-inline: 1rem;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-frame {
    min-height: 420px;
  }

  .slick-slider {
    padding-left: 1.4rem !important;
  }

  .share-row-container {
    padding: 30px 16px;
    margin-bottom: 0;
  }

  .container.articles {
    margin-top: 0rem;
  }

  .wide-category-list {
    margin: 40px 0 0 0 !important;
  }

  .footer {
    padding: 38px 0 48px;
  }

  .footer-brand-side {
    gap: 1.5rem;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .related-listings-wrap {
    margin-bottom: 3rem;
  }

  .footer-col ul li:first-child a {
    margin-bottom: 3px;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
  }

  .container {
    margin-bottom: 0 !important;
  }

  .stat-n {
    font-size: 78px;
  }

  .stat-l {
    font-size: 16px;
  }

  .category-top-bar {
    /* margin-bottom: 0; */
  }

  .footer-main {
    gap: 3.5rem;
  }

  .category-intro-section {
    padding-bottom: 0;
  }

  .section {
    padding: 63px 0;
  }

  .section#destinations {
    /* padding-bottom: 0; */
  }

  .section#gallery {
    padding-bottom: 0;
  }

  .hero {
    padding: 90px 0 65px;
  }

  .map-section {
    margin-top: 0 !important;
  }

  .marquee-track {
    font-size: 22px;
  }

  .categories-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-pill {
    font-size: 40px;
    padding: 1rem 2rem;
    justify-content: center;
  }

  .album-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-frame {
    height: unset;
  }

  .video-stats-container .display {
    font-size: clamp(2.6rem, 4vw, 7.5rem);
  }

  .cta-inner h2 {
    font-size: 30px;
  }

  .cta-inner {
    font-size: 16px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }
  .article-listings {
    grid-template-columns: 1fr;
  }

  .share-row-container#static {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .mega-menu-inner {
    padding: 20px;
  }

  .mega-menu {
    padding-top: 25rem;
  }

  .dest-slider .card {
    margin-right: 1rem;
  }

  .dest-slider .card:hover {
    transform: unset;
    box-shadow: unset;
  }
  .breadcrumbs {
    box-shadow: unset;
  }

  .hero-frame {
    min-height: 320px;
  }

  .slick-slider {
    padding-left: 0 !important;
  }

  .card {
    margin-right: 0;
  }

  .nav {
    padding: 10px 16px;
    border-radius: unset;
  }

  .nav-wrap {
    top: 0;
    padding-inline: 0;
  }

  .video-stats-container {
    padding: 0;
  }

  .nav-links {
    opacity: 0;
    transition: opacity 0.5s;
  }

  .nav-links a::before {
    display: none;
  }

  .nav-links.mobile-menu {
    position: absolute;
    top: 5.5rem;
    opacity: 1;
    height: 30vh;
    margin-inline: 0.5rem;
    left: 0;
    right: 0;
    bottom: 1rem;
    flex-direction: column;
    background: var(--primary);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
  }

  .menu-links {
    font-size: 15px;
    padding: 0;
  }
  .social-icon-wrapper svg {
    width: 30px;
  }
  .social-name {
    font-size: 15px;
  }
  .menu-links:hover {
    background-color: transparent;
  }

  .mega-social-card {
    padding: 19px;
    max-width: fit-content;
    margin: auto;
    min-width: 10rem;
  }

  .mega-prefectures span,
  .mega-visual-grid span {
    font-size: 15px;
  }

  #mega-top .menu-links {
    height: 100px !important;
  }

  .nav-links ul {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .mega-menu {
    overflow-y: scroll;
  }

  .mega-visual-grid,
  .mega-social-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-col ul a::before {
    display: none;
  }

  .footer-main {
    padding-inline: 20px;
  }

  .nav-links ul a {
    color: white;
    font-size: 20px;
    padding: 1rem 2rem;
    /* background: var(--border); */
    border-radius: 20px;
    transition: all 0.3s;
  }

  .mega-prefectures {
    grid-template-columns: 1fr;
  }
  .nav-links ul a:hover {
    color: white;
    background: #89025d6e;
  }

  .share-row-container#static {
    margin-top: 0 !important;
  }

  .category-hero-inner {
    text-align: center;
    margin-top: 8rem;
  }

  .category-hero {
    padding: 107px 20px 29px !important;
    margin-bottom: 40px;
  }

  .no-image-grid {
    grid-template-columns: 1fr !important;
  }

  .search-results-header {
    text-align: center;
  }

  .container#contact {
    padding-inline: 0;
  }
  .articles-results-section {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
  }

  .no-image-articles-section {
    margin-top: 20px !important;
  }

  .no-image-articles-section > div:first-child {
    margin-top: 0 !important;
  }

  .section-head text-center {
  }

  .no-image-grid {
    gap: 20px;
  }

  .category-map-section {
    margin-bottom: 30px !important;
  }

  .category-map-section .h-display {
    text-align: center;
  }

  .article-listings {
    gap: 20px;
  }

  .category-intro-section#contact {
    padding-top: 0 !important;
  }

  .category-title-large {
    font-size: 24px;
  }

  .category-intro-section .contentBody {
    font-size: 16px;
  }
  .category-hero#static {
    margin-bottom: 0;
  }

  .categories > div:first-child {
    margin-bottom: 0 !important;
  }

  .h-display {
    font-size: 24px;
  }

  .container.articles {
    padding: 0 !important;
  }

  .category-meta {
    margin: auto;
  }

  .category-title {
    text-align: center;
  }

  .no-image-articles-section > div:first-child {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }

  .hero .btn {
    max-width: fit-content;
    margin: auto;
  }

  .stats {
    padding-inline: 20px;
  }

  .stat-l {
    font-size: 13px;
  }

  .stat-n {
    font-size: 50px;
  }

  .stat:first-child {
    align-items: center;
  }

  .stat:not(:first-child) {
    border: unset;
    padding: 0;
    align-items: center;
  }

  .hero-frame {
    margin-top: 30px;
  }

  .hero {
    padding-bottom: 40px;
  }

  .breadcrumbs {
    background: transparent;
    border: unset;
    display: flex;
    flex-wrap: wrap;
    backdrop-filter: unset;
  }

  #experiences .container,
  #destinations .container {
    padding-inline: 20px !important;
  }

  .no-image-articles-section {
    margin: 48px 0 0 0;
  }

  .categories-page {
    grid-template-columns: 1fr;
  }

  .share-row.fixed {
    bottom: 21px;
  }

  .section#community {
    margin-inline: 10px;
    padding: 40px 0;
  }

  .related-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-newsletter {
    margin-inline: 20px;
    margin-top: 40px;
    padding: 30px;
  }

  .footer-links {
    flex-direction: column;
  }
  .category-map-section .section {
    padding: 0 !important;
  }

  .footer-watermark {
    bottom: 0;
  }

  .footer-links-grid {
    /* grid-template-columns: repeat(1, 1fr); */
  }

  .footer-bottom {
    padding-inline: 20px;
    margin-top: 30px;
  }

  .container {
    padding-inline: 0;
  }

  .h-display {
    font-size: 25px !important;
  }

  .album-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mega-link {
    font-size: 24px;
  }

  .mega-menu-regions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .mega-close {
    top: 20px;
    right: 20px;
  }

  .nav-links {
    display: none;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .contact-form-card {
    padding: 24px;
    margin: 0 auto 40px auto;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wide-category-card {
    height: 320px;
    border-radius: 28px;
  }

  .wide-category-card .wide-card-content {
    padding: 30px 40px;
    margin-top: 120px;
  }

  .wide-category-card .cat-card-arrow {
    top: 30px;
    right: 40px;
    width: 52px;
    height: 52px;
    font-size: 18px;
  }

  .no-image-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .share-row {
    padding: 10px 20px;
    gap: 12px;
  }

  .category-top-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .category-top-bar .search-wrap {
    max-width: 100%;
  }

  .category-hero {
    padding: 100px 20px 60px;
  }
}

@media (max-width: 640px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-video-stats-overlay {
    justify-content: left;
  }

  .exp-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-pill {
    font-size: 30px;
    padding: 1rem;
    justify-content: left;
  }
}

@media (max-width: 480px) {
  .no-image-grid {
    grid-template-columns: 1fr;
  }

  .no-image-card-link {
    padding: 24px;
    min-height: 200px;
  }

  .share-row {
    padding: 8px 16px;
    gap: 8px;
    border-radius: 20px;
  }

  #st-1 .st-btn {
    transform: scale(0.9);
  }
}
