/* ===================================================================
   EXCURSION PAGES — exc-* namespaced styles
   Extends styles.css. Reuses: dst-hero, dst-gallery, dst-lightbox,
   dst-faqs, contact-strip, section-head, reveal, btn, eyebrow.
   =================================================================== */


/* ---------- QUICK-INFO BAR ---------- */
.exc-info-bar{
  background: var(--ink);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.exc-info-bar .container{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.exc-info-bar .container::-webkit-scrollbar{ display: none; }
.exc-info-pill{
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,253,249,0.75);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}
.exc-info-pill i{
  color: var(--gold-soft);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}
.exc-info-pill strong{
  color: #fff;
  font-weight: 500;
}
.exc-info-divider{
  width: 1px;
  height: 22px;
  background: rgba(255,253,249,0.15);
  flex-shrink: 0;
}
@media (max-width:900px){
  .exc-info-bar .container{ justify-content: flex-start; gap: 1.6rem; }
}
@media (max-width:700px){
  .exc-info-bar .container{ gap: 1.2rem; padding-left: 1.25rem; padding-right: 1.25rem; }
  .exc-info-pill{ font-size: 0.82rem; }
}


/* ---------- OVERVIEW ---------- */
.exc-overview{
  padding: clamp(3rem,6vw,5.5rem) 0;
}
.exc-overview-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem,4vw,4rem);
  align-items: start;
}
.exc-overview-text .eyebrow{ margin-bottom: 1rem; }
.exc-overview-text h2{
  font-size: clamp(1.65rem,3.2vw,2.4rem);
  margin-bottom: 1.4rem;
}
.exc-overview-text p{
  color: var(--ink-soft);
  font-size: 0.97rem;
  margin-bottom: 1.1rem;
  line-height: 1.72;
}

