/* ============================================================
   TRAVEL OCEAN INDIA TOURS — Premium Stylesheet
   Brand: Orange #FF7B00 | Navy #234572 | Copper #C16921
          Gold #E99A4E | Ivory #FCF9F5 | Charcoal #16181D
   Fonts: Cormorant Garamond (display) | Manrope (body)
   ============================================================ */

/* ============================================================
   TABLE OF CONTENTS
   1.  CSS Variables (:root)
   2.  Reset & Base
   3.  Layout Utilities
   4.  Site Chrome & Loading
   5.  Header & Navigation
   6.  Mobile Drawer
   7.  Hero — Home
   8.  Page Hero (Inner Pages)
   9.  Marquee Bar
   10. Section Shells & Wrappers
   11. Eyebrow Text
   12. Buttons
   13. Tour Cards
   14. Experience Cards
   15. Blog Cards
   16. Feature Cards (Why Choose Us)
   17. Stat Cards
   18. Testimonial Cards
   19. Certification Cards
   20. Gallery
   21. Split Layouts & Collage
   22. Contact & Enquiry Form
   23. Conversion Panel
   24. Footer
   25. Tour/Blog Detail Pages
   26. Mini Gallery
   27. Team & Stacked Visuals
   28. Toast, Scroll-Top, WhatsApp Float
   29. Reveal Animations
   30. Article Meta & Tags
   31. Empty State
   32. Responsive Breakpoints
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES
   ============================================================ */

:root {
  /* Brand Colors */
  --orange:        #FF7B00;
  --orange-dark:   #D96300;
  --orange-light:  #FF9833;

  --navy:          #234572;
  --navy-dark:     #162B4D;
  --navy-light:    #2E5A96;

  --copper:        #C16921;
  --gold:          #E99A4E;

  --ivory:         #FCF9F5;
  --ivory-dark:    #EDE8DE;
  --cream:         #F5F0E8;

  --charcoal:      #16181D;
  --charcoal-700:  #2D3240;
  --charcoal-500:  #525B70;
  --charcoal-300:  #8C95A8;
  --charcoal-100:  #C5CAD6;

  --white:         #FFFFFF;

  /* Borders */
  --border:        rgba(35, 69, 114, 0.10);
  --border-med:    rgba(35, 69, 114, 0.18);

  /* Shadows — navy-based layered */
  --shadow-xs:     0 2px 8px rgba(22, 43, 77, 0.07);
  --shadow-sm:     0 4px 16px rgba(22, 43, 77, 0.10);
  --shadow-md:     0 10px 32px rgba(22, 43, 77, 0.13);
  --shadow-lg:     0 20px 52px rgba(22, 43, 77, 0.18);
  --shadow-xl:     0 36px 80px rgba(22, 43, 77, 0.24);
  --shadow-orange: 0 12px 32px rgba(255, 123, 0, 0.28);

  /* Border Radii */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   28px;
  --r-full: 999px;

  /* Layout */
  --container: 1240px;
  --header-h:  84px;

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Manrope", "Segoe UI", system-ui, sans-serif;

  /* Glassmorphism */
  --glass-bg:     rgba(255, 255, 255, 0.10);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-blur:   blur(20px);
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: opacity 0.3s ease;
}

body.is-loading {
  opacity: 0;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--orange);
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  line-height: inherit;
}

input,
select,
textarea {
  font-family: var(--font-body);
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }

p {
  line-height: 1.7;
  color: var(--charcoal-500);
}

strong { color: var(--charcoal-700); font-weight: 700; }

::selection {
  background: var(--orange);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}


/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.mt-0  { margin-top: 0 !important; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.mb-0  { margin-bottom: 0 !important; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.hidden { display: none !important; }


/* ============================================================
   4. SITE CHROME & PAGE TRANSITIONS
   ============================================================ */

.site-chrome {
  position: relative;
  background-color: var(--ivory);
}

.site-main {
  position: relative;
  z-index: 1;
}

/* Page system — SPA-style show/hide */
.page {
  display: none;
}

.page.active {
  display: block;
  animation: page-enter 0.45s ease both;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--ivory);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(22, 43, 77, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Brand / Logo Block */
.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: auto;
  height: 52px;
  background: none;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.is-scrolled .brand-mark {
  background: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand-mark:hover {
  transform: scale(1.04);
}

.brand-mark img {
  width: auto;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-500);
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-button,
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--charcoal-700);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}

.nav-button:hover,
.nav-link:hover {
  background: var(--ivory-dark);
  color: var(--navy);
}

.nav-link.is-active {
  color: var(--orange);
  background: rgba(255, 123, 0, 0.08);
}

.nav-button svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-item:hover .nav-button svg,
.nav-item:focus-within .nav-button svg {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  transform: translateX(-50%) translateY(8px);
  z-index: 50;
  box-shadow: var(--shadow-md);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-link {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
  cursor: pointer;
}

.dropdown-link:hover {
  background: var(--ivory-dark);
  transform: translateX(4px);
}

.dropdown-link strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.dropdown-link span {
  font-size: 0.78rem;
  color: var(--charcoal-300);
  margin-top: 1px;
}

/* Header Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  font-family: var(--font-body);
  white-space: nowrap;
  text-decoration: none;
}

.nav-cta:hover {
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
  color: var(--white);
}

/* Hamburger Toggle (mobile only) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--navy);
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: var(--navy-dark);
  transform: scale(1.06);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* Phone CTA pill — header right side */
.nav-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--r-full);
  background: var(--orange);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}

.nav-phone-cta:hover {
  background: var(--orange-dark);
  box-shadow: var(--shadow-orange);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-phone-cta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}


/* ============================================================
   6. MOBILE DRAWER
   ============================================================ */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 43, 77, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: var(--ivory);
  z-index: 70;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: var(--shadow-xl);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--ivory-dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-700);
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-drawer-close:hover {
  background: var(--cream);
}

.mobile-drawer-close svg {
  width: 18px;
  height: 18px;
}

/* Brand colors override inside mobile drawer (light background) */
.mobile-drawer-header .brand-name {
  color: var(--navy);
}

.mobile-drawer-header .brand-subtitle {
  color: var(--charcoal-500);
}

.mobile-drawer-header .brand-mark {
  background: none;
  border: none;
  height: 44px;
}

.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-300);
  padding: 0 4px;
  margin-bottom: 6px;
}

.mobile-link-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal-700);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
  font-family: var(--font-body);
}

.mobile-link:hover {
  background: var(--ivory-dark);
  color: var(--navy);
}

.mobile-link.is-active,
.mobile-link[aria-current="page"] {
  background: rgba(255, 123, 0, 0.08);
  color: var(--orange-dark);
}

.mobile-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-drawer-footer .button {
  width: 100%;
  justify-content: center;
}


/* ============================================================
   7. HERO — HOME
   ============================================================ */

.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Single-image fallback */
.hero-media img:not(.hero-slide) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-zoom 22s ease-in-out infinite alternate;
  transform-origin: center center;
}

/* Slider mode */
.hero-slider {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

/* Hero slider controls — arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* Hero slider controls — dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.40);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.35s ease, background 0.35s ease;
}

.hero-dot.is-active {
  background: var(--white);
  width: 28px;
}

@keyframes hero-zoom {
  from { transform: scale(1.00); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(22, 43, 77, 0.72) 0%,
    rgba(22, 43, 77, 0.45) 50%,
    rgba(22, 43, 77, 0.18) 100%
  );
}

.hero-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(35, 69, 114, 0.45) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: end;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
  width: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 540px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.90);
  white-space: nowrap;
}

.trust-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-light);
  flex-shrink: 0;
}

/* Hero Aside Card */
.hero-aside {
  display: flex;
  align-items: flex-end;
}

.hero-aside-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  color: var(--white);
  width: 100%;
}

