/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/@wordpress/scripts/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/@wordpress/scripts/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./resources/scss/archive-stories.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Archive Stories Page Styles
 *
 * Optimized styles for archive-stories.html template
 * Customer testimonials and travel stories layout
 *
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
/**
 * Theme Variables
 * 
 * All custom CSS properties removed in favor of theme.json tokens.
 * Use var(--wp--preset--color--*) and var(--wp--preset--spacing--*) instead.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;*/
  line-height: 1.6;
  color: var(--wp--preset--color--primary);
  background: var(--background);
  font-weight: 400;
  /*letter-spacing: -0.01em;*/
}

section {
  padding: 2rem 0;
}
section a {
  color: var(--wp--preset--color--primary);
}

.logo {
  padding-top: 0.3rem;
}
.logo .is-vertical {
  gap: 0;
}
.logo div:last-child {
  margin-left: auto;
}

.branding-group {
  gap: 0;
  padding: 1rem 0;
}

/*  Tour Intro */
.tourIntro {
  background: var(--primary-gradient);
  color: var(--white);
  padding: clamp(var(--space-lg), 4vw, 2rem);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: clamp(var(--space-lg), 4vw, var(--space-2xl));
  position: relative;
}
.tourIntro h3 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
}
.tourIntro .incTour {
  display: flex;
  justify-content: center;
  gap: clamp(var(--space-sm), 2vw, var(--space-md));
  flex-wrap: wrap;
  list-style: none;
  margin-top: var(--space-lg);
}
.tourIntro .incTour li {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--space-xl);
  font-size: clamp(var(--text-xs), 1.5vw, var(--text-sm));
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-intro h2 {
  font-weight: normal;
}

.adventure-grid ul {
  gap: 0.5rem;
}

.entry-content {
  /*max-width: 1400px;*/
  margin: 0 auto;
  padding: clamp(var(--space-md), 3vw, var(--space-xl));
}
.entry-content h2 {
  font-weight: lighter;
}

.why-us {
  color: var(--wp--preset--color--sand);
}
.why-us h2 {
  font-weight: normal;
}

/* Content Column */
dl {
  min-width: 0;
}

/* Content Sections */
dt.tourPane {
  background: var(--sand);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  /*margin: var(--space-xl) 0 var(--space-sm) 0;*/
  border-left: 3px solid var(--primary);
  font-weight: 500;
}

dt.tourPane h3 {
  color: var(--primary);
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  /*letter-spacing: -0.01em;*/
}

dd.tourPane {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--stone);
}

dd.tourPane:last-of-type {
  border-bottom: none;
}

/* Overview */
blockquote {
  background: var(--sand);
  padding: var(--space-lg);
  border-left: 3px solid var(--secondary);
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
  font-style: italic;
  position: relative;
  color: var(--foreground);
  overflow: hidden;
}

blockquote::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--secondary);
  position: absolute;
  top: -0.25rem;
  left: var(--space-md);
  opacity: 0.4;
  font-weight: 700;
  z-index: 1;
}

blockquote p {
  position: relative;
  z-index: 2;
  color: var(--foreground);
  font-weight: 500;
}

/* Text content clearfix for floating images */
.overtext::after,
.dayp::after {
  content: "";
  display: table;
  clear: both;
}

/* Ensure proper text flow around images */
.overtext {
  width: 100%;
  margin: var(--space-md) 0;
  color: var(--foreground);
  overflow: hidden; /* Create block formatting context */
}

.overtext p {
  color: var(--foreground);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.overtext + ul {
  list-style: none;
  padding: 0;
}

.overtext + ul li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--stone);
  padding-left: var(--space-xl);
  position: relative;
}

