/* =====================================================================
   VellyWay v2.0.1 — Design-critique fixes (loaded separately to keep
   the large style.css stable on sync-limited mounts).
   Enqueued via functions.php after the main stylesheet.
   ===================================================================== */

/* Drawer leak fix — hide mobile drawer + close button until opened */
.vw-drawer[aria-hidden="true"],
.vw-drawer:not([aria-hidden="false"]) { display: none !important; }
.vw-drawer[aria-hidden="false"] { display: block; }
.vw-drawer-close { display: none; }
.vw-drawer[aria-hidden="false"] .vw-drawer-close { display: block; }

/* Brand-house grid — homepage section 2 */
.vw-brand-house { background: var(--wp--preset--color--vw-off-white); }
.vw-brand-card {
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.vw-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.06);
}
.vw-brand-card a { text-decoration: none; }
.vw-brand-card a:hover { text-decoration: underline; }

/* Funnel-portal CTA buttons — unified pill style, accent via currentColor */
.vw-funnel-portal .vw-btn--glass {
  background: transparent !important;
  border: 1px solid currentColor;
  border-radius: 9999px !important;
  padding: .65rem 1.4rem !important;
}

/* a11y: terracotta is never body text on white — fall back to dark terracotta */
.has-vw-terracotta-color:not(.wp-element-button) {
  color: var(--wp--preset--color--vw-terracotta-dark) !important;
}

/* ── Section Spacing ────────────────────────────────────────── */
.vw-section {
  padding: 3.5rem 0 !important; /* Reduced from 5rem (80px) to prevent excessive spacing */
}
.vw-section--compact {
  padding: 1.75rem 0 !important;
}
main .wp-block-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ── Utility Nav Hover ───────────────────────────────────────── */
.vw-nav-utility:hover {
  color: var(--wp--preset--color--vw-terracotta) !important;
}