.hero-aside-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-aside-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-aside-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.hero-aside-list span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-light);
  flex-shrink: 0;
}


/* ============================================================
   8. PAGE HERO (INNER PAGES)
   ============================================================ */

.page-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero.page-hero-short {
  min-height: 420px;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(22, 43, 77, 0.55) 0%,
    rgba(22, 43, 77, 0.70) 60%,
    rgba(22, 43, 77, 0.82) 100%
  );
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 64px;
  color: var(--white);
  width: 100%;
}

.page-hero-copy h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  max-width: 600px;
  margin-top: 10px;
}

.page-hero-destination {
  min-height: clamp(460px, 72svh, 660px);
  align-items: flex-end;
}

.page-hero-destination .page-hero-overlay {
  background:
    radial-gradient(circle at 18% 22%, rgba(233, 154, 78, 0.22) 0%, rgba(233, 154, 78, 0) 34%),
    linear-gradient(180deg, rgba(12, 24, 43, 0.24) 0%, rgba(12, 24, 43, 0.56) 48%, rgba(12, 24, 43, 0.82) 100%);
}

.page-hero-destination .page-hero-copy {
  padding-top: calc(var(--header-h) + 88px);
  padding-bottom: clamp(56px, 8vw, 88px);
}

.page-hero-destination .page-hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
  margin-bottom: 18px;
  max-width: 11ch;
}

.page-hero-destination .page-hero-copy p {
  max-width: 58ch;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.85;
}

.destination-overview-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(233, 154, 78, 0.12) 0%, rgba(233, 154, 78, 0) 30%),
    linear-gradient(180deg, #fffdf8 0%, #f8f2e7 100%);
}

.destination-overview-shell::before {
  content: "";
  position: absolute;
  top: 54px;
  right: -40px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 154, 78, 0.12) 0%, rgba(233, 154, 78, 0) 68%);
  filter: blur(6px);
}

.destination-overview-shell::after {
  content: "";
  position: absolute;
  left: 7%;
  bottom: 42px;
  width: 154px;
  height: 154px;
  border-radius: 50%;
  border: 1px solid rgba(35, 69, 114, 0.08);
  box-shadow:
    0 0 0 18px rgba(35, 69, 114, 0.03),
    0 0 0 42px rgba(35, 69, 114, 0.015);
}

.destination-overview-shell .container {
  position: relative;
  z-index: 1;
}

.destination-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.destination-overview-copy {
  max-width: 580px;
}

.destination-overview-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--navy-dark);
}

.destination-overview-copy p {
  margin: 0;
  color: var(--charcoal-500);
  font-size: 1rem;
  line-height: 1.9;
}

.destination-overview-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.destination-overview-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(35, 69, 114, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-slider {
  position: relative;
  min-width: 0;
}

.destination-slider-frame {
  position: relative;
  min-height: clamp(340px, 44vw, 560px);
  border-radius: 30px;
  overflow: hidden;
  background: var(--navy-dark);
  box-shadow: 0 30px 70px rgba(14, 31, 54, 0.18);
}

.destination-slider-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 24, 43, 0) 0%, rgba(12, 24, 43, 0.12) 44%, rgba(12, 24, 43, 0.62) 100%);
  pointer-events: none;
}

.destination-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.72s ease, transform 1.1s ease;
}

.destination-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.destination-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destination-slide figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: 420px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 250, 241, 0.9);
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.6;
  box-shadow: 0 18px 44px rgba(14, 31, 54, 0.16);
  backdrop-filter: blur(12px);
}

.destination-slide figcaption span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.destination-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 29, 52, 0.58);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(10px);
}

.destination-slider-arrow:hover {
  background: rgba(233, 154, 78, 0.94);
  transform: translateY(-50%) scale(1.05);
}

.destination-slider-arrow-prev {
  left: 18px;
}

.destination-slider-arrow-next {
  right: 18px;
}

.destination-slider-dots {
  position: absolute;
  right: 22px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.destination-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
}

.destination-slider-dot.is-active {
  background: var(--orange);
  transform: scale(1.35);
}

@media (max-width: 980px) {
  .destination-overview-grid {
    grid-template-columns: 1fr;
  }

  .destination-overview-copy {
    max-width: none;
  }

  .destination-slider-frame {
    min-height: clamp(320px, 68vw, 460px);
  }
}

@media (max-width: 640px) {
  .page-hero-destination {
    min-height: 500px;
  }

  .page-hero-destination .page-hero-copy {
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 48px;
  }

  .page-hero-destination .page-hero-copy h1 {
    max-width: 7.5ch;
  }

  .page-hero-destination .page-hero-copy p {
    max-width: 30ch;
    font-size: 0.98rem;
  }

  .destination-overview-shell::before,
  .destination-overview-shell::after {
    display: none;
  }

  .destination-slide figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 15px;
    font-size: 0.86rem;
  }

  .destination-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.45rem;
  }

  .destination-slider-arrow-prev {
    left: 12px;
  }

  .destination-slider-arrow-next {
    right: 12px;
  }

  .destination-slider-dots {
    right: 16px;
    bottom: 18px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.breadcrumb a,
.breadcrumb button,
.breadcrumb span {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.70);
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.breadcrumb a:hover,
.breadcrumb button:hover {
  color: var(--white);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.88rem;
}

.breadcrumb .current {
  color: rgba(255, 255, 255, 0.90);
  font-weight: 600;
}


/* ============================================================
   9. MARQUEE BAR
   ============================================================ */

.marquee-bar {
  background: var(--navy);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 32s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  padding: 0 28px;
}

.marquee-item::before {
  content: '●';
  color: var(--orange);
  font-size: 0.5rem;
  margin-right: 28px;
  line-height: 1;
}


/* ============================================================
   10. SECTION SHELLS & WRAPPERS
   ============================================================ */

.section-shell {
  padding: 96px 0;
}

.section-light {
  background: var(--ivory-dark);
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section-gallery-preview {
  background: var(--ivory);
}

.section-blog {
  background: var(--ivory-dark);
}

.section-story {
  background: var(--ivory);
}

.section-convert {
  background: var(--cream);
}

/* Section heading */
.section-heading {
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-top: 8px;
}

.section-heading p {
  margin-top: 14px;
  max-width: 560px;
  font-size: 1.05rem;
}

.section-heading-centered {
  text-align: center;
}

.section-heading-centered p {
  margin-inline: auto;
  max-width: 580px;
}

/* CTA row at section bottom */
.section-cta-row {
  text-align: center;
  margin-top: 40px;
}


/* ============================================================
   11. EYEBROW TEXT
   ============================================================ */

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow-gold {
  color: var(--gold);
}

.eyebrow-soft {
  color: rgba(255, 255, 255, 0.55);
}


/* ============================================================
   12. BUTTONS
   ============================================================ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.22s ease,
    transform 0.2s ease;
  white-space: nowrap;
}

.button:active {
  transform: translateY(1px) !important;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border-color: transparent;
}

.button-primary:hover {
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
  color: var(--white);
}

.button-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.button-secondary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.60);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.button-outline {
  background: transparent;
  color: var(--charcoal-700);
  border-color: var(--charcoal-100);
}

.button-outline:hover {
  background: var(--ivory-dark);
  border-color: var(--charcoal-300);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.button-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.70);
  color: var(--white);
  transform: translateY(-2px);
}

.button-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.button-lg {
  padding: 15px 32px;
  font-size: 1rem;
}

.button-icon {
  padding: 11px;
  border-radius: var(--r-full);
}

.button-row,
.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}


/* ============================================================
   13. TOUR CARDS
   ============================================================ */

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.tour-grid-featured .tour-card:first-child {
  grid-column: span 2;
}

.tour-grid-featured .tour-card:first-child .tour-card-media {
  aspect-ratio: 16 / 7;
}

.tour-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tour-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 123, 0, 0.18);
}

