/**
 * Bueno Leisure Brand Override
 * Remaps the template's color palette and typography to the Bueno brand.
 *
 * Color palette:
 *   Deep Purple  #4A0E5C
 *   Mid Purple   #7B2D8E
 *   Rich Gold    #C9A84C
 *   Champagne    #E8D5A3
 *   Charcoal     #2D2D2D
 *   Cream        #FFF9F0
 *   Warm Grey    #F5F0EB
 *
 * Typography:
 *   Cinzel            — Headings, company name
 *   Cormorant Garamond — Tagline, italic accents
 *   Montserrat        — Body text, UI elements
 */

/* ─── Color Variable Overrides ─── */
:root {
  /* Primary green → Deep Purple */
  --_palette---green: #4A0E5C;

  /* Green-600 accent → Rich Gold */
  --_palette---green-600: #C9A84C;

  /* Green-50 light bg → Cream */
  --_palette---green-50: #FFF9F0;

  /* Text color → Charcoal */
  --_palette---black: #2D2D2D;

  /* Text muted → warm dark */
  --_palette---black-light: #4A4A4A;

  /* Surface backgrounds */
  --_palette---white: #FFFFFF;
  --_palette---white-light: #F5F0EB;

  /* Stroke color → muted purple */
  --_palette---stroke: #7B2D8E40;

  /* Neutral overlays */
  --_palette---neutral-4: #4A0E5C21;
  --_palette---neutral-1: #E8D5A333;
  --_palette---neutral-2: #F5F0EB;
  --_palette---neutral-3: #2D2D2D;

  /* Button background → Deep Purple */
  --_themes---colors--button-bg: #4A0E5C;

  /* Typography — override the body font */
  --_typography---body-font: "Montserrat", "Inter Variable font", Arial, sans-serif;
}

/* ─── Typography Overrides ─── */

/* Headings use Cinzel */
h1, h2, h3, h4, h5, h6,
.text-h1, .text-h2, .text-h3, .text-h4, .text-h5, .text-h6 {
  font-family: "Cinzel", "Inter Variable font", serif !important;
}

/* Subtitle / tagline elements use Cormorant Garamond */
.sub-title,
.sub-title div,
[data-wf--subtitle--variant] div {
  font-family: "Cormorant Garamond", "Inter Variable font", serif !important;
  font-style: italic;
  font-weight: 400;
}

/* Body / UI text uses Montserrat */
body,
.text-sm, .text-md, .text-lg, .text-xlg,
.nav-link-text,
.button-text,
.footer-link div,
.dropdown-list-item,
.input-field,
.form-button,
p {
  font-family: "Montserrat", "Inter Variable font", Arial, sans-serif !important;
}

/* ─── Specific Color Overrides ─── */

/* Footer background — deep purple */
.footer {
  background-color: #4A0E5C !important;
}

/* ALL button backgrounds — deep purple */
.button .button-bg,
.button-bg {
  background-color: #4A0E5C !important;
}

/* Button hover — mid purple */
.button:hover .button-bg {
  background-color: #7B2D8E !important;
}

/* Nav active / current link — deep purple pill */
.nav-link.w--current,
.w--current .nav-bg {
  background-color: #4A0E5C !important;
}

/* Dropdown active link */
.dropdown-list-item .nav-link.w--current {
  background-color: #4A0E5C !important;
  color: white !important;
}

/* Nav bg hover effect */
.nav-bg {
  background-color: #4A0E5C !important;
}

/* Gold accent for subtitle elements */
.sub-title div,
[data-wf--subtitle--variant="base"] div {
  color: #C9A84C !important;
}

/* White subtitle on dark backgrounds */
[data-wf--subtitle--variant="white"] div {
  color: #E8D5A3 !important;
}

/* Form success */
.w-form-done {
  background-color: #C9A84C20 !important;
  color: #C9A84C !important;
}

/* Check icon — gold */
.check-icon,
.w-icon-check {
  color: #C9A84C !important;
}