.overtext + ul li::before {
  content: "✓";
  color: var(--light-green);
  font-weight: 600;
  position: absolute;
  left: 0;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.left,
.right {
  margin: var(--space-md) auto;
  max-width: 100%;
  display: block;
  shape-outside: none;
}

@container (min-width: 601px) {
  .left {
    float: left;
    margin: 0 var(--space-lg) var(--space-md) 0;
    max-width: min(250px, 40%);
    shape-outside: margin-box;
  }
  .right {
    float: right;
    margin: 0 0 var(--space-md) var(--space-lg);
    max-width: min(250px, 40%);
    shape-outside: margin-box;
  }
}
.moreHide {
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  color: var(--foreground);
  line-height: 1.6;
}

/* Itinerary */
h4 {
  /*background: var(--primary-gradient);*/
  color: var(--primary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  /*margin: var(--space-xl) 0 var(--space-md) 0;*/
  font-size: clamp(var(--text-base), 2.5vw, var(--text-3xl));
  cursor: pointer;
  transition: all 0.2s ease;
  /*letter-spacing: -0.01em;*/
}

h4 strong {
  display: block;
  font-size: var(--text-md);
  opacity: 0.8;
}

.dayp {
  background: var(--sand);
  padding-left: 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  border-left: 3px solid var(--light-green);
  color: var(--foreground);
}

.dayp p {
  margin-bottom: var(--space-md);
  color: var(--foreground);
  line-height: 1.7;
}

figcaption {
  font-size: var(--text-sm);
  color: var(--foreground);
  opacity: 0.8;
  margin-top: var(--space-sm);
  font-style: italic;
  text-align: center;
}

.more {
  display: none;
}

/* Utilities */
.clear {
  clear: both;
}

.required {
  color: var(--secondary);
}

/* Focus States */
button:focus,
input:focus {
  outline: 2px solid var(--light-green);
  outline-offset: 2px;
}

/* Container Queries */
.incTour {
  flex-direction: column;
  align-items: center;
}
.incTour li {
  text-align: center;
  min-width: 200px;
}

#priceIncaTrail {
  grid-template-columns: 1fr;
}

.button {
  width: 2rem;
  height: 2rem;
  font-size: var(--text-base);
}

#paxnum, #stunum, #pornum, #bagnum, #polnum, #tennum {
  margin: 0 var(--space-sm);
  min-width: 2rem;
}

@container (min-width: 601px) {
  .incTour {
    flex-direction: row;
    justify-content: center;
    gap: clamp(var(--space-sm), 2vw, var(--space-md));
    flex-wrap: wrap;
  }
  .incTour li {
    text-align: left;
    min-width: auto;
  }
}
/* Hide/Show Logic */
.toreveal:checked + .hide {
  display: block !important;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --stone: #808080;
    --sand: #f0f0f0;
    --foreground: #000000;
  }
  dt.tourPane,
  .optioncell,
  .dayp {
    border-left-width: 4px;
  }
  blockquote,
  #exclusions,
  #studentDiscount,
  .itemexp {
    border-width: 2px;
    border-style: solid;
  }
}
/* Consolidated Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .wp-block-cover::before {
    animation: none;
  }
  .tour-book-button::after,
  .tour-book-button::before {
    display: none;
  }
  .tour-info-bar,
  .tour-info-container,
  .tour-info-item,
  .tour-book-button,
  .tour-info-icon,
  .tour-meta-info svg,
  .tour-social-links a {
    transition: none;
  }
}
.wp-block-columns {
  flex-wrap: wrap;
}

.is-layout-flex .wp-block-column {
  margin: auto;
}

@media (min-width: 769px) {
  .wp-block-columns {
    flex-wrap: nowrap;
  }
  .wp-block-column {
    margin-bottom: 0;
  }
}
/* Pulse Animation for Book Button */
.tour-book-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(250, 240, 230, 0.2);
  transform: translate(-50%, -50%);
  animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}
/* Social Share with Enhanced Contrast */
.tour-social-links {
  animation: socialFloat 3s ease-in-out infinite;
}

@keyframes socialFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}
.tour-social-links a {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  color: #C9C9C7;
}

.tour-social-links a:hover {
  transform: translateY(-5px) rotate(10deg) scale(1.2);
  background: #2A5D45 !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 20px rgba(42, 93, 69, 0.5);
}

/* Meta info enhanced contrast */
.tour-meta-info {
  gap: 1rem;
}

.tour-meta-info p {
  color: #FFFFFF;
  /*text-shadow: 1px 1px 2px rgba(26, 60, 44, 0.8);*/
}

.tour-meta-info .has-emerald-600-color {
  color: var(--wp--preset--color--dark-green) !important;
  /*text-shadow: 1px 1px 2px rgba(26, 60, 44, 0.8);*/
}

/* Mobile-first Responsive Enhancements */
.wp-block-cover.alignfull {
  min-height: 70vh;
}