.tour-card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
}

.tour-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-media img {
  transform: scale(1.05);
}

.tour-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--navy);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-xs);
}

.tour-card-body {
  padding: 18px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tour-card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tour-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.3;
  font-weight: 700;
}

.tour-card-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tour-meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--ivory-dark);
  color: var(--charcoal-500);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.tour-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tour-card-copy {
  font-size: 0.84rem;
  color: var(--charcoal-500);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: auto;
  padding: 12px 20px;
  padding-top: 14px;
  margin-top: auto;
  gap: 12px;
}

.tour-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.tour-card-link:hover {
  color: var(--orange-dark);
  gap: 8px;
}

.tour-card-link.alt {
  font-size: 0.82rem;
  font-weight: 600;
}

.tour-card-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.tour-card-price small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--charcoal-300);
  display: block;
  margin-top: 2px;
}

.tour-card-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tour-card-highlights li {
  font-size: 0.78rem;
  color: var(--charcoal-500);
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.4;
}

.tour-card-highlights li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.tour-card-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--r-full);
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.tour-card-btn:hover {
  background: var(--navy-dark);
}


/* ============================================================
   14. EXPERIENCE CARDS
   ============================================================ */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.experience-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.experience-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(193, 105, 33, 0.22);
}

.experience-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.experience-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experience-card:hover .experience-card-media img {
  transform: scale(1.05);
}

.experience-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--copper);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-xs);
}

.experience-card-body {
  padding: 18px 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.experience-card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.experience-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}

.experience-card-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.experience-card-copy {
  font-size: 0.84rem;
  color: var(--charcoal-500);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.experience-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.experience-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  margin-top: auto;
  gap: 8px;
}

.experience-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--copper);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.experience-card-link:hover {
  color: var(--orange);
  gap: 8px;
}

.experience-card-link svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.experience-card-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.experience-card-btn:hover {
  background: var(--navy);
  color: var(--white);
}


/* ============================================================
   15. BLOG CARDS
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.blog-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.blog-card {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.06);
}

.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--orange);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-xs);
}

.blog-card-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--charcoal-300);
  font-weight: 500;
}

.blog-card-meta .sep {
  color: var(--charcoal-100);
}

.blog-card-copy {
  font-size: 0.88rem;
  color: var(--charcoal-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
  padding-bottom: 0;
}

.blog-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.blog-card-link:hover {
  color: var(--orange-dark);
  gap: 8px;
}


/* ============================================================
   16. FEATURE CARDS (WHY CHOOSE US)
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--ivory-dark);
  padding: 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--charcoal-500);
  line-height: 1.65;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 123, 0, 0.10);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 4px;
}

.feature-card-icon svg {
  width: 24px;
  height: 24px;
}


/* ============================================================
   17. STAT CARDS
   ============================================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.stats-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-value.orange {
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal-300);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Stat cards on dark background */
.section-dark .stat-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.10);
}

.section-dark .stat-value {
  color: var(--white);
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.55);
}


/* ============================================================
   18. TESTIMONIAL CARDS
   ============================================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 249, 245, 1));
  padding: 26px 28px 24px;
  border-radius: 24px;
  border: 1px solid rgba(35, 69, 114, 0.10);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(233, 154, 78, 0.22);
}

.testimonial-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.testimonial-source-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-google-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.testimonial-source-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-source-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-500);
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--r-full);
  background: rgba(35, 69, 114, 0.06);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.14rem;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 22px;
  position: relative;
  padding-top: 10px;
}

.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 0;
  font-size: 4.4rem;
  color: rgba(233, 154, 78, 0.18);
  line-height: 1;
  font-family: var(--font-display);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(35, 69, 114, 0.10);
  padding-top: 16px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(35, 69, 114, 0.18);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-person {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--charcoal-700);
  display: block;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--charcoal-300);
  display: block;
  margin-top: 1px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.86rem;
  line-height: 1;
}


/* ============================================================
   19. CERTIFICATION CARDS
   ============================================================ */

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.cert-card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  border-top: 3px solid var(--orange);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cert-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  padding-top: 12px;
}

.cert-card h3::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 10px;
}

.cert-card p {
  font-size: 0.88rem;
  color: var(--charcoal-500);
  line-height: 1.65;
}

.cert-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}


/* ============================================================
   20. GALLERY
   ============================================================ */

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--r-sm);
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-card-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-media img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 250, 241, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(14, 31, 54, 0.18);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 600;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-caption h3,
.gallery-caption p {
  color: var(--navy);
  text-shadow: none;
}

.gallery-caption h3 {
  margin-bottom: 4px;
}

.gallery-caption p {
  color: var(--muted);
}

.gallery-card:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--ivory-dark);
  color: var(--charcoal-700);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  font-family: var(--font-body);
}

.filter-button:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.filter-button.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}


/* ============================================================
   21. SPLIT LAYOUTS & COLLAGE
   ============================================================ */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-layout-wide {
  grid-template-columns: 3fr 2fr;
}

.split-layout-reverse > *:first-child {
  order: 1;
}

.split-layout-reverse > *:last-child {
  order: -1;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Collage visual stack */
.collage-stack {
  position: relative;
  min-height: 480px;
}

.collage-card {
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-card-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  z-index: 1;
}

.collage-card-top {
  position: absolute;
  top: 10%;
  right: 0;
  width: 42%;
  aspect-ratio: 1;
  z-index: 2;
}

.collage-card-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42%;
  aspect-ratio: 1;
  z-index: 2;
}

/* Info Stack */
.info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-xs);
  border-left: 3px solid var(--gold);
}

.info-card h3,
.info-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--charcoal-500);
  line-height: 1.6;
}

/* Section copy helper */
.section-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-copy h2 {
  margin-top: 6px;
}

.section-copy p {
  font-size: 1.02rem;
  color: var(--charcoal-500);
  line-height: 1.7;
}

.section-dark .section-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .section-copy h2 {
  color: var(--white);
}

.section-copy .eyebrow {
  margin-bottom: 0;
}


/* ============================================================
   22. CONTACT & ENQUIRY FORM
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-item-body h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal-700);
  margin-bottom: 2px;
  font-family: var(--font-body);
}

.contact-item-body p,
.contact-item-body a {
  font-size: 0.9rem;
  color: var(--charcoal-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item-body a:hover {
  color: var(--orange);
}

.contact-note {
  background: var(--ivory-dark);
  padding: 20px;
  border-radius: var(--r-md);
  margin-top: 24px;
}

.contact-note p {
  font-size: 0.88rem;
  color: var(--charcoal-500);
  line-height: 1.65;
}

.contact-note strong {
  color: var(--navy);
}

/* Enquiry Form */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.form-full {
  grid-column: span 2;
}

.form-message {
  grid-column: span 2;
}

.form-help {
  font-size: 0.78rem;
  color: var(--charcoal-300);
  line-height: 1.5;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label span,
label > .label-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal-700);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-med);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.14);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--charcoal-100);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C95A8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}


/* ============================================================
   23. CONVERSION PANEL
   ============================================================ */

.conversion-panel {
  background: var(--navy);
  padding: 52px 56px;
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.conversion-copy h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 10px;
}

.conversion-copy p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 1.02rem;
  max-width: 520px;
}

.conversion-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}


/* ============================================================
   23b. AFFILIATIONS CAROUSEL
   ============================================================ */

.affil-bar {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 60%, var(--ivory-dark) 100%);
  border-top: 1px solid var(--border-med);
  border-bottom: 1px solid var(--border-med);
  padding: 48px 0 44px;
  overflow: hidden;
}

.affil-header {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.affil-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 4px 14px;
  border-radius: var(--r-full);
  background: rgba(255, 123, 0, 0.08);
}