/* Active / current link states */
.w--current .nav-link-text {
  color: white !important;
}

/* Footer link active */
.footer-link.w--current div {
  color: #C9A84C !important;
}

/* Hero title on dark background */
.cc-u-text-surface {
  color: white;
}

/* Tags / badges — gold */
.tag,
.blog-tag {
  border-color: #C9A84C !important;
  color: #C9A84C !important;
}

/* Form focus — gold */
.input-field:focus {
  border-color: #C9A84C !important;
}

/* Success message */
.success-message {
  background-color: #C9A84C15 !important;
}

/* Error page SVG */
.error-img svg path[fill="#093628"],
.error-img svg text[fill="#093628"] {
  fill: #4A0E5C;
}

/* Package button / CTA buttons */
.package-btn,
.blog-btn {
  color: #4A0E5C !important;
}

.package-btn:hover,
.blog-btn:hover {
  color: #7B2D8E !important;
}

/* Slider arrows/dots */
.w-slider-dot.w-active {
  background-color: #4A0E5C !important;
}

.w-slider-dot {
  background-color: #C9A84C80 !important;
}

/* Form button */
.form-button {
  background-color: #4A0E5C !important;
}

.form-button:hover {
  background-color: #7B2D8E !important;
}

/* Accordion / FAQ active */
.faq-icon-line {
  background-color: #4A0E5C !important;
}

/* Counter / stats accent */
.counter-number,
.text-xl.cc-font-weight-700 {
  color: #4A0E5C;
}

/* Link underline color */
.u-link {
  color: #C9A84C !important;
}

.u-link:hover {
  color: #E8D5A3 !important;
}

/* Any remaining green-600 text color usage */
[style*="color: var(--_palette---green-600)"],
[style*="color:var(--_palette---green-600)"] {
  color: #C9A84C !important;
}

/* CMS collection card hover states */
.package-card:hover .package-btn,
.blog-link:hover .blog-btn {
  color: #C9A84C !important;
}

/* ─── Logo Sizing ─── */
/* The Bueno crest is circular, not a wide horizontal logo like the template original */
.nav-logo img,
.nav-logo-black,
.nav-logo-white {
  width: 72px !important;
  height: 72px !important;
  object-fit: contain;
}

.footer-logo img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain;
}

/* ─── Footer Social Icons ─── */
/* Remove gray circle backgrounds, use gold icons on transparent */
.u-link.cc-social {
  background-color: transparent !important;
  border: 1.5px solid #C9A84C !important;
  color: #C9A84C !important;
  width: 3rem !important;
  height: 3rem !important;
  margin-left: 0 !important;
  margin-right: 0.75rem !important;
}

.u-link.cc-social:hover {
  background-color: #C9A84C !important;
  color: #4A0E5C !important;
}

.u-link.cc-social .icon {
  color: inherit !important;
  width: 1.25rem !important;
}

.bottom-wrap.cc-social {
  gap: 0 !important;
}

/* ─── Tour Card Equal Heights ─── */
/* Ensure all package cards in a row are the same height */
.package-coll-list {
  align-items: stretch !important;
}

.package-coll-item {
  display: flex !important;
}

.package-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.package-card .text-wrapper.cc-gap-auto {
  flex: 1 !important;
}

/* Force consistent image aspect ratio in package cards */
.package-card .image-wrapper {
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
}

.package-card .package-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Blog card images — consistent aspect ratio */
.blog-link .image-wrapper {
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
}

.blog-link .blog-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Destination card images — consistent */
.destination-card .image-wrapper,
.destination-link .image-wrapper {
  aspect-ratio: 3 / 4 !important;
  overflow: hidden !important;
}

/* ─── Gallery Images ─── */
/* Ensure gallery images fill their containers properly */
.gallery-coll-item .image-wrapper {
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  border-radius: var(--roundness--medium, 1rem) !important;
}

.gallery-coll-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.gallery-coll-list {
  grid-template-columns: 1fr 1fr !important;
}