/* ── Thinner & Parallax Hero ────────────────────────────────── */
.vw-hero.wp-block-cover {
  min-height: 480px !important;
  height: 65vh !important;
  max-height: 600px !important;
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}
@media (min-width: 769px) {
  .vw-hero.has-parallax img.wp-block-cover__image-background {
    background-attachment: fixed !important;
    position: fixed !important;
    transform: translateZ(0);
    will-change: transform;
  }
}
@media (max-width: 768px) {
  .vw-hero.wp-block-cover {
    min-height: 400px !important;
    height: auto !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

/* ── Brand House Grid & Carousel ────────────────────────────── */
@media (min-width: 769px) {
  .vw-brand-house__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
  }
  .vw-brand-house__grid > .wp-block-column {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: auto !important;
  }
}
@media (max-width: 768px) {
  .vw-brand-house__grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 1.25rem !important;
    padding: 0.5rem 1rem 1.5rem !important;
    margin: 0 -1rem !important;
  }
  .vw-brand-house__grid > .wp-block-column {
    flex: 0 0 82vw !important;
    max-width: 82vw !important;
    margin: 0 !important;
    scroll-snap-align: center !important;
    width: auto !important;
  }
  /* Hide scrollbar but keep scroll behavior */
  .vw-brand-house__grid::-webkit-scrollbar {
    display: none;
  }
  .vw-brand-house__grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

/* ── Featured Stories 3-Column Grid & Carousel ───────────────── */
@media (min-width: 769px) {
  .vw-card-grid.wp-block-post-template {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
  }
  .vw-card-grid.wp-block-post-template > li {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  .vw-card-grid.wp-block-post-template {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 1.25rem !important;
    padding: 0.5rem 1rem 1.5rem !important;
    margin: 0 -1rem !important;
  }
  .vw-card-grid.wp-block-post-template > li {
    flex: 0 0 82vw !important;
    max-width: 82vw !important;
    margin: 0 !important;
    scroll-snap-align: center !important;
  }
  /* Hide scrollbar but keep scroll behavior */
  .vw-card-grid.wp-block-post-template::-webkit-scrollbar {
    display: none;
  }
  .vw-card-grid.wp-block-post-template {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

}

/* ==========================================================================
   AuraOS — CYBER DARK DESIGN SYSTEM STYLES
   ========================================================================== */
.aos-page {
  background-color: #09070f;
  color: #e2e0e7;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.aos-section {
  padding: 6rem 0;
  background-color: #09070f;
  position: relative;
}
.aos-section--light {
  background-color: #0d0a17;
}
.aos-section--border {
  border-top: 1px solid rgba(168, 85, 247, 0.1);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}
.aos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.aos-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.25);
  padding: 6px 16px;
  border-radius: 9999px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.aos-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.aos-title em {
  font-style: italic;
  font-weight: 300;
  color: #a855f7;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}
.aos-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  color: #9ca3af;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 3rem;
}
.aos-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
.aos-btn--cyber {
  background-color: #a855f7;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}
.aos-btn--cyber:hover {
  background-color: #b55fe6;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
}
.aos-btn--outline {
  background-color: transparent;
  color: #e2e0e7 !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.aos-btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #fff;
  transform: translateY(-2px);
}
/* Hero Grid */
.aos-hero {
  padding: 8rem 0;
  position: relative;
}
.aos-hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.aos-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.aos-hero-actions {
  display: flex;
  gap: 1.5rem;
}
/* System Terminal */
.aos-system-terminal {
  background: #06040a;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 30px rgba(168, 85, 247, 0.05);
  overflow: hidden;
  font-family: monospace;
}
.aos-terminal-header {
  background: #0f0d16;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 6px;
}
.aos-terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.aos-terminal-dot--red { background: #ef4444; }
.aos-terminal-dot--yellow { background: #eab308; }
.aos-terminal-dot--green { background: #22c55e; }
.aos-terminal-title {
  color: #6b7280;
  font-size: 0.75rem;
  margin-left: 12px;
}
.aos-terminal-body {
  padding: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aos-code-line {
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.5;
}
.aos-code-prompt {
  color: #a855f7;
  margin-right: 8px;
}
.aos-code-green { color: #22c55e; }
.aos-code-purple { color: #a855f7; }
.aos-code-cyber {
  color: #c084fc;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}
@keyframes code-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.aos-code-line--flicker {
  animation: code-flicker 2s infinite ease-in-out;
}
/* Features Grid */
.aos-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}
.aos-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
}
.aos-section-desc {
  color: #9ca3af;
}
.aos-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.aos-feature-card {
  background: #0d0a17;
  border: 1px solid rgba(168, 85, 247, 0.1);
  padding: 2.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.aos-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.05);
}
.aos-feature-icon {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}
.aos-feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}
.aos-feature-desc {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}
/* SDK Mock Grid */
.aos-sdk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.aos-sdk-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
}
.aos-sdk-desc {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.aos-sdk-list {
  padding-left: 1.25rem;
  color: #9ca3af;
  margin: 0;
}
.aos-sdk-list li {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.aos-sdk-list strong {
  color: #fff;
}
/* Code Window */
.aos-code-window {
  background: #050308;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.aos-code-header {
  background: #0d0a14;
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.aos-code-file {
  font-family: monospace;
  font-size: 0.75rem;
  color: #9ca3af;
}
.aos-code-lang {
  font-size: 0.75rem;
  color: #6b7280;
}
.aos-code-block {
  padding: 24px;
  margin: 0;
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #a7a9be;
}
.code-kw { color: #f43f5e; }
.code-cl { color: #38bdf8; }
.code-str { color: #10b981; }
.code-comment { color: #6b7280; font-style: italic; }
/* CTA Section */
.aos-section--cta {
  padding: 8rem 0;
  position: relative;
  background-color: #07050d;
}
.aos-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(168,85,247,0.1) 0%, transparent 60%);
  z-index: 1;
}
.aos-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.5rem;
}
.aos-cta-desc {
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ==========================================================================
   VellyWay Travel — EDITORIAL LIGHT DESIGN SYSTEM STYLES
   ========================================================================== */
:root {
  --trv-sand: #FAF6F0;
  --trv-sand-dark: #F3ECE2;
  --trv-charcoal: #23211F;
  --trv-muted: #6B6560;
  --trv-warm: #C85C38;
  --trv-teal: #1C5A60;
  --trv-border: rgba(197, 185, 172, 0.25);
  --trv-shadow: 0 16px 48px rgba(35, 33, 31, 0.04);
}
.trv-page {
  background-color: var(--trv-sand);
  color: var(--trv-charcoal);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}
.trv-section {
  padding: 6.5rem 0;
  background-color: var(--trv-sand);
  position: relative;
}
.trv-section--sand {
  background-color: var(--trv-sand-dark);
}
.trv-section--border {
  border-top: 1px solid var(--trv-border);
  border-bottom: 1px solid var(--trv-border);
}
.trv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.trv-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--trv-warm);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.trv-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--trv-charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.trv-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--trv-teal);
}
.trv-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--trv-muted);
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 3.5rem;
}
.trv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
}
.trv-btn--warm {
  background-color: var(--trv-warm);
  color: #fff !important;
}
.trv-btn--warm:hover {
  background-color: #b34a28;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 92, 56, 0.2);
}
.trv-btn--outline {
  background-color: transparent;
  color: var(--trv-charcoal) !important;
  border: 1px solid rgba(35, 33, 31, 0.2);
}
.trv-btn--outline:hover {
  background-color: rgba(35, 33, 31, 0.03);
  border-color: var(--trv-charcoal);
  transform: translateY(-2px);
}
/* Travel Hero Split */
.trv-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  overflow: hidden;
}
.trv-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.trv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 246, 240, 0.98) 0%, rgba(250, 246, 240, 0.85) 50%, rgba(250, 246, 240, 0.1) 100%);
  z-index: 2;
}
.trv-hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
}
.trv-hero-actions {
  display: flex;
  gap: 1.5rem;
}
/* Routes Curation */
.trv-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}
.trv-route-card {
  background: #fff;
  border: 1px solid var(--trv-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--trv-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.trv-route-card:hover {
  transform: translateY(-6px);
  border-color: var(--trv-teal);
  box-shadow: 0 24px 56px rgba(35, 33, 31, 0.08);
}
.trv-route-image-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.trv-route-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.trv-route-card:hover .trv-route-image {
  transform: scale(1.05);
}
.trv-route-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.trv-route-meta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--trv-warm);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.trv-route-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.trv-route-desc {
  font-size: 0.9rem;
  color: var(--trv-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.trv-route-link {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--trv-teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: color 0.3s ease;
}
.trv-route-link::after {
  content: '→';
  transition: transform 0.3s ease;
}
.trv-route-card:hover .trv-route-link {
  color: var(--trv-warm);
}
.trv-route-card:hover .trv-route-link::after {
  transform: translateX(4px);
}
/* Travel Journal Layout */
.trv-journal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}
.trv-journal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.trv-journal-desc {
  color: var(--trv-muted);
  line-height: 1.6;
  margin-bottom: 3rem;
}
/* Timeline */
.trv-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 2rem;
}
.trv-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background-color: var(--trv-border);
}
.trv-timeline-item {
  position: relative;
}
.trv-timeline-item::before {
  content: '';
  position: absolute;
  left: -21px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--trv-sand);
  border: 1px solid var(--trv-teal);
  box-sizing: border-box;
}
.trv-timeline-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--trv-warm);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.trv-timeline-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.trv-timeline-content p {
  font-size: 0.9rem;
  color: var(--trv-muted);
  margin: 0;
  line-height: 1.5;
}
/* Map Card */
.trv-map-card {
  background: #fff;
  border: 1px solid var(--trv-border);
  border-radius: 4px;
  padding: 3rem;
  box-shadow: var(--trv-shadow);
}
.trv-map-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.trv-map-card-subtitle {
  font-size: 0.85rem;
  color: var(--trv-muted);
  display: block;
  margin-bottom: 2rem;
}
.trv-map-visual {
  background: var(--trv-sand);
  border: 1px solid var(--trv-border);
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.trv-map-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--trv-border);
}
.trv-map-stats .stat-box {
  display: flex;
  flex-direction: column;
}
.trv-map-stats .val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--trv-teal);
  line-height: 1;
}
.trv-map-stats .lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--trv-muted);
  margin-top: 0.5rem;
}