.tour-info-grid {
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.alltour {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .alltour {
    display: grid;
  }
}
.alltour ul {
  padding: 0 1rem 0 1.3rem;
}

@media (min-width: 768px) {
  /* Main Container */
  /* Layout Grid */
  .alltour {
    grid-template-columns: 8fr 4fr;
    gap: clamp(var(--space-lg), 4vw, var(--space-2xl));
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin: auto;
    margin-bottom: clamp(var(--space-lg), 4vw, var(--space-2xl));
    max-width: 1200px;
  }
}
@media (min-width: 480px) {
  .wp-block-cover.alignfull {
    min-height: 80vh;
  }
  .wp-block-post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
  }
  .tour-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .tour-info-item:hover {
    transform: translateY(-4px);
  }
}
@media (min-width: 768px) {
  .wp-block-cover.alignfull {
    min-height: 90vh;
  }
  .wp-block-post-title {
    padding: 0.3rem;
  }
  .tour-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .wp-block-cover.alignfull {
    min-height: 100vh;
  }
  .tour-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}
/* High Performance GPU Acceleration */
.tour-info-item,
.tour-book-button,
.activity-badge,
.tour-social-links a {
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Focus states for accessibility */
.tour-book-button .wp-block-button__link:focus {
  outline: 3px solid #F5B041;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(245, 176, 65, 0.3), 0 20px 40px rgba(42, 93, 69, 0.5);
}

.tour-social-links a:focus {
  outline: 2px solid #F5B041;
  outline-offset: 2px;
  background: #2A5D45 !important;
  color: #FFFFFF !important;
}

.activity-badge:focus {
  outline: 2px solid #F5B041;
  outline-offset: 2px;
  background-color: rgba(247, 245, 240, 0.95) !important;
}

/* Mobile-first Responsive Design (consolidated) */
.tour-info-bar {
  position: relative !important;
  top: 0 !important;
}

.tour-info-item {
  min-height: 80px;
  padding: 0.5rem;
}

.tour-info-pricing {
  min-height: 100px;
}

.tour-info-icon-wrapper {
  margin-bottom: 0.5rem;
}

.tour-info-icon {
  width: 24px;
  height: 24px;
}

.tour-meta-info {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.tour-social-share {
  align-self: stretch;
  justify-content: center;
}

@media (min-width: 480px) {
  .tour-info-item {
    min-height: 100px;
    padding: 0.75rem;
  }
  .tour-info-pricing {
    grid-column: 1/-1;
    min-height: 120px;
  }
}
@media (min-width: 768px) {
  .tour-meta-info {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .tour-social-share {
    align-self: auto;
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .tour-info-bar {
    position: sticky !important;
    top: var(--space-md) !important;
  }
  .tour-info-item {
    min-height: 120px;
    padding: 1rem;
  }
  .tour-info-item p {
    color: var(--wp--preset--color--stone);
  }
  .tour-info-icon {
    width: 32px;
    height: 32px;
  }
  .tour-info-icon-wrapper {
    margin-bottom: 1rem;
  }
}
/* High contrast mode support */
@media (prefers-contrast: high) {
  .tour-info-container {
    border-width: 2px;
    border-color: #000;
  }
  .tour-info-item {
    border: 1px solid #000;
  }
  .tour-additional-info {
    border-top-width: 2px;
    border-top-color: #000;
  }
}
/* Focus styles for accessibility */
.tour-book-button .wp-block-button__link:focus {
  outline: 3px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

.tour-social-links a:focus {
  outline: 2px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

footer {
  color: var(--wp--preset--color--white);
}

@media (min-width: 1000px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none !important;
  }
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: block !important;
  }
}
@media (min-width: 600px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: flex;
  }
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: none;
  }
}
/**
 * BREADCRUMBS CSS
 * This would be included in your theme's style.css
 */
/* Breadcrumbs Styles */
.breadcrumbs-nav {
  background: transparent;
  /*background-color: var(--wp--preset--color--sand, #f8f9fa);*/
  /*border-bottom: 1px solid rgba(0, 0, 0, 0.05);*/
  font-size: var(--wp--preset--font-size--tiny);
  font-family: Arial;
  text-transform: uppercase;
  z-index: 3;
  position: relative;
}

.breadcrumbs {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem;
  letter-spacing: 1px;
}
@media (max-width: 600px) {
  .breadcrumbs {
    letter-spacing: -1px;
  }
}

.breadcrumb-item a {
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (prefers-color-scheme: dark) {
  .breadcrumb-item a {
    color: var(--foreground);
  }
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
  color: var(--wp--preset--color--stone);
  text-decoration: underline;
}
@media (prefers-color-scheme: dark) {
  .breadcrumb-item a:hover,
  .breadcrumb-item a:focus {
    color: var(--foreground);
  }
}

.breadcrumb-item.current {
  font-weight: 500;
  /*max-width: 300px;*/
  white-space: nowrap;
  overflow: hidden;
  /*text-overflow: ellipsis;*/
}
@media (prefers-color-scheme: dark) {
  .breadcrumb-item.current {
    color: var(--foreground);
  }
}

.breadcrumb-divider {
  color: var(--wp--preset--color--stone);
  margin: 0 0.1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1;
  font-weight: 300;
  position: relative;
  top: 1px;
  align-self: flex-start;
}
@media (prefers-color-scheme: dark) {
  .breadcrumb-divider {
    color: var(--foreground);
  }
}

/* Responsive Styles */
@media (max-width: 600px) {
  .breadcrumbs-nav {
    padding: var(--wp--preset--spacing--xs, 0.5rem) !important;
  }
}
/**
 * Adventure Card Styles
 * 
 * Extracted from front-page.scss. Card layouts, hover states,
 * badges, and content styling using theme.json tokens.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
.adventure-card {
  border-radius: 12px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--wp--preset--color--background);
  border-style: none;
  border: 1px solid var(--wp--preset--color--stone);
  transition: transform 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.adventure-card a {
  font-weight: normal;
  letter-spacing: 1px;
  text-decoration: none;
}
.adventure-card h3 a {
  color: var(--wp--preset--color--primary);
  letter-spacing: -0.6px;
}
.adventure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.adventure-card:hover .adventure-card-image img {
  transform: scale(1.05);
}

.adventure-card-media {
  position: relative;
  margin: 0;
  padding: 0;
}

.adventure-card-image {
  margin: 0 !important;
  transition: transform 0.5s ease;
  overflow: hidden;
}
.adventure-card-image img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.adventure-card-badge,
.adventure-card-location-badge,
.adventure-card-price {
  position: absolute;
  padding: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.adventure-card-badge {
  top: 16px;
  right: 16px;
}

.adventure-card-location-badge {
  top: 16px;
  left: 16px;
}

.adventure-card-price {
  bottom: 16px;
  left: 16px;
  border-radius: 8px;
}
.adventure-card-price p {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.adventure-difficulty-badge {
  border-radius: 6px;
  padding: 6px 12px;
}
.adventure-difficulty-badge p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.location-badge {
  border-radius: 6px;
  padding: 6px 12px;
}
.location-badge p {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.location-badge a {
  color: var(--wp--preset--color--primary);
  letter-spacing: 0;
}

.adventure-card-content {
  position: relative;
  z-index: 2;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 24px;
  background-color: var(--wp--preset--color--background);
}
.adventure-card-content h3 {
  margin: 0 0 12px 0;
  font-weight: 700;
  line-height: 1.2;
}
.adventure-card-content > .wp-block-post-excerpt {
  margin: 0 0 24px 0;
}
.adventure-card-content > .wp-block-post-excerpt p {
  font-size: 14px;
  margin: 0;
}

.adventure-card-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 24px 0;
  padding: 0;
}
.adventure-card-details .wp-block-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}

.detail-value {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.adventure-card-footer {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.adventure-guide {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
}

.adventure-guide-avatar {
  border-radius: 100px;
  margin: 0;
}

.guide-name {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}

.guide-name-text {
  position: relative;
  padding-left: 24px;
}
.guide-name-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  background-color: var(--wp--preset--color--primary);
  border-radius: 50% 50% 50% 0;
  transform: translateY(-60%) rotate(-45deg);
  box-shadow: inset 2px 2px 0 0 rgba(255, 255, 255, 0.25);
}
.guide-name-text::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-75%);
  width: 6px;
  height: 6px;
  background-color: var(--wp--preset--color--background);
  border-radius: 50%;
}

.adventure-card-button {
  transition: background-color 0.3s ease;
  margin: 0;
}
.adventure-card-button a {
  font-weight: normal;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 6px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .adventure-card-image img {
    height: 220px;
  }
  .adventure-card-content {
    padding: var(--wp--preset--spacing--sm);
  }
  .adventure-card-details {
    flex-direction: row;
    gap: var(--wp--preset--spacing--sm);
  }
}
@media (min-width: 768px) {
  .adventure-card-image img {
    height: 300px;
  }
  .adventure-card-content {
    padding: var(--wp--preset--spacing--md);
  }
  .adventure-card-content .adventure-guide > div {
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}
/**
 * Newsletter Form Styles
 * 
 * Extracted from front-page.scss. Newsletter signup forms,
 * form inputs, interactions, and loading states using theme.json tokens.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
.newsletter-signup-block {
  position: relative;
  overflow: hidden;
}

.newsletter-signup {
  padding: 0;
}

.newsletter-form label {
  margin-bottom: var(--wp--preset--spacing--sm);
}

.form-input {
  color: var(--wp--preset--color--stone);
  border: 1px solid var(--wp--preset--color--stone);
  border-radius: var(--wp--custom--effects--radius--small);
  padding: var(--wp--preset--spacing--sm);
  font-size: var(--wp--preset--font-size--normal);
  transition: all var(--wp--custom--effects--transition--medium) ease;
}
.form-input::-moz-placeholder {
  color: var(--wp--preset--color--stone);
  letter-spacing: 1px;
}
.form-input::placeholder {
  color: var(--wp--preset--color--stone);
  letter-spacing: 1px;
}
.form-input:focus {
  border-color: var(--wp--preset--color--primary) !important;
  box-shadow: 0 0 0 4px rgba(42, 93, 69, 0.1) !important;
  transform: translateY(-2px);
  outline: none;
}
.form-input:focus::-moz-placeholder {
  color: var(--wp--preset--color--stone);
}
.form-input:focus::placeholder {
  color: var(--wp--preset--color--stone);
}
.form-input:focus + .form-label {
  transform: translateY(-1.5rem) scale(0.85) !important;
  padding: 0 0.5rem;
  margin-bottom: 0.2rem;
  top: 33%;
}

.input-wrapper {
  position: relative;
}
.input-wrapper.focused .form-label, .input-wrapper.has-value .form-label {
  transform: translateY(-1.5rem) scale(0.85) !important;
  padding: 0 0.5rem;
}

.form-label {
  position: absolute;
  top: var(--wp--preset--spacing--md);
  left: var(--wp--preset--spacing--sm);
  transition: transform var(--wp--custom--effects--transition--medium) ease;
  pointer-events: none;
  background: var(--wp--preset--color--background);
}

.newsletter-submit-button {
  background: linear-gradient(135deg, var(--wp--preset--color--primary), var(--wp--preset--color--light-green));
  color: var(--wp--preset--color--white);
  font-family: var(--wp--preset--font-family--heading);
  padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--md);
  border: none;
  border-radius: var(--wp--custom--effects--radius--medium);
  cursor: pointer;
  transition: all var(--wp--custom--effects--transition--medium) ease;
  letter-spacing: 1px;
}
.newsletter-submit-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--wp--custom--effects--shadow--large) !important;
  background: linear-gradient(135deg, var(--wp--preset--color--dark-green), var(--wp--preset--color--primary)) !important;
}
.newsletter-submit-button.loading {
  background: var(--wp--preset--color--stone);
  cursor: not-allowed;
}
.newsletter-submit-button.loading:hover {
  background: var(--wp--preset--color--stone);
  transform: none;
  box-shadow: none;
}
.newsletter-submit-button.loading .button-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.checkbox-custom {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--wp--preset--color--background);
  border: 2px solid var(--wp--preset--color--stone);
  border-radius: var(--wp--custom--effects--radius--small);
  cursor: pointer;
  transition: all var(--wp--custom--effects--transition--medium) ease;
}
.checkbox-custom::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid var(--wp--preset--color--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform var(--wp--custom--effects--transition--fast) ease;
}

.consent-checkbox {
  opacity: 0;
  position: absolute;
}
.consent-checkbox:checked + .checkbox-custom {
  background: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
}
.consent-checkbox:checked + .checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}
.consent-checkbox:focus + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(42, 93, 69, 0.2);
}

.consent-text {
  font-size: 0.8rem;
}
.consent-text a {
  color: var(--wp--preset--color--primary);
}

.newsletter-success {
  background: var(--wp--preset--color--light-green);
  color: var(--wp--preset--color--white);
  padding: var(--wp--preset--spacing--md);
  border-radius: var(--wp--custom--effects--radius--medium);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--wp--custom--effects--transition--medium) ease;
}
.newsletter-success.show {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-content {
  position: relative;
}
.newsletter-content.success-state .newsletter-header,
.newsletter-content.success-state .newsletter-benefits,
.newsletter-content.success-state .newsletter-form {
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--wp--custom--effects--transition--medium) ease;
}

.newsletter-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.newsletter-benefits ul li {
  position: relative;
  padding: var(--wp--preset--spacing--xs) 0;
  padding-left: var(--wp--preset--spacing--md);
}
.newsletter-benefits ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wp--preset--color--primary);
  font-weight: bold;
}

.form-group {
  display: grid;
  gap: var(--wp--preset--spacing--sm);
  align-items: flex-start;
}
.form-group div:nth-child(1),
.form-group div:nth-child(2) {
  flex: 0 0 calc(50% - 8px);
}

.popular-adventures h2 {
  padding: 0;
}

.input-group.error .form-input,
.form-consent.error .checkbox-custom {
  border-color: #e53935 !important;
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.1) !important;
}

.input-group.error .form-feedback,
.form-consent.error .form-feedback {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--xs);
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--sm);
  background: rgba(42, 93, 69, 0.05);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--wp--preset--color--primary);
  border: 1px solid rgba(42, 93, 69, 0.1);
  transition: all 0.2s ease;
}
.benefit-item:hover {
  background: rgba(42, 93, 69, 0.1) !important;
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 781px) {
  .wp-block-columns {
    flex-direction: column !important;
  }
  .wp-block-column {
    flex-basis: 100% !important;
  }
  .newsletter-benefits {
    grid-template-columns: 1fr !important;
  }
  .form-group {
    grid-template-columns: 1fr !important;
  }
  .newsletter-signup-block {
    margin-top: var(--wp--preset--spacing--md) !important;
    padding: var(--wp--preset--spacing--md) !important;
  }
  .newsletter-form .form-input {
    font-size: var(--wp--preset--font-size--small);
    padding: var(--wp--preset--spacing--xs);
  }
  .newsletter-form .newsletter-submit-button {
    width: 100%;
    padding: var(--wp--preset--spacing--sm);
  }
}
@media (min-width: 782px) {
  .testimonial-container {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .testimonial-trip ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-group {
    grid-template-columns: 1fr 1fr !important;
    align-items: flex-start;
  }
  .form-group div:nth-child(1),
  .form-group div:nth-child(2) {
    flex: 0 0 calc(50% - 8px);
  }
  .newsletter-submit-button {
    grid-column: 1/-1;
    justify-self: center;
  }
}
.newsletter-form .input-group.has-error .form-input,
.newsletter-form .input-group.has-error .consent-checkbox + .checkbox-custom,
.newsletter-form .form-consent.has-error .form-input,
.newsletter-form .form-consent.has-error .consent-checkbox + .checkbox-custom {
  border-color: var(--wp--preset--color--error, #d32f2f);
  animation: shake 0.3s ease;
}
.newsletter-form .input-group.has-success .form-input,
.newsletter-form .form-consent.has-success .form-input {
  border-color: var(--wp--preset--color--success, #2e7d32);
}
.newsletter-form .form-feedback {
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: var(--wp--preset--spacing--xs);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  min-height: 1.5em;
}
.newsletter-form .form-feedback[style*="opacity: 1"] {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
.form-error-general {
  padding: 1rem;
  background: var(--wp--preset--color--error-light, #ffebee);
  color: var(--wp--preset--color--error, #d32f2f);
  border-radius: 8px;
  margin-bottom: var(--wp--preset--spacing--md);
  font-weight: 500;
  border-left: 4px solid var(--wp--preset--color--error, #d32f2f);
}

.footer-newsletter-form.newsletter-form {
  flex-direction: row !important;
  gap: var(--wp--preset--spacing--xs);
}
.footer-newsletter-form.newsletter-form .form-input {
  flex: 1;
  min-width: 0;
}
.footer-newsletter-form.newsletter-form .newsletter-button {
  flex-shrink: 0;
}

/**
 * Footer Component Styles
 * Modern, responsive footer with dark mode support
 * Uses theme.json design system exclusively
 */
.site-footer {
  background-color: var(--wp--preset--color--dark-green);
  color: var(--wp--preset--color--sand);
}
.site-footer img {
  max-width: none;
  margin-right: 1rem;
}
.site-footer .wp-block-columns {
  flex-direction: column;
}
@media (min-width: 768px) {
  .site-footer .wp-block-columns {
    flex-direction: row;
  }
}

.footer-content {
  display: grid;
  gap: var(--wp--preset--spacing--lg);
  grid-template-columns: 1fr;
  padding: 1rem;
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-hero {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--sm);
}
.footer-hero .site-logo {
  inline-size: 50px;
  block-size: 50px;
}
.footer-hero .site-title {
  color: var(--wp--preset--color--background);
  font-family: var(--wp--preset--font-family--accent);
  font-size: var(--wp--preset--font-size--large);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-block: 0;
}
.footer-hero .footer-description {
  font-size: var(--wp--preset--font-size--normal);
  line-height: 1.6;
  margin-block: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--md);
  opacity: 0.9;
}

.footer-social .wp-block-social-links {
  gap: var(--wp--preset--spacing--xs);
}
.footer-social .wp-block-social-links .wp-social-link {
  background-color: var(--wp--preset--color--primary);
  border-radius: var(--wp--custom--effects--radius--medium);
  transition: all var(--wp--custom--effects--transition--fast) ease;
  min-inline-size: 44px;
  min-block-size: 44px;
}
.footer-social .wp-block-social-links .wp-social-link:hover, .footer-social .wp-block-social-links .wp-social-link:focus {
  background-color: var(--wp--preset--color--secondary);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .footer-social .wp-block-social-links .wp-social-link {
    min-inline-size: auto;
    min-block-size: auto;
  }
}

.footer-navigation .footer-nav-title {
  color: var(--wp--preset--color--background);
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.3;
  text-transform: uppercase;
  margin-block-end: var(--wp--preset--spacing--sm);
}
@media (prefers-color-scheme: dark) {
  .footer-navigation .footer-nav-title {
    color: var(--tertiary);
  }
}
.footer-navigation .wp-block-navigation {
  gap: var(--wp--preset--spacing--xs);
}
.footer-navigation .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
  color: var(--wp--preset--color--background);
  font-size: var(--wp--preset--font-size--normal);
  font-weight: 400;
  text-decoration: none;
  opacity: 0.85;
  transition: all var(--wp--custom--effects--transition--fast) ease;
}
.footer-navigation .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content:hover, .footer-navigation .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content:focus {
  opacity: 1;
  color: var(--wp--preset--color--secondary);
}
@media (prefers-color-scheme: dark) {
  .footer-navigation .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
    color: var(--tertiary);
  }
}