/* ─── Footer List Bullet Dots ─── */
/* Remove any default list dots and ensure clean styling */
.footer-list,
.footer-list li {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.footer-list-item::before,
.footer-list-item::marker {
  content: none !important;
  display: none !important;
}

/* Footer link color — champagne on purple */
.footer-link,
.footer-link div {
  color: #E8D5A3 !important;
}

.footer-link:hover,
.footer-link:hover div {
  color: #FFFFFF !important;
}

/* Footer section headings — white */
.footer-col .text-lg.cc-u-text-surface {
  color: #FFFFFF !important;
}

/* Footer subscribe input — obsidian glass to match header */
.input-field.cc-footer {
  background-color: rgba(26, 5, 34, 0.6) !important;
  border: 1px solid rgba(201, 168, 76, 0.25) !important;
  color: #FFFFFF !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.input-field.cc-footer:focus {
  border-color: #C9A84C !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1) !important;
}

.input-field.cc-footer::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* Footer subscribe button — gold accent */
.form-button.cc-footer {
  background-color: #C9A84C !important;
  color: #1A0522 !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
}

.form-button.cc-footer:hover {
  background-color: #E8D5A3 !important;
  color: #1A0522 !important;
}

/* Footer bottom text */
.bottom-wrap.cc-footer .text-md {
  color: #E8D5A380 !important;
}

/* ─── Scroll / Selection Colors ─── */
::selection {
  background-color: #C9A84C;
  color: #FFFFFF;
}

::-moz-selection {
  background-color: #C9A84C;
  color: #FFFFFF;
}

/* Scrollbar (webkit) */
::-webkit-scrollbar-thumb {
  background-color: #4A0E5C;
}

::-webkit-scrollbar-track {
  background-color: #F5F0EB;
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM DESIGN ENHANCEMENTS — Billion-Dollar Feel
   ═══════════════════════════════════════════════════════════ */

/* ─── Smooth Scroll & Base Refinements ─── */
html {
  scroll-behavior: smooth;
}

/* Premium anti-aliasing for all text */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ─── Universal Transitions ─── */
a, button, .button, .nav-link, .package-card, .blog-link,
.location-card, .image-wrapper img, .footer-link, .u-link,
.form-button, input, .nav-bg, .dropdown-menu-wrap {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ─── Premium Typography Refinements ─── */
h1, .text-h1 {
  letter-spacing: 0.03em;
  line-height: 1.1;
}

h2, .text-h2 {
  letter-spacing: 0.02em;
  line-height: 1.15;
}

h3, .text-h3 {
  letter-spacing: 0.015em;
}

.sub-title div,
[data-wf--subtitle--variant] div {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85em;
}

.text-sm {
  letter-spacing: 0.01em;
}

.button-text {
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ─── Premium Image Treatments ─── */
.image-wrapper {
  overflow: hidden;
  position: relative;
}

.image-wrapper img,
.package-img,
.blog-img,
.tab-img,
.dropdown-img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform;
}

.package-card:hover .package-img,
.blog-link:hover .blog-img,
.location-card:hover .image-wrapper img,
a:hover > .image-wrapper img {
  transform: scale(1.06);
  filter: brightness(1.02);
}

/* ─── Premium Card Elevations ─── */
.package-card {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(74, 14, 92, 0.12),
              0 8px 24px rgba(0, 0, 0, 0.06);
}

.blog-link {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.blog-link:hover {
  transform: translateY(-4px);
}

/* ─── Premium Button Enhancements ─── */
.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.button:hover::after {
  left: 100%;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 14, 92, 0.25);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(74, 14, 92, 0.15);
}

/* ─── Premium Section Spacing ─── */
.section {
  position: relative;
}

/* Subtle gradient overlay on dark sections */
.section.cc-0::before,
.cta-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(74, 14, 92, 0.15) 0%,
    transparent 30%,
    transparent 70%,
    rgba(74, 14, 92, 0.1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ─── Premium Navigation ─── */
.navbar {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navigation:not(.w-variant-b2823927-e249-1428-12e5-4e7bc2c3c88e) .navbar {
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 1px 0 rgba(74, 14, 92, 0.06);
}

/* Nav link hover — text must be white since .nav-bg is deep purple */
.nav-link:hover .nav-link-text {
  color: #FFFFFF !important;
  position: relative;
  z-index: 2;
}

/* Ensure nav-link-text is always above the .nav-bg overlay */
.nav-link-text {
  position: relative;
  z-index: 2;
}

/* Dropdown links hover — ensure white text on purple bg */
.dropdown-list-item .nav-link:hover .nav-link-text {
  color: #FFFFFF !important;
}

.dropdown-list-item .nav-link:hover {
  background-color: #4A0E5C !important;
}

/* ─── Premium Dropdown ─── */
.dropdown-menu-wrap {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12),
              0 8px 24px rgba(74, 14, 92, 0.08) !important;
  border: 1px solid rgba(74, 14, 92, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ─── Premium Form Inputs ─── */
.input-field {
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.input-field:focus {
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
  outline: none;
}

/* ─── Premium Footer ─── */
.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}

/* ─── Premium Loading / Scroll Animations ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes goldPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ─── Premium Hero Treatment ─── */
.header-video::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
  z-index: 0;
}

.header-video .container {
  position: relative;
  z-index: 2;
}

/* ─── Premium Stats Cards ─── */
.about-sm-card {
  position: relative;
  overflow: hidden;
}

.about-sm-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #C9A84C, #E8D5A3);
  border-radius: 2px;
}

/* ─── Premium Logo Marquee ─── */
.logo-wrap {
  position: relative;
}

.logo-item img {
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.4s ease !important;
}

.logo-item img:hover {
  filter: grayscale(0%) opacity(1);
}

/* ─── Location Card Enhancement ─── */
.location-card {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.location-card:hover {
  transform: translateY(-4px);
}

/* ─── Premium CTA Section ─── */
.cta-bg {
  position: relative;
}

.cta-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(74, 14, 92, 0.4) 0%,
    rgba(74, 14, 92, 0.2) 50%,
    rgba(201, 168, 76, 0.15) 100%
  );
  pointer-events: none;
}

.cta-bg .container {
  position: relative;
  z-index: 2;
}

/* ─── Premium Blog / Package Button Hover ─── */
.package-btn,
.blog-btn {
  transition: color 0.3s ease, transform 0.3s ease !important;
}

.package-card:hover .package-btn,
.blog-link:hover .blog-btn {
  transform: translateX(4px);
}

/* ─── Premium Slider Arrows ─── */
.left-arrow,
.right-arrow,
.w-slider-arrow-left,
.w-slider-arrow-right {
  transition: transform 0.3s ease, opacity 0.3s ease !important;
}

.left-arrow:hover,
.w-slider-arrow-left:hover {
  transform: translateX(-3px);
}

.right-arrow:hover,
.w-slider-arrow-right:hover {
  transform: translateX(3px);
}

/* ─── Gold Accent Line for Section Headers ─── */
.header-col .sub-title {
  position: relative;
  padding-left: 0;
}

/* ─── Premium Focus States (Accessibility) ─── */
a:focus-visible,
button:focus-visible,
.button:focus-visible,
input:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Activities Page Styles ─── */

/* Hero */
.activities-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a0322 0%, #4A0E5C 40%, #2d0639 100%);
  overflow: hidden;
}

.activities-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.activities-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, #FFFFFF, transparent);
  pointer-events: none;
  z-index: 1;
}

.activities-hero .container {
  position: relative;
  z-index: 2;
}

.activities-hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.activities-hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #C9A84C;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.activities-hero-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 520px;
}