/* Responsive Overrides for AuraOS & Travel */
@media (max-width: 980px) {
  .aos-hero-grid,
  .aos-features-grid,
  .aos-sdk-grid,
  .trv-hero-content,
  .trv-routes-grid,
  .trv-journal-layout {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
  .aos-hero-visual {
    order: -1;
  }
  .aos-hero,
  .aos-section,
  .trv-hero,
  .trv-section {
    padding: 4.5rem 0 !important;
  }
  .aos-feature-card,
  .trv-map-card {
    padding: 2rem !important;
  }
  .trv-hero-overlay {
    background: linear-gradient(180deg, rgba(250, 246, 240, 0.95) 0%, rgba(250, 246, 240, 0.85) 60%, rgba(250, 246, 240, 0.6) 100%) !important;
  }
  .trv-routes-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 1.25rem !important;
    padding: 0.5rem 1rem 1.5rem !important;
    margin: 0 -1rem !important;
  }
  .trv-routes-grid::-webkit-scrollbar {
    display: none;
  }
  .trv-routes-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .trv-route-card {
    flex: 0 0 82vw !important;
    max-width: 82vw !important;
    scroll-snap-align: center !important;
  }
}

/* ==========================================================================
   Timeline Navigation System Styles
   ========================================================================== */
.vw-timeline-nav-wrapper {
  position: sticky;
  top: 70px; /* Offset for main header nav */
  z-index: 100;
  background: rgba(250, 248, 245, 0.85); /* Matches off-white/sand background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}
.vw-timeline-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.vw-timeline-nav-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--wp--preset--color--vw-charcoal);
  opacity: 0.4;
  white-space: nowrap;
}
.vw-timeline-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.vw-timeline-nav::-webkit-scrollbar {
  display: none;
}
.vw-timeline-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--wp--preset--color--vw-gray-500) !important;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}
.vw-timeline-nav-dot {
  display: inline-block;
  width: var(--dot-size, 8px);
  height: var(--dot-size, 8px);
  border-radius: 50%;
  background-color: var(--wp--preset--color--vw-gray-500);
  opacity: var(--dot-opacity, 0.7);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.vw-timeline-nav-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  transition: all 0.3s ease;
}
.vw-timeline-nav-item:hover {
  color: var(--wp--preset--color--vw-terracotta) !important;
}
.vw-timeline-nav-item:hover .vw-timeline-nav-dot {
  background-color: var(--wp--preset--color--vw-terracotta);
  opacity: 1;
  transform: scale(1.2);
}
.vw-timeline-nav-item.is-active {
  color: var(--wp--preset--color--vw-terracotta) !important;
}
.vw-timeline-nav-item.is-active .vw-timeline-nav-dot {
  background-color: var(--wp--preset--color--vw-terracotta);
  opacity: 1;
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(200, 92, 56, 0.4);
}

@media (max-width: 768px) {
  .vw-timeline-nav-wrapper {
    top: 56px; /* Offset for smaller mobile header */
    padding: 0.75rem 0;
  }
  .vw-timeline-nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0 1rem;
  }
  .vw-timeline-nav-title {
    font-size: 0.65rem;
  }
  .vw-timeline-nav {
    width: 100%;
    gap: 1.5rem;
    padding-bottom: 0.25rem;
  }
  .vw-timeline-nav-item {
    gap: 0.5rem;
  }
  .vw-timeline-nav-label {
    font-size: 0.8rem;
  }
}