.footer-newsletter .newsletter-title {
  color: var(--wp--preset--color--background);
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--medium);
  text-transform: uppercase;
  margin-block-end: var(--wp--preset--spacing--sm);
}
@media (prefers-color-scheme: dark) {
  .footer-newsletter .newsletter-title {
    color: var(--tertiary);
  }
}
.footer-newsletter .newsletter-description {
  font-size: var(--wp--preset--font-size--normal);
  line-height: 1.6;
  opacity: 0.9;
  margin-block-end: var(--wp--preset--spacing--sm);
}
.footer-newsletter .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--xs);
  background-color: var(--wp--preset--color--background);
  border-radius: var(--wp--custom--effects--radius--medium);
  padding: var(--wp--preset--spacing--xs);
}
@media (min-width: 480px) {
  .footer-newsletter .newsletter-form {
    flex-direction: row;
  }
  .footer-newsletter .newsletter-form .form-input {
    flex: 1;
  }
}
.footer-newsletter .newsletter-form .form-input {
  border: 2px solid var(--wp--preset--color--sand);
  border-radius: var(--wp--custom--effects--radius--small);
  padding: var(--wp--preset--spacing--sm);
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--normal);
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--foreground);
  transition: border-color var(--wp--custom--effects--transition--fast) ease;
}
.footer-newsletter .newsletter-form .form-input:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary);
  box-shadow: 0 0 0 2px var(--wp--preset--color--primary);
}
.footer-newsletter .newsletter-form .form-input::-moz-placeholder {
  color: var(--wp--preset--color--stone);
  opacity: 0.7;
}
.footer-newsletter .newsletter-form .form-input::placeholder {
  color: var(--wp--preset--color--stone);
  opacity: 0.7;
}
.footer-newsletter .newsletter-form .newsletter-button {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  border: none;
  border-radius: var(--wp--custom--effects--radius--small);
  padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--md);
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--medium);
  cursor: pointer;
  transition: all var(--wp--custom--effects--transition--fast) ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--wp--preset--spacing--xs);
}
.footer-newsletter .newsletter-form .newsletter-button:hover, .footer-newsletter .newsletter-form .newsletter-button:focus {
  background-color: var(--wp--preset--color--primary);
  transform: translateY(-1px);
}
.footer-newsletter .newsletter-form .newsletter-button .dashicons {
  font-size: 1.2em;
}
.footer-newsletter .newsletter-privacy {
  font-size: var(--wp--preset--font-size--tiny);
  color: var(--wp--preset--color--stone);
  opacity: 0.8;
  margin-block-start: var(--wp--preset--spacing--xs);
}

