/* Copyright 10-07-2026 - R24k.com */
/* =============================================================
   R24K TM Flat-Skeu Quotation Viewer — FLAT baseline
   Depends on: r24k-kit.css (must be loaded first)
   ============================================================= */

/* --shadow-sm is nearly invisible (#fff on #fdfdfd).
   All cards in this viewer use this local token instead.
   Text tokens are also darkened here: the kit defaults are
   designed for app UI; a quotation document needs denser ink. */
.r24k-fs-viewer {
  --card-shadow: none;
  --card-border: 1px solid #ddd;
  --color-text-muted:  #404040;
  --color-text-subtle: #666666;
}

/* ---- Outer wrapper ---- */
.r24k-fs-viewer {
  color: var(--color-text);
  font-family: var(--font-sans);
  margin: 0 auto;
  max-width: var(--width-content);
}

.r24k-fs-viewer a:hover {
  text-decoration: none;
  opacity: 1;
}


/* =============================================================
   SECTION 1: COVER
   ============================================================= */

.fs-cover {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 64px 0 48px;
  position: relative;
}

.fs-cover__grid {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 420px 1fr;
}

.fs-cover__left {
  position: relative;
}

.fs-cover__eyebrow {
  align-items: center;
  color: var(--color-accent);
  display: inline-flex;
  font-size: 11px;
  font-weight: 500;
  gap: 14px;
  letter-spacing: 0.26em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.fs-cover__eyebrow::before {
  background: var(--color-accent);
  content: "";
  flex-shrink: 0;
  height: 1px;
  width: 36px;
}

.fs-cover__title {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.94;
  margin: 0 0 16px;
}

.fs-cover__edition {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  line-height: 1.1;
  margin: 0 0 20px;
}

.fs-cover__subtitle {
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.4;
  margin: 0 0 6px;
}

.fs-cover__meta {
  color: var(--color-text-muted);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin: 0 0 32px;
}

.fs-cover__seal-row {
  align-items: center;
  display: flex;
  gap: 20px;
}

.fs-cover__brand-logo {
  height: 56px;
  max-width: 200px;
  width: auto;
}

.fs-cover__brand-logo--ctp {
  height: 120px;
}

.fs-cover__seal-row-text {
  color: var(--color-text-subtle);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  line-height: 1.6;
  margin: 0;
  text-transform: uppercase;
}

.fs-cover__seal-row-text strong {
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ---- Photo board: polaroid layout ---- */

.fs-cover__board {
  height: 620px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* All photos shown as polaroid frames */
.fs-cover__photo {
  background: #ffffff;
  border: var(--card-border);
  border-radius: 4px;
  box-shadow: var(--card-shadow);
  display: block;
  margin: 0;
  padding: 8px 8px 28px;
  position: absolute;
}

.fs-cover__photo img {
  border-radius: 2px;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* Photo A: top-left, counter-clockwise tilt */
.fs-cover__photo--a {
  height: 170px;
  left: 20px;
  overflow: visible;
  top: 15px;
  transform: rotate(-4deg);
  width: 230px;
  z-index: 8;
}

/* Photo B: upper-right, pulled left toward map */
.fs-cover__photo--b {
  height: 135px;
  right: 60px;
  top: 25px;
  transform: rotate(3deg);
  width: 180px;
  z-index: 6;
}

/* Photo C: mid-left, subtle tilt */
.fs-cover__photo--c {
  bottom: 110px;
  height: 130px;
  left: 40px;
  transform: rotate(2deg);
  width: 175px;
  z-index: 9;
}

/* Photo D: lower-right, pulled left toward map */
.fs-cover__photo--d {
  bottom: 40px;
  height: 175px;
  right: 70px;
  transform: rotate(-3deg);
  width: 235px;
  z-index: 10;
}

/* Photo E: mid-right, where the holiday stamp used to sit */
.fs-cover__photo--e {
  height: 150px;
  right: 35px;
  top: 205px;
  transform: rotate(5deg);
  width: 195px;
  z-index: 7;
}

/* Caption in polaroid white bottom area */
.fs-cover__photo-caption {
  bottom: 6px;
  color: var(--color-text-subtle);
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-style: italic;
  left: 6px;
  line-height: 1.3;
  overflow: hidden;
  position: absolute;
  right: 6px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Map card: centre-left, enlarged */
.fs-cover__map-card {
  background: #ffffff;
  border: var(--card-border);
  border-radius: 4px;
  box-shadow: var(--card-shadow);
  left: calc(50% - 175px);
  padding: 10px 10px 32px;
  position: absolute;
  top: 100px;
  width: 350px;
  z-index: 5;
}

.fs-cover__map {
  background: #f0eee8;
  border-radius: 2px;
  height: 270px;
  overflow: hidden;
  width: 100%;
}

.fs-cover__map.is-fullscreen {
  border-radius: 0;
  height: 100dvh;
  inset: 0;
  overflow: hidden;
  position: fixed;
  width: 100dvw;
  z-index: 9999;
}


.fs-cover__map-label {
  bottom: 5px;
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: 10.5px;
  font-style: italic;
  left: 8px;
  margin: 0;
  overflow: hidden;
  position: absolute;
  right: 8px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Date/pax stamp: visible in both flat and skeu */
.fs-cover__stamp {
  bottom: 75px;
  display: block;
  left: 170px;
  opacity: 0.85;
  position: absolute;
  transform: rotate(-8deg);
  z-index: 11;
}

/* Holiday stamp: visible in both flat and skeu */
.fs-cover__holiday-stamp {
  bottom: 280px;
  display: block;
  opacity: 0.78;
  position: absolute;
  right: 40px;
  transform: rotate(6deg);
  z-index: 12;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .fs-cover {
    padding: 40px 16px 32px;
  }
  .fs-cover__grid {
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .fs-cover__title {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .fs-cover__map-card {
    left: 12px;
    right: 12px;
    width: auto;
  }
  .fs-cover__stamp,
  .fs-cover__holiday-stamp {
    display: none;
  }
  .fs-day,
  .fs-hotel-card {
	padding:16px !important;
  }
	.fs-day-nav {
		border-radius: 0 !important;
		margin: 0 !important;
	}
}


/* =============================================================
   SECTION 2: INTRO
   ============================================================= */

.fs-intro {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 56px 0 48px;
}

.fs-intro__lead {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  margin: 0 0 36px;
}

.fs-intro__body {
  column-count: 2;
  column-gap: 48px;
}

.fs-intro__body p {
  break-inside: avoid;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 1em;
}

@media (max-width: 900px) {
  .fs-intro {
    padding: 40px 16px 32px;
  }
  .fs-intro__body {
    column-count: 1;
  }
}


/* =============================================================
   ADDITIONAL INFO  (included / not included / good to know)
   ============================================================= */
.fs-additional {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 24px 0 48px;
}

.fs-additional__card {
  position: relative;
  background: var(--color-surface);
  border: var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  padding: 40px;
}

.fs-additional__card::before {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-accent);
  content: "";
  height: 4px;
  width: 100%;
}

.fs-additional__body {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.fs-additional__body > :first-child {
  margin-top: 0;
}

.fs-additional__body > :last-child {
  margin-bottom: 0;
}

.fs-additional__body h2,
.fs-additional__body h3,
.fs-additional__body h4 {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin: 28px 0 12px;
}

.fs-additional__body p {
  margin: 0 0 1em;
}

.fs-additional__body ul {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
}

.fs-additional__body ul li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 26px;
}

.fs-additional__body ul li::before {
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--color-accent);
  content: "\2713";
  font-weight: 600;
}

.fs-additional__body ol {
  margin: 0 0 1em;
  padding-left: 22px;
}

.fs-additional__body ol li,
.fs-additional__body ul li {
  break-inside: avoid;
}

@media (max-width: 900px) {
  .fs-additional {
    padding: 16px 16px 32px;
  }
  .fs-additional__card {
    padding: 28px 22px;
  }
}


/* =============================================================
   SECTION 3: OPERATOR CARD
   ============================================================= */

.fs-operator {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 0 0 56px;
}

.fs-operator__card {
  align-items: center;
  background: var(--color-surface);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  display: flex;
  gap: 36px;
  max-width: 480px;
  padding: 32px 36px;
}

.fs-operator__logo-wrap {
  flex-shrink: 0;
}

.fs-operator__logo {
  display: block;
  height: auto;
  max-height: 72px;
  max-width: 180px;
  width: auto;
}

.fs-operator__logo-wrap--tinted {
  background: var(--color-accent);
  border-radius: 8px;
  isolation: isolate;
  padding: 10px 14px;
}

.fs-operator__logo-wrap--tinted .fs-operator__logo {
  mix-blend-mode: screen;
}

.fs-operator__info {
  font-style: normal;
}

.fs-operator__name {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
}

.fs-operator__line {
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.fs-operator__phone a,
.fs-operator__email a,
.fs-operator__web a {
  color: var(--color-accent);
  text-decoration: none;
}

.fs-operator__phone a:hover,
.fs-operator__email a:hover,
.fs-operator__web a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .fs-operator {
    padding: 0 16px 40px;
  }
  .fs-operator__card {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
}


/* =============================================================
   SHARED: SECTION HEAD
   ============================================================= */

.fs-section-head {
  align-items: baseline;
  display: flex;
  gap: 20px;
  margin: 0 auto 32px;
  max-width: var(--width-content);
  padding: 0 0 14px;
}

.fs-section-head__title {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin: 0;
}

@media (max-width: 900px) {
  .fs-section-head {
    padding: 0 16px 12px;
  }
}


/* =============================================================
   SECTION 2b: VIDEO
   ============================================================= */

.fs-video {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 48px 0 56px;
}

.fs-video__wrap {
  background: var(--color-surface);
  border: var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  padding: 24px;
  width: 100%;
}

.fs-video__wrap > * {
  display: block;
  width: 100% !important;
}

.fs-video__wrap iframe {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  display: block;
  height: auto;
  width: 100% !important;
}


/* =============================================================
   SECTION 4: ROUTE MAP
   ============================================================= */

.fs-route-map {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 48px 0 56px;
}

.fs-route-map__frame {
  border: var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  margin: 0;
  overflow: hidden;
}

.fs-route-map__map {
  background: #f0eee8;
  height: 420px;
  width: 100%;
}

@media (max-width: 900px) {
  .fs-route-map {
    padding: 40px 24px;
  }
  .fs-route-map__frame {
    border-radius: var(--radius-lg);
    margin: 0;
  }
  .fs-route-map__map {
    height: 280px;
  }
}


/* =============================================================
   SECTION 5: DAY NAV
   ============================================================= */

.fs-day-nav {
  position: sticky;
  left: 0;
  right: 0;
  top: var(--fs-day-nav-offset, 0px);
  background: #fff;
  border-bottom: 1px solid #ddd;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
  z-index: 50;
}

.fs-day-nav::-webkit-scrollbar {
  display: none;
}

.fs-day-nav__chip {
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 12px;
  gap: 5px;
  line-height: 1;
  padding: 5px 12px 5px 8px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  white-space: nowrap;
}

.fs-day-nav__chip:not(.is-active):hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.fs-day-nav__chip.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}


.fs-day-nav__nr {
  background: rgba(0,0,0,0.06);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  min-width: 18px;
  padding: 3px 5px;
  text-align: center;
}

.fs-day-nav__chip.is-active .fs-day-nav__nr {
  background: rgba(255,255,255,0.25);
}

.fs-day-nav__city {
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .fs-day-nav {
    padding: 10px 16px;
  }
}


/* =============================================================
   SECTION 6: DAY CARDS
   ============================================================= */

.fs-itinerary {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 48px 0 64px;
}

.fs-day {
  background: var(--color-surface);
  border: var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  display: grid;
  gap: 36px;
  grid-template-columns: 0.67fr 1fr;
  margin-bottom: 20px;
  padding: 24px;
}

/* ---- Photo column ---- */

.fs-day__photos {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fs-day__hero {
  border-radius: var(--radius-lg);
  display: block;
  overflow: hidden;
}

.fs-day__hero img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.fs-day__hero:hover img {
  transform: scale(1.03);
}

.fs-day__thumbs {
  display: grid;
  gap: 4px;
}

.fs-day__thumb-link {
  border-radius: var(--radius-sm);
  display: block;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.fs-day__thumbs img {
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease;
  width: 100%;
}

.fs-day__thumb-link:hover img {
  transform: scale(1.08);
}

/* ---- Body column ---- */

.fs-day__body {
  padding-top: 4px;
}

.fs-day__eyebrow {
  color: var(--color-text-muted);
  font-size: 12px;
  margin: 0 0 8px;
}

.fs-day__nr {
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fs-day__eyebrow-sep {
  margin: 0 4px;
  opacity: 0.4;
}

.fs-day__eyebrow-to {
  margin: 0 3px;
  opacity: 0.6;
}

.fs-day__title {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 6px;
}

.fs-day__date {
  color: var(--color-text-subtle);
  font-size: 12px;
  letter-spacing: 0.03em;
  margin: 0 0 14px;
}

.fs-day__desc {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 24px;
}

.fs-day__section {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
}

.fs-day__section:last-child {
  padding-bottom: 0;
}

.fs-day__section-title {
  color: var(--color-text-subtle);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

/* ---- Pills ---- */

.fs-day__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fs-pill {
  align-items: center;
  background: color-mix(in srgb, var(--color-accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-accent) 22%, transparent);
  border-radius: 999px;
  color: var(--color-accent);
  display: inline-flex;
  font-size: 12px;
  gap: 5px;
  padding: 3px 10px;
}

.fs-pill--optional {
  background: transparent;
  border-color: var(--color-border);
  border-style: dashed;
  color: var(--color-text-muted);
  opacity: 0.75;
}

/* ---- Accommodation ---- */

.fs-day__accomm {
  align-items: baseline;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 4px 8px;
  padding: 20px 0;
}

.fs-day__accomm:last-child {
  padding-bottom: 0;
}

.fs-day__accomm::before {
  color: var(--color-text-subtle);
  content: attr(data-label);
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 6px;
  text-transform: uppercase;
  width: 100%;
}

.fs-day__accomm-name {
  color: var(--color-text-muted);
  font-weight: 400;
}

.fs-day__stars {
  color: #C8902C;
  font-size: 10px;
  letter-spacing: 1px;
}

.fs-day__room {
  color: var(--color-text-subtle);
  font-size: 12px;
  width: 100%;
}


@media (max-width: 900px) {
  .fs-itinerary {
    padding: 32px 16px 48px;
  }
  .fs-day {
    gap: 0;
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .fs-day__photos {
    margin-bottom: 20px;
  }
  .fs-day__thumbs {
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  }
  .fs-day__hero img {
    height: 220px;
  }
}


/* =============================================================
   SECTION 7: ACCOMMODATION CARDS
   ============================================================= */

.fs-accommodations {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 0 0 64px;
}

.fs-hotel-card {
  align-items: flex-start;
  background: var(--color-surface);
  border: var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  display: grid;
  gap: 36px;
  grid-template-columns: 0.67fr 1fr;
  margin-bottom: 20px;
  padding: 24px;
}

/* ---- Photos column ---- */

.fs-hotel-card__photos {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fs-hotel-card__hero {
  border-radius: var(--radius-lg);
  display: block;
  overflow: hidden;
}

.fs-hotel-card__hero img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.fs-hotel-card__hero:hover img {
  transform: scale(1.03);
}

.fs-hotel-card__thumbs {
  display: grid;
  gap: 4px;
}

.fs-hotel-card__thumb-link {
  border-radius: var(--radius-sm);
  display: block;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.fs-hotel-card__thumb-link img {
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease;
  width: 100%;
}

.fs-hotel-card__thumb-link:hover img {
  transform: scale(1.08);
}

/* ---- Body column ---- */

.fs-hotel-card__body {
  padding: 0;
}

.fs-hotel-card__eyebrow {
  align-items: center;
  color: var(--color-accent);
  display: inline-flex;
  font-size: 11px;
  font-weight: 500;
  gap: 10px;
  letter-spacing: 0.18em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.fs-hotel-card__eyebrow::before {
  background: var(--color-accent);
  content: "";
  height: 1px;
  width: 24px;
}

.fs-hotel-card__title-row {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 10px;
}

.fs-hotel-card__name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
}

.fs-hotel-card__stars {
  color: #C8902C;
  display: inline-flex;
  font-size: 18px;
  gap: 1px;
  letter-spacing: 1px;
  line-height: 1;
}

.fs-hotel-card__room {
  color: var(--color-text-muted);
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0;
}

.fs-hotel-card__desc {
  color: var(--color-text);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 14px 0 0;
}

.fs-hotel-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 6px;
  margin-top: 16px;
}

.fs-hotel-card__am-chip {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.3;
  padding: 3px 10px;
}

.fs-hotel-card__am-chip i {
  font-size: 11px;
  margin-right: 4px;
  opacity: .7;
}

.fs-hotel-card__footer {
  align-items: center;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
}

.fs-hotel-card__meta {
  display: flex;
  gap: 32px;
}

.fs-hotel-card__meta-label {
  color: var(--color-text-subtle);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.fs-hotel-card__meta-value {
  color: var(--color-text);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1.2;
}

.fs-hotel-card__link {
  align-items: center;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-pill);
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  gap: 8px;
  padding: 5px 16px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.fs-hotel-card__link:hover {
  background: transparent;
  color: var(--color-accent);
  text-decoration: none;
}

@media (max-width: 900px) {
  .fs-accommodations {
    padding: 0 16px 48px;
  }
  .fs-hotel-card {
    gap: 0;
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .fs-hotel-card__photos {
    margin-bottom: 20px;
  }
  .fs-hotel-card__hero img {
    aspect-ratio: 16 / 9;
  }
}


/* =============================================================
   SHARED: SECTION TITLE (used in sections 8–9)
   ============================================================= */

.fs-section-title {
  color: var(--color-text-subtle);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 20px;
  text-transform: uppercase;
}


/* =============================================================
   SECTION 8: PRICING
   ============================================================= */

.fs-pricing {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 0 0 64px;
}

.fs-pricing-card {
  background: var(--color-surface);
  border: var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  padding: 40px;
  position: relative;
  text-align: left;
}

.fs-pricing-card::before {
  background: var(--color-accent);
  border-radius: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.fs-pricing-card__eyebrow {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.fs-pricing-card__breakdown {
  border-collapse: collapse;
  display: table;
  margin: 0;
  max-width: 100%;
  width: 400px;
}

.fs-pax-row {
	border-bottom: 1px dashed var(--color-text-muted);
	display: table-row;
}
.fs-pricing-card__breakdown .fs-pax-row:last-child {
	border-bottom: none;
}
.fs-pax-row__label,
.fs-pax-row__price {
  display: table-cell;
  padding-top: 18px;
  vertical-align: baseline;
}

.fs-pax-row__label {
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  padding: 18px 18px 18px 0;
}

.fs-pax-row__price {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: right;
}

/* Total: below breakdown, separated by a line */
.fs-pricing-card__amount {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 24px 0 0;
  padding-top: 20px;
}

/* No divider when there is no breakdown above the amount */
.fs-pricing-card:not(:has(.fs-pricing-card__breakdown)) .fs-pricing-card__amount {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.fs-pricing-card__total-label {
  color: var(--color-text-subtle);
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
}

.fs-pricing-card__total-value {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

.fs-pricing-card__currency {
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  margin-left: 5px;
}

.fs-pricing-card__meta {
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  margin-top: 32px;
  padding-top: 24px;
  text-align: left;
}

.fs-pricing-card__meta-label {
  color: var(--color-text-subtle);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.fs-pricing-card__meta-value {
  color: var(--color-text);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

/* --- Staff / destination expert --- */

.fs-expert {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 0 0 48px;
}

.fs-expert__avatar {
  border-radius: var(--radius-xl);
  flex-shrink: 0;
  height: 88px;
  object-fit: cover;
  width: 88px;
}

.fs-expert__body {
  flex: 1;
}

.fs-expert__label {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.fs-expert__bio {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.fs-expert__bio p {
  margin: 0 0 0.75em;
}

@media (max-width: 900px) {
  .fs-pricing {
    padding: 0 16px 48px;
  }

  .fs-expert {
    padding: 0 16px 40px;
  }
}


/* =============================================================
   SECTION 9: TERMS
   ============================================================= */

.fs-terms {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 0 0 64px;
}

.fs-terms__inner {
  background: var(--color-surface);
  border: var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  padding: 24px;
}

.fs-terms__body {
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.75;
}

.fs-terms__body p {
  margin: 0 0 1em;
}

.fs-terms__body ul {
  list-style: none;
  margin: 0 0 0.75em;
  padding-left: 0;
}

.fs-terms__body ul li {
  position: relative;
  padding-left: 1.25em;
}

.fs-terms__body ul li::before {
  position: absolute;
  left: 0;
  color: var(--color-accent);
  content: "\2022";
}

.fs-terms__body a {
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .fs-terms {
    padding: 0 16px 48px;
  }
}


/* =============================================================
   SECTION 9b: TERMS AND CONDITIONS (COLLAPSIBLE)
   ============================================================= */

.fs-tc {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 0 0 40px;
}

.fs-tc__collapsible {
  background: var(--color-surface);
  border: var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
}

.fs-tc__summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  gap: 12px;
  justify-content: space-between;
  list-style: none;
  padding: 24px;
}

.fs-tc__summary::-webkit-details-marker {
  display: none;
}

.fs-tc__summary::marker {
  display: none;
}

.fs-tc__chevron {
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] .fs-tc__chevron {
  transform: rotate(180deg);
}

.fs-tc__body {
  border-top: var(--card-border);
  padding: 28px;
}

.fs-tc__block {
  margin-bottom: 28px;
}

.fs-tc__block:last-child {
  margin-bottom: 0;
}

.fs-tc__block-title {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
}

.fs-tc__sub-title {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  margin: 12px 0 4px;
}

.fs-tc__block-content {
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.75;
}

.fs-tc__block-content p {
  margin: 0 0 0.75em;
}

.fs-tc__block-content ul {
  list-style: none;
  margin: 0 0 0.75em;
  padding-left: 0;
}

.fs-tc__block-content ul li {
  position: relative;
  padding-left: 1.25em;
}

.fs-tc__block-content ul li::before {
  position: absolute;
  left: 0;
  color: var(--color-accent);
  content: "\2022";
}

.fs-tc__block-content a {
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .fs-tc {
    padding: 0 16px 32px;
  }
}


/* =============================================================
   SECTION 10: DOWNLOADS
   ============================================================= */

.fs-downloads {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 0 0 64px;
}

.fs-downloads__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

/* --- Quotation / invoice download card --- */

.fs-download-hero {
  align-items: center;
  background: var(--color-accent);
  border-radius: var(--radius-xl);
  color: #fff;
  display: flex;
  gap: 12px;
  padding: 24px;
  text-decoration: none;
  transition: opacity 0.15s;
}

/* Quotation PDF hero spans full grid width */
.fs-download-hero:not(.fs-download-hero--muted) {
  grid-column: 1 / -1;
}

.r24k-fs-viewer .fs-download-hero:hover {
  color: #fff;
  opacity: 0.88;
  text-decoration: none;
}

.r24k-fs-viewer .fs-download-hero--muted:hover {
  color: var(--color-text);
  text-decoration: none;
}

.r24k-fs-viewer .fs-voucher:hover {
  border-color: #bbb;
  box-shadow: none;
  text-decoration: none;
}

.fs-download-hero--muted {
  background: var(--color-surface);
  border: var(--card-border);
  box-shadow: var(--card-shadow);
  color: var(--color-text);
}

.fs-download-hero__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.fs-download-hero__title {
  font-size: 13px;
  font-weight: 500;
}

.fs-download-hero__sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.8;
  text-transform: uppercase;
}

.fs-download-hero--muted .fs-download-hero__sub {
  color: var(--color-text-muted);
  opacity: 1;
}

.fs-download-hero__btn {
  align-items: center;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  font-size: 16px;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.fs-download-hero--muted .fs-download-hero__btn {
  background: var(--color-accent);
  color: #fff;
}

/* --- Voucher card --- */

.fs-voucher {
  align-items: center;
  background: var(--color-surface);
  border: var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  color: var(--color-text);
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  text-decoration: none;
  transition: box-shadow 0.15s;
}

.fs-voucher__day {
  align-items: center;
  align-self: stretch;
  background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  min-height: 44px;
  padding: 4px 8px;
  text-align: center;
  width: 44px;
}

.fs-voucher__day--doc {
  font-size: 18px;
}

.fs-voucher__day-word {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fs-voucher__day-num {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.fs-voucher__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.fs-voucher__title {
  font-size: 13px;
  font-weight: 500;
}

.fs-voucher__date {
  color: var(--color-text-muted);
  font-size: 11.5px;
}

.fs-voucher__icon {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .fs-downloads {
    padding: 0 16px 48px;
  }

  .fs-downloads__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .fs-downloads__grid {
    grid-template-columns: 1fr;
  }
}


/* =============================================================
   SECTION 11: FOOTER SIGNOFF
   ============================================================= */

.fs-footer {
  margin: 0;
  padding: 20px 0 10px;
}

.fs-footer__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
  max-width: var(--width-content);
  text-align: center;
}

.fs-footer__logo-wrap {
  display: inline-block;
}

.fs-footer__logo-wrap--tinted {
  background: var(--color-accent);
  border-radius: 8px;
  isolation: isolate;
  padding: 10px 14px;
}

.fs-footer__logo-wrap--tinted .fs-footer__logo {
  mix-blend-mode: screen;
}

.fs-footer__logo {
  display: block;
  height: auto;
  max-height: 56px;
  max-width: 200px;
  width: auto;
}

.fs-footer__name {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.fs-footer__url {
  color: var(--color-text-subtle);
  font-size: 13px;
  text-decoration: none;
}

.fs-footer__url:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .fs-footer {
    padding: 32px 16px 48px;
  }
}


/* =============================================================
   LIGHTBOX
   ============================================================= */

.r24k-fs-lb {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0,0,0,0.93);
  display: none;
  z-index: 2000;
}

.r24k-fs-lb.is-open {
  display: flex;
}

.r24k-fs-lb__close {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  padding: 16px 20px;
  transition: color 0.15s;
  z-index: 1;
}

.r24k-fs-lb__close:hover {
  color: #fff;
}

.r24k-fs-lb__inner {
  display: flex;
  height: 100%;
  width: 100%;
}

.r24k-fs-lb__strip {
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  overflow-y: auto;
  padding: 20px 10px 40px;
  width: 200px;
}

.r24k-fs-lb__strip::-webkit-scrollbar {
  width: 4px;
}

.r24k-fs-lb__strip::-webkit-scrollbar-track {
  background: transparent;
}

.r24k-fs-lb__strip::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.r24k-fs-lb__day-label {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 20px 0 8px;
  text-transform: uppercase;
}

.r24k-fs-lb__day-label:first-child {
  margin-top: 0;
}

.r24k-fs-lb__thumb {
  aspect-ratio: 1;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin-bottom: 6px;
  object-fit: cover;
  opacity: 0.45;
  transition: opacity 0.15s;
  width: 100%;
}

.r24k-fs-lb__thumb:hover {
  opacity: 0.8;
}

.r24k-fs-lb__thumb.is-active {
  opacity: 1;
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.r24k-fs-lb__stage {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(40px, 5vw, 80px);
}

.r24k-fs-lb__main {
  border-radius: 6px;
  max-height: calc(100vh - 140px);
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.15s;
}

.r24k-fs-lb__main.is-loading {
  opacity: 0.25;
}

.r24k-fs-lb__caption {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  margin-top: 16px;
  text-align: center;
}

.r24k-fs-lb__nav {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.r24k-fs-lb__nav-btn {
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  height: 40px;
  justify-content: center;
  transition: background 0.15s;
  width: 40px;
}

.r24k-fs-lb__nav-btn:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.r24k-fs-lb__nav-btn:disabled {
  cursor: not-allowed;
  opacity: 0.25;
}

.r24k-fs-lb__counter {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  min-width: 56px;
  text-align: center;
}

@media (max-width: 767px) {
  .r24k-fs-lb { display: none !important; }
  .fs-day__hero,
  .fs-hotel-card__hero { pointer-events: none; }
}