.affil-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.affil-viewport {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.affil-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: affil-scroll 32s linear infinite;
}

.affil-track:hover {
  animation-play-state: paused;
}

@keyframes affil-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.affil-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 100px;
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.affil-slide:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(255, 123, 0, 0.25);
  transform: translateY(-3px);
}

.affil-slide img {
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: none;
  transition: transform 0.35s ease;
}

@media (max-width: 768px) {
  .affil-slide {
    height: 84px;
    padding: 10px 18px;
  }
  .affil-slide img {
    height: 60px;
    max-width: 130px;
  }
}


/* ============================================================
   24. FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-brand-copy {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 260px;
}

.footer-recognition {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: rgba(255, 123, 0, 0.10);
  border: 1px solid rgba(255, 123, 0, 0.22);
  max-width: 280px;
}

.footer-recog-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-recog-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.footer-recog-text {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.7;
}

.footer-recog-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(233, 154, 78, 0.40);
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-recog-link:hover {
  color: var(--orange-light);
  text-decoration-color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

/* Brand block overrides inside footer (dark background) */
.site-footer .brand-name {
  color: var(--white);
}

.site-footer .brand-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer .brand-mark {
  background: none;
  border: none;
  height: 52px;
}

.footer-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-links button {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-family: var(--font-body);
  line-height: 1.5;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.footer-contact-item span:first-child {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
}

.footer-contact-item span:last-child,
.footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 20px 0;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
}


/* ============================================================
   25. TOUR / BLOG DETAIL PAGES
   ============================================================ */

.article-shell {
  background: var(--ivory);
  min-height: 100vh;
}

/* ── Article Header (replaces image hero) ── */
.article-header {
  background: var(--navy-dark);
  padding-top: calc(var(--header-h) + 52px);
  padding-bottom: 52px;
}

.article-header-inner {
  max-width: 800px;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 500;
}

.article-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-breadcrumb a:hover { color: var(--orange); }

.article-breadcrumb-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

.article-breadcrumb span:last-child {
  color: rgba(255,255,255,0.75);
}

.article-header .eyebrow {
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.article-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 720px;
}

.article-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 660px;
  margin-bottom: 28px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 0;
  margin-bottom: 20px;
}

.article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.60);
  padding: 0 14px;
}

.article-meta-item:first-child { padding-left: 0; }

.article-meta-item svg { opacity: 0.7; flex-shrink: 0; }

.article-meta-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
  display: inline-block;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Cover image below header */
.article-cover-image {
  background: var(--navy-dark);
  padding-bottom: 0;
}

.article-cover-image .container {
  max-width: 900px;
}

.article-cover-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  display: block;
}

/* Detail Hero (kept for tour detail pages) */
.detail-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 44px;
  background:
    radial-gradient(circle at top right, rgba(233, 154, 78, 0.16) 0%, rgba(233, 154, 78, 0) 34%),
    linear-gradient(180deg, rgba(245, 240, 232, 0.98) 0%, rgba(252, 249, 245, 1) 100%);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.detail-hero-copy {
  position: relative;
  z-index: 2;
  padding: 0;
  color: var(--charcoal);
  width: 100%;
}

.detail-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 10px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(35, 69, 114, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-xs);
}

.detail-breadcrumb a,
.detail-breadcrumb button,
.detail-breadcrumb span {
  color: var(--charcoal-500);
}

.detail-breadcrumb a:hover,
.detail-breadcrumb button:hover {
  color: var(--navy);
}

.detail-breadcrumb .sep {
  color: var(--charcoal-300);
}

.detail-breadcrumb .current {
  color: var(--navy);
}

.detail-hero-copy h1 {
  color: var(--navy-dark);
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  margin-bottom: 16px;
  max-width: 13ch;
  line-height: 0.98;
}

.detail-hero-summary {
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.8;
}

.detail-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}

.detail-meta-card {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(35, 69, 114, 0.10);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-xs);
}

.detail-meta-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.detail-meta-card div {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--navy);
}

.detail-hero-visual {
  min-width: 0;
}

.detail-hero-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .detail-hero-frame {
    aspect-ratio: 16 / 10;
    border-radius: 30px;
  }
}

.detail-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 43, 77, 0.04) 0%, rgba(22, 43, 77, 0.18) 100%);
  pointer-events: none;
}

.detail-hero-media {
  position: absolute;
  inset: 0;
}

.detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.detail-hero-overlay {
  display: none;
}

/* Detail Grid */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  padding-top: 52px;
  padding-bottom: 80px;
}

.detail-main {
  max-width: 740px;
}

/* Article Content */
.article-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-500);
  margin-bottom: 20px;
}

.article-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
}

.article-content h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content ul,
.article-content ol {
  padding-left: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-content ul li {
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: var(--charcoal-500);
  line-height: 1.7;
}

.article-content ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--orange);
  font-size: 0.5rem;
}

.article-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 20px;
  background: var(--ivory-dark);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--navy);
}

.article-section {
  margin-bottom: 48px;
}

.article-cta {
  background: var(--navy);
  color: var(--white);
  padding: 40px;
  border-radius: var(--r-lg);
  margin-top: 40px;
}

.article-cta h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
}

/* Detail list with orange dots */
.detail-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--charcoal-500);
  line-height: 1.6;
}

.detail-list li::before {
  content: '●';
  color: var(--orange);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* Sidebar Card */
.sidebar-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--header-h) + 20px);
  border-top: 3px solid var(--orange);
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
}

.sidebar-card-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.sidebar-card-price small {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal-300);
}

.sidebar-card-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sidebar-card-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.sidebar-card-meta-item .label {
  color: var(--charcoal-300);
  font-weight: 500;
}

.sidebar-card-meta-item .value {
  color: var(--charcoal-700);
  font-weight: 600;
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.sidebar-actions .button {
  width: 100%;
  justify-content: center;
}

/* Related cards */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.related-card {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.related-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-card:hover .related-card-media img {
  transform: scale(1.05);
}

.related-card-body {
  padding: 16px;
}

.related-card-body h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.related-card-body p {
  font-size: 0.8rem;
  color: var(--charcoal-300);
}

/* Highlight list */
.highlight-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--charcoal-500);
  line-height: 1.6;
}

.highlight-list li::before {
  content: '●';
  color: var(--orange);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.5em;
}

.highlight-list-cols {
  columns: 2;
  column-gap: 24px;
}

.highlight-list-cols li {
  break-inside: avoid;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

/* Itinerary */
.detail-itinerary {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.itinerary-day {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s ease;
}

.itinerary-day:last-child {
  border-bottom: none;
}

.itinerary-day:hover {
  background: var(--ivory);
}

.day-label {
  background: var(--navy);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  min-width: 80px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  height: fit-content;
  line-height: 1.5;
}

.itinerary-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
}

.itinerary-content p {
  font-size: 0.88rem;
  color: var(--charcoal-500);
  line-height: 1.65;
}

/* FAQ */
.detail-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 16px 20px;
  gap: 16px;
  transition: background 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.faq-question:hover {
  background: var(--ivory);
}

.faq-question h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-body);
  line-height: 1.4;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ivory-dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--charcoal-500);
  font-size: 1rem;
  font-weight: 300;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.faq-item.is-open .faq-icon {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 16px;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--charcoal-500);
  line-height: 1.7;
}

/* Inclusions / Exclusions */
.inclusions-exclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.inclusions-box,
.exclusions-box {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px;
  border: 1px solid var(--border);
}

.inclusions-box h4 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.exclusions-box h4 {
  color: var(--charcoal-700);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.inclusions-list,
.exclusions-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inclusions-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--charcoal-500);
}

.inclusions-list li::before {
  content: '✓';
  color: #2E7D32;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.exclusions-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--charcoal-500);
}