.footer-separator {
  margin-block: var(--wp--preset--spacing--lg) var(--wp--preset--spacing--sm);
  border-color: var(--wp--preset--color--primary);
  opacity: 0.5;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--sm);
  padding-bottom: var(--wp--preset--spacing--sm);
}
.footer-bottom p {
  font-size: 0.75rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom .copyright {
  padding-left: 2rem;
  opacity: 0.8;
}
.footer-bottom .footer-links {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--sm);
}
.footer-bottom .footer-links a {
  color: var(--wp--preset--color--stone);
  text-decoration: none;
  transition: color var(--wp--custom--effects--transition--fast) ease;
}
.footer-bottom .footer-links a:hover, .footer-bottom .footer-links a:focus {
  color: var(--wp--preset--color--background);
}
.footer-bottom .footer-links .separator {
  color: var(--wp--preset--color--stone);
  opacity: 0.5;
}
.footer-bottom .footer-note {
  color: var(--wp--preset--color--stone);
  font-style: italic;
  opacity: 0.9;
  padding-right: 1.3rem;
}

@media (prefers-color-scheme: dark) {
  .site-footer {
    background-color: var(--wp--preset--color--background-dark);
  }
  .site-footer .footer-social .wp-block-social-links .wp-social-link {
    background-color: var(--wp--preset--color--primary-dark);
  }
  .site-footer .footer-social .wp-block-social-links .wp-social-link:hover, .site-footer .footer-social .wp-block-social-links .wp-social-link:focus {
    background-color: var(--wp--preset--color--foreground-dark);
  }
  .site-footer .newsletter-form {
    background-color: var(--wp--preset--color--white-dark);
  }
  .site-footer .newsletter-form .form-input {
    background-color: var(--wp--preset--color--sand-dark);
    border-color: var(--wp--preset--color--stone-dark);
    color: var(--wp--preset--color--foreground-dark);
  }
  .site-footer .newsletter-form .form-input::-webkit-input-placeholder {
    color: var(--wp--preset--color--foreground-dark);
  }
  .site-footer .newsletter-form .form-input:focus {
    border-color: var(--wp--preset--color--primary-dark);
    box-shadow: 0 0 0 2px var(--wp--preset--color--primary-dark);
  }
  .site-footer .newsletter-form .newsletter-button:hover, .site-footer .newsletter-form .newsletter-button:focus {
    background-color: var(--wp--preset--color--primary-dark);
  }
  .site-footer .newsletter-privacy {
    color: var(--tertiary);
  }
  .site-footer .copyright {
    color: var(--tertiary);
  }
  .site-footer .footer-links a {
    color: var(--tertiary);
  }
  .site-footer .footer-links a:hover, .site-footer .footer-links a:focus {
    color: var(--wp--preset--color--foreground-dark);
  }
  .site-footer .footer-note {
    color: var(--tertiary);
  }
}
@media (prefers-contrast: high) {
  .site-footer {
    border-top: 2px solid var(--wp--preset--color--foreground);
  }
  .site-footer .footer-social .wp-block-social-links .wp-social-link {
    border: 2px solid var(--wp--preset--color--background);
  }
  .site-footer .newsletter-form .form-input {
    border-width: 3px;
  }
}
.site-footer {
  margin: 0;
}
.site-footer .wp-element-button {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 1.2rem;
}
.site-footer .wp-element-button .dashicons {
  padding: 0 1rem;
}

h3.wp-block-post-title {
  font-size: 2rem;
}

.stories .adventure-card {
  padding: 0.6rem;
}
.stories .adventure-card p {
  font-size: 1rem;
  font-style: italic;
}

/*# sourceMappingURL=archive-stories.css.map*/