/* ── Brand Cards Custom Pill CTAs ────────────────────────────── */
.vw-brand-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  text-decoration: none !important;
  border: 1px solid currentColor;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 1.25rem;
}
.vw-brand-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.vw-brand-cta--artsmover { color: #8a7028; }
.vw-brand-cta--artsmover:hover { background: #8a7028; color: #fff !important; }

.vw-brand-cta--aura { color: #72243E; }
.vw-brand-cta--aura:hover { background: #72243E; color: #fff !important; }

.vw-brand-cta--brandmover { color: #085041; }
.vw-brand-cta--brandmover:hover { background: #085041; color: #fff !important; }

.vw-brand-cta--relefi { color: #712B13; }
.vw-brand-cta--relefi:hover { background: #712B13; color: #fff !important; }

.vw-brand-cta--travel { color: #633806; }
.vw-brand-cta--travel:hover { background: #633806; color: #fff !important; }

.vw-brand-cta--1ba { color: #534AB7; }
.vw-brand-cta--1ba:hover { background: #534AB7; color: #fff !important; }

@media (max-width: 768px) {
  .vw-desktop-only {
    display: none !important;
  }
}

/* ── Story Card — Author-first layout (/to page) ─────────────── */
.vw-card__author-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--vw-space-2);
  flex-wrap: wrap;
}
.vw-card__avatar img,
.vw-card__avatar .wp-block-avatar img {
  border-radius: 50%;
  width: 24px !important;
  height: 24px !important;
  object-fit: cover;
  flex-shrink: 0;
}
.vw-card__author-by {
  font-size: var(--vw-text-xs);
  color: var(--vw-gray-400);
}
.vw-card__author-link a,
.wp-block-post-author-name a {
  font-size: var(--vw-text-xs) !important;
  font-weight: 600 !important;
  color: var(--vw-teal) !important;
  text-decoration: none !important;
}
.vw-card__author-link a:hover,
.wp-block-post-author-name a:hover {
  text-decoration: underline !important;
}
.vw-card__meta-dot {
  font-size: var(--vw-text-xs);
  color: var(--vw-gray-300);
}
.vw-card__date,
.wp-block-post-date {
  font-size: var(--vw-text-xs) !important;
  color: var(--vw-gray-400) !important;
}

/* Reading time badge */
.vw-reading-time {
  font-size: var(--vw-text-xs);
  color: var(--vw-gray-500);
  background: var(--vw-gray-50, #f9f9f9);
  border: 1px solid var(--vw-gray-100);
  border-radius: 9999px;
  padding: 2px 8px;
  white-space: nowrap;
}
.wp-block-vellyway-reading-time {
  display: inline-flex;
}

/* Card footer row */
.vw-card__footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--vw-space-4);
  border-top: 1px solid var(--vw-gray-100);
  width: 100%;
  gap: 8px;
}
.vw-card__read-link a,
.wp-block-read-more {
  font-size: var(--vw-text-xs) !important;
  color: var(--vw-teal) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  white-space: nowrap;
}
.vw-card__read-link a:hover,
.wp-block-read-more:hover {
  text-decoration: underline !important;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── About Hero ─────────────────────────────────────────────── */
.vw-about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--vw-charcoal);
  color: #fff;
}
.vw-about-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0a00 0%, #0d1a15 50%, #0a0612 100%);
  opacity: 0.95;
}
.vw-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(var(--vw-terracotta-rgb, 180,80,40), 0.12) 0%, transparent 70%);
}
.vw-about-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0 80px;
}
.vw-about-hero__title {
  font-family: var(--vw-font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin: 1.5rem 0 1.5rem;
}
.vw-about-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--vw-terracotta-light, #e8896a);
}
.vw-about-hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin-bottom: 3rem;
}
.vw-about-hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.vw-about-stat__val {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--vw-sand, #c8a87a);
  line-height: 1;
}
.vw-about-stat__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.35rem;
}

/* ── About Story ─────────────────────────────────────────────── */
.vw-about-story {
  padding: var(--vw-space-20) 0;
  background: var(--vw-off-white, #faf8f5);
}
.vw-about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.vw-about-story__tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vw-terracotta);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}
.vw-about-story__title {
  font-family: var(--vw-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--vw-charcoal);
  margin-bottom: 1.5rem;
}
.vw-about-story__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--vw-terracotta);
}
.vw-about-story__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--vw-gray-600, #555);
  margin-bottom: 1.25rem;
}
.vw-about-story__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.vw-about-pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--vw-gray-100, #eee);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vw-about-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.vw-about-pillar__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vw-sand-light, #f5efe6);
  border-radius: 10px;
}
.vw-about-pillar__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vw-charcoal);
  margin: 0 0 0.4rem;
}
.vw-about-pillar__desc {
  font-size: 0.875rem;
  color: var(--vw-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* Manifesto banner */
.vw-about-manifesto {
  border-left: 4px solid var(--vw-terracotta);
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--vw-sand-light, #f5efe6) 100%);
  border-radius: 0 12px 12px 0;
  margin-bottom: 4rem;
}
.vw-about-manifesto__quote {
  font-family: var(--vw-font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 300;
  color: var(--vw-charcoal);
  line-height: 1.5;
  margin: 0 0 1rem;
}
.vw-about-manifesto__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.vw-about-manifesto__author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--vw-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.vw-about-manifesto__decade {
  font-size: 0.8rem;
  color: var(--vw-gray-400);
}

/* Timeline strip */
.vw-about-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 2px solid var(--vw-gray-100);
  padding-top: 2.5rem;
}
.vw-about-timeline__item {
  padding: 0 1.5rem 0 0;
  position: relative;
}
.vw-about-timeline__item::before {
  content: '';
  position: absolute;
  top: -2.5rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vw-gray-300);
  transform: translateY(-4px);
}
.vw-about-timeline__item--current::before {
  background: var(--vw-terracotta);
  box-shadow: 0 0 0 3px rgba(180,80,40,0.15);
}
.vw-about-timeline__year {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--vw-terracotta);
  margin-bottom: 0.5rem;
}
.vw-about-timeline__event {
  font-size: 0.8rem;
  color: var(--vw-gray-500);
  line-height: 1.5;
  margin: 0;
}

