/* ── BRAND TOKENS ── */
:root {
  --gold: #A07828;
  --gold-lt: #C49A3C;
  --gold-bg: #F7F1E3;
  --gold-border: #D4B96A;
  --dark: #3D2E0A;
  --muted: #8A7250;
  --white: #fff;
  --border: #E8DFC8;
  --summit: #B8860B;
  --text: #2C2416;
  --text-light: #6B5B3E;
  --green-inc: #1a5c2e;
  --red-exc: #8B1A1A;
  --page-max: 1160px;
  --section-pad: 72px 24px;
}

.ryder-kili-wrapper {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #FAFAF7;
  color: #2C2416;
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
.ryder-kili-wrapper h1, .ryder-kili-wrapper h2, .ryder-kili-wrapper h3, .ryder-kili-wrapper h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; color: var(--dark); }
.ryder-kili-wrapper h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.ryder-kili-wrapper h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; }
.ryder-kili-wrapper h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
.ryder-kili-wrapper h4 { font-size: 1.1rem; font-weight: 600; }
.ryder-kili-wrapper p { margin-bottom: 1rem; color: var(--text-light); }
.ryder-kili-wrapper a { color: var(--gold); text-decoration: none; }
.ryder-kili-wrapper a:hover { text-decoration: underline; }

/* ── LAYOUT ── */
.ryder-kili-wrapper .container { max-width: var(--page-max); margin: 0 auto; padding: 0 24px; }
.ryder-kili-wrapper .section { padding: var(--section-pad); }
.ryder-kili-wrapper .section--alt { background: var(--gold-bg); }
.ryder-kili-wrapper .section--dark { background: var(--dark); color: var(--white); }
.ryder-kili-wrapper .section--dark h2, .ryder-kili-wrapper .section--dark h3, .ryder-kili-wrapper .section--dark p { color: var(--white); }

/* ── BREADCRUMB ── */
.ryder-kili-wrapper .breadcrumb { background: var(--dark); padding: 12px 24px; font-size: 12px; }
.ryder-kili-wrapper .breadcrumb__inner { max-width: var(--page-max); margin: 0 auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ryder-kili-wrapper .breadcrumb a { color: var(--gold-lt); font-weight: 500; letter-spacing: .04em; }
.ryder-kili-wrapper .breadcrumb span { color:#3d2e0a; }

/* ── QUICK FACTS ── */
.ryder-kili-wrapper .facts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 32px; }
.ryder-kili-wrapper .fact-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; border-top: 3px solid var(--gold); }
.ryder-kili-wrapper .fact-card__label { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.ryder-kili-wrapper .fact-card__value { font-size: 1rem; font-weight: 600; color: var(--dark); font-family: 'Playfair Display', serif; }

/* ── HERO ── */
.ryder-kili-wrapper .hero { position: relative; min-height: 76vh; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(160deg, #1a1200 0%, #3a2a06 45%, #4a3508 100%); overflow: hidden; }
.ryder-kili-wrapper .hero--has-image { background-size: cover; background-position: center; background-repeat: no-repeat; }
.ryder-kili-wrapper .hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,7,0,.45) 0%, rgba(20,14,0,.65) 50%, rgba(8,5,0,.85) 100%); pointer-events: none; z-index: 1; }
.ryder-kili-wrapper .hero__inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; padding: 0 40px; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; }
.ryder-kili-wrapper .hero__badge-wrap { margin-bottom: 32px; }
.ryder-kili-wrapper .hero__badge { display: inline-block; background: rgba(80,60,10,.55); border: 1px solid rgba(196,154,60,.35); border-radius: 40px; padding: 10px 36px; font-size: 13px; font-weight: 500; letter-spacing: .1em; color: rgba(255,255,255,.6); font-family: 'Inter', sans-serif; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.ryder-kili-wrapper .hero__title--split { font-size: clamp(1.4rem, 3.5vw, 3.2rem); line-height: 1.1; margin-bottom: 24px; display: block; text-align: center; white-space: nowrap; overflow: visible; }
.ryder-kili-wrapper .hero__title-italic { font-style: italic; color: var(--gold-lt); font-family: 'Optima', 'Optima Nova LT', 'CenturyGothic', 'Century Gothic', Candara, Georgia, serif; font-weight: 700; }
.ryder-kili-wrapper .hero__title-normal { color: rgba(255,255,255,.82); font-style: normal; font-family: 'Optima', 'Optima Nova LT', 'CenturyGothic', 'Century Gothic', Candara, Georgia, serif; font-weight: 700; }
.ryder-kili-wrapper .hero__subtitle { font-family: 'Inter', sans-serif; font-size: 1rem; color: rgba(255,255,255,.58); max-width: 780px; margin: 0; line-height: 1.75; font-weight: 300; text-align: center; }
.ryder-kili-wrapper .hero__breadcrumb-bar { position: relative; z-index: 2; padding: 16px 40px; border-top: 1px solid rgba(196,154,60,.15); }
.ryder-kili-wrapper .hero__breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: .04em; color: var(--gold-lt); font-family: 'Inter', sans-serif; flex-wrap: wrap; }
.ryder-kili-wrapper .hero__breadcrumb a { color: var(--gold-lt); text-decoration: none; opacity: .8; transition: opacity .15s; }
.ryder-kili-wrapper .hero__breadcrumb a:hover { opacity: 1; }
.ryder-kili-wrapper .hero__breadcrumb-sep { color: rgba(196,154,60,.5); }
.ryder-kili-wrapper .hero__breadcrumb span { color: rgba(255,255,255,.55); }
.ryder-kili-wrapper .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 6px; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: all .2s; text-decoration: none; }
.ryder-kili-wrapper .btn--gold { background: var(--gold); color: var(--white); border: 2px solid var(--gold); }
.ryder-kili-wrapper .btn--gold:hover { background: var(--summit); border-color: var(--summit); text-decoration: none; }
.ryder-kili-wrapper .btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.ryder-kili-wrapper .btn--outline:hover { background: rgba(255,255,255,.08); text-decoration: none; }