.exclusions-list li::before {
  content: '✕';
  color: #C62828;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ============================================================
   26. MINI GALLERY
   ============================================================ */

.mini-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mini-gallery-card {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.mini-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mini-gallery-card:hover img {
  transform: scale(1.06);
}

.mini-gallery-card figcaption {
  font-size: 0.78rem;
  color: var(--charcoal-300);
  padding: 10px 0;
  line-height: 1.4;
}


/* ============================================================
   27. TEAM & STACKED VISUALS
   ============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: var(--ivory-dark);
  border: 3px solid var(--border);
}

.team-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--charcoal-500);
  line-height: 1.6;
}

.stacked-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stacked-visuals img {
  border-radius: var(--r-md);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  width: 100%;
}


/* ============================================================
   28. TOAST, SCROLL-TOP, WHATSAPP FLOAT
   ============================================================ */

/* Toast notification */
.site-toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  font-weight: 600;
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-toast.toast-success {
  background: #1B5E20;
  border-left: 3px solid #4CAF50;
}

.site-toast.toast-error {
  background: #7F0000;
  border-left: 3px solid #EF5350;
}

/* Scroll-to-top button */
.scroll-top-button {
  position: fixed;
  bottom: 152px;
  right: 24px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-md);
}

.scroll-top-button.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-button:hover {
  background: var(--navy-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.scroll-top-button svg {
  width: 20px;
  height: 20px;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 86px;
  right: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.10);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.50);
  color: var(--white);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}


/* ============================================================
   29. REVEAL ANIMATIONS
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal]:nth-child(1) { transition-delay: 0s; }
[data-reveal]:nth-child(2) { transition-delay: 0.10s; }
[data-reveal]:nth-child(3) { transition-delay: 0.20s; }
[data-reveal]:nth-child(4) { transition-delay: 0.30s; }
[data-reveal]:nth-child(5) { transition-delay: 0.40s; }
[data-reveal]:nth-child(6) { transition-delay: 0.50s; }

/* Parent with data-reveal-group staggers children */
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal-group].is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
[data-reveal-group].is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
[data-reveal-group].is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
[data-reveal-group].is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
[data-reveal-group].is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
[data-reveal-group].is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }
[data-reveal-group].is-visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }
[data-reveal-group].is-visible > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.56s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-group] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media img {
    animation: none;
  }

  .hero-slide {
    transition: none;
  }

  .marquee-track {
    animation: none;
  }

  .page.active {
    animation: none;
  }

  .whatsapp-float .pulse {
    animation: none;
  }
}


/* ============================================================
   30. ARTICLE META & TAGS
   ============================================================ */

/* article-meta-row and article-tags defined in article-header block above */

/* Rating Stars */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.95rem;
}


/* ============================================================
   31. EMPTY STATE
   ============================================================ */

.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--charcoal-300);
}

.empty-state svg {
  width: 56px;
  height: 56px;
  color: var(--charcoal-100);
  margin: 0 auto 16px;
  display: block;
}

.empty-state h3 {
  font-size: 1.2rem;
  color: var(--charcoal-500);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 0.9rem;
  max-width: 360px;
  margin-inline: auto;
}


/* ============================================================
   32. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* — Large desktop: container fits — */
@media (min-width: 1241px) {
  .container {
    padding-inline: 40px;
  }
}

/* — 1024px: Hide desktop nav, show hamburger — */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-phone-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    display: none;
  }

  .hero-home {
    align-items: center;
  }

  .hero-copy {
    max-width: 660px;
  }

  .conversion-panel {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .conversion-actions {
    flex-shrink: unset;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .detail-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero-frame {
    aspect-ratio: 16 / 10;
  }

  .sidebar-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* — 900px: Adjust split layouts — */
@media (max-width: 900px) {
  .split-layout,
  .split-layout-wide,
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-layout-reverse > *:first-child {
    order: unset;
  }

  .split-layout-reverse > *:last-child {
    order: unset;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .collage-stack {
    min-height: 360px;
  }

  .inclusions-exclusions {
    grid-template-columns: 1fr;
  }

  .highlight-list-cols {
    columns: 1;
  }
}

/* — 768px: Single column, stack everything — */
@media (max-width: 768px) {
  .section-shell {
    padding: 64px 0;
  }

  /* Hero */
  .hero-copy h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-layout {
    padding-bottom: 60px;
  }

  /* Page hero */
  .page-hero {
    min-height: 380px;
  }

  .page-hero-copy {
    padding-bottom: 48px;
  }

  /* Grids → single column */
  .tour-grid,
  .experience-grid,
  .experience-grid-wide,
  .blog-grid,
  .blog-grid-wide,
  .feature-grid,
  .cert-grid,
  .testimonial-grid,
  .team-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .tour-grid-featured .tour-card:first-child {
    grid-column: span 1;
  }

  .tour-grid-featured .tour-card:first-child .tour-card-media {
    aspect-ratio: 16 / 10;
  }

  .stats-grid,
  .stats-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Conversion */
  .conversion-panel {
    padding: 32px 24px;
  }

  /* Gallery */
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Detail page */
  .detail-hero {
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 30px;
  }

  .detail-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-hero-copy h1 {
    max-width: 14ch;
  }

  .detail-meta {
    grid-template-columns: 1fr;
  }

  .detail-hero-frame {
    aspect-ratio: 4 / 3;
  }

  /* Article header mobile */
  .article-header {
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 36px;
  }

  .article-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  .article-meta-row { gap: 4px 0; }

  .article-meta-sep { display: none; }

  .article-meta-item {
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .article-meta-item:first-child { padding-left: 0; }

  .article-cover-image img {
    max-height: 260px;
    border-radius: 10px 10px 0 0;
  }

  /* Stacked visuals */
  .stacked-visuals {
    grid-template-columns: 1fr;
  }

  /* Collage */
  .collage-stack {
    min-height: 260px;
  }
}

/* — 540px: Full-width buttons, smaller hero, single col form — */
@media (max-width: 540px) {
  /* Typography scale down */
  h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Hero */
  .hero-copy h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  /* Buttons */
  .button-row,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button-row .button,
  .form-actions .button {
    width: 100%;
    justify-content: center;
  }

  /* Form */
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-full,
  .form-message {
    grid-column: span 1;
  }

  /* Header height */
  :root {
    --header-h: 68px;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-mark {
    width: auto;
    height: 40px;
  }

  /* Section shell */
  .section-shell {
    padding: 48px 0;
  }

  /* Gallery */
  .gallery-preview-grid,
  .gallery-grid,
  .mini-gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats-grid,
  .stats-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-value {
    font-size: 2.2rem;
  }

  /* Conversion panel */
  .conversion-panel {
    padding: 28px 20px;
    border-radius: var(--r-lg);
  }

  /* Toast */
  .site-toast {
    left: 16px;
    right: 16px;
    bottom: 80px;
    max-width: none;
  }

  /* Sidebar card on mobile */
  .sidebar-card {
    padding: 20px;
  }

  /* Article CTA */
  .article-cta {
    padding: 28px 20px;
  }

  /* Collage — hide complex layout */
  .collage-card-top,
  .collage-card-bottom {
    display: none;
  }

  .collage-card-large {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .collage-stack {
    min-height: auto;
  }

  /* Mobile drawer width */
  .mobile-drawer {
    width: 100vw;
  }
}

/* — Mobile: affiliation bar, cards, hero — */
@media (max-width: 600px) {
  /* Affiliation bar */
  .affil-bar { padding: 32px 0 28px; }
  .affil-title { font-size: 1.3rem; }
  .affil-slide { height: 72px; padding: 8px 14px; }
  .affil-slide img { height: 50px; max-width: 110px; }

  /* Tour & experience cards — full-width single column */
  .tour-grid,
  .tour-grid-compact,
  .experience-grid,
  .experience-grid-wide,
  .blog-grid,
  .blog-grid-wide { grid-template-columns: 1fr; gap: 16px; }

  /* Cards footer buttons stack vertically */
  .tour-card-footer,
  .experience-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 16px;
  }
  .tour-card-btn,
  .experience-card-btn { text-align: center; justify-content: center; }
  .tour-card-link,
  .experience-card-link { justify-content: center; }

  /* Hero slider */
  .hero-home { min-height: 92vh; }
  .hero-layout { padding-top: calc(var(--header-h) + 24px); padding-bottom: 64px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .button { width: 100%; justify-content: center; }
  .hero-arrow { width: 40px; height: 40px; font-size: 1.5rem; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  .hero-dots { bottom: 16px; }

  /* Section headings */
  .section-heading { padding: 0 4px; }
  .section-shell { padding: 48px 0; }

  /* Footer recognition */
  .footer-recognition { max-width: 100%; }

  /* Destination explorer tabs scroll */
  .iex-tabs { flex-wrap: wrap; gap: 6px; }
  .iex-tab { font-size: 0.78rem; padding: 6px 12px; }

  /* Collections grid */
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card-wide { grid-column: span 1; }

  /* About stats */
  .about-stats-bar { flex-wrap: wrap; gap: 16px; }
  .about-team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* — Very small phones (≤380px) — */
@media (max-width: 380px) {
  .about-team-grid { grid-template-columns: 1fr; }
  .affil-slide img { height: 42px; max-width: 90px; }
  .hero-copy h1 { font-size: 1.7rem; }
}

/* — Print styles — */
@media print {
  .site-header,
  .site-footer,
  .whatsapp-float,
  .scroll-top-button,
  .site-toast,
  .nav-toggle,
  .mobile-overlay,
  .mobile-drawer {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .page {
    display: block !important;
  }

  a {
    color: #234572;
    text-decoration: underline;
  }
}

/* =========================================================
   ADDITIONAL COMPONENTS
   ========================================================= */

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Required asterisk */
label em { color: var(--orange); font-style: normal; margin-left: 2px; }

/* Info stack grid (4-up) */
.info-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* Process grid — 4-step how it works */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  counter-reset: process;
}
.process-step {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--r-md);
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.85;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 0 10px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--charcoal-500);
  margin: 0;
  line-height: 1.65;
}

/* Form section title divider */
.form-section-title {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 0 4px;
  border-bottom: 1px solid var(--border);
  margin-top: 8px;
}
.form-section-title:first-child { margin-top: 0; }

/* ============================================================
   INBOUND DESTINATION EXPLORER
   ============================================================ */
.dest-explorer-section { background: var(--ivory); }

.dest-explorer-heading { margin-bottom: 40px; }
.dest-explorer-heading h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }

.dest-explorer {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}

/* ── Tabs (left column) ── */
.iex-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 100px;
}

.iex-tab {
  background: #fff;
  border: 1.5px solid var(--navy);
  border-radius: 50px;
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.iex-tab:hover {
  background: var(--navy);
  color: #fff;
}

.iex-tab.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,123,0,0.35);
}

/* ── Panel (right column) ── */
.iex-panel { display: flex; flex-direction: column; gap: 20px; }

/* ── Slider ── */
.iex-slider {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy-dark);
}

.iex-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.iex-slide.is-active { opacity: 1; }

.iex-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.iex-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(35,69,114,0.65);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.iex-arrow:hover { background: var(--orange); }
.iex-prev { left: 14px; }
.iex-next { right: 14px; }

.iex-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}

.iex-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.iex-dot.is-active {
  background: var(--orange);
  transform: scale(1.4);
}

/* ── Info ── */
.iex-info {
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.iex-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

.iex-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--charcoal-500);
  margin: 0;
}