.exc-overview-sidebar{
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.exc-sidebar-card{
  background: var(--ivory);
  border-radius: 10px;
  padding: 1.6rem 1.8rem;
  border: 1px solid var(--line);
}
.exc-sidebar-card h3{
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.exc-sidebar-card h3 i{
  font-size: 0.85rem;
}
.exc-detail-row{
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.exc-detail-row:last-child{ border-bottom: none; }
.exc-detail-label{
  color: var(--ink-soft);
  font-weight: 400;
}
.exc-detail-value{
  color: var(--ink);
  font-weight: 500;
  text-align: right;
  max-width: 58%;
}

@media (max-width:860px){
  .exc-overview-grid{ grid-template-columns: 1fr; }
  .exc-overview-sidebar{ order: -1; }
}


/* ---------- HIGHLIGHTS / WHY CARDS ---------- */
/* Reuses dst-whyvisit pattern but with exc- prefix for content variation */
.exc-highlights{
  padding: clamp(3.5rem,6vw,5.5rem) 0;
  position: relative;
  overflow: hidden;
  background-color: #000;
}
.exc-highlights-bg{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.99);
}
.exc-highlights::before{
  content:''; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}
.exc-highlights .container{ position: relative; z-index: 2; }
.exc-highlights .section-head h2{ color: #fff; }
.exc-highlights .section-head p{ color: rgba(255,253,249,0.6); }

.exc-hl-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.exc-hl-card{
  background: rgba(255,253,249,0.06);
  border: 1px solid rgba(255,253,249,0.1);
  border-radius: 10px;
  padding: 2rem 1.8rem;
  backdrop-filter: blur(6px);
  transition: border-color 0.3s, transform 0.3s;
}
.exc-hl-card:hover{
  border-color: var(--gold-soft);
  transform: translateY(-4px);
}
.exc-hl-icon{
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-soft);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.exc-hl-card h3{
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.exc-hl-card p{
  color: rgba(255,253,249,0.6);
  font-size: 0.9rem;
  line-height: 1.65;
}
@media (max-width:860px){
  .exc-hl-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width:560px){
  .exc-hl-grid{ grid-template-columns: 1fr; }
}


/* ---------- INCLUSIONS / EXCLUSIONS ---------- */
.exc-inc-exc{
  padding: clamp(3rem,6vw,5rem) 0;
}
.exc-inc-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.exc-inc-col h3{
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.exc-inc-col h3 i{
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.exc-inc-col.included h3{ color: #2e7d32; }
.exc-inc-col.included h3 i{ background: rgba(46,125,50,0.1); color: #2e7d32; }
.exc-inc-col.excluded h3{ color: var(--crimson); }
.exc-inc-col.excluded h3 i{ background: rgba(177,61,63,0.1); color: var(--crimson); }

.exc-inc-list{
  list-style: none;
}
.exc-inc-list li{
  position: relative;
  padding: 0.6rem 0 0.6rem 1.6rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  line-height: 1.55;
}
.exc-inc-list li:last-child{ border-bottom: none; }
.exc-inc-list li::before{
  position: absolute;
  left: 0;
  top: 0.7rem;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
}
.exc-inc-col.included .exc-inc-list li::before{
  content: '\f00c';
  color: #2e7d32;
}
.exc-inc-col.excluded .exc-inc-list li::before{
  content: '\f00d';
  color: var(--crimson);
}

@media (max-width:640px){
  .exc-inc-grid{ grid-template-columns: 1fr; gap: 2rem; }
}


/* ---------- PRACTICAL INFO CARDS ---------- */
.exc-practical{
  padding: clamp(3rem,6vw,5rem) 0;
  background: var(--ivory);
}
.exc-prac-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.exc-prac-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.8rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.exc-prac-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.exc-prac-icon{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(177,61,63,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.exc-prac-card h3{
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}
.exc-prac-card p{
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width:860px){
  .exc-prac-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width:560px){
  .exc-prac-grid{ grid-template-columns: 1fr; }
}


/* ---------- CONSERVATION NOTE ---------- */
.exc-conservation{
  padding: clamp(2.5rem,5vw,4rem) 0;
}
.exc-conservation-inner{
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  background: rgba(46,125,50,0.05);
  border: 1px solid rgba(46,125,50,0.15);
  border-radius: 12px;
  padding: 2rem 2.2rem;
}
.exc-conservation-icon{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(46,125,50,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #2e7d32;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.exc-conservation-text h3{
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #2e7d32;
}
.exc-conservation-text p{
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}
@media (max-width:560px){
  .exc-conservation-inner{ flex-direction: column; gap: 1rem; padding: 1.5rem; }
}


/* ---------- RELATED EXCURSIONS (horizontal scroll rail) ---------- */
.exc-related{
  padding: clamp(3rem,6vw,5rem) 0;
  background: var(--ivory);
}
.exc-related-wrap{
  position: relative;
  margin-top: 2.5rem;
}
.exc-related-rail{
  display: flex;
  gap: var(--gap, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin: 0 -1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  scrollbar-width: thin;
}
.exc-related-rail::-webkit-scrollbar{ height: 5px; }
.exc-related-rail::-webkit-scrollbar-thumb{ background: var(--gold-soft); border-radius: 4px; }

.exc-related-card{
  flex: 0 0 clamp(260px, 28vw, 330px);
  scroll-snap-align: start;
  background: var(--paper);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
}
.exc-related-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.1);
}
.exc-related-img{
  height: 200px;
  overflow: hidden;
}
.exc-related-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.exc-related-card:hover .exc-related-img img{
  transform: scale(1.06);
}
.exc-related-body{
  padding: 1.3rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.exc-related-tag{
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.exc-related-body h3{
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.exc-related-body p{
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.55;
  flex: 1;
}
.exc-related-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.4rem;
  border-top: 1px solid var(--line);
}
.exc-related-price{
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.exc-related-price strong{
  color: var(--ink);
  font-size: 1rem;
}
.exc-related-link{
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.exc-related-link i{ transition: transform 0.3s ease; font-size: 0.65rem; }
.exc-related-card:hover .exc-related-link i{ transform: translateX(4px); }

/* Rail arrows */
.exc-related-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.exc-related-wrap:hover .exc-related-arrow{ opacity: 1; pointer-events: auto; }
.exc-related-arrow:hover{
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.exc-related-arrow--left{ left: -24px; }
.exc-related-arrow--right{ right: -24px; }
.exc-related-arrow.disabled{ opacity: 0 !important; pointer-events: none; }
@media (max-width:768px){
  .exc-related-arrow{ display: none; }
}


/* ---------- HERO PRICE BADGE ---------- */
.exc-price-badge{
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 4vw, 3.5rem);
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,253,249,0.15);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  text-align: center;
  z-index: 3;
}
.exc-price-badge .exc-price-from{
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.55);
  display: block;
  margin-bottom: 0.15rem;
}
.exc-price-badge .exc-price-amount{
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold-soft);
  display: block;
  line-height: 1.1;
}
.exc-price-badge .exc-price-unit{
  font-size: 0.75rem;
  color: rgba(255,253,249,0.55);
  display: block;
}
@media (max-width:560px){
  .exc-price-badge{ bottom: 1.5rem; right: 1rem; padding: 0.8rem 1.2rem; }
  .exc-price-badge .exc-price-amount{ font-size: 1.4rem; }
}


/* ---------- HERO CATEGORY TAG ---------- */
.exc-category-tag{
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--crimson);
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}


  /* ===================================================================
     EXCURSIONS ANCHOR PAGE — Editorial Overlap Layout
     =================================================================== */
  .anc-excursions {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4.5rem, 9vw, 7.5rem);
    background: var(--paper, #fffdf9);
  }
  .anc-exc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem);
    margin-top: clamp(2rem, 4vw, 3rem);
  }
  
  /* The Card Container */
  .anc-exc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
  }
  
  /* The Image (85% width) */
  .anc-exc-img {
    width: 85%;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: var(--ink);
  }
  .anc-exc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.5s ease;
  }
  .anc-exc-card:hover .anc-exc-img img {
    transform: scale(1.06);
  }

  /* The Content Box (Overlaps the image) */
  .anc-exc-body {
    width: 85%;
    align-self: flex-end; /* Default offset to the right */
    background: #ffffff;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: -15%; /* Pulls the box up over the image */
    position: relative;
    z-index: 2;
    border: 1px solid var(--line, rgba(0,0,0,0.1));
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
  }
  .anc-exc-card:hover .anc-exc-body {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  }

  /* Alternate Left/Right stagger for every even card */
  .anc-exc-card:nth-child(even) .anc-exc-img {
    align-self: flex-end;
  }
  .anc-exc-card:nth-child(even) .anc-exc-body {
    align-self: flex-start;
  }

  /* Typography within the box */
  .anc-exc-tag {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.6rem;
  }
  .anc-exc-body h3 {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    margin-bottom: 0.8rem;
    line-height: 1.2;
    color: var(--ink);
  }
  .anc-exc-body h3 em {
    font-style: italic;
    color: #000;
    font-weight: 400;
  }
  .anc-exc-desc {
    font-size: 0.92rem;
    color: var(--ink-soft, #3d3a38);
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  /* Footer of the content box */
  .anc-exc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line, rgba(0,0,0,0.1));
    padding-top: 1.2rem;
    margin-top: auto;
  }
  .anc-exc-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--ink-soft);
  }
  .anc-exc-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .anc-exc-meta i {
    color: var(--gold, #e5a732);
  }
  .anc-exc-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999;
    font-weight: 500;
  }
  .anc-exc-cta i {
    transition: transform 0.3s ease;
  }
  .anc-exc-card:hover .anc-exc-cta i {
    transform: translateX(4px);
  }

  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .anc-exc-img { width: 90%; }
    .anc-exc-body { width: 95%; margin-top: -10%; padding: 1.5rem; }
  }
  @media (max-width: 768px) {
    .anc-exc-grid { grid-template-columns: 1fr; gap: 4rem; }
    .anc-exc-img { width: 95%; align-self: flex-start !important; }
    .anc-exc-body { width: 92%; align-self: flex-end !important; margin-top: -12%; }
    .anc-exc-footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
  }
	
	
/* ===================== EXCURSION ANCHOR — GRID & FILTERS ===================== */

/* --- Filter Tabs --- */
.exc-anc-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.exc-anc-filter {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1.4rem;
    border: 1.5px solid #c8bfb3;
    border-radius: 100px;
    background: transparent;
    color: #4a4033;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .03em;
    cursor: pointer;
    transition: all .25s ease;
}
.exc-anc-filter:hover {
    border-color: #b13d3f;
    color: #b13d3f;
}
.exc-anc-filter.active {
    background: #b13d3f;
    border-color: #b13d3f;
    color: #fff;
}
.exc-anc-filter i {
    font-size: .75rem;
}
/* --- Card Grid --- */
.exc-anc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

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

@media (max-width: 600px) {
.exc-anc-grid {
    grid-template-columns: 1fr;
}
}
/* --- Card --- */
.exc-anc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    text-decoration: none;
    color: inherit;
    transition: transform .3s ease, box-shadow .3s ease;
}
.exc-anc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,.14);
}
/* Image wrapper */
.exc-anc-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.exc-anc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.exc-anc-card:hover .exc-anc-card-img img {
    transform: scale(1.06);
}
/* Category pill — top-left */
.exc-anc-tag {
    position: absolute;
    top: .8rem;
    left: .8rem;
    padding: .3rem .75rem;
    border-radius: 100px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(4px);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #4a4033;
}
/* Price badge — top-right */
.exc-anc-price {
    position: absolute;
    top: .8rem;
    right: .8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .45rem .7rem .35rem;
    border-radius: .6rem;
    background: #b13d3f;
    color: #fff;
    line-height: 1.1;
}
.exc-anc-price-from {
    font-size: .55rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    opacity: .85;
}
.exc-anc-price-amount {
    font-size: .95rem;
    font-weight: 700;
}
/* Body */
.exc-anc-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.3rem 1.3rem .8rem;
}
.exc-anc-card-body h3 {
    margin: 0 0 .5rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2c2519;
}
.exc-anc-card-body h3 em {
    font-style: italic;
    color: #b13d3f;
}
.exc-anc-card-desc {
    flex: 1;
    margin: 0;
    font-size: .85rem;
    line-height: 1.55;
    color: #6b6054;
}
/* Footer */
.exc-anc-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .8rem 1.3rem 1.1rem;
    border-top: 1px solid #f0ece7;
}
.exc-anc-card-meta {
    display: flex;
    gap: 1rem;
}
.exc-anc-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .75rem;
    color: #8c8278;
}
.exc-anc-card-meta span i {
    font-size: .7rem;
    color: #b13d3f;
}
.exc-anc-card-cta {
    font-size: .78rem;
    font-weight: 600;
    color: #b13d3f;
    white-space: nowrap;
}
.exc-anc-card-cta i {

    margin-left: .3rem;
    transition: transform .25s ease;
}
.exc-anc-card:hover .exc-anc-card-cta i {
    transform: translateX(3px);
}
/* Hidden state for filter animation */
.exc-anc-card[data-hidden="true"] {
    display: none;
}
/* --- "Why Day Trips" value props --- */
.exc-anc-value {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #f8f5f0;
}
.exc-anc-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 760px) {
.exc-anc-value-grid {
    grid-template-columns: 1fr;
}
}
.exc-anc-val-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.exc-anc-val-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #b13d3f;
    color: #fff;
    font-size: 1.3rem;
}
.exc-anc-val-card h3 {
    margin: 0 0 .6rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c2519;
}
.exc-anc-val-card p {
    margin: 0;
    font-size: .88rem;
    line-height: 1.6;
    color: #6b6054;
}
/* --- Count badge next to filter --- */
.exc-anc-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.3rem;
    height: 1.3rem;
    padding: 0 .35rem;
    border-radius: 100px;
    background: rgba(0,0,0,.1);
    font-size: .65rem;
    font-weight: 700;
    line-height: 1;
}
.exc-anc-filter.active .exc-anc-count {
    background: rgba(255,255,255,.25);
}	
	