/* ===================================================================
   KULDIP'S TOURING COMPANY LTD — Anchor / Cluster Pages
   CSS namespace: anc-*
   Groups 6 itineraries per page (Adventure, Short, Big Five, Family)
   =================================================================== */


/* ===================== HERO ===================== */
.anc-hero{
  position:relative;
  min-height: clamp(340px, 52vh, 520px);
  display:flex; align-items:flex-end;
  background-size:cover; background-position:center 35%;
  padding: clamp(3rem,8vw,5rem) 0 clamp(2.5rem,5vw,3.5rem);
  background-color: #000;
}
.anc-hero::before{
  content:''; position:absolute; inset:0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.12) 100%
  );
}
.anc-hero-inner{
  position:relative; z-index:2;
  width:100%; max-width: var(--container, 1280px);
  margin:0 auto;
  padding: 0 clamp(1.25rem,4vw,3rem);
  color:#fff;
  text-align:center;
}
.anc-hero .eyebrow{ display:none; } 
.anc-hero h1{
  font-family: var(--serif);
  font-size: clamp(2.2rem,5vw,3.6rem);
  font-weight:500; line-height:1.1;
  color:#fff; margin-bottom:1rem;
}
.anc-hero h1 em{
  font-style:italic; color: var(--gold-soft); font-weight:400;
}
.anc-hero-sub{
  font-size: clamp(0.95rem,1.6vw,1.15rem);
  font-weight:300; color: rgba(255,253,249,0.78);
  max-width:640px; line-height:1.65;
  margin-left:auto; margin-right:auto;
}