/* ── About CTA ───────────────────────────────────────────────── */
.vw-about-cta {
  padding: var(--vw-space-20) var(--vw-space-8);
  background: var(--vw-charcoal);
  color: #fff;
}
.vw-about-cta__title {
  font-family: var(--vw-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin: 1.5rem 0;
  line-height: 1.1;
}
.vw-about-cta__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--vw-terracotta-light, #e8896a);
}
.vw-about-cta__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.vw-about-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .vw-about-story__grid { grid-template-columns: 1fr; gap: 2rem; }
  .vw-about-timeline { grid-template-columns: 1fr; gap: 1.5rem; border-top: none; padding-top: 0; }
  .vw-about-timeline__item { padding: 0 0 0 1.5rem; border-left: 2px solid var(--vw-gray-100); }
  .vw-about-timeline__item::before { top: 0.2rem; left: -6px; transform: none; }
  .vw-about-hero__stats { gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── Contact Hero ────────────────────────────────────────────── */
.vw-contact-hero {
  background: var(--vw-sand-light, #f5efe6);
  border-bottom: 1px solid var(--vw-gray-100);
}
.vw-contact-hero__title {
  font-family: var(--vw-font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--vw-charcoal);
  margin: 1.5rem 0;
}
.vw-contact-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--vw-blue);
}
.vw-contact-hero__sub {
  font-size: 1.1rem;
  color: var(--vw-gray-500);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.vw-contact-channels {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
.vw-contact-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.25rem 2rem;
  background: #fff;
  border: 1px solid var(--vw-gray-100);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-width: 150px;
}
.vw-contact-channel:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--vw-blue);
  text-decoration: none;
}
.vw-contact-channel__icon {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--vw-blue);
}
.vw-contact-channel__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vw-gray-400);
  font-weight: 700;
}
.vw-contact-channel__val {
  font-size: 0.85rem;
  color: var(--vw-charcoal);
  font-weight: 600;
}