/* ── QUICK FACTS ── */
.ryder-kili-wrapper .facts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 32px; }
.ryder-kili-wrapper .fact-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; border-top: 3px solid var(--gold); }
.ryder-kili-wrapper .fact-card__label { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.ryder-kili-wrapper .fact-card__value { font-size: 1rem; font-weight: 600; color: var(--dark); font-family: 'Playfair Display', serif; }

/* ── SECTION HEADER ── */
.ryder-kili-wrapper .sec-header { margin-bottom: 40px; }
.ryder-kili-wrapper .sec-header__eyebrow { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; display: block; }
.ryder-kili-wrapper .sec-header__title { margin-bottom: 14px; }
.ryder-kili-wrapper .sec-header__lead { font-size: 1.05rem; color: var(--text-light); max-width: 700px; }
.ryder-kili-wrapper .divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0; }

/* ── OVERVIEW GRID ── */
.ryder-kili-wrapper .overview-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.ryder-kili-wrapper .overview-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.ryder-kili-wrapper .feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.ryder-kili-wrapper .feature-card__icon { font-size: 1.6rem; margin-bottom: 10px; }
.ryder-kili-wrapper .feature-card__title { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; letter-spacing: .03em; }
.ryder-kili-wrapper .feature-card__text { font-size: .85rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* SIDEBAR CALLOUT */
.ryder-kili-wrapper .callout { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; position: sticky; top: 24px; }
.ryder-kili-wrapper .callout__head { background: var(--dark); padding: 20px 22px; }
.ryder-kili-wrapper .callout__head h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.ryder-kili-wrapper .callout__head p { color: rgba(255,255,255,.65); font-size: .82rem; margin: 0; }
.ryder-kili-wrapper .callout__body { padding: 22px; }
.ryder-kili-wrapper .price-slab { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 20px; }
.ryder-kili-wrapper .price-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .88rem; }
.ryder-kili-wrapper .price-row:last-child { border-bottom: none; }
.ryder-kili-wrapper .price-row:first-child { background: var(--gold-bg); }
.ryder-kili-wrapper .price-row__group { color: var(--muted); font-weight: 500; }
.ryder-kili-wrapper .price-row__price { font-weight: 700; color: var(--dark); font-family: 'Playfair Display', serif; }
.ryder-kili-wrapper .price-row__price span { font-size: .72rem; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 400; }
.ryder-kili-wrapper .callout__note { font-size: .78rem; color: var(--muted); line-height: 1.5; margin-bottom: 20px; }
.ryder-kili-wrapper .callout__note strong { color: var(--dark); }