/* Category Filter Tabs */
.activities-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 2rem 0;
  justify-content: center;
}

.category-tab {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1.5px solid #E8D5A360;
  border-radius: 100px;
  background: transparent;
  color: #4A4A4A;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

.category-tab:hover {
  border-color: #C9A84C;
  color: #4A0E5C;
  background: #FFF9F0;
}

.category-tab.active {
  background: #4A0E5C;
  border-color: #4A0E5C;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(74, 14, 92, 0.25);
}

/* Search Bar */
.activities-search {
  position: relative;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.activities-search input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3.25rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  border: 1.5px solid #E8D5A360;
  border-radius: 100px;
  background: #FFFFFF;
  color: #2D2D2D;
  transition: all 0.3s ease;
  outline: none;
}

.activities-search input:focus {
  border-color: #C9A84C;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.activities-search input::placeholder {
  color: #9B9B9B;
  font-weight: 300;
}

.activities-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #C9A84C;
  width: 1.15rem;
  height: 1.15rem;
  pointer-events: none;
}

/* Activity Cards Grid */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem 0 4rem;
}

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

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

/* Activity Card */
.activity-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(74, 14, 92, 0.06);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(74, 14, 92, 0.12),
              0 8px 24px rgba(0, 0, 0, 0.04);
}

