/* The website. Every colour, radius and font is a variable set from Appearance;
 * header and footer types are body classes. */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; font-size: 16px; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; margin: 0 0 .4em; letter-spacing: -.01em; }
h1 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); } h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); } h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; } a { color: var(--primary); } img { max-width: 100%; display: block; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; background: var(--surface); padding: 1px 6px; border-radius: 4px; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 780px; }
.row { display: flex; align-items: center; gap: 10px; } .spacer { flex: 1; } .grow { flex: 1; min-width: 0; }
.lead { font-size: 1.08rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; }
.inline { display: inline; }

/* Buttons: three styles from Appearance. */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: inherit; font-weight: 600; padding: 11px 20px; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; text-decoration: none; transition: transform .15s, box-shadow .15s, background .15s; line-height: 1.2; }
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 14px 26px; font-size: 1.05rem; } .btn-sm { padding: 7px 14px; font-size: .9rem; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-outline, .btn-soft { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline.btn-primary { background: transparent; color: var(--primary); }
body.btn-outline .btn-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
body.btn-outline .btn-primary:hover { background: var(--primary); color: #fff; }
body.btn-soft .btn-primary { background: color-mix(in srgb, var(--primary) 14%, transparent); color: var(--primary); }
body.btn-soft .btn-primary:hover { background: var(--primary); color: #fff; }
.linkish { background: none; border: 0; padding: 0; font: inherit; color: var(--primary); cursor: pointer; text-decoration: underline; }

/* Cards: three styles. */
.site-card, .itin-card, .cat-tile, .it-card, .trip-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; }
body.cards-shadow .site-card, body.cards-shadow .itin-card, body.cards-shadow .trip-card { box-shadow: 0 6px 24px rgba(0,0,0,.08); background: var(--bg); }
body.cards-bordered .site-card, body.cards-bordered .itin-card, body.cards-bordered .trip-card, body.cards-bordered .it-card { border: 1px solid color-mix(in srgb, var(--text) 12%, transparent); background: var(--bg); }
body.cards-flat .site-card, body.cards-flat .itin-card, body.cards-flat .trip-card { background: var(--surface); }

/* Header. */
.topstrip { background: var(--primary); color: #fff; font-size: .85rem; }
.topstrip .container { display: flex; align-items: center; gap: 12px; min-height: 34px; }
.topstrip a { color: #fff; text-decoration: none; margin-left: 6px; }
.site-header { background: var(--bg); border-bottom: 1px solid color-mix(in srgb, var(--text) 10%, transparent); z-index: 50; position: relative; }
body.sticky .site-header { position: sticky; top: 0; }
.site-header .container { display: flex; align-items: center; gap: 24px; min-height: 68px; }
.logo { display: inline-flex; align-items: center; text-decoration: none; color: var(--text); font-family: var(--font-heading); font-weight: 800; font-size: 1.35rem; letter-spacing: -.02em; }
.logo img { height: 40px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav a { color: var(--text); text-decoration: none; padding: 8px 12px; border-radius: var(--radius); font-weight: 500; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--surface); }
.site-nav .nav-cta { color: #fff; margin-left: 8px; }
.site-nav .linkish { padding: 8px 12px; color: var(--muted); text-decoration: none; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; font-size: 1.6rem; color: var(--text); cursor: pointer; }
body.hdr-centered .site-header .container { flex-direction: column; gap: 6px; padding-top: 14px; padding-bottom: 10px; }
body.hdr-centered .site-nav { margin-left: 0; }
body.hdr-minimal .site-nav { display: none; position: absolute; top: 100%; right: 0; left: 0; flex-direction: column; align-items: stretch; background: var(--bg); padding: 12px 20px 20px; border-bottom: 1px solid color-mix(in srgb, var(--text) 10%, transparent); }
body.hdr-minimal .nav-toggle { display: block; }
body.hdr-minimal .site-nav.open { display: flex; }
body.hdr-overlay.is-home .site-header { position: absolute; top: 0; left: 0; right: 0; background: linear-gradient(rgba(0,0,0,.55), transparent); border: 0; }
body.hdr-overlay.is-home.sticky .site-header { position: fixed; }
body.hdr-overlay.is-home .site-header.scrolled { background: var(--bg); border-bottom: 1px solid color-mix(in srgb, var(--text) 10%, transparent); }
body.hdr-overlay.is-home .site-header:not(.scrolled) .logo, body.hdr-overlay.is-home .site-header:not(.scrolled) .site-nav a:not(.nav-cta), body.hdr-overlay.is-home .site-header:not(.scrolled) .nav-toggle { color: #fff; }
body.hdr-overlay.is-home .site-header:not(.scrolled) .site-nav a:hover { background: rgba(255,255,255,.15); }
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; right: 0; left: 0; flex-direction: column; align-items: stretch; background: var(--bg); padding: 12px 20px 20px; border-bottom: 1px solid color-mix(in srgb, var(--text) 10%, transparent); box-shadow: 0 12px 24px rgba(0,0,0,.08); }
  .site-nav.open { display: flex; }
  .site-nav .nav-cta { margin: 8px 0 0; }
  body.hdr-centered .site-header .container { flex-direction: row; }
  body.hdr-overlay.is-home .site-nav.open { background: var(--bg); } body.hdr-overlay.is-home .site-header:not(.scrolled) .site-nav.open a { color: var(--text); }
  .topstrip { display: none; }
}

/* Hero slider. */
.hero { position: relative; width: 100%; }
.hero.h-short .swiper-slide { height: 40vh; } .hero.h-medium .swiper-slide { height: 62vh; } .hero.h-tall .swiper-slide { height: 80vh; } .hero.h-full .swiper-slide { height: 100vh; }
.hero .swiper-slide { min-height: 320px; }
.slide { position: relative; display: flex; overflow: hidden; }
.slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,var(--o, .35)); }
.slide-text { position: relative; padding: 48px 20px; display: flex; flex-direction: column; max-width: var(--container); width: 100%; }
.slide-text h1 { color: var(--h); font-size: clamp(2rem, 5vw, 4rem); max-width: 14em; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.slide-text p { color: var(--t); font-size: clamp(1rem, 1.6vw, 1.25rem); max-width: 34em; }
.slide-btn { align-self: flex-start; background: var(--bb); color: var(--bc); font-weight: 700; padding: 13px 24px; border-radius: var(--radius); text-decoration: none; }
.slide.pos-top-left, .slide.pos-top-center, .slide.pos-top-right { align-items: flex-start; }
.slide.pos-center-left, .slide.pos-center, .slide.pos-center-right { align-items: center; }
.slide.pos-bottom-left, .slide.pos-bottom-center, .slide.pos-bottom-right { align-items: flex-end; }
.slide.pos-top-center .slide-text, .slide.pos-center .slide-text, .slide.pos-bottom-center .slide-text { align-items: center; text-align: center; }
.slide.pos-top-center .slide-btn, .slide.pos-center .slide-btn, .slide.pos-bottom-center .slide-btn { align-self: center; }
.slide.pos-top-right .slide-text, .slide.pos-center-right .slide-text, .slide.pos-bottom-right .slide-text { align-items: flex-end; text-align: right; }
.slide.pos-top-right .slide-btn, .slide.pos-center-right .slide-btn, .slide.pos-bottom-right .slide-btn { align-self: flex-end; }
.hero .swiper-pagination-bullet { background: #fff; opacity: .6; } .hero .swiper-pagination-bullet-active { opacity: 1; background: var(--accent); }
.swiper-button-prev, .swiper-button-next { color: #fff; --swiper-navigation-size: 26px; }
.carousel { padding: 4px 0 8px; }
.carousel .swiper-button-prev, .carousel .swiper-button-next { color: var(--primary); background: var(--bg); width: 40px; height: 40px; border-radius: 50%; box-shadow: 0 4px 14px rgba(0,0,0,.14); --swiper-navigation-size: 18px; }
.carousel .swiper-slide { height: auto; }

/* Sections. */
.section { padding: 56px 0; } .section-alt { background: var(--surface); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.section-head p { color: var(--muted); margin: 0; } .section-head.centre { justify-content: center; text-align: center; }
.more { text-decoration: none; font-weight: 600; white-space: nowrap; }
.grid { display: grid; gap: 22px; } .grid.cols-2 { grid-template-columns: repeat(2, 1fr); } .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } .grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid.cols-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } .section { padding: 40px 0; } }
@media (max-width: 520px) { .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; } .grid { gap: 16px; } }
.rich p:last-child { margin-bottom: 0; } .rich h2, .rich h3, .rich h4 { margin-top: 1.2em; } .rich img { border-radius: var(--radius); }

/* Itinerary card. */
.itin-card { display: flex; flex-direction: column; text-decoration: none; color: var(--text); transition: transform .2s, box-shadow .2s; height: 100%; }
.itin-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,.12); }
.itin-img { position: relative; aspect-ratio: 4 / 3; background: var(--surface); display: block; }
.itin-img img { width: 100%; height: 100%; object-fit: cover; }
.itin-len, .itin-flag { position: absolute; top: 12px; font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--text); }
.itin-len { left: 12px; } .itin-flag { right: 12px; background: var(--accent); color: #111; }
.itin-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 4px; }
.itin-body small { color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; font-weight: 600; }
.itin-body b { font-family: var(--font-heading); font-size: 1.1rem; line-height: 1.3; }
.itin-price { margin-top: 6px; } .itin-price s { color: var(--muted); font-size: .9em; } .itin-price strong { font-size: 1.15rem; color: var(--primary); } .itin-price em { font-style: normal; color: var(--muted); font-size: .85rem; }