/* ── Mobile ── */
@media (max-width: 860px) {
  .dest-explorer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .iex-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
    position: static;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .iex-tabs::-webkit-scrollbar { display: none; }

  .iex-tab {
    flex-shrink: 0;
    padding: 9px 16px;
    font-size: 0.82rem;
  }

  .iex-slider { aspect-ratio: 4 / 3; border-radius: 10px; }

  .iex-arrow { width: 34px; height: 34px; font-size: 1.3rem; }
}

/* FAQ list / accordion */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  cursor: pointer;
  gap: 16px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  user-select: none;
  transition: color 0.2s ease;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
}
.faq-question:hover { color: var(--navy); }
.faq-question svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--charcoal-300);
  transition: transform 0.25s ease, color 0.2s ease;
}
.faq-item.is-open .faq-question { color: var(--navy); }
.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
  color: var(--orange);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 0 4px 20px;
  color: var(--charcoal-500);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Breadcrumb in page hero */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.breadcrumb button,
.breadcrumb a {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  font-size: inherit;
  transition: color 0.2s ease;
}
.breadcrumb button:hover,
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span[aria-current="page"] { color: rgba(255,255,255,0.90); }
.breadcrumb > span:not([aria-current]) { color: rgba(255,255,255,0.40); }

/* Contact note blocks */
.contact-note {
  background: var(--ivory-dark);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  margin-top: 20px;
}
.contact-note h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 6px;
}
.contact-note p {
  font-size: 0.88rem;
  color: var(--charcoal-500);
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .info-stack-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 0.93rem; }
}


/* ── Small phone: hide CTA pill, keep hamburger ── */
@media (max-width: 480px) {
  .nav-cta { display: none; }
  .nav-phone-cta { display: none; }
  .nav-toggle { width: 40px; height: 40px; }
  .header-inner { padding-inline: 16px; }
}

/* ============================================================
   TRAVEL COLLECTIONS PAGE
   ============================================================ */
.page-hero-collections .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 22, 39, 0.88) 0%, rgba(11, 22, 39, 0.68) 42%, rgba(11, 22, 39, 0.28) 100%),
    linear-gradient(180deg, rgba(233, 154, 78, 0.16) 0%, rgba(11, 22, 39, 0) 52%);
}

.page-hero-collections .page-hero-copy {
  max-width: 760px;
}

.page-hero-collections .page-hero-copy > p:last-of-type {
  display: none;
}

.collections-hero-summary {
  max-width: 64ch;
}

.travel-collections-intro {
  padding-top: 0;
}

.collections-salon {
  position: relative;
  z-index: 2;
  margin-top: -84px;
  padding: 40px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  gap: 32px;
  border-radius: 30px;
  border: 1px solid rgba(233, 154, 78, 0.26);
  background: linear-gradient(145deg, rgba(252, 249, 245, 0.98), rgba(245, 240, 232, 0.95));
  box-shadow: var(--shadow-lg);
}

.collections-salon-copy h2,
.collections-planning-copy h2 {
  margin-top: 8px;
}

.collections-salon-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.collections-salon-points article,
.collections-planning-steps article {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(35, 69, 114, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-xs);
}

.collections-salon-points strong,
.collections-planning-steps strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  color: var(--navy);
}

.collections-salon-points span,
.collections-planning-steps p {
  font-size: 0.88rem;
  color: var(--charcoal-500);
  line-height: 1.65;
}

.collections-link-rail {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.collection-link-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 24px;
  border: 1px solid rgba(35, 69, 114, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 249, 245, 0.98));
  box-shadow: var(--shadow-sm);
}

.collection-link-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
}

.collection-link-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.collection-link-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.collection-link-card p {
  font-size: 0.92rem;
}

.collection-link-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.travel-collection-showcase {
  background: linear-gradient(180deg, var(--cream) 0%, rgba(252, 249, 245, 0.96) 100%);
}

.collections-route-note {
  margin-top: 32px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(22, 43, 77, 0.98), rgba(35, 69, 114, 0.94));
  box-shadow: var(--shadow-lg);
}