.activity-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.activity-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.activity-card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.activity-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  background: rgba(74, 14, 92, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  border-radius: 100px;
  z-index: 2;
}

.activity-card-price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #4A0E5C;
  border-radius: 100px;
  z-index: 2;
}

.activity-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.activity-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: #9B9B9B;
  letter-spacing: 0.02em;
}

.activity-card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.activity-card-meta-item svg {
  width: 0.9rem;
  height: 0.9rem;
  color: #C9A84C;
}

.activity-card-title {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2D2D2D;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.activity-card-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: #6B6B6B;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.activity-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(74, 14, 92, 0.06);
}

.activity-card-difficulty {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.difficulty-easy {
  background: #E8F5E9;
  color: #2E7D32;
}

.difficulty-moderate {
  background: #FFF3E0;
  color: #E65100;
}

.difficulty-challenging {
  background: #FCE4EC;
  color: #C62828;
}

.difficulty-expert {
  background: #F3E5F5;
  color: #6A1B9A;
}

.activity-card-cta {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #4A0E5C;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.activity-card:hover .activity-card-cta {
  color: #C9A84C;
  transform: translateX(4px);
}

.activity-card-cta svg {
  width: 1rem;
  height: 1rem;
}

/* Category Section Headers */
.category-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(74, 14, 92, 0.06);
}

.category-section-header:first-of-type {
  border-top: none;
  padding-top: 0;
}

.category-section-title {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2D2D2D;
  letter-spacing: 0.02em;
}

.category-section-count {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: #9B9B9B;
  letter-spacing: 0.04em;
}

/* Stats Banner */
.activities-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 2.5rem 0;
  margin: 0 auto;
}

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

.activities-stat-number {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.activities-stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Empty State */
.activities-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: #9B9B9B;
}

.activities-empty-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  color: #E8D5A3;
}

.activities-empty-title {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: #4A0E5C;
  margin-bottom: 0.5rem;
}

.activities-empty-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #9B9B9B;
}

/* Placeholder Image Tag */
.placeholder-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  background: rgba(201, 168, 76, 0.9);
  color: #FFFFFF;
  border-radius: 4px;
  z-index: 3;
}

/* Activity detail modal / expanded view */
.activity-detail-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 3, 34, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.activity-detail-modal {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.activity-detail-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.activity-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-detail-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D2D2D;
  z-index: 2;
  transition: all 0.3s ease;
}

.activity-detail-close:hover {
  background: #FFFFFF;
  transform: scale(1.1);
}

.activity-detail-body {
  padding: 2rem;
}

.activity-detail-category {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #C9A84C;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.activity-detail-title {
  font-family: "Cinzel", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #2D2D2D;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.activity-detail-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.activity-detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.activity-detail-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.activity-detail-meta-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9B9B9B;
}

.activity-detail-meta-value {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2D2D2D;
}