/* Category tile. */
.cat-tile { position: relative; aspect-ratio: 4 / 3; display: block; text-decoration: none; background: var(--primary); }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; } .cat-tile:hover img { transform: scale(1.05); }
.cat-tile span { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px; background: linear-gradient(transparent, rgba(0,0,0,.7)); color: #fff; display: flex; flex-direction: column; }
.cat-tile b { font-family: var(--font-heading); font-size: 1.15rem; } .cat-tile small { opacity: .85; }

/* Text, CTA, features. */
.cta { padding: 56px 0; } .cta .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta h2, .cta p { margin: 0; } .cta p { opacity: .85; margin-top: 4px; }
.cta-primary { background: var(--primary); color: #fff; } .cta-primary .btn { background: #fff; color: var(--primary); }
.cta-accent { background: var(--accent); color: #111; } .cta-accent .btn { background: #111; color: #fff; }
.cta-dark { background: #111; color: #fff; } .cta-dark .btn { background: var(--accent); color: #111; }
.cta-light { background: var(--surface); } .cta-light .btn { background: var(--primary); color: #fff; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.feature { text-align: center; padding: 22px 16px; } .feature i { font-size: 2rem; color: var(--primary); } .feature b { display: block; font-family: var(--font-heading); font-size: 1.05rem; margin: 8px 0 4px; } .feature p { color: var(--muted); margin: 0; }

/* Page title band, crumbs, filters. */
.page-title { background: var(--surface); padding: 36px 0 28px; } .page-title h1 { margin-bottom: 4px; } .page-title p { color: var(--muted); margin: 0; }
.page-title.has-img { background-size: cover; background-position: center; position: relative; color: #fff; padding: 80px 0 40px; }
.page-title.has-img::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.6)); } .page-title.has-img .container { position: relative; } .page-title.has-img p, .page-title.has-img .crumbs a { color: rgba(255,255,255,.85); }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 10px; } .crumbs a { color: inherit; text-decoration: none; } .crumbs a:hover { text-decoration: underline; }
.filters { display: grid; grid-template-columns: 1fr auto auto auto; gap: 10px; }
.filters input, .filters select, .enquire input, .enquire select, .enquire textarea { font: inherit; padding: 11px 14px; border: 1px solid color-mix(in srgb, var(--text) 18%, transparent); border-radius: var(--radius); background: var(--bg); color: var(--text); width: 100%; }
.filters input:focus, .enquire input:focus, .enquire textarea:focus, .enquire select:focus { outline: 2px solid var(--primary); outline-offset: 1px; border-color: transparent; }
@media (max-width: 760px) { .filters { grid-template-columns: 1fr 1fr; } .filters input { grid-column: 1 / -1; } }
.empty-site { text-align: center; padding: 48px 20px; color: var(--muted); } .empty-site i { font-size: 2.6rem; } .empty-site h3 { color: var(--text); margin-top: 8px; }
.segmented { display: inline-flex; border: 1px solid color-mix(in srgb, var(--text) 18%, transparent); border-radius: var(--radius); overflow: hidden; }
.segmented a { padding: 8px 14px; text-decoration: none; color: var(--text); font-weight: 500; display: inline-flex; gap: 6px; align-items: center; } .segmented a[aria-pressed="true"] { background: var(--primary); color: #fff; }

/* Forms. */
.enquire { margin-top: 18px; } .f-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 16px; } .f-grid.one { grid-template-columns: 1fr; }
.f-grid label { display: flex; flex-direction: column; gap: 5px; font-size: .88rem; font-weight: 600; } .f-grid .wide { grid-column: 1 / -1; }
.enquire small { display: block; color: var(--muted); margin-top: 10px; }
@media (max-width: 700px) { .f-grid { grid-template-columns: 1fr 1fr; } } @media (max-width: 460px) { .f-grid { grid-template-columns: 1fr; } }
.flash { padding: 12px 16px; border-radius: var(--radius); background: var(--surface); border-left: 4px solid var(--primary); margin: 16px 0; }
.flash-ok { border-color: #00875A; } .flash-danger { border-color: #C1274A; } .flash-warn { border-color: #9A6200; }
.chip { display: inline-flex; align-items: center; gap: 4px; font-size: .74rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: color-mix(in srgb, var(--text) 8%, transparent); color: var(--text); text-transform: uppercase; letter-spacing: .04em; }
.chip-ok { background: #E7F5EF; color: #0A5D40; } .chip-warn { background: #FCF3E3; color: #6E4600; } .chip-danger { background: #FCECF0; color: #8C1B36; } .chip-info { background: color-mix(in srgb, var(--primary) 14%, transparent); color: var(--primary); }

/* Itinerary page. */
.preview-bar { background: #111; color: #fff; text-align: center; padding: 8px; font-size: .9rem; } .preview-bar a { color: var(--accent); }
.it-hero { display: grid; grid-template-columns: 1fr; gap: 6px; max-height: 520px; overflow: hidden; }
.it-hero.has-gallery { grid-template-columns: 2fr 1fr; }
.it-hero-main { background: var(--surface); min-height: 240px; } .it-hero-main img { width: 100%; height: 100%; object-fit: cover; max-height: 520px; }
.it-hero-side { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; } .it-hero-side a { position: relative; display: block; overflow: hidden; } .it-hero-side img { width: 100%; height: 100%; object-fit: cover; }
.it-hero-side span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.5); color: #fff; font-weight: 700; }
@media (max-width: 760px) { .it-hero.has-gallery { grid-template-columns: 1fr; } .it-hero-side { grid-template-columns: repeat(4, 1fr); } .it-hero-side a { aspect-ratio: 1; } }
.it-cols { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .it-cols { grid-template-columns: 1fr; } .it-side { order: -1; } }
.it-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.it-len { background: var(--primary); color: #fff; font-weight: 700; padding: 4px 12px; border-radius: 999px; font-size: .85rem; }
.it-city { background: var(--surface); padding: 4px 12px; border-radius: 999px; font-size: .85rem; color: var(--muted); } .it-city b { color: var(--text); }
.it-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: .92rem; }
.it-h2 { margin: 40px 0 16px; } .it-h2.row { justify-content: space-between; align-items: baseline; } .it-h2.row h2 { margin: 0; } .it-h2.row .linkish { text-decoration: none; font-weight: 600; }
.it-page .rich { margin-top: 20px; } .incl { margin-top: 4px; }
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; } @media (max-width: 640px) { .incl { grid-template-columns: 1fr; } }
.incl h3 { display: flex; align-items: center; gap: 8px; } .incl .ok { color: #00875A; } .incl .no { color: #C1274A; }
.incl ul { margin: 0; padding-left: 20px; } .incl li { margin: 4px 0; } .incl li.hidden { display: none; } .incl .see-more { margin-top: 6px; }
.days { display: flex; flex-direction: column; gap: 10px; }
.day { background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.day summary { list-style: none; display: flex; align-items: center; gap: 14px; padding: 16px 18px; cursor: pointer; } .day summary::-webkit-details-marker { display: none; }
.day-n { background: var(--primary); color: #fff; font-weight: 700; padding: 4px 10px; border-radius: 999px; font-size: .8rem; white-space: nowrap; } .day-n em { font-style: normal; opacity: .85; font-weight: 500; }
.day summary b { flex: 1; font-family: var(--font-heading); font-size: 1.05rem; } .day summary i { transition: transform .2s; } .day[open] summary i { transform: rotate(180deg); }
.day-body { padding: 0 18px 18px; }
.day-line { display: flex; flex-wrap: wrap; gap: 6px 18px; color: var(--muted); font-size: .92rem; } .day-line i { color: var(--primary); }
.meals { display: inline-flex; gap: 6px; flex-wrap: wrap; } .chip i { font-size: .95rem; vertical-align: -2px; margin-right: 1px; color: inherit; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 16px; }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* On a phone the day's cards become a strip you swipe sideways, one card and a
 * hint of the next, edge to edge — a stack of full-width cards is a long scroll
 * past a day you were only skimming. Snap keeps each card whole. */
@media (max-width: 520px) {
  .cards:not(.one) { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; margin: 16px -18px 0; padding: 0 18px 8px; scroll-padding-left: 18px; scrollbar-width: none; }
  .cards:not(.one)::-webkit-scrollbar { display: none; }
  .cards:not(.one) .it-card { flex: 0 0 78%; scroll-snap-align: start; }
  .cards.one { grid-template-columns: 1fr; }
}
.it-card { display: flex; flex-direction: column; background: var(--bg); border: 1px solid color-mix(in srgb, var(--text) 8%, transparent); }
.it-card-media { position: relative; aspect-ratio: 16 / 10; background: color-mix(in srgb, var(--primary) 10%, var(--surface)); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 2.2rem; overflow: hidden; }
.it-card-media.no-img { background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 22%, var(--surface)), color-mix(in srgb, var(--primary) 6%, var(--surface))); font-size: 3.6rem; }
.it-card-media.no-img > i { opacity: .45; }
.it-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.it-kind { position: absolute; left: 10px; top: 10px; display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--text); }
.it-kind i { font-size: .95rem; color: var(--primary); }
.it-card-body { display: flex; flex-direction: column; gap: 4px; padding: 12px 14px 14px; flex: 1; }
.it-card-body b { font-family: var(--font-heading); font-size: 1.02rem; line-height: 1.3; }
.it-card-meta { color: var(--muted); font-size: .86rem; }
.it-card-body p { margin: 4px 0 0; font-size: .9rem; color: var(--muted); }
.it-card-facts { margin-top: auto; padding-top: 8px; font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.it-card-facts i { color: var(--primary); }
/* The portal's booking items: one column, icon beside the text. */
.cards.one { grid-template-columns: 1fr; }
.cards.one .it-card { flex-direction: row; gap: 12px; padding: 12px; }
.cards.one .it-card-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--surface); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; flex: none; }
.cards.one .it-card > div { display: flex; flex-direction: column; gap: 4px; } .cards.one .it-card small { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; } .cards.one .it-card p { margin: 6px 0 0; font-size: .9rem; color: var(--muted); }
.fare { padding: 22px; position: sticky; top: 90px; } .fare small { color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; font-weight: 600; }
.fare-name { display: block; font-family: var(--font-heading); font-size: 1.3rem; } .fare-price { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--primary); } .fare-price s { color: var(--muted); font-size: 1.1rem; }
.fare-when { color: var(--muted); margin: 4px 0 14px; } .fare h3 { margin-top: 8px; }
.fare dl { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; margin: 0 0 8px; } .fare dt { color: var(--muted); } .fare dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; }
.fare .total { font-weight: 700; color: var(--text); font-size: 1.15rem; border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent); padding-top: 8px; } .fare .disc { color: #00875A; } .fare dd.total s { color: var(--muted); font-size: .85em; font-weight: 400; }
.fare-points { margin: 16px 0 0; padding-left: 18px; color: var(--muted); font-size: .9rem; }
.messages .thread { display: flex; flex-direction: column; gap: 12px; margin: 14px 0; }
.msg { max-width: 82%; } .msg.customer { align-self: flex-end; } .msg .bubble { background: var(--surface); padding: 12px 16px; border-radius: var(--radius); } .msg.customer .bubble { background: var(--primary); color: #fff; } .msg time { display: block; font-size: .78rem; color: var(--muted); margin-top: 4px; } .msg.customer time { text-align: right; }

/* Portal lists. */
.trip-card { display: flex; gap: 16px; align-items: center; padding: 14px; text-decoration: none; color: var(--text); } .trip-card > img { width: 110px; height: 84px; object-fit: cover; border-radius: calc(var(--radius) / 1.5); flex: none; }
.trip-card div { display: flex; flex-direction: column; gap: 4px; min-width: 0; } .trip-card b { font-family: var(--font-heading); font-size: 1.1rem; } .trip-card small { color: var(--muted); } .trip-card .chip { align-self: flex-start; }
.trip-date { width: 64px; height: 64px; border-radius: calc(var(--radius) / 1.5); background: var(--primary); color: #fff; align-items: center; justify-content: center; flex: none; gap: 0 !important; } .trip-date b { font-size: 1.5rem; line-height: 1; } .trip-date small { color: #fff; opacity: .85; text-transform: uppercase; font-size: .7rem; }
.site-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.site-list li { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--surface); border-radius: var(--radius); } .site-list a { flex: 1; text-decoration: none; color: var(--text); display: flex; flex-direction: column; } .site-list small { color: var(--muted); }

/* Calendar on the site (markup shared with the admin). */
.cal { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 1px; background: color-mix(in srgb, var(--text) 12%, transparent); border: 1px solid color-mix(in srgb, var(--text) 12%, transparent); border-radius: var(--radius); overflow: hidden; }
.cal-dow { background: var(--surface); padding: 6px 8px; font-size: .72rem; color: var(--muted); font-weight: 700; text-transform: uppercase; }
.cal-day { background: var(--bg); min-height: 88px; padding: 4px; display: flex; flex-direction: column; gap: 2px; } .cal-pad { background: var(--surface); }
.cal-n { font-size: .78rem; font-weight: 700; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; } .cal-today .cal-n { background: var(--primary); color: #fff; }
.cal-ev { display: block; font-size: .74rem; padding: 2px 6px; background: color-mix(in srgb, var(--primary) 16%, transparent); color: var(--primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-decoration: none; margin: 0 -4px; }
.cal-ev.chip-ok { background: #E7F5EF; color: #0A5D40; } .cal-ev.chip-warn { background: #FCF3E3; color: #6E4600; }
.cal-ev.cal-start { border-radius: 6px 0 0 6px; margin-left: 0; } .cal-ev.cal-end { border-radius: 0 6px 6px 0; margin-right: 0; } .cal-ev.cal-start.cal-end { border-radius: 6px; }
.btn.btn-ghost, .btn.btn-quiet { background: var(--surface); color: var(--text); }
@media (max-width: 720px) { .cal-day { min-height: 54px; } .cal-ev { font-size: 0; padding: 3px; } }

/* Footer. */
.site-footer { background: var(--surface); margin-top: 40px; padding: 48px 0 24px; color: var(--muted); font-size: .95rem; }
body.ftr-dark .site-footer { background: #111418; color: #b8bec8; } body.ftr-dark .site-footer a, body.ftr-dark .site-footer h4, body.ftr-dark .logo { color: #fff; }
body.ftr-minimal .site-footer { padding: 20px 0; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 28px; } @media (max-width: 720px) { .footer-cols { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--text); font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.site-footer a { display: block; color: inherit; text-decoration: none; margin: 4px 0; } .site-footer a:hover { color: var(--primary); }
.site-footer .logo { margin-bottom: 10px; } .social a { display: inline-block; font-size: 1.3rem; margin-right: 10px; }
.footer-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; } .footer-row nav { display: flex; gap: 6px 18px; flex-wrap: wrap; flex: 1; } .footer-row nav a { margin: 0; }
.footer-base { border-top: 1px solid color-mix(in srgb, currentColor 18%, transparent); padding-top: 16px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-size: .85rem; } .footer-base nav { display: flex; gap: 14px; } .footer-base nav a { margin: 0; }

/* WhatsApp float and the install bar. */
.wa-float { position: fixed; right: 18px; bottom: 18px; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 8px 24px rgba(0,0,0,.2); z-index: 40; text-decoration: none; }
.install-bar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--bg); color: var(--text); border-radius: var(--radius); box-shadow: 0 12px 40px rgba(0,0,0,.22); max-width: 520px; margin: 0 auto; }
.install-bar[hidden] { display: none; } .install-bar img, .install-icon { width: 42px; height: 42px; border-radius: 10px; flex: none; } .install-icon { background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.install-bar small { display: block; color: var(--muted); } .install-x { background: none; border: 0; font-size: 1.3rem; color: var(--muted); cursor: pointer; }
@media (display-mode: standalone) { .install-bar { display: none !important; } }
@media print { .site-header, .site-footer, .wa-float, .install-bar, .enquire, .preview-bar, .nav-toggle { display: none !important; } .day { break-inside: avoid; } .day summary i { display: none; } .fare { position: static; } .it-cols { grid-template-columns: 1fr; } }

/* TomSelect in the site's own tokens. */
.ts-wrapper { width: 100%; }
.ts-wrapper .ts-control { font: inherit; padding: 11px 14px; border: 1px solid color-mix(in srgb, var(--text) 18%, transparent); border-radius: var(--radius); background: var(--bg); color: var(--text); box-shadow: none; min-height: 0; }
.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input { cursor: pointer; }
.ts-wrapper.focus .ts-control { outline: 2px solid var(--primary); outline-offset: 1px; border-color: transparent; box-shadow: none; }
.ts-wrapper .ts-control > input { color: var(--text); font: inherit; }
.ts-dropdown { font: inherit; border: 1px solid color-mix(in srgb, var(--text) 14%, transparent); border-radius: var(--radius); background: var(--bg); color: var(--text); box-shadow: 0 12px 30px rgba(0,0,0,.12); margin-top: 4px; overflow: hidden; z-index: 70; }
.ts-dropdown .option { padding: 9px 14px; }
.ts-dropdown .active { background: color-mix(in srgb, var(--primary) 12%, transparent); color: var(--text); }
.ts-dropdown .selected { color: var(--primary); font-weight: 600; }
.ts-dropdown .dropdown-input { padding: 9px 14px; border-bottom: 1px solid color-mix(in srgb, var(--text) 10%, transparent); background: var(--bg); color: var(--text); }