.collections-route-note strong {
  color: var(--white);
}

.collections-route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collections-route-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.travel-collections-grid {
  margin-top: 34px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}

.travel-collections-grid .tour-card {
  border: 1px solid rgba(233, 154, 78, 0.24);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 249, 245, 0.98));
  box-shadow: 0 20px 44px rgba(22, 43, 77, 0.10);
}

.travel-collections-grid .tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(22, 43, 77, 0.16);
}

.travel-collections-grid .tour-card-media {
  aspect-ratio: 4 / 3;
}

.travel-collections-grid .tour-card-tag {
  top: 16px;
  left: 16px;
  background: rgba(16, 34, 59, 0.92);
}

.travel-collections-grid .tour-card-body {
  padding: 24px 24px 22px;
  gap: 12px;
}

.travel-collections-grid .tour-card-body h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
}

.travel-collections-grid .tour-card-subtitle {
  color: var(--orange-dark);
  letter-spacing: 0.12em;
}

.travel-collections-grid .tour-card-copy {
  font-size: 0.92rem;
  -webkit-line-clamp: 3;
}

.travel-collections-grid .tour-card-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(35, 69, 114, 0.12);
}

.collections-planning-panel {
  padding: 34px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  border-radius: 30px;
  border: 1px solid rgba(35, 69, 114, 0.08);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(245, 240, 232, 0.96));
  box-shadow: var(--shadow-sm);
}

.collections-planning-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.collections-planning-steps strong {
  color: var(--orange-dark);
}

.collections-legacy-shell {
  display: none;
}

@media (max-width: 960px) {
  .collections-salon,
  .collections-planning-panel {
    grid-template-columns: 1fr;
  }

  .collections-link-rail,
  .collections-planning-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .collections-salon {
    margin-top: -56px;
    padding: 24px 22px;
  }

  .collections-salon-points {
    grid-template-columns: 1fr;
  }

  .collections-link-card,
  .collections-planning-panel {
    padding: 24px 22px;
  }

  .collections-route-note {
    padding: 18px;
  }

  .travel-collections-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ============================================================
   ABOUT PAGE ENHANCEMENTS
   ============================================================ */

/* Stats bar */
.about-stats-bar {
  background: var(--navy);
  padding: 28px 0;
}

.about-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}

.about-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Badges in brand story */
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-badge {
  background: var(--ivory-dark, #f0ece6);
  border: 1px solid var(--border, #e0d8cc);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.about-story-visual {
  position: relative;
}

.about-story-frame {
  position: relative;
  margin: 0;
  min-height: 540px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #efe6db 0%, #ded4c8 100%);
  box-shadow: 0 28px 60px rgba(24, 52, 94, 0.18);
}

.about-story-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.about-story-frame img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-story-frame figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(15, 35, 62, 0.12);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
}

.founder-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(252, 249, 245, 0.66) 0%, #ffffff 50%, rgba(252, 249, 245, 0.46) 100%);
}

.founder-section::before {
  content: "";
  position: absolute;
  top: -88px;
  right: 5%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.12) 0%, rgba(255, 123, 0, 0) 72%);
  pointer-events: none;
}

.founder-layout {
  gap: 72px;
  align-items: center;
}

.founder-visual {
  position: relative;
}

.founder-portrait {
  position: relative;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  background: #eadfce;
  box-shadow: 0 24px 60px rgba(24, 52, 94, 0.18);
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 32px rgba(15, 35, 62, 0.14);
}

.founder-badge strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--navy);
}

.founder-badge span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.founder-copy h2 {
  max-width: 14ch;
}

.founder-copy p {
  max-width: 62ch;
}

.founder-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.founder-focus-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(35, 69, 114, 0.12);
  box-shadow: 0 10px 22px rgba(15, 35, 62, 0.06);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

/* Values grid */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-value-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px 32px;
  box-shadow: 0 2px 16px rgba(35,69,114,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(35,69,114,0.12);
}

.about-value-icon {
  font-size: 1.4rem;
  color: var(--orange);
  line-height: 1;
}

.about-value-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0;
}

.about-value-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--charcoal-500);
  margin: 0;
}

/* Full-width image band */
.about-image-band {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.about-band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,43,77,0.72) 0%, rgba(22,43,77,0.45) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.about-band-quote {
  max-width: 680px;
  text-align: center;
}

.about-band-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 16px;
}

.about-band-quote span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Team grid */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.about-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.about-team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 24px rgba(35,69,114,0.14);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-team-card:hover .about-team-photo {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(255,123,0,0.25);
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-team-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0;
}

.about-team-role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.about-team-card p {
  font-size: 0.87rem;
  line-height: 1.68;
  color: var(--charcoal-500);
  margin: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .about-story-frame,
  .about-story-frame img {
    min-height: 460px;
  }

  .founder-layout {
    gap: 40px;
  }

  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-team-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}

@media (max-width: 600px) {
  .about-stats-inner { gap: 0; }
  .about-stat { padding: 12px 20px; }
  .about-stat-divider { display: none; }
  .about-story-frame,
  .about-story-frame img {
    min-height: 340px;
    border-radius: 22px;
  }
  .about-story-frame::after,
  .founder-portrait::after {
    inset: 12px;
    border-radius: 16px;
  }
  .about-story-frame figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 12px 14px;
    font-size: 0.8rem;
  }
  .about-values-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .about-team-photo { width: 120px; height: 120px; }
  .about-image-band { height: 280px; }
  .about-band-quote p { font-size: 1.2rem; }
  .founder-portrait {
    border-radius: 24px;
  }
  .founder-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .founder-focus-list {
    gap: 10px;
  }
  .founder-focus-item {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   EXPERIENCES PAGE
   ============================================================ */

body.has-lightbox-open {
  overflow: hidden;
}

.page-hero-experiences .page-hero-overlay {
  background:
    radial-gradient(circle at top right, rgba(233, 154, 78, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(22, 43, 77, 0.46) 0%, rgba(22, 43, 77, 0.68) 55%, rgba(22, 43, 77, 0.84) 100%);
}

.experiences-intro-shell {
  padding-top: 84px;
  padding-bottom: 48px;
  background: linear-gradient(180deg, var(--white) 0%, rgba(252, 249, 245, 0.96) 100%);
}

.experiences-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.experiences-intro h2 {
  max-width: 760px;
  margin: 14px auto 16px;
  line-height: 1.08;
}

.experiences-intro p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.experiences-intro-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.experiences-story-shell {
  padding-top: 24px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 18%, var(--ivory) 100%);
}

.experience-story-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.experience-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 240, 232, 0.94) 100%);
  border: 1px solid rgba(35, 69, 114, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.experience-story::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--gold));
}

.experience-story:nth-child(even) {
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.94) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.experience-story-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 520px;
  min-width: 0;
  align-self: center;
}

.experience-story-media {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  width: 100%;
}

.experience-story-reverse .experience-story-copy {
  grid-column: 2;
}

.experience-story-reverse .experience-story-media {
  grid-column: 1;
}

.experience-story-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--r-full);
  background: rgba(255, 123, 0, 0.09);
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-story h3 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.06;
  margin: 18px 0 16px;
}

.experience-story p {
  font-size: 1rem;
  line-height: 1.86;
  color: var(--charcoal-500);
}

.experience-story-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: clamp(280px, 28vw, 360px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(240, 232, 220, 0.92) 0%, rgba(252, 249, 245, 0.98) 100%);
  box-shadow: var(--shadow-md);
}

.experience-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(252, 249, 245, 0.94) 0%, rgba(252, 249, 245, 0.18) 58%, transparent 100%);
  transform-origin: left center;
  transform: scaleX(1);
  transition: transform 0.85s ease;
}

.experience-story.is-visible .experience-story-media::after {
  transform: scaleX(0);
}