.activity-detail-highlights {
  margin-bottom: 1.5rem;
}

.activity-detail-highlights-title {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2D2D2D;
  margin-bottom: 0.75rem;
}

.activity-detail-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.activity-detail-highlights li {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: #4A4A4A;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.activity-detail-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A84C;
}

.activity-detail-notes {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: #6B6B6B;
  line-height: 1.6;
  padding: 1rem;
  background: #FFF9F0;
  border-radius: 10px;
  border-left: 3px solid #C9A84C;
}

.activity-detail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #4A0E5C;
  color: #FFFFFF;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.activity-detail-cta:hover {
  background: #7B2D8E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 14, 92, 0.25);
}

/* Responsive for activities page */
@media (max-width: 767px) {
  .activities-hero {
    min-height: 50vh;
    padding: 6rem 0 3rem;
  }

  .activities-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .activities-stat-number {
    font-size: 2rem;
  }

  .activities-categories {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 1.5rem 0;
    -webkit-overflow-scrolling: touch;
  }

  .category-tab {
    flex-shrink: 0;
  }

  .activity-detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .activity-detail-modal {
    max-height: 95vh;
    border-radius: 16px;
  }

  .category-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ─── Premium Responsive Refinements ─── */
@media (max-width: 991px) {
  h1, .text-h1 {
    letter-spacing: 0.02em;
  }

  .package-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 479px) {
  .button:hover {
    transform: none;
    box-shadow: none;
  }

  .package-card:hover,
  .blog-link:hover,
  .activity-card:hover {
    transform: translateY(-2px);
  }
}

/* ────────────────────────────────────────────────────
   Tour Detail Page — Responsive Grid Styles
   ──────────────────────────────────────────────────── */

.tour-icon {
  color: #C9A84C;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .tour-detail-grid {
    grid-template-columns: 1fr !important;
  }

  .tour-booking-card {
    position: relative !important;
    top: 0 !important;
    order: -1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 600px) {
  .tour-highlights-grid {
    grid-template-columns: 1fr !important;
  }

  .tour-included-grid {
    grid-template-columns: 1fr !important;
  }

  .tour-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ────────────────────────────────────────────────────
   Sitewide Responsive Overhaul
   ──────────────────────────────────────────────────── */

.home-hero-container {
  align-items: stretch !important;
}

.home-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  gap: 2rem;
  width: 100%;
  align-items: end;
  flex: 1;
}

.home-hero-copy {
  max-width: 760px;
  text-align: left;
}

.home-hero-text {
  max-width: 620px !important;
  margin: 0 0 3rem 0 !important;
}

.home-hero-actions {
  justify-content: flex-start;
}

.home-hero-spotlight {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.home-hero-spotlight-card {
  max-width: 380px;
  padding: 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 9, 22, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.home-hero-spotlight-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8D5A3;
  margin-bottom: 0.9rem;
}

.home-hero-spotlight-title {
  font-family: "Cinzel", serif;
  font-size: 1.55rem;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 0.9rem;
}

.home-hero-spotlight-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
  margin: 0 0 1.25rem;
}

.home-hero-spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-hero-spotlight-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 213, 163, 0.18);
  background: rgba(255, 255, 255, 0.05);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.home-hero-pillars {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-hero-pillar {
  min-width: 0;
}

.hero-content,
.parallax-hero-content {
  padding-top: 10rem;
  padding-bottom: 2rem;
}

.hero-description,
.parallax-hero-description {
  max-width: 38rem !important;
}

.interactive-card-meta {
  flex-wrap: wrap;
}

.responsive-two-col-grid > *,
.contact-split-layout > *,
.contact-faq-grid > *,
.partner-pillar-row > *,
.partner-form-layout > *,
.activities-about-grid > *,
.home-hero-stage > * {
  min-width: 0;
}

/* ── Card Grids (3-col with centered orphans) ── */
.home-destinations-grid > :last-child:nth-child(3n + 1),
.destinations-grid > :last-child:nth-child(3n + 1),
.tours-grid > :last-child:nth-child(3n + 1) {
  grid-column: 2;
}

/* When 2 orphans remain in last row, center them across the 3 columns */
.destinations-grid > :nth-last-child(2):nth-child(3n + 1),
.destinations-grid > :nth-last-child(2):nth-child(3n + 1) ~ :last-child,
.tours-grid > :nth-last-child(2):nth-child(3n + 1),
.tours-grid > :nth-last-child(2):nth-child(3n + 1) ~ :last-child {
  /* No centering needed; 2 items fill cols 1-2 naturally */
}

@media (max-width: 991px) {
  .home-destinations-grid,
  .destinations-grid,
  .tours-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Center lone item in 2-col layout */
  .home-destinations-grid > :last-child:nth-child(2n + 1),
  .destinations-grid > :last-child:nth-child(2n + 1),
  .tours-grid > :last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .responsive-section {
    padding: 7rem 0 !important;
  }

  .responsive-section-tight {
    padding: 6rem 0 !important;
  }

  .responsive-two-col-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .home-hero {
    min-height: 760px !important;
  }

  .home-hero-stage {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-hero-spotlight {
    justify-content: flex-start;
  }

  .home-hero-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding-bottom: 2rem !important;
  }

  .home-about-grid {
    gap: 3rem !important;
  }

  .home-about-ring {
    display: none;
  }

  .contact-split-layout,
  .partner-form-layout,
  .partner-pillar-row,
  .about-content-grid,
  .about-images-grid,
  .testimonials-grid,
  .licenses-grid-two {
    grid-template-columns: 1fr !important;
  }

  .contact-form-side,
  .partner-form-side {
    padding: 6rem 1.5rem !important;
  }

  .contact-image-side,
  .partner-image-side,
  .partner-pillar-image {
    min-height: 320px;
  }

  .partner-section-header {
    padding: 6rem 0 3rem !important;
  }

  .partner-pillar-content {
    padding: 2.75rem 1.5rem !important;
    order: 2 !important;
  }

  .partner-pillar-image {
    order: 1 !important;
  }

  .contact-faq-sticky {
    position: static !important;
    top: auto !important;
  }

  .contact-faq-grid {
    gap: 3rem !important;
  }

  .social-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
  }

  .social-grid > a {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 220px;
  }

  .activities-about-grid {
    grid-template-columns: 1fr !important;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .licenses-image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .post-breakout-image {
    margin: 3rem 0 !important;
  }

  .post-article-quote {
    padding: 1.75rem 2rem !important;
    font-size: 1.5rem !important;
  }
}

@media (max-width: 767px) {
  .home-destinations-grid,
  .destinations-grid,
  .tours-grid {
    grid-template-columns: 1fr !important;
  }

  .home-destinations-grid > :last-child:nth-child(2n + 1),
  .destinations-grid > :last-child:nth-child(2n + 1),
  .tours-grid > :last-child:nth-child(2n + 1) {
    max-width: none;
    grid-column: auto;
    justify-self: auto;
  }

  .site-navbar-inner {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .site-mobile-menu {
    padding: 6.5rem 1rem 1.5rem !important;
  }

  .hero-shell {
    min-height: 60vh !important;
  }

  .hero-content,
  .parallax-hero-content {
    padding-top: 7rem !important;
    padding-bottom: 2rem !important;
  }

  .hero-title,
  .parallax-hero-title {
    font-size: clamp(2.1rem, 11vw, 3rem) !important;
    line-height: 1.08 !important;
  }

  .hero-description,
  .parallax-hero-description {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    max-width: none !important;
  }

  .parallax-hero-shell {
    min-height: 540px !important;
    height: 72vh !important;
  }

  .responsive-section {
    padding: 5rem 0 !important;
  }

  .responsive-section-tight {
    padding: 4.5rem 0 !important;
  }

  .responsive-form-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .home-hero {
    height: auto !important;
    min-height: 720px !important;
  }

  .home-hero-container {
    padding-top: 7rem !important;
    padding-bottom: 1.5rem !important;
  }

  .home-hero-subtitle {
    font-size: 0.95rem !important;
    letter-spacing: 0.14em !important;
  }

  .home-hero-title {
    font-size: clamp(2.4rem, 12vw, 3.5rem) !important;
    margin-bottom: 1.5rem !important;
  }

  .home-hero-text {
    font-size: 1rem !important;
    max-width: none !important;
    margin-bottom: 2rem !important;
  }

  .home-hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.9rem !important;
  }

  .home-hero-actions > * {
    width: 100%;
  }

  .home-hero-actions > * > div,
  .home-hero-actions .magnetic-button {
    width: 100% !important;
  }

  .home-hero-spotlight-card {
    max-width: none;
    padding: 1.5rem;
  }

  .home-hero-spotlight-title {
    font-size: 1.35rem;
  }

  .home-hero-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem !important;
    border-top: none !important;
    padding: 1rem 0 2rem !important;
  }

  .home-hero-pillar {
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
  }

  .home-section-header {
    margin-bottom: 3rem !important;
  }

  .interactive-card {
    height: 480px !important;
  }

  .interactive-card-badge {
    top: 1rem !important;
    left: 1rem !important;
  }

  .interactive-card-content {
    padding: 1.25rem !important;
    gap: 0.65rem !important;
  }

  .interactive-card-title {
    font-size: 1.45rem !important;
  }

  .interactive-card-reveal {
    height: auto !important;
    opacity: 1 !important;
    margin-top: 0.9rem !important;
  }

  .interactive-card-meta {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.65rem !important;
  }

  .interactive-card-footer {
    gap: 1rem;
  }

  .cta-section-shell {
    padding: 1rem !important;
  }

  .cta-section-card {
    padding: 5rem 1.25rem !important;
    border-radius: 1.5rem !important;
  }

  .cta-section-title {
    margin-bottom: 1.25rem !important;
  }

  .cta-section-description {
    margin-bottom: 2rem !important;
    font-size: 1rem !important;
  }

  .contact-info-card {
    padding: 2rem 1.5rem !important;
  }

  .contact-form-side,
  .partner-form-side {
    padding: 4.5rem 1rem !important;
  }

  .contact-image-side,
  .partner-image-side,
  .partner-pillar-image {
    min-height: 260px;
  }

  .partner-section-header {
    padding: 5rem 0 2.5rem !important;
  }

  .partner-pillar-content {
    padding: 2rem 1rem !important;
  }

  .about-stats-grid,
  .blog-grid,
  .social-grid {
    grid-template-columns: 1fr !important;
  }

  .about-images-grid > :nth-child(2) > div {
    margin-top: 0 !important;
  }

  .activities-about-grid {
    gap: 2rem !important;
  }

  .activities-about-grid > :nth-child(2) img {
    height: 360px !important;
  }

  .licenses-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .about-blog-card-image {
    height: 200px !important;
  }

  .article-content {
    font-size: 1.15rem !important;
    line-height: 1.75 !important;
  }

  .article-dropcap {
    float: none !important;
    display: block !important;
    padding: 0 0 0.5rem 0 !important;
  }

  .post-article-quote {
    padding: 1.5rem !important;
    font-size: 1.25rem !important;
    margin: 2rem 0 !important;
  }
}

@media (max-width: 479px) {
  .home-hero-pillars,
  .licenses-image-grid {
    grid-template-columns: 1fr !important;
  }

  .interactive-card {
    height: 440px !important;
  }

  .social-grid > a {
    min-height: 180px;
  }
}

/* ── Travel Concierge Grid Responsive ── */

@media (max-width: 991px) {
  .concierge-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .concierge-grid {
    grid-template-columns: 1fr !important;
  }

  .concierge-callout {
    flex-direction: column !important;
    text-align: center;
    padding: 1.75rem 1.5rem !important;
  }
}