/* ── Contact Form Section ────────────────────────────────────── */
.vw-contact-form-section {
  padding: var(--vw-space-20) 0;
  background: #fff;
}
.vw-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}
.vw-contact-info__title {
  font-family: var(--vw-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--vw-charcoal);
  margin-bottom: 1rem;
}
.vw-contact-info__body {
  font-size: 0.95rem;
  color: var(--vw-gray-500);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.vw-contact-topics { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.vw-contact-topic { display: flex; gap: 0.85rem; align-items: flex-start; }
.vw-contact-topic__dot {
  width: 10px; height: 10px; border-radius: 50%;
  flex-shrink: 0; margin-top: 5px;
}
.vw-contact-topic strong { font-size: 0.875rem; color: var(--vw-charcoal); display: block; margin-bottom: 0.2rem; }
.vw-contact-topic p { font-size: 0.8rem; color: var(--vw-gray-400); margin: 0; line-height: 1.5; }
.vw-contact-info__response { font-size: 0.8rem; color: var(--vw-gray-400); }

/* Form */
.vw-contact-form-wrap {
  background: var(--vw-off-white, #faf8f5);
  border: 1px solid var(--vw-gray-100);
  border-radius: 16px;
  padding: 2.5rem;
}
.vw-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.vw-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.vw-contact-form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.vw-contact-form__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vw-charcoal);
}
.vw-contact-form__input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--vw-gray-200, #ddd);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--vw-font-body, 'Inter', sans-serif);
  background: #fff;
  color: var(--vw-charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.vw-contact-form__input:focus {
  outline: none;
  border-color: var(--vw-blue);
  box-shadow: 0 0 0 3px rgba(39,116,174,0.12);
}
.vw-contact-form__select { appearance: none; cursor: pointer; }
.vw-contact-form__textarea { resize: vertical; min-height: 140px; }

/* Response */
.vw-contact-response {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.vw-contact-response--success {
  background: rgba(34,139,87,0.08);
  border: 1px solid rgba(34,139,87,0.25);
  color: #1a6b40;
}
.vw-contact-response--error {
  background: rgba(210,50,50,0.07);
  border: 1px solid rgba(210,50,50,0.2);
  color: #b03030;
}

@media (max-width: 900px) {
  .vw-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .vw-contact-form__row { grid-template-columns: 1fr; }
  .vw-contact-channels { gap: 0.75rem; }
  .vw-contact-channel { min-width: 120px; padding: 1rem 1.25rem; }
}

/* VW_THEME_EOF_2_0_2 — integrity sentinel */