.experience-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s ease;
}

.experience-story:hover .experience-story-media img {
  transform: scale(1.08);
}

.experience-masonry-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 88px;
  gap: 18px;
  margin-top: 36px;
}

.experience-masonry-card {
  grid-column: span 3;
  grid-row: span 3;
  min-height: 0;
}

.experience-masonry-card-large {
  grid-column: span 6;
  grid-row: span 5;
}

.experience-masonry-card-wide {
  grid-column: span 6;
  grid-row: span 3;
}

.experience-masonry-card-tall {
  grid-row: span 5;
}

.experience-masonry-button {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.experience-masonry-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 43, 77, 0.04) 0%, rgba(22, 43, 77, 0.60) 100%);
  pointer-events: none;
}

.experience-masonry-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.experience-masonry-button:hover img,
.experience-masonry-button:focus-visible img {
  transform: scale(1.08);
}

.experience-masonry-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 9px 14px;
  border-radius: 16px;
  background: rgba(252, 249, 245, 0.88);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(14, 31, 54, 0.14);
  backdrop-filter: blur(8px);
}

.experiences-review-shell {
  background: linear-gradient(180deg, var(--white) 0%, rgba(252, 249, 245, 0.98) 100%);
}

.experience-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.experience-review-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 249, 245, 1));
  border: 1px solid rgba(35, 69, 114, 0.10);
  border-radius: 24px;
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.experience-review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(233, 154, 78, 0.24);
}

.experience-review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
}

.experience-review-card p {
  margin: 16px 0 18px;
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.72;
  color: var(--navy);
}

.experience-review-meta {
  padding-top: 16px;
  border-top: 1px solid rgba(35, 69, 114, 0.10);
}

.experience-review-meta strong {
  display: block;
  color: var(--charcoal-700);
  font-size: 0.96rem;
}

.experience-review-meta span {
  display: block;
  margin-top: 4px;
  color: var(--charcoal-300);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-affiliation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}

.experience-affiliation-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(35, 69, 114, 0.10);
  border-radius: 22px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.experience-affiliation-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(255, 123, 0, 0.22);
}

.experience-affiliation-logo img {
  width: 100%;
  max-width: 132px;
  height: 58px;
  object-fit: contain;
}

.experience-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 16, 29, 0.76);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.experience-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.experience-lightbox-dialog {
  position: relative;
  width: min(960px, 100%);
  padding: 24px 24px 18px;
  border-radius: 28px;
  background: rgba(252, 249, 245, 0.98);
  box-shadow: var(--shadow-xl);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.experience-lightbox.is-open .experience-lightbox-dialog {
  transform: translateY(0) scale(1);
}

.experience-lightbox-image {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 20px;
  background: var(--ivory-dark);
}

.experience-lightbox-caption {
  margin-top: 14px;
  text-align: center;
  color: var(--navy);
  font-size: 0.96rem;
}

.experience-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.22s ease, transform 0.22s ease;
}

.experience-lightbox-close:hover {
  background: var(--navy-light);
  transform: scale(1.04);
}

@media (max-width: 1100px) {
  .experience-story {
    gap: 40px;
  }

  .experience-masonry-grid {
    grid-auto-rows: 76px;
  }
}

@media (max-width: 900px) {
  .experiences-intro-shell {
    padding-top: 68px;
  }

  .experience-story {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px;
  }

  .experience-story-copy,
  .experience-story-reverse .experience-story-copy {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
  }

  .experience-story-media,
  .experience-story-reverse .experience-story-media {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .experience-masonry-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 76px;
  }

  .experience-masonry-card {
    grid-column: span 3;
  }

  .experience-masonry-card-large,
  .experience-masonry-card-wide {
    grid-column: span 6;
  }

  .experience-masonry-card-tall {
    grid-column: span 3;
    grid-row: span 4;
  }
}

@media (max-width: 640px) {
  .experiences-intro-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .experience-story-list {
    gap: 20px;
  }

  .experience-story {
    padding: 22px;
    border-radius: 24px;
  }

  .experience-story h3 {
    font-size: 1.9rem;
  }

  .experience-story-media {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
  }

  .experience-story-media img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .experience-masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .experience-masonry-card,
  .experience-masonry-card-large,
  .experience-masonry-card-wide,
  .experience-masonry-card-tall {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }

  .experience-masonry-button {
    min-height: 220px;
  }

  .experience-affiliation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-lightbox {
    padding: 14px;
  }

  .experience-lightbox-dialog {
    padding: 16px 16px 14px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .experience-story-media::after,
  .experience-story-media img,
  .experience-masonry-button img,
  .experience-review-card,
  .experience-affiliation-logo,
  .experience-lightbox,
  .experience-lightbox-dialog,
  .experience-lightbox-close {
    transition: none;
  }
}

/* ═══════════════════════════════════════════
   BROCHURE SECTION
═══════════════════════════════════════════ */
.brochure-section {
  overflow: hidden;
}

/* --- Highlight Cards --- */
.brochure-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 56px;
}

.brochure-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(35, 69, 114, 0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.brochure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(35, 69, 114, 0.16);
}

.brochure-card-image {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.brochure-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.brochure-card:hover .brochure-card-image img {
  transform: scale(1.06);
}

.brochure-card-body {
  padding: 20px 22px 24px;
  flex: 1;
}

.brochure-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.35;
}

.brochure-card-body p {
  font-size: 0.875rem;
  color: #5a6a80;
  line-height: 1.65;
  margin: 0;
}

/* --- Image Preview Grid --- */
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 52px;
}

.brochure-grid-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-dark);
}

.brochure-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, opacity 0.3s ease;
  opacity: 0.92;
}

.brochure-grid-item:hover img {
  transform: scale(1.07);
  opacity: 1;
}

/* --- CTA Actions --- */
.brochure-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.brochure-actions .button {
  min-width: 180px;
  text-align: center;
  text-decoration: none;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .brochure-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .brochure-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0 40px;
  }

  .brochure-card-image {
    height: 170px;
  }

  .brochure-card-body {
    padding: 16px 18px 20px;
  }

  .brochure-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0 0 40px;
  }

  .brochure-actions {
    gap: 12px;
  }

  .brochure-actions .button {
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .brochure-highlights {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 28px 0 36px;
  }

  .brochure-card-image {
    height: 200px;
  }

  .brochure-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 0 0 32px;
  }

  .brochure-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .brochure-actions .button {
    min-width: unset;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brochure-card,
  .brochure-card-image img,
  .brochure-grid-item img {
    transition: none;
  }
}

/* ═══════════════════════════════════════════
   IMAGE LIGHTBOX (Gallery + Brochure zoom)
═══════════════════════════════════════════ */
.gallery-card-media,
.brochure-grid-item,
.mini-gallery-card {
  cursor: zoom-in;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 28, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.image-lightbox.is-open {
  display: flex;
  opacity: 1;
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.image-lightbox-figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.image-lightbox-img {
  max-width: min(1200px, 90vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  display: block;
  animation: lightboxZoomIn 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes lightboxZoomIn {
  from {
    transform: scale(0.88);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.image-lightbox-caption {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 90vw;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.image-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.08);
}

.image-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.image-lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.24);
}

.image-lightbox-prev { left: 18px; }
.image-lightbox-next { right: 18px; }

.image-lightbox-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .image-lightbox {
    padding: 20px 16px;
  }

  .image-lightbox-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .image-lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }

  .image-lightbox-prev { left: 8px; }
  .image-lightbox-next { right: 8px; }

  .image-lightbox-img {
    max-height: 70vh;
    max-width: 95vw;
  }

  .image-lightbox-caption {
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-lightbox,
  .image-lightbox-img,
  .image-lightbox-close,
  .image-lightbox-arrow {
    animation: none;
    transition: none;
  }
}