/* ===================== INTRO ===================== */
.anc-intro{
  padding: clamp(3.5rem,7vw,5.5rem) 0;
  background: var(--paper, #fffdf9);
}
.anc-intro-inner{
  max-width:760px; margin:0 auto; text-align:center;
}
.anc-intro .eyebrow{ justify-content:center; margin-bottom:1.1rem; }
.anc-intro .eyebrow::before,
.anc-intro .eyebrow::after{
  content:''; width:28px; height:1px; background: var(--crimson);
}
.anc-intro h2{
  font-family: var(--serif);
  font-size: clamp(1.7rem,3.5vw,2.5rem);
  margin-bottom:1.2rem;
}
.anc-intro p{
  font-size: clamp(0.95rem,1.4vw,1.05rem);
  color: var(--ink-soft, #3d3a38); font-weight:300;
  line-height:1.7; margin-bottom:0.6rem;
}
.anc-intro .underline{
  width:56px; height:2px; margin:1.6rem auto 0;
  background: var(--crimson); border-radius:1px;
  position:relative; overflow:hidden;
}
.anc-intro .underline::after{
  content:''; position:absolute; inset:0;
  background: var(--gold-soft);
  transform: translateX(-100%);
  transition: transform .8s ease;
}
.anc-intro.in-view .underline::after,
.anc-intro .underline.in-view::after{
  transform: translateX(0);
}


/* ===================== TOUR CARDS GRID ===================== */
.anc-tours{
  padding: clamp(2rem,5vw,3.5rem) 0 clamp(4rem,8vw,6.5rem);
  background: var(--ivory, #f8f2e9);
}
.anc-tours-list{
  display:flex; flex-direction:column;
  gap: clamp(1.8rem,3.5vw,2.5rem);
}


/* ===================== SINGLE TOUR CARD ===================== */
/* Layout: image fills the full card background (left ~50%),
   body + side panels float on top with uniform outer margins,
   touching each other in the middle.                          */

.anc-card{
  --_margin: clamp(1rem, 2vw, 1.4rem);   /* uniform floating-panel margin */
  --_side-w: clamp(190px, 25%, 300px);   /* sidebar flex-basis            */
  position:relative;
  display:flex;
  min-height: 440px;
  width:90%;
  margin-left:auto; margin-right:auto;
  background: #f8f2e9;
  border:0px solid var(--line, rgba(0,0,0,0.10));
  border-radius:6px;
  overflow:hidden;
  transition: box-shadow .45s ease, transform .45s ease;
  text-decoration:none; color:inherit;
}
.anc-card:hover{
  box-shadow: 0 20px 52px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

/* --- Image: absolutely positioned, bleeds under the body panel --- */
.anc-card-img{
  position:absolute;
  top:0; left:0; bottom:0;
  right: calc(var(--_side-w) + var(--_margin));   /* stretches to sidebar edge */
  z-index:0;
  overflow:hidden;
}
.anc-card-img img{
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition: transform .7s ease;
}
.anc-card:hover .anc-card-img img{
  transform: scale(1.04);
}

/* --- Text panel: floats over image with margin top/left/bottom --- */
.anc-card-body{
  position:relative; z-index:1;
  flex:1;
  background: #f8f2e9;
  margin: var(--_margin) 0 var(--_margin) 32%;
  padding: clamp(1.6rem,3vw,2.2rem) clamp(1.5rem,3vw,2.4rem);
  display:flex; flex-direction:column; justify-content:center;
}
.anc-card-route{
  font-family: var(--sans);
  font-size:0.68rem; font-weight:500;
  letter-spacing:0.15em; text-transform:uppercase;
  color: var(--crimson, #b13d3f);
  margin-bottom:0.55rem;
}
.anc-card-body h3{
  font-family: var(--serif);
  font-size: clamp(1.3rem,2.2vw,1.65rem);
  font-weight:500; line-height:1.2;
  margin-bottom:0.75rem;
  color: var(--ink);
}
.anc-card-body h3 em{
  font-style:italic; color: var(--crimson); font-weight:400;
}
.anc-card-desc{
  font-size:0.9rem; color: var(--ink-soft, #3d3a38);
  font-weight:300; line-height:1.65;
  max-width:480px;
}

/* --- Sidebar panel: floats with margin top/right/bottom, left edge touches body --- */
.anc-card-side{
  position:relative; z-index:1;
  flex: 0 0 var(--_side-w);
  background: #fff;
  margin: var(--_margin) var(--_margin) var(--_margin) 0;
  padding: clamp(1.4rem,2.5vw,2rem) clamp(1.2rem,2vw,1.8rem);
  display:flex; flex-direction:column;
  justify-content:center;
  gap:1rem;
}

/* Meta items */
.anc-card-meta{
  display:flex; flex-direction:column; gap:0.65rem;
}
.anc-card-meta-item{
  display:flex; align-items:center; gap:0.65rem;
  font-size:0.88rem; font-weight:400;
  color: var(--ink);
}
.anc-card-meta-item i{
  width:22px; text-align:center;
  color: var(--crimson, #b13d3f);
  font-size:0.85rem;
}

/* CTA button */
.anc-card-cta{
  display:inline-flex; align-items:center; justify-content:center;
  gap:0.5rem;
  margin-top:auto;
  padding: 0.95rem 1.6rem;
  background: var(--crimson, #b13d3f);
  color:#fff;
  font-family: var(--sans);
  font-size:0.72rem; font-weight:500;
  letter-spacing:0.22em; text-transform:uppercase;
  border:none; border-radius:3px;
  cursor:pointer;
  transition: background .3s ease, box-shadow .3s ease;
  text-decoration:none;
  text-align:center;
}
.anc-card-cta:hover{
  background: #8e2f30;
  box-shadow: 0 6px 20px rgba(177,61,63,0.3);
}
.anc-card-cta i{
  font-size:0.6rem;
  transition: transform .3s ease;
}
.anc-card:hover .anc-card-cta i{
  transform: translateX(4px);
}


/* ===================== RESPONSIVE ===================== */

/* Tablet: image still bleeds, but panels shift left to show more image */
@media (max-width:1024px){
  .anc-card{
    min-height: clamp(260px, 30vw, 320px);
  }
  .anc-card-body{
    margin-left: 26%;
  }
  .anc-card{
    --_side-w: clamp(170px, 27%, 280px);
    width:95%;
  }
}

/* Small tablet / large phone: stack body+side vertically, image behind body only */
@media (max-width:768px){
  .anc-card{
    flex-direction:column;
    min-height:auto;
    width:100%;
  }
  .anc-card-img{
    position:relative;
    width:100%; height: clamp(200px, 40vw, 280px);
  }
  .anc-card-body{
    margin: 0;
    background: var(--paper);
  }
  .anc-card-side{
    flex:none;
    margin: 0;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:1.2rem;
  }
  .anc-card-meta{
    flex-direction:row; gap:1.4rem;
  }
}

/* Mobile: tighten spacing */
@media (max-width:480px){
  .anc-card-body h3{
    font-size:1.25rem;
  }
  .anc-card-side{
    flex-direction:column;
    align-items:stretch;
  }
  .anc-card-meta{
    flex-direction:row; gap:1rem;
    justify-content:flex-start;
  }
}


/* ===================================================================
   DESTINATION ANCHOR PAGES
   Why-visit grid · Destination cards · Safari tips accordion
   =================================================================== */


/* ===================== WHY VISIT — 3-column grid ===================== */
.anc-why{
  padding: clamp(3.5rem,7vw,5.5rem) 0;
  background: var(--ivory, #f8f2e9);
}
.anc-why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.anc-why-card{
  text-align:center;
  padding: clamp(1.5rem,3vw,2.2rem);
}
.anc-why-icon{
  width:56px; height:56px;
  margin:0 auto 1.2rem;
  display:flex; align-items:center; justify-content:center;
  border:1.5px solid var(--crimson, #b13d3f);
  border-radius:50%;
  color: var(--crimson, #b13d3f);
  font-size:1.25rem;
}
.anc-why-card h3{
  font-family: var(--serif);
  font-size: clamp(1.15rem,1.8vw,1.35rem);
  font-weight:500; margin-bottom:0.7rem;
}
.anc-why-card p{
  font-size:0.9rem; color: var(--ink-soft, #3d3a38);
  font-weight:300; line-height:1.65;
}
@media (max-width:768px){
  .anc-why-grid{ grid-template-columns:1fr; max-width:480px; margin-left:auto; margin-right:auto; }
}


/* ===================== DESTINATION CARDS — 2-column grid ===================== */
.anc-dests{
  padding: clamp(2rem,5vw,3.5rem) 0 clamp(4rem,8vw,6.5rem);
  background: var(--paper, #fffdf9);
}
.anc-dests-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

/* Single destination card */
.anc-dest-card{
  display:grid;
  grid-template-columns: clamp(160px, 38%, 280px) 1fr;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  text-decoration:none; color:inherit;
  align-items:start;
}
.anc-dest-card:hover .anc-dest-img img{
  transform: scale(1.04);
}
.anc-dest-img{
  overflow:hidden;
  aspect-ratio: 4 / 5;
  border-radius:3px;
}
.anc-dest-img img{
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition: transform .6s ease;
}
.anc-dest-body{
  display:flex; flex-direction:column;
  padding-top:0.3rem;
}
.anc-dest-body h3{
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight:500; line-height:1.15;
  color: var(--ink);
  margin-bottom: clamp(0.6rem, 1.5vw, 1rem);
}
.anc-dest-body p{
  font-size:0.88rem; color: var(--ink-soft, #3d3a38);
  font-weight:300; line-height:1.65;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
}

/* Circle-arrow CTA */
.anc-dest-cta{
  display:inline-flex; align-items:center;
  gap:0.65rem;
  font-family: var(--sans);
  font-size:0.7rem; font-weight:500;
  letter-spacing:0.2em; text-transform:uppercase;
  color: var(--ink);
  margin-top:auto;
}
.anc-dest-cta-icon{
  width:32px; height:32px;
  border:1.5px solid var(--crimson, #b13d3f);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color: var(--crimson, #b13d3f);
  font-size:0.7rem;
  transition: background .3s ease, color .3s ease;
}
.anc-dest-card:hover .anc-dest-cta-icon{
  background: var(--crimson, #b13d3f);
  color:#fff;
}

@media (max-width:900px){
  .anc-dests-grid{ grid-template-columns:1fr; max-width:600px; margin-left:auto; margin-right:auto; }
}
@media (max-width:480px){
  .anc-dest-card{ grid-template-columns: 120px 1fr; }
  .anc-dest-body h3{ font-size:1.25rem; }
}


/* ===================== SAFARI TIPS — Accordion ===================== */
.anc-tips{
  padding: clamp(3.5rem,7vw,5.5rem) 0;
  background: var(--ivory, #f8f2e9);
}
.anc-tips-list{
  max-width:820px; margin:0 auto;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.anc-tip{
  border-bottom:1px solid var(--line, rgba(0,0,0,0.12));
}
.anc-tip:first-child{
  border-top:1px solid var(--line, rgba(0,0,0,0.12));
}

.anc-tip-header{
  display:flex; align-items:center; justify-content:space-between;
  padding: clamp(1rem, 2vw, 1.4rem) 0;
  cursor:pointer;
  gap:1rem;
}
.anc-tip-header h3{
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight:500;
  flex:1;
}
.anc-tip-toggle{
  width:32px; height:32px;
  border:1.5px solid var(--line, rgba(0,0,0,0.2));
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:0.75rem; color: var(--ink-soft);
  flex-shrink:0;
  transition: transform .35s ease, border-color .35s ease;
}
.anc-tip.open .anc-tip-toggle{
  transform: rotate(180deg);
  border-color: var(--crimson);
  color: var(--crimson);
}

.anc-tip-body{
  max-height:0; overflow:hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.anc-tip.open .anc-tip-body{
  max-height:400px;
  padding-bottom: clamp(1rem, 2vw, 1.4rem);
}
.anc-tip-body p{
  font-size:0.9rem; color: var(--ink-soft, #3d3a38);
  font-weight:300; line-height:1.7;
  padding-right: clamp(2rem, 4vw, 3.5rem);
}


/* ===================================================================
   PRIVACY POLICY PAGE — reuses terms-* namespace
   =================================================================== */

.terms-page{
  padding: clamp(3rem,6vw,5.5rem) 0 clamp(3.5rem,7vw,6rem);
}
.terms-wrap{
  max-width: 820px;
  margin: 0 auto;
}

/* -- last-updated bar -- */
.terms-updated{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0.45rem 1rem;
  margin-bottom: 2rem;
}
.terms-updated i{
  color: var(--crimson);
  font-size: 0.75rem;
}

/* -- table of contents -- */
.terms-toc{
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.8rem 2rem;
  margin-bottom: 2.8rem;
}
.terms-toc h2{
  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;
}
.terms-toc h2 i{ font-size: 0.85rem; }
.terms-toc ol{
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
.terms-toc ol li{
  counter-increment: toc;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
}
.terms-toc ol li:last-child{ border-bottom: none; }
.terms-toc ol li a{
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.terms-toc ol li a:hover{ color: var(--crimson); }
.terms-toc ol li a::before{
  content: counter(toc, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--crimson);
  flex-shrink: 0;
  width: 1.6rem;
}
@media (max-width:560px){
  .terms-toc ol{ columns: 1; }
  .terms-toc{ padding: 1.4rem 1.5rem; }
}

/* -- section blocks -- */
.terms-section{
  margin-bottom: 2.5rem;
  scroll-margin-top: 100px;
}
.terms-section:last-child{ margin-bottom: 0; }
.terms-section-head{
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--line);
}
.terms-section-num{
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--crimson);
  line-height: 1;
  flex-shrink: 0;
}
.terms-section-head h2{
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.3;
}
.terms-section p{
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.terms-section p:last-child{ margin-bottom: 0; }

/* -- bullet lists -- */
.terms-list{
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.terms-list li{
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.65;
  border-bottom: 1px solid var(--line);
}
.terms-list li:last-child{ border-bottom: none; }
.terms-list li::before{
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.55rem;
  color: var(--crimson);
  position: absolute;
  left: 0;
  top: 0.85rem;
}

/* -- highlight box -- */
.terms-highlight{
  background: rgba(177,61,63,0.05);
  border: 1px solid rgba(177,61,63,0.15);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  margin: 1.2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.terms-highlight-icon{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(177,61,63,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.terms-highlight p{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* -- governing footer -- */
.terms-governing{
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 2px solid var(--line);
  text-align: center;
}
.terms-governing p{
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}
.terms-governing .terms-gov-flag{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--ink);
}

/* ===================================================================
   ABOUT US PAGE — abt-* namespaced styles
   =================================================================== */


/* ---------- HERITAGE INTRO ---------- */
.abt-intro{
  padding: clamp(3.5rem,7vw,6rem) 0;
}
.abt-intro-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem,5vw,5rem);
  align-items: center;
}
.abt-intro-text .eyebrow{ margin-bottom: 1rem; }
.abt-intro-text h2{
  font-size: clamp(1.65rem,3.2vw,2.4rem);
  margin-bottom: 1.4rem;
  line-height: 1.2;
}
.abt-intro-text p{
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.abt-intro-img{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.abt-intro-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.abt-intro-badge{
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,253,249,0.15);
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  text-align: center;
}
.abt-intro-badge span:first-child{
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-soft);
  line-height: 1.1;
}
.abt-intro-badge span:last-child{
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.55);
}
@media (max-width:860px){
  .abt-intro-grid{ grid-template-columns: 1fr; }
  .abt-intro-img{ max-height: 400px; }
}


/* ---------- STATISTICS BAND ---------- */
.abt-stats{
  background: var(--ink);
  padding: clamp(2.5rem,5vw,3.5rem) 0;
  position: relative;
  overflow: hidden;
}
.abt-stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.abt-stat{
  padding: 0.5rem;
}
.abt-stat-number{
  font-family: var(--serif);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 500;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.abt-stat-label{
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.55);
}
.abt-stat-divider{
  width: 1px;
  background: rgba(255,253,249,0.12);
  margin: 0 auto;
  display: none;
}
@media (max-width:700px){
  .abt-stats-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width:400px){
  .abt-stats-grid{ grid-template-columns: 1fr; gap: 1.5rem; }
}


/* ---------- TIMELINE ---------- */
.abt-timeline{
  padding: clamp(3.5rem,7vw,6rem) 0;
  background: var(--ivory);
}
.abt-timeline-track{
  position: relative;
  margin-top: 3rem;
}
.abt-timeline-track::before{
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
}
.abt-milestone{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  margin-bottom: 3rem;
}
.abt-milestone:last-child{ margin-bottom: 0; }

.abt-milestone-dot{
  position: absolute;
  left: 50%;
  top: 0.2rem;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--crimson);
  z-index: 2;
}
.abt-milestone-year{
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--crimson);
  text-align: right;
  padding-right: 2.5rem;
  line-height: 1.2;
}
.abt-milestone-content{
  padding-left: 2.5rem;
}
.abt-milestone-content h3{
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.abt-milestone-content p{
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}
@media (max-width:700px){
  .abt-timeline-track::before{ left: 1rem; }
  .abt-milestone{
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding-left: 2.8rem;
  }
  .abt-milestone-dot{ left: 1rem; top: 0.1rem; }
  .abt-milestone-year{
    text-align: left;
    padding-right: 0;
    font-size: 1.3rem;
  }
  .abt-milestone-content{ padding-left: 0; }
}


/* ---------- SERVICES GRID ---------- */
.abt-services{
  padding: clamp(3.5rem,7vw,6rem) 0;
}
.abt-svc-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.abt-svc-card{
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2rem 1.8rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.abt-svc-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.abt-svc-icon{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(177,61,63,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.abt-svc-card h3{
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.abt-svc-card p{
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}
@media (max-width:860px){
  .abt-svc-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width:560px){
  .abt-svc-grid{ grid-template-columns: 1fr; }
}


/* ---------- FLEET SECTION ---------- */
.abt-fleet{
  padding: clamp(3.5rem,7vw,5.5rem) 0;
  position: relative;
  overflow: hidden;
  background-color: maroon;
}
.abt-fleet-bg{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.9);
}
.abt-fleet::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%);
}
.abt-fleet .container{ position: relative; z-index: 2; }
.abt-fleet .section-head h2{ color: #fff; }
.abt-fleet .section-head p{ color: rgba(255,253,249,0.6); }

.abt-fleet-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.abt-fleet-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);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.abt-fleet-card:hover{
  border-color: var(--gold-soft);
  transform: translateY(-4px);
}
.abt-fleet-icon{
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-soft);
  font-size: 1.1rem;
  margin: 0 auto 1.2rem;
}
.abt-fleet-card h3{
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.abt-fleet-card p{
  color: rgba(255,253,249,0.6);
  font-size: 0.9rem;
  line-height: 1.65;
}
@media (max-width:860px){
  .abt-fleet-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width:560px){
  .abt-fleet-grid{ grid-template-columns: 1fr; }
}


/* ---------- MD MESSAGE ---------- */
.abt-message{
  padding: clamp(3.5rem,7vw,6rem) 0;
}
.abt-message-grid{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem,4vw,4rem);
  align-items: start;
}
.abt-message-photo{
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.abt-message-photo img{
  width: 100%;
  display: block;
  border-radius: 10px;
}
.abt-message-photo-caption{
  margin-top: 1rem;
  text-align: center;
}
.abt-message-photo-caption strong{
  display: block;
  font-size: 1rem;
  color: var(--ink);
}
.abt-message-photo-caption span{
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.abt-message-body .eyebrow{ margin-bottom: 1rem; }
.abt-message-body h2{
  font-size: clamp(1.5rem,2.8vw,2rem);
  margin-bottom: 1.4rem;
  line-height: 1.25;
}
.abt-message-body blockquote{
  border-left: 3px solid var(--gold-soft);
  padding-left: 1.4rem;
  margin: 1.6rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
}
.abt-message-body p{
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.abt-message-sig{
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.abt-message-sig strong{
  display: block;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.abt-message-sig span{
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
@media (max-width:860px){
  .abt-message-grid{
    grid-template-columns: 1fr;
  }
  .abt-message-photo{
    max-width: 260px;
  }
}


/* ---------- VALUES / PROMISE ---------- */
.abt-values{
  padding: clamp(3rem,6vw,5rem) 0;
  background: var(--ivory);
}
.abt-values-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.abt-value-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform 0.3s;
}
.abt-value-card:hover{
  transform: translateY(-3px);
}
.abt-value-icon{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(177,61,63,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}
.abt-value-card h3{
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.abt-value-card p{
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}
@media (max-width:860px){
  .abt-values-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width:480px){
  .abt-values-grid{ grid-template-columns: 1fr; }
}


/* ===================================================================
   BOOKING TERMS PAGE — terms-* namespaced styles
   =================================================================== */

.terms-page{
  padding: clamp(3rem,6vw,5.5rem) 0 clamp(3.5rem,7vw,6rem);
}
.terms-wrap{
  max-width: 820px;
  margin: 0 auto;
}

/* -- last-updated bar -- */
.terms-updated{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0.45rem 1rem;
  margin-bottom: 2rem;
}
.terms-updated i{
  color: var(--crimson);
  font-size: 0.75rem;
}

/* -- table of contents -- */
.terms-toc{
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.8rem 2rem;
  margin-bottom: 2.8rem;
}
.terms-toc h2{
  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;
}
.terms-toc h2 i{ font-size: 0.85rem; }
.terms-toc ol{
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
.terms-toc ol li{
  counter-increment: toc;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
}
.terms-toc ol li:last-child{ border-bottom: none; }
.terms-toc ol li a{
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.terms-toc ol li a:hover{ color: var(--crimson); }
.terms-toc ol li a::before{
  content: counter(toc, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--crimson);
  flex-shrink: 0;
  width: 1.6rem;
}
@media (max-width:560px){
  .terms-toc ol{ columns: 1; }
  .terms-toc{ padding: 1.4rem 1.5rem; }
}

/* -- section blocks -- */
.terms-section{
  margin-bottom: 2.5rem;
  scroll-margin-top: 100px;
}
.terms-section:last-child{ margin-bottom: 0; }
.terms-section-head{
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--line);
}
.terms-section-num{
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--crimson);
  line-height: 1;
  flex-shrink: 0;
}
.terms-section-head h2{
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.3;
}
.terms-section p{
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.terms-section p:last-child{ margin-bottom: 0; }

/* -- bullet lists inside terms -- */
.terms-list{
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.terms-list li{
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.65;
  border-bottom: 1px solid var(--line);
}
.terms-list li:last-child{ border-bottom: none; }
.terms-list li::before{
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.55rem;
  color: var(--crimson);
  position: absolute;
  left: 0;
  top: 0.85rem;
}

/* -- highlight box for key info -- */
.terms-highlight{
  background: rgba(177,61,63,0.05);
  border: 1px solid rgba(177,61,63,0.15);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  margin: 1.2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.terms-highlight-icon{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(177,61,63,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.terms-highlight p{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* -- governing law footer -- */
.terms-governing{
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 2px solid var(--line);
  text-align: center;
}
.terms-governing p{
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}
.terms-governing .terms-gov-flag{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--ink);
}

/* ===================================================================
   FAQ PAGE — faq-* namespaced styles
   =================================================================== */

.faq-page{
  padding: clamp(3rem,6vw,5.5rem) 0 clamp(3.5rem,7vw,6rem);
}
.faq-wrap{
  max-width: 820px;
  margin: 0 auto;
}

/* -- intro text -- */
.faq-intro{
  margin-bottom: 2.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* -- category headings -- */
.faq-category{
  margin-bottom: 2.8rem;
}
.faq-category-head{
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--line);
}
.faq-category-icon{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(177,61,63,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.faq-category-head h2{
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.3;
}

/* -- accordion items -- */
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child{ border-bottom: none; }

.faq-question{
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  background: none;
  border: none;
  padding: 1.15rem 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover{ color: var(--crimson); }

.faq-question::before{
  content: 'Q';
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: var(--crimson);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.faq-item.active .faq-question::before{
  background: var(--ink);
}

.faq-chevron{
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--ink-soft);
  transition: transform 0.3s ease, color 0.2s;
  flex-shrink: 0;
}
.faq-item.active .faq-chevron{
  transform: rotate(180deg);
  color: var(--crimson);
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 2.8rem;
}
.faq-item.active .faq-answer{
  max-height: 600px;
  padding: 0 0 1.4rem 2.8rem;
}
.faq-answer p{
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.faq-answer p:last-child{ margin-bottom: 0; }

/* -- highlight box (reused from terms) -- */
.faq-highlight{
  background: rgba(177,61,63,0.05);
  border: 1px solid rgba(177,61,63,0.15);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  margin: 0.8rem 0 0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.faq-highlight-icon{
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(177,61,63,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.faq-highlight p{
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* -- still have questions -- */
.faq-footer{
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 2px solid var(--line);
  text-align: center;
}
.faq-footer p{
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.faq-footer p:last-child{ margin-bottom: 0; }
.faq-footer a{
  color: var(--crimson);
  text-decoration: underline;
  font-weight: 500;
}
.faq-footer a:hover{ text-decoration: none; }

/* -- responsive -- */
@media (max-width:560px){
  .faq-question{ font-size: 0.9rem; gap: 0.6rem; }
  .faq-item.active .faq-answer{ padding-left: 2.2rem; }
  .faq-answer{ padding-left: 2.2rem; }
}

/* ===================================================================
   GENERAL INFORMATION PAGE — reuses terms-* namespace
   =================================================================== */

.terms-page{
  padding: clamp(3rem,6vw,5.5rem) 0 clamp(3.5rem,7vw,6rem);
}
.terms-wrap{
  max-width: 820px;
  margin: 0 auto;
}

/* -- last-updated bar -- */
.terms-updated{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0.45rem 1rem;
  margin-bottom: 2rem;
}
.terms-updated i{
  color: var(--crimson);
  font-size: 0.75rem;
}

/* -- table of contents -- */
.terms-toc{
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.8rem 2rem;
  margin-bottom: 2.8rem;
}
.terms-toc h2{
  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;
}
.terms-toc h2 i{ font-size: 0.85rem; }
.terms-toc ol{
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
.terms-toc ol li{
  counter-increment: toc;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
}
.terms-toc ol li:last-child{ border-bottom: none; }
.terms-toc ol li a{
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.terms-toc ol li a:hover{ color: var(--crimson); }
.terms-toc ol li a::before{
  content: counter(toc, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--crimson);
  flex-shrink: 0;
  width: 1.6rem;
}
@media (max-width:560px){
  .terms-toc ol{ columns: 1; }
  .terms-toc{ padding: 1.4rem 1.5rem; }
}

/* -- section blocks -- */
.terms-section{
  margin-bottom: 2.5rem;
  scroll-margin-top: 100px;
}
.terms-section:last-child{ margin-bottom: 0; }
.terms-section-head{
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--line);
}
.terms-section-num{
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--crimson);
  line-height: 1;
  flex-shrink: 0;
}
.terms-section-head h2{
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.3;
}
.terms-section p{
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.terms-section p:last-child{ margin-bottom: 0; }

/* -- bullet lists inside sections -- */
.terms-list{
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.terms-list li{
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.65;
  border-bottom: 1px solid var(--line);
}
.terms-list li:last-child{ border-bottom: none; }
.terms-list li::before{
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.55rem;
  color: var(--crimson);
  position: absolute;
  left: 0;
  top: 0.85rem;
}

/* -- highlight box for key info -- */
.terms-highlight{
  background: rgba(177,61,63,0.05);
  border: 1px solid rgba(177,61,63,0.15);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  margin: 1.2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.terms-highlight-icon{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(177,61,63,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.terms-highlight p{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* -- governing law footer -- */
.terms-governing{
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 2px solid var(--line);
  text-align: center;
}
.terms-governing p{
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}
.terms-governing .terms-gov-flag{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--ink);
}


/* ===================================================================
   FIRST-TIME SAFARI PAGE — sfp-* namespaced styles
   =================================================================== */
	
.rugged-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}
.rugged-table th, .rugged-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
.rugged-table th {
    font-family: var(--sans);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--crimson);
    width: 30%;
}
.rugged-table td {
    color: var(--ink-soft);
    font-weight: 300;
}
.mindset-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--gold-soft);
    margin-bottom: 2.5rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.mindset-body {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255,253,249,0.8);
}
.mindset-body h3 {
    color: var(--paper);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(229,167,50,0.3);
    padding-bottom: 0.5rem;
    display: inline-block;
}
/* Max-width alignment overrides matching itn-inc-grid (900px) and centered */
.constrained-grid-section {
    max-width: 900px;
    margin: 0 auto;
}


/* ===================================================================
   FIRST-TIME SAFARI PAGE — sfp-* namespaced styles
   =================================================================== */

.sfp-page{
  padding: clamp(3rem,6vw,5.5rem) 0 clamp(3.5rem,7vw,6rem);
}
.sfp-wrap{
  max-width: 820px;
  margin: 0 auto;
}

/* -- lead paragraph -- */
.sfp-lead{
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--crimson);
  padding-left: 1.4rem;
}
.sfp-lead strong{ color: var(--crimson); }

/* -- phase blocks -- */
.sfp-phase{
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}
.sfp-phase:last-of-type{ margin-bottom: 0; }

.sfp-phase-head{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.sfp-phase-num{
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--crimson);
  opacity: 0.18;
  flex-shrink: 0;
  margin-top: -0.15em;
}
.sfp-phase-label{
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.sfp-phase-label span{
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
}
.sfp-phase-label h2{
  font-size: 1.3rem;
  margin: 0;
  line-height: 1.25;
}

.sfp-phase-intro{
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

/* -- content paragraphs -- */
.sfp-phase p{
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.sfp-phase p:last-child{ margin-bottom: 0; }

/* -- sub-headings inside phases -- */
.sfp-sub{
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.6rem 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sfp-sub i{
  color: var(--crimson);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* -- numbered steps (Phase II) -- */
.sfp-step{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding: 1.2rem 1.4rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.sfp-step-num{
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.sfp-step-body h3{
  font-size: 1rem;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.sfp-step-body p{
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* -- styled table (Phase II) -- */
.sfp-table-wrap{
  overflow-x: auto;
  margin: 1.2rem 0 1.4rem;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.sfp-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.6;
}
.sfp-table thead th{
  background: var(--crimson);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.2rem;
  text-align: left;
  white-space: nowrap;
}
.sfp-table tbody td{
  padding: 0.8rem 1.2rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.sfp-table tbody tr:last-child td{ border-bottom: none; }
.sfp-table tbody tr:nth-child(even) td{ background: var(--ivory); }
.sfp-table tbody td:first-child{
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  width: 160px;
}
@media (max-width:560px){
  .sfp-table tbody td:first-child{ white-space: normal; width: auto; }
}

/* -- bullet cards (icons + text) -- */
.sfp-cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin: 1rem 0 1.4rem;
}
.sfp-card{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.sfp-card-icon{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(177,61,63,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.sfp-card h3{
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}
.sfp-card p{
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* -- pull quote -- */
.sfp-quote{
  margin: 2rem 0;
  padding: 1.6rem 2rem;
  background: linear-gradient(135deg, rgba(177,61,63,0.06) 0%, rgba(177,61,63,0.02) 100%);
  border-left: 4px solid var(--crimson);
  border-radius: 0 10px 10px 0;
  position: relative;
}
.sfp-quote::before{
  content: '\201C';
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--crimson);
  opacity: 0.2;
  position: absolute;
  top: 0.2rem;
  left: 0.8rem;
  line-height: 1;
}
.sfp-quote p{
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  margin: 0;
  padding-left: 1.5rem;
}

/* -- highlight / callout box -- */
.sfp-highlight{
  background: rgba(177,61,63,0.05);
  border: 1px solid rgba(177,61,63,0.15);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  margin: 1.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.sfp-highlight-icon{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(177,61,63,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.sfp-highlight h3{
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.sfp-highlight p{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.sfp-highlight ul{
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}
.sfp-highlight ul li{
  position: relative;
  padding: 0.3rem 0 0.3rem 1.2rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.sfp-highlight ul li::before{
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.55rem;
  color: var(--crimson);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

/* -- divider between phases -- */
.sfp-divider{
  border: none;
  border-top: 1px dashed var(--line);
  margin: 2.5rem 0;
}

/* -- TOC nav -- */
.sfp-toc{
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 2.5rem;
}
.sfp-toc h2{
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sfp-toc h2 i{ font-size: 0.85rem; }
.sfp-toc ol{
  list-style: none;
  counter-reset: sfptoc;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
.sfp-toc ol li{
  counter-increment: sfptoc;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
}
.sfp-toc ol li:last-child{ border-bottom: none; }
.sfp-toc ol li a{
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.sfp-toc ol li a:hover{ color: var(--crimson); }
.sfp-toc ol li a::before{
  content: counter(sfptoc, upper-roman);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--crimson);
  flex-shrink: 0;
  width: 1.8rem;
}
@media (max-width:560px){
  .sfp-toc ol{ columns: 1; }
  .sfp-toc{ padding: 1.2rem 1.4rem; }
}

/* -- closing CTA -- */
.sfp-closing{
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 2px solid var(--line);
  text-align: center;
}
.sfp-closing p{
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.sfp-closing p:last-child{ margin-bottom: 0; }
.sfp-closing a.sfp-btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1.8rem;
  background: var(--crimson);
  color: #fff;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s;
}
.sfp-closing a.sfp-btn:hover{ background: var(--ink); }

/* -- responsive -- */
@media (max-width:600px){
  .sfp-phase-num{ font-size: 2.2rem; }
  .sfp-phase-label h2{ font-size: 1.1rem; }
  .sfp-step{ flex-direction: column; gap: 0.5rem; }
  .sfp-quote{ padding: 1.2rem 1.4rem; }
  .sfp-quote::before{ font-size: 2.8rem; top: 0.3rem; left: 0.5rem; }
  .sfp-quote p{ padding-left: 1rem; font-size: 1rem; }
}

.dst-slider-section{
  padding: clamp(3.5rem,7vw,5.5rem) 0;
  background: var(--sand-light, #faf8f5);
}
.dst-slider-wrap{
  position:relative;
}
.dst-slider-track{
  display:flex;
  gap: clamp(2rem, 4vw, 3.5rem);
  overflow-x:auto;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  padding-bottom:0.5rem;
}
.dst-slider-track::-webkit-scrollbar{ display:none; }

/* Each card takes up just under half the container so two show at once */
.dst-slider-track .anc-dest-card{
  flex: 0 0 calc(50% - clamp(1rem, 2vw, 1.75rem));
  min-width: 0;
}

/* Arrow buttons */
.dst-slider-arrow{
  position:absolute;
  top:50%; transform:translateY(-50%);
  z-index:3;
  width:44px; height:44px;
  border:none; border-radius:50%;
  background:rgba(255,255,255,0.92);
  box-shadow:0 2px 8px rgba(0,0,0,0.15);
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  color:var(--ink, #1a1a1a);
  opacity:0;
  transition: opacity .3s ease, background .2s ease;
  pointer-events:none;
}
.dst-slider-wrap:hover .dst-slider-arrow{
  opacity:1;
  pointer-events:auto;
}
.dst-slider-arrow:hover{
  background:var(--crimson, #b13d3f);
  color:#fff;
}
.dst-slider-arrow--left{ left:-22px; }
.dst-slider-arrow--right{ right:-22px; }

@media (max-width:900px){
  .dst-slider-track .anc-dest-card{ flex:0 0 100%; max-width:600px; }
  .dst-slider-arrow--left{ left:6px; }
  .dst-slider-arrow--right{ right:6px; }
  .dst-slider-wrap:hover .dst-slider-arrow{ opacity:0.9; }
}
@media (max-width:480px){
  .dst-slider-track .anc-dest-card{ flex:0 0 100%; }
}