/* ── ITINERARY AT A GLANCE ── */
.ryder-kili-wrapper .glance-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.ryder-kili-wrapper .glance-table thead tr { background: var(--dark); color: var(--white); }
.ryder-kili-wrapper .glance-table thead th { padding: 14px 16px; text-align: left; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.ryder-kili-wrapper .glance-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.ryder-kili-wrapper .glance-table tbody tr:hover { background: var(--gold-bg); }
.ryder-kili-wrapper .glance-table tbody tr.summit-row { background: #fff8e8; }
.ryder-kili-wrapper .glance-table tbody tr.summit-row td { color: var(--summit); font-weight: 600; }
.ryder-kili-wrapper .glance-table td { padding: 13px 16px; vertical-align: middle; color: var(--text-light); }
.ryder-kili-wrapper .glance-table td:first-child { font-weight: 700; color: var(--gold); width: 72px; }
.ryder-kili-wrapper .glance-badge { display: inline-block; padding: 2px 8px; border-radius: 12px; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.ryder-kili-wrapper .badge--bf { background: #e8f5e8; color: #1a5c2e; }
.ryder-kili-wrapper .badge--bld { background: #e8f0f8; color: #1a3a6e; }
.ryder-kili-wrapper .badge--blpd { background: #fff3e0; color: #7a4400; }
.ryder-kili-wrapper .badge--d { background: #f0e8f0; color: #5a1a6e; }
.ryder-kili-wrapper .badge--mid { background: #1a5c2e; color: #fff; }

/* ── MAP SECTION ── */
.ryder-kili-wrapper .map-section { background: var(--dark); padding: 56px 24px; }
.ryder-kili-wrapper .map-section .sec-header__eyebrow, .ryder-kili-wrapper .map-section .sec-header__title { color: var(--white); }
.ryder-kili-wrapper .map-section .sec-header__lead { color: rgba(255,255,255,.65); }
.ryder-kili-wrapper .map-embed-wrapper { background: var(--white); border-radius: 12px; overflow: hidden; border: 2px solid var(--gold-border); box-shadow: 0 8px 40px rgba(0,0,0,.4); }

/* ── ELEVATION & MAP WIDGET ── */
.ryder-kili-wrapper .map-widget * { box-sizing: border-box; margin: 0; padding: 0; }
.ryder-kili-wrapper .map-widget { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #FAF8F3; }
.ryder-kili-wrapper .mw-legend { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; padding: 11px 24px; background: #fff; border-bottom: 1px solid #E8DFC8; }
.ryder-kili-wrapper .mw-li { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 500; color: #8A7250; }
.ryder-kili-wrapper .mw-dot { width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0; }
.ryder-kili-wrapper .mw-dash { width: 22px; height: 3px; background: repeating-linear-gradient(90deg,#7A5C18 0 6px,transparent 6px 10px); }
.ryder-kili-wrapper .mw-badge { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 8px 20px; background: #fff; border-bottom: 1px solid #E8DFC8; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #8A7250; flex-wrap: wrap; }
.ryder-kili-wrapper .mw-badge span { color: #A07828; }
.ryder-kili-wrapper .mw-body { display: grid; grid-template-columns: 1fr 360px; gap: 0; }
.ryder-kili-wrapper .mw-left { border-right: 1px solid #E8DFC8; }
.ryder-kili-wrapper .mw-mapcard { border-bottom: 1px solid #E8DFC8; }
.ryder-kili-wrapper #s-map { width: 100%; height: 420px; z-index: 1; }
.ryder-kili-wrapper .mw-mf { background: #fff; padding: 10px 16px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ryder-kili-wrapper .mw-mfl { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; color: #8A7250; }
.ryder-kili-wrapper .mw-ftag { font-size: 10.5px; font-weight: 600; padding: 3px 12px; border-radius: 20px; background: #F7F1E3; color: #A07828; border: 1px solid #D4B96A; }
.ryder-kili-wrapper .mw-elevation { background: #fff; padding: 20px 20px 12px; }
.ryder-kili-wrapper .mw-elev-title { font-size: 14px; font-weight: 600; color: #3D2E0A; margin-bottom: 12px; text-align: center; }
.ryder-kili-wrapper .mw-graph-container { position: relative; width: 100%; height: 360px; background: linear-gradient(180deg,#f9f6ee 0%,#fff 100%); border-radius: 6px; padding: 16px 8px 40px 60px; }
.ryder-kili-wrapper .mw-graph-svg { width: 100%; height: 100%; }
.ryder-kili-wrapper .mw-itin { overflow-y: auto; max-height: 780px; }
.ryder-kili-wrapper .mw-dc { position: relative; padding: 14px 14px 14px 46px; border-left: 2.5px solid #E8DFC8; margin-left: 18px; cursor: pointer; transition: background .15s; border-radius: 0 6px 6px 0; }
.ryder-kili-wrapper .mw-dc:hover { background: rgba(160,120,40,.05); }
.ryder-kili-wrapper .mw-dc.on { background: rgba(160,120,40,.08); border-left-color: #A07828; }
.ryder-kili-wrapper .mw-db { position: absolute; left: -19px; top: 14px; width: 36px; height: 36px; border-radius: 50%; background: #F7F1E3; border: 2px solid #A07828; color: #A07828; display: flex; align-items: center; justify-content: center; flex-direction: column; font-size: 6px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; line-height: 1.2; transition: background .15s; }
.ryder-kili-wrapper .mw-dc.on .mw-db, .ryder-kili-wrapper .mw-dc:hover .mw-db { background: #A07828; color: #fff; }
.ryder-kili-wrapper .mw-db strong { font-size: 12px; font-weight: 700; line-height: 1; }
.ryder-kili-wrapper .mw-dlbl { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: #A07828; font-weight: 700; margin-bottom: 2px; }
.ryder-kili-wrapper .mw-dtitle { font-size: 13px; font-weight: 600; color: #3D2E0A; margin-bottom: 4px; line-height: 1.3; }
.ryder-kili-wrapper .mw-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; margin-top: 5px; }
.ryder-kili-wrapper .mw-stat { font-size: 9.5px; color: #8A7250; }
.ryder-kili-wrapper .mw-stat strong { color: #3D2E0A; font-weight: 600; }
.ryder-kili-wrapper .mw-dc.summit-day { border-left-color: #B8860B; }
.ryder-kili-wrapper .mw-dc.summit-day.on { background: rgba(184,134,11,.08); }
.ryder-kili-wrapper .mw-dc.summit-day .mw-db { background: #B8860B; border-color: #FFD700; color: #fff; }

@keyframes popIn { 0%{opacity:0;transform:scale(0.2) translateY(14px)} 65%{transform:scale(1.18) translateY(-3px)} 100%{opacity:1;transform:scale(1) translateY(0)} }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(160,120,40,.3)} 50%{box-shadow:0 0 0 8px rgba(160,120,40,.08)} }

.ryder-kili-wrapper .leaflet-popup-content-wrapper { border-radius: 8px!important; padding: 0!important; overflow: hidden; box-shadow: 0 6px 22px rgba(90,60,0,.15)!important; }
.ryder-kili-wrapper .leaflet-popup-content { margin: 0!important; }
.ryder-kili-wrapper .leaflet-popup-tip-container { display: none!important; }
.ryder-kili-wrapper .leaflet-control-attribution { display: none!important; }
.ryder-kili-wrapper .pk-lbl { background: transparent!important; border: none!important; box-shadow: none!important; padding: 0!important; }
.ryder-kili-wrapper .pk-lbl::before { display: none!important; }

@media(max-width: 820px) { .ryder-kili-wrapper .mw-body { grid-template-columns: 1fr; } .ryder-kili-wrapper .mw-left { border-right: none; } }

/* ── PRICE SECTION ── */
.ryder-kili-wrapper .price-section { padding: var(--section-pad); }
.ryder-kili-wrapper .price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 32px; }
.ryder-kili-wrapper .price-card { background: var(--white); border: 2px solid var(--border); border-radius: 12px; padding: 28px 24px; text-align: center; position: relative; transition: border-color .2s, transform .2s; }
.ryder-kili-wrapper .price-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.ryder-kili-wrapper .price-card.featured { border-color: var(--gold); background: var(--gold-bg); }
.ryder-kili-wrapper .price-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.ryder-kili-wrapper .price-card__group { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.ryder-kili-wrapper .price-card__amount { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.ryder-kili-wrapper .price-card__per { font-size: .78rem; color: var(--muted); margin-bottom: 16px; }
.ryder-kili-wrapper .price-card__features { list-style: none; text-align: left; margin-bottom: 20px; padding-left: 0; }
.ryder-kili-wrapper .price-card__features li { font-size: .82rem; color: var(--text-light); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.ryder-kili-wrapper .price-card__features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.ryder-kili-wrapper .btn--card { display: block; width: 100%; text-align: center; padding: 11px; border-radius: 6px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--gold); color: var(--white); border: none; cursor: pointer; text-decoration: none; }

/* ── DETAILED ITINERARY ── */
.ryder-kili-wrapper .itin-days { display: flex; flex-direction: column; gap: 0; }
.ryder-kili-wrapper .itin-day { display: grid; grid-template-columns: 100px 1fr; border-bottom: 1px solid var(--border); }
.ryder-kili-wrapper .itin-day:last-child { border-bottom: none; }
.ryder-kili-wrapper .itin-day__num { background: var(--gold-bg); border-right: 1px solid var(--border); padding: 28px 16px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 4px; }
.ryder-kili-wrapper .itin-day__label { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.ryder-kili-wrapper .itin-day__n { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.ryder-kili-wrapper .itin-day--summit .itin-day__num { background: #fff8e8; }
.ryder-kili-wrapper .itin-day--summit .itin-day__n { color: var(--summit); }
.ryder-kili-wrapper .itin-day__content { padding: 28px 32px; }
.ryder-kili-wrapper .itin-day__eyebrow { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.ryder-kili-wrapper .itin-day__title { font-size: 1.25rem; margin-bottom: 12px; }
.ryder-kili-wrapper .itin-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.ryder-kili-wrapper .itin-meta__item { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--muted); background: var(--gold-bg); border: 1px solid var(--border); border-radius: 20px; padding: 4px 10px; }
.ryder-kili-wrapper .itin-day__body p { font-size: .92rem; color: var(--text-light); line-height: 1.75; margin-bottom: .8rem; }
.ryder-kili-wrapper .itin-day__body p:last-child { margin-bottom: 0; }
.ryder-kili-wrapper .itin-highlights { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.ryder-kili-wrapper .itin-hl { font-size: 10.5px; background: #f0f7f0; color: #1a5c2e; border: 1px solid #c0ddc0; border-radius: 20px; padding: 3px 10px; font-weight: 600; }
.ryder-kili-wrapper .itin-day__accom { margin-top: 14px; padding: 12px 16px; background: var(--gold-bg); border-left: 3px solid var(--gold); border-radius: 0 6px 6px 0; font-size: .85rem; color: var(--text-light); }
.ryder-kili-wrapper .itin-day__accom strong { color: var(--dark); }

/* ── INCLUSIONS / EXCLUSIONS ── */
.ryder-kili-wrapper .inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.ryder-kili-wrapper .inc-exc-col h3 { margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.ryder-kili-wrapper .inc-list { list-style: none; padding-left: 0; }
.ryder-kili-wrapper .inc-list li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .88rem; color: var(--text-light); line-height: 1.5; }
.ryder-kili-wrapper .inc-list li:last-child { border-bottom: none; }
.ryder-kili-wrapper .inc-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; margin-top: 1px; }
.ryder-kili-wrapper .inc-icon--yes { background: #d4edda; color: var(--green-inc); }
.ryder-kili-wrapper .inc-icon--no { background: #f8d7da; color: var(--red-exc); }
.ryder-kili-wrapper .inc-cat { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; padding: 14px 0 4px; }

/* ── SUPPLEMENTS ── */
.ryder-kili-wrapper .supps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 32px; }
.ryder-kili-wrapper .supp-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 22px; border-top: 3px solid var(--gold-border); }
.ryder-kili-wrapper .supp-card__title { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.ryder-kili-wrapper .supp-card__desc { font-size: .83rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.ryder-kili-wrapper .supp-card__price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold); }

/* ── COMPARISON TABLE ── */
.ryder-kili-wrapper .compare-table { width: 100%; border-collapse: collapse; font-size: .88rem; margin-top: 28px; }
.ryder-kili-wrapper .compare-table th { background: var(--dark); color: var(--white); padding: 14px 18px; text-align: left; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.ryder-kili-wrapper .compare-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); color: var(--text-light); }
.ryder-kili-wrapper .compare-table tr:nth-child(even) { background: var(--gold-bg); }
.ryder-kili-wrapper .compare-table td:first-child { font-weight: 600; color: var(--dark); }

/* ── FAQ ── */
.ryder-kili-wrapper .faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
.ryder-kili-wrapper .faq-item { border-bottom: 0px solid var(--border); }
.ryder-kili-wrapper .faq-item:first-child { border-top: 1px solid var(--border); }
.ryder-kili-wrapper .faq-q { width: 100%; background: none !important; border: none !important; outline: none !important; box-shadow: none !important; text-align: left; padding: 20px 0; font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.ryder-kili-wrapper .faq-q:focus,
.ryder-kili-wrapper .faq-q:focus-visible,
.ryder-kili-wrapper .faq-q:active { outline: none !important; box-shadow: none !important; border: none !important; }
.ryder-kili-wrapper .faq-q::after { content: '+'; font-size: 1.5rem; color: var(--gold); flex-shrink: 0; font-family: 'Inter', sans-serif; font-weight: 300; }
.ryder-kili-wrapper .faq-item.open .faq-q::after { content: '\2212'; }
.ryder-kili-wrapper .faq-item.open .faq-q { color: var(--gold); }
.ryder-kili-wrapper .faq-a { padding: 0 0 20px; font-size: .92rem; color: var(--text-light); line-height: 1.75; max-width: 780px; }
@keyframes faqOpen { from { opacity:0; transform:translateY(-5px); } to { opacity:1; transform:translateY(0); } }

/* ── CTA BANNER ── */
.ryder-kili-wrapper .cta-banner { background: linear-gradient(135deg, #3D2E0A, #6a4e14); padding: 64px 24px; text-align: center; }
.ryder-kili-wrapper .cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.ryder-kili-wrapper .cta-banner p { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 32px; }
.ryder-kili-wrapper .cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── POPUP OVERLAY ── */
.ryder-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 30, 6, 0.85);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ryder-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ryder-popup-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.ryder-popup-overlay.active .ryder-popup-content {
  transform: translateY(0);
}

.ryder-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #8A7250;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.ryder-popup-close:hover {
  color: #8B1A1A;
}


/* ── RESPONSIVE ── */
@media(max-width: 1100px) {
  .ryder-kili-wrapper .mw-body { flex-direction: column; }
  .ryder-kili-wrapper .mw-left { width: 100%; }
  .ryder-kili-wrapper .mw-itin { width: 100%; max-height: 300px; flex-direction: row; flex-wrap: nowrap; overflow-x: auto; display: flex; }
  .ryder-kili-wrapper .mw-dc { min-width: 200px; flex-shrink: 0; }
}
@media(max-width: 960px) {
  .ryder-kili-wrapper .container { padding: 0 20px; }
  .ryder-kili-wrapper .overview-grid { grid-template-columns: 1fr; }
  .ryder-kili-wrapper .callout { position: static; }
  .ryder-kili-wrapper .inc-exc-grid { grid-template-columns: 1fr; }
  .ryder-kili-wrapper .itin-day { grid-template-columns: 72px 1fr; }
  .ryder-kili-wrapper .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .ryder-kili-wrapper .supps-grid { grid-template-columns: repeat(2, 1fr); }
  .ryder-kili-wrapper .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .ryder-kili-wrapper .pricing-card--featured { transform: none; }
}
@media(max-width: 680px) {
  /* Hero */
  .ryder-kili-wrapper .hero__inner { padding: 0 20px; }
  .ryder-kili-wrapper .hero__breadcrumb-bar { padding: 12px 20px; }
  .ryder-kili-wrapper .hero__badge { padding: 7px 18px; font-size: 11px; }
  /* Sections */
  .ryder-kili-wrapper .section { padding: 40px 0; }
  .ryder-kili-wrapper .sec-header { margin-bottom: 24px; }
  .ryder-kili-wrapper .sec-header__title { font-size: 1.6rem; }
  /* Facts */
  .ryder-kili-wrapper .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  /* Overview */
  .ryder-kili-wrapper .overview-features { grid-template-columns: 1fr; }
  /* Itinerary */
  .ryder-kili-wrapper .itin-day { grid-template-columns: 1fr; }
  .ryder-kili-wrapper .itin-day__num { flex-direction: row; justify-content: flex-start; gap: 12px; padding: 14px 16px; border-right: none; border-bottom: 1px solid var(--border); }
  .ryder-kili-wrapper .itin-day__content { padding: 16px; }
  /* Map */
  .ryder-kili-wrapper #s-map { height: 280px !important; }
  .ryder-kili-wrapper .mw-graph-container { overflow-x: auto; }
  .ryder-kili-wrapper .ryder-elev-canvas { min-width: 600px; }
  /* Glance table */
  .ryder-kili-wrapper .glance-table { font-size: .78rem; }
  .ryder-kili-wrapper .glance-table th, .ryder-kili-wrapper .glance-table td { padding: 8px 10px; }
  /* Pricing */
  .ryder-kili-wrapper .pricing-cards { grid-template-columns: 1fr; }
  .ryder-kili-wrapper .pricing-card--featured { transform: none; }
  /* Inc/Exc */
  .ryder-kili-wrapper .inc-exc-grid { gap: 24px; }
  /* Supplements */
  .ryder-kili-wrapper .supps-grid { grid-template-columns: 1fr; }
  /* FAQ */
  .ryder-kili-wrapper .faq-q { font-size: .9rem; padding: 14px 16px; }
  /* Callout */
  .ryder-kili-wrapper .callout { margin-top: 24px; }
  /* CTA */
  .ryder-kili-wrapper .cta-banner { padding: 40px 20px; }
  .ryder-kili-wrapper .cta-banner h2 { font-size: 1.5rem; }
}
@media(max-width: 420px) {
  .ryder-kili-wrapper .facts-grid { grid-template-columns: 1fr 1fr; }
  .ryder-kili-wrapper .hero__title--split { font-size: clamp(1rem, 4.5vw, 1.6rem); white-space: normal; }
  .ryder-kili-wrapper .pricing-cards { grid-template-columns: 1fr; }
}


/* ── ROUTE SELECTOR BUTTONS ── */
.route-selector-wrap{display:flex;align-items:flex-start;gap:10px;flex-wrap:wrap;}
#route-selector{display:flex;gap:6px;flex-wrap:wrap;flex:1;}
.route-btn{display:flex;flex-direction:column;align-items:center;gap:1px;font-size:11px;font-weight:700;padding:6px 12px 5px;border-radius:8px;background:#F7F1E3;color:#8A7250;border:1.5px solid #D4B96A;cursor:pointer;transition:all .18s;font-family:'Inter',sans-serif;min-width:80px;text-align:center;}
.route-btn:hover{background:#EDE3CC;color:#5a3d10;transform:translateY(-1px);}
.route-btn.active{background:#A07828;color:#fff;border-color:#A07828;box-shadow:0 3px 10px rgba(160,120,40,.3);}
.rbtn-label{font-size:11px;font-weight:700;line-height:1.2;}
.rbtn-badge{font-size:9px;font-weight:600;opacity:.75;letter-spacing:.04em;text-transform:uppercase;}
.route-btn.active .rbtn-badge{opacity:.85;}

/* ── PRICING CARDS ── */
.ryder-kili-wrapper .ryder-pricing-section { background: var(--white); }
.ryder-kili-wrapper .pricing-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; align-items: start; }
.ryder-kili-wrapper .pricing-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 32px 28px 28px; position: relative; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.ryder-kili-wrapper .pricing-card:hover { box-shadow: 0 8px 32px rgba(160,120,40,.13); transform: translateY(-3px); }
.ryder-kili-wrapper .pricing-card--featured { background: var(--gold-bg); border: 2px solid var(--gold-border); padding-top: 44px; box-shadow: 0 8px 40px rgba(160,120,40,.18); transform: translateY(-8px); }
.ryder-kili-wrapper .pricing-card--featured:hover { transform: translateY(-12px); }
.ryder-kili-wrapper .pricing-card__badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; padding: 5px 18px; border-radius: 20px; white-space: nowrap; font-family: 'Inter', sans-serif; }
.ryder-kili-wrapper .pricing-card__group { font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-family: 'Inter', sans-serif; margin-bottom: 14px; text-align: center; }
.ryder-kili-wrapper .pricing-card__price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--dark); text-align: center; line-height: 1; display: flex; align-items: flex-start; justify-content: center; gap: 2px; flex-wrap: nowrap; }
.ryder-kili-wrapper .pricing-card__currency { font-size: 1.3rem; font-weight: 700; margin-top: 7px; color: var(--dark); opacity: .6; font-family: 'Inter', sans-serif; flex-shrink:0; }
.ryder-kili-wrapper .pricing-card__per { font-size: 11px; color: #8A7250; text-align: center; margin-top: 6px; margin-bottom: 24px; font-family: 'Inter', sans-serif; letter-spacing: .03em; text-transform: uppercase; }
.ryder-kili-wrapper .pricing-card__features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; border-top: 1px solid var(--border); padding-top: 20px; }
.ryder-kili-wrapper .pricing-card__features li { display: flex; align-items: flex-start; gap: 9px; font-size: .85rem; color: #5a4a20; padding: 7px 0; border-bottom: 1px solid rgba(212,185,106,.25); line-height: 1.4; font-family: 'Inter', sans-serif; }
.ryder-kili-wrapper .pricing-card__features li:last-child { border-bottom: none; }
.ryder-kili-wrapper .pricing-card__check { color: var(--gold); font-weight: 700; font-size: .9rem; flex-shrink: 0; margin-top: 1px; }
.ryder-kili-wrapper .pricing-card__cta { width: 100%; justify-content: center; text-align: center; text-transform: uppercase; font-size: 11px; letter-spacing: .12em; padding: 13px 20px; margin-top: auto; }
@media(max-width: 1024px) { .ryder-kili-wrapper .pricing-cards { grid-template-columns: repeat(2, 1fr); } .ryder-kili-wrapper .pricing-card--featured { transform: none; } .ryder-kili-wrapper .pricing-card--featured:hover { transform: translateY(-3px); } }
@media(max-width: 600px) { .ryder-kili-wrapper .pricing-cards { grid-template-columns: 1fr; } }
