/* ============================================================
   Joyful Sunrise — global stylesheet
   Palette: warm "sunrise" light theme (ivory / ink-teal / coral / amber)
   Naming: BEM-ish for custom blocks (block__element--modifier)
   NOTE: if we ever add a dark variant, keep variables block at top only.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --sun-cream: #faf4ea;
  --sun-paper: #fffdf8;
  --sun-sand: #f3e8d7;
  --sun-ink: #15313a;
  --sun-ink-soft: #3d5a63;
  --sun-teal: #0f6a5f;
  --sun-teal-deep: #0b4a43;
  --sun-coral: #ff6a45;
  --sun-coral-deep: #e14f2c;
  --sun-amber: #f7a531;
  --sun-peach: #ffd9bd;
  --sun-line: rgba(21, 49, 58, .14);
  --sun-shadow: 0 24px 60px -28px rgba(21, 49, 58, .35);
  --sun-radius: 1.4rem;
  --sun-font-head: 'Fraunces', Georgia, serif;
  --sun-font-body: 'Manrope', 'Segoe UI', sans-serif;
}

/* ---------- base ---------- */

html { scroll-behavior: smooth; }

body {
  background: var(--sun-cream);
  color: var(--sun-ink);
  font-family: var(--sun-font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-head { font-family: var(--sun-font-head); font-weight: 600; letter-spacing: -.01em; }

h1 { font-size: clamp(2.4rem, 5.2vw, 4.3rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.12; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

a { color: var(--sun-teal); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--sun-coral); }

img { max-width: 100%; display: block; }

::selection { background: var(--sun-amber); color: var(--sun-ink); }

/* thin sunrise scrollbar, just for vibes */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--sun-cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--sun-amber), var(--sun-coral)); border-radius: 8px; }

/* ---------- layout helpers ---------- */

.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--dark { background: var(--sun-ink); color: #f4efe6; }
.section--sand { background: var(--sun-sand); }
.section--paper { background: var(--sun-paper); }

.section--media {
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sun-coral-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 2.2rem; height: 2px;
  background: linear-gradient(90deg, var(--sun-amber), var(--sun-coral));
  border-radius: 2px;
}
.section--media .eyebrow, .section--dark .eyebrow { color: var(--sun-peach); }

.lead { font-size: 1.15rem; color: var(--sun-ink-soft); }
.section--media .lead, .section--dark .lead { color: rgba(255,255,255,.82); }

/* inline text link with animated underline */
.link-fancy {
  position: relative;
  font-weight: 700;
  color: var(--sun-teal);
  background-image: linear-gradient(90deg, var(--sun-amber), var(--sun-coral));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: background-size .35s ease, color .35s ease;
  padding-bottom: 2px;
}
.link-fancy:hover { background-size: 100% 2px; color: var(--sun-coral-deep); }

/* ---------- buttons ---------- */

.btn-sun {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.9rem;
  border: 0; border-radius: 999px;
  font-weight: 800; font-size: .95rem; letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(120deg, var(--sun-amber), var(--sun-coral) 60%, var(--sun-coral-deep));
  box-shadow: 0 14px 30px -12px rgba(225, 79, 44, .55);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-sun:hover, .btn-sun:focus { color: #fff; transform: translateY(-3px); box-shadow: 0 20px 38px -12px rgba(225, 79, 44, .6); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .8rem 1.8rem;
  border: 2px solid var(--sun-ink); border-radius: 999px;
  font-weight: 800; font-size: .95rem;
  color: var(--sun-ink); background: transparent;
  transition: all .25s ease;
}
.btn-ghost:hover { background: var(--sun-ink); color: var(--sun-cream); border-color: var(--sun-ink); }
.section--dark .btn-ghost, .section--media .btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.section--dark .btn-ghost:hover, .section--media .btn-ghost:hover { background: #fff; color: var(--sun-ink); }

.btn-ghost.active, .btn-ghost[aria-pressed="true"] { background: var(--sun-ink); color: var(--sun-cream); }

/* ---------- decorative bits ---------- */

.orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5;
  pointer-events: none; z-index: 0;
}
.orb--amber { width: 26rem; height: 26rem; background: radial-gradient(circle, #ffd08a, transparent 65%); }
.orb--coral { width: 22rem; height: 22rem; background: radial-gradient(circle, #ffb199, transparent 65%); }
.orb--teal  { width: 20rem; height: 20rem; background: radial-gradient(circle, #9fd8cd, transparent 65%); }

.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5; z-index: 0;
  background-image: radial-gradient(rgba(21,49,58,.06) 1px, transparent 1px);
  background-size: 22px 22px;
}

.tick-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .35rem .9rem; border-radius: 999px;
  font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  color: #fff; backdrop-filter: blur(6px);
}
.tick-badge i { color: var(--sun-amber); }
.tick-badge--light { background: var(--sun-sand); border-color: var(--sun-line); color: var(--sun-ink); }
.tick-badge--light i { color: var(--sun-coral-deep); }

/* ---------- header ---------- */

.site-header { position: sticky; top: 0; z-index: 1020; }

.site-header__topbar {
  background: var(--sun-ink);
  color: #e8e2d6;
  font-size: .82rem;
  padding: .45rem 0;
}
.site-header__topbar a { color: #ffd9bd; font-weight: 600; }
.site-header__topbar a:hover { color: var(--sun-amber); }
.site-header__topbar i { color: var(--sun-amber); margin-right: .35rem; }
.site-header__contacts { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; align-items: center; }

.site-header__nav {
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sun-line);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled .site-header__nav { box-shadow: 0 12px 30px -18px rgba(21,49,58,.35); }

.navbar-brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--sun-font-head); font-weight: 700; font-size: 1.35rem; color: var(--sun-ink);
}
.navbar-brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.navbar-brand span { color: var(--sun-coral-deep); }

.site-header .nav-link {
  font-weight: 700; font-size: .92rem; color: var(--sun-ink);
  padding: .5rem .8rem; border-radius: .6rem;
  transition: color .2s ease;
}
.site-header .nav-link:hover, .site-header .nav-link.active { color: var(--sun-coral-deep); }
.site-header .nav-link.active { position: relative; }
.site-header .nav-link.active::after {
  content: ''; position: absolute; left: .8rem; right: .8rem; bottom: .15rem;
  height: 2px; border-radius: 2px; background: var(--sun-coral);
}

.navbar-toggler { border: 2px solid var(--sun-ink); border-radius: .7rem; padding: .35rem .6rem; color: var(--sun-ink); }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(247,165,49,.4); }

@media (max-width: 991.98px) {
  .site-header__nav .navbar-collapse { padding: 1rem 0 1.25rem; }
  .site-header__nav .nav-link { padding: .7rem .2rem; }
}

/* ---------- hero ---------- */

.hero {
  min-height: 88vh;
  display: flex; align-items: center;
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(4rem, 7vw, 6rem);
  background-size: cover; background-position: center;
  color: #fff; position: relative; isolation: isolate;
}
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 em { font-style: italic; color: var(--sun-peach); }
.hero p { max-width: 46ch; font-size: 1.15rem; color: rgba(255,255,255,.85); }
.hero--compact { min-height: 52vh; padding: clamp(5rem, 9vw, 7.5rem) 0 clamp(3.5rem, 6vw, 5rem); }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem;
}
.hero__card {
  background: rgba(255,253,248,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--sun-radius);
  backdrop-filter: blur(10px);
  padding: 1.4rem;
}

/* hero side stats column */
.hero-stats { display: grid; gap: 1rem; }
.hero-stats__item {
  background: var(--sun-paper); color: var(--sun-ink);
  border-radius: var(--sun-radius); padding: 1.2rem 1.4rem;
  box-shadow: var(--sun-shadow);
  display: flex; align-items: center; gap: 1rem;
}
.hero-stats__item i { font-size: 1.5rem; color: var(--sun-coral); }
.hero-stats__item strong { font-family: var(--sun-font-head); font-size: 1.35rem; display: block; line-height: 1.1; }
.hero-stats__item small { color: var(--sun-ink-soft); }

/* ---------- bento grid ---------- */

.bento {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(12, 1fr);
}
.bento__card {
  border-radius: var(--sun-radius);
  background: var(--sun-paper);
  border: 1px solid var(--sun-line);
  padding: 1.6rem;
  position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.bento__card:hover { transform: translateY(-4px); box-shadow: var(--sun-shadow); }
.bento__card--hero { grid-column: span 7; grid-row: span 2; min-height: 26rem; display: flex; align-items: flex-end; background-size: cover; background-position: center; color: #fff; border: 0; }
.bento__card--tall { grid-column: span 5; }
.bento__card--wide { grid-column: span 7; }
.bento__card--square { grid-column: span 5; }
.bento__card--media { padding: 0; border: 0; min-height: 14rem; }
.bento__card--media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.bento__card--media:hover img { transform: scale(1.06); }
.bento__card--strip { grid-column: span 12; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; }

.bento__metric strong { font-family: var(--sun-font-head); font-size: 2.6rem; line-height: 1; }
.bento__bar { height: .45rem; border-radius: 4px; background: var(--sun-sand); overflow: hidden; margin-top: 1rem; }
.bento__bar span { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--sun-amber), var(--sun-coral)); }

@media (max-width: 991.98px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento__card--hero { grid-column: span 6; min-height: 20rem; }
  .bento__card--tall, .bento__card--square, .bento__card--wide { grid-column: span 3; }
  .bento__card--media { grid-column: span 3; }
  .bento__card--strip { grid-column: span 6; }
}
@media (max-width: 575.98px) {
  .bento__card--tall, .bento__card--square, .bento__card--wide, .bento__card--media { grid-column: span 6; }
}

/* ---------- generic cards ---------- */

.card-sun {
  background: var(--sun-paper);
  border: 1px solid var(--sun-line);
  border-radius: var(--sun-radius);
  padding: 1.6rem;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card-sun:hover { transform: translateY(-5px); box-shadow: var(--sun-shadow); }
.card-sun__icon {
  width: 3rem; height: 3rem; border-radius: .9rem;
  display: grid; place-items: center; font-size: 1.2rem;
  color: #fff; background: linear-gradient(135deg, var(--sun-amber), var(--sun-coral));
  margin-bottom: 1rem;
}

/* trip / destination / casino cards */
.trip-card {
  border-radius: var(--sun-radius); overflow: hidden;
  background: var(--sun-paper); border: 1px solid var(--sun-line);
  height: 100%; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.trip-card:hover { transform: translateY(-6px); box-shadow: var(--sun-shadow); }
.trip-card__media {
  min-height: 15rem; background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-end; padding: 1.2rem;
}
.trip-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.trip-card__tags { position: relative; z-index: 2; display: flex; gap: .5rem; flex-wrap: wrap; }
.trip-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.trip-card__body h3 { margin-bottom: .5rem; }
.trip-card__meta { display: flex; gap: 1.1rem; flex-wrap: wrap; font-size: .85rem; color: var(--sun-ink-soft); margin: .4rem 0 .9rem; }
.trip-card__meta i { color: var(--sun-coral); margin-right: .3rem; }
.trip-card__price { margin-top: auto; display: flex; align-items: baseline; gap: .5rem; }
.trip-card__price strong { font-family: var(--sun-font-head); font-size: 1.5rem; color: var(--sun-teal); }
.trip-card__price small { color: var(--sun-ink-soft); }
.trip-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.2rem; }

/* ---------- reels (horizontal case strips) ---------- */

.reel { display: grid; gap: 1.2rem; }
.reel--offset { margin-top: 2.2rem; }
.reel__card {
  border-radius: var(--sun-radius); overflow: hidden; min-height: 17rem;
  background-size: cover; background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; color: #fff; position: relative;
  transition: transform .35s ease;
}
.reel__card:hover { transform: translateY(-6px) rotate(-.4deg); }
.reel__card--v { min-height: 22rem; }
.reel__card h3 { color: #fff; }
.reel__card p { color: rgba(255,255,255,.85); font-size: .95rem; margin-bottom: .2rem; }

/* ---------- manifesto (dark kinetic) ---------- */

.manifesto { background: var(--sun-ink); color: #f4efe6; overflow: hidden; }
.manifesto__rail {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: .78rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sun-amber); display: flex; align-items: center; gap: .8rem;
}
.manifesto__big {
  font-family: var(--sun-font-head);
  font-size: clamp(1.6rem, 3.1vw, 2.7rem); line-height: 1.3; font-weight: 500;
}
.manifesto__big em { color: var(--sun-amber); font-style: italic; }
.manifesto__card {
  background-size: cover; background-position: center;
  border-radius: var(--sun-radius); padding: 1.6rem; min-height: 16rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6);
}
@media (max-width: 991.98px) {
  .manifesto__rail { writing-mode: horizontal-tb; margin-bottom: 1.5rem; }
}

/* ---------- services matrix ---------- */

.svc-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.2rem; align-items: center;
  padding: 1.4rem 1rem; border-bottom: 1px solid rgba(255,255,255,.18);
  color: #fff; cursor: pointer; transition: background .25s ease, padding-left .25s ease;
}
.svc-row:hover { background: rgba(255,255,255,.07); padding-left: 1.5rem; }
.svc-row__num { font-family: var(--sun-font-head); font-size: 1.1rem; color: var(--sun-amber); }
.svc-row__title { font-family: var(--sun-font-head); font-size: 1.45rem; }
.svc-row__desc { font-size: .9rem; color: rgba(255,255,255,.7); }
.svc-row__arrow {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35); display: grid; place-items: center;
  transition: background .25s ease, transform .25s ease;
}
.svc-row:hover .svc-row__arrow { background: var(--sun-coral); border-color: var(--sun-coral); transform: rotate(-45deg); }

/* ---------- metrics ---------- */

.metric { text-align: center; padding: 1rem; }
.metric strong { font-family: var(--sun-font-head); font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1; display: block; }
.metric span { color: var(--sun-amber); font-weight: 800; }
.metric p { margin-top: .5rem; color: rgba(255,255,255,.75); font-size: .95rem; }
.metric--light strong { color: var(--sun-teal); }
.metric--light p { color: var(--sun-ink-soft); }

/* ---------- process steps ---------- */

.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
  padding: 1.8rem 0; border-bottom: 1px solid var(--sun-line);
}
.step__num {
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  font-family: var(--sun-font-head); font-size: 1.2rem; font-weight: 700;
  color: #fff; background: linear-gradient(135deg, var(--sun-teal), var(--sun-ink));
}
.step__tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .8rem; }
.step__tags span {
  font-size: .75rem; font-weight: 700; padding: .3rem .7rem;
  background: var(--sun-sand); border-radius: 999px; color: var(--sun-ink-soft);
}
.step__nav { position: sticky; top: 7.5rem; }

/* ---------- testimonial ---------- */

.quote-xl {
  font-family: var(--sun-font-head); font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  line-height: 1.35; font-weight: 500;
}
.quote-xl::before {
  content: '\201C'; display: block; font-size: 4.5rem; line-height: .6;
  color: var(--sun-coral); margin-bottom: 1rem;
}
.person { display: flex; align-items: center; gap: 1rem; }
.person img { width: 4.2rem; height: 4.2rem; border-radius: 50%; object-fit: cover; border: 3px solid var(--sun-peach); }
.person__name { font-weight: 800; }
.person__role { font-size: .85rem; color: var(--sun-ink-soft); }

.stars { color: var(--sun-amber); letter-spacing: .15em; }

/* ---------- tabs ---------- */

.tab-nav { display: flex; flex-wrap: wrap; gap: .6rem; }
.tab-nav .btn-ghost { padding: .55rem 1.3rem; font-size: .85rem; }
.tab-pane-custom { display: none; }
.tab-pane-custom.is-active { display: block; animation: fadeSlide .45s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- timeline ---------- */

.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: .55rem; top: .4rem; bottom: .4rem;
  width: 2px; background: linear-gradient(var(--sun-amber), var(--sun-coral));
  border-radius: 2px;
}
.timeline__item { position: relative; padding-bottom: 2.2rem; }
.timeline__item::before {
  content: ''; position: absolute; left: -1.72rem; top: .35rem;
  width: .9rem; height: .9rem; border-radius: 50%;
  background: var(--sun-coral); border: 3px solid var(--sun-cream);
  box-shadow: 0 0 0 3px var(--sun-peach);
}
.timeline__year { font-family: var(--sun-font-head); font-size: 1.4rem; color: var(--sun-teal); font-weight: 700; }

/* ---------- team ---------- */

.team-card { text-align: left; }
.team-card img {
  width: 100%; aspect-ratio: 4/4.6; object-fit: cover;
  border-radius: var(--sun-radius); margin-bottom: 1rem;
}
.team-card__role { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--sun-coral-deep); }

/* ---------- forms ---------- */

.form-sun .form-label { font-weight: 700; font-size: .9rem; }
.form-sun .form-control, .form-sun .form-select {
  border: 2px solid var(--sun-line); border-radius: .9rem;
  padding: .8rem 1.1rem; background: var(--sun-paper); color: var(--sun-ink);
}
.form-sun .form-control:focus, .form-sun .form-select:focus {
  border-color: var(--sun-amber); box-shadow: 0 0 0 .2rem rgba(247,165,49,.25);
}
.form-sun textarea.form-control { min-height: 8.5rem; }

/* ---------- FAQ / accordion ---------- */

.faq .accordion-item {
  border: 1px solid var(--sun-line); border-radius: var(--sun-radius) !important;
  overflow: hidden; margin-bottom: .9rem; background: var(--sun-paper);
}
.faq .accordion-button {
  font-family: var(--sun-font-head); font-weight: 600; font-size: 1.1rem;
  background: var(--sun-paper); color: var(--sun-ink); padding: 1.2rem 1.5rem;
}
.faq .accordion-button:not(.collapsed) { background: var(--sun-sand); color: var(--sun-coral-deep); box-shadow: none; }
.faq .accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(247,165,49,.3); }
.faq .accordion-body { color: var(--sun-ink-soft); }

/* ---------- disclaimer (18+ / responsible play) ---------- */

.disclaimer {
  background: var(--sun-paper); border: 1px solid var(--sun-line);
  border-radius: var(--sun-radius); padding: clamp(1.6rem, 3vw, 2.6rem);
}
.disclaimer h3 { margin-bottom: .4rem; }
.disclaimer li { margin-bottom: .55rem; color: var(--sun-ink-soft); }
.disclaimer__warn {
  background: #fdeee6; border: 1px solid #f3cdb9; border-radius: var(--sun-radius);
  padding: 1.4rem 1.6rem; margin-top: 1.6rem;
}
.disclaimer__warn h4 { color: var(--sun-coral-deep); }
.disclaimer__help a { font-weight: 800; margin-right: 1.4rem; }

/* ---------- map ---------- */

.map-frame {
  border-radius: var(--sun-radius); overflow: hidden; border: 1px solid var(--sun-line);
  box-shadow: var(--sun-shadow); min-height: 26rem; height: 100%;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 26rem; border: 0; display: block; }

/* ---------- footer ---------- */

.site-footer { background: var(--sun-ink); color: #cfc7b8; margin-top: 0; }
.site-footer__cta {
  background-size: cover; background-position: center;
  border-radius: var(--sun-radius); padding: clamp(2rem, 5vw, 4rem);
  color: #fff; text-align: center; margin-bottom: 4rem;
}
.site-footer h5 { color: #fff; font-family: var(--sun-font-body); font-weight: 800; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.2rem; }
.site-footer a { color: #cfc7b8; }
.site-footer a:hover { color: var(--sun-amber); }
.site-footer__brand img { width: 52px; height: 52px; border-radius: 50%; }
.site-footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .95rem; }
.site-footer__contact { display: grid; gap: .6rem; font-size: .95rem; }
.site-footer__contact i { color: var(--sun-amber); width: 1.2rem; }
.site-footer__social a {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; display: inline-grid; place-items: center;
  border: 1px solid rgba(255,255,255,.25); margin-right: .5rem; transition: all .25s ease;
}
.site-footer__social a:hover { background: var(--sun-coral); border-color: var(--sun-coral); color: #fff; }
.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 3rem; padding: 1.6rem 0 2rem;
  font-size: .82rem; color: #9aa79f;
}
.site-footer__legal a { color: #c9bfa8; }

/* ---------- toast notification ---------- */

.toast-stack {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 2100;
  display: grid; gap: .7rem; max-width: 22rem;
}
.toast-sun {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--sun-ink); color: #fff;
  border-radius: 1rem; padding: 1rem 1.2rem;
  box-shadow: 0 20px 50px -18px rgba(0,0,0,.5);
  animation: toastIn .4s cubic-bezier(.2,.9,.3,1.2);
}
.toast-sun i { color: var(--sun-amber); font-size: 1.2rem; margin-top: .1rem; }
.toast-sun strong { display: block; font-size: .95rem; }
.toast-sun p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.75); }
.toast-sun.is-out { animation: toastOut .35s ease forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px) scale(.95); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateX(30px); } }

/* ---------- cookie banner ---------- */

.cookie-banner {
  position: fixed; left: 1.2rem; bottom: 1.2rem; z-index: 2050;
  max-width: 24rem;
  background: var(--sun-paper); border: 1px solid var(--sun-line);
  border-radius: var(--sun-radius); padding: 1.4rem;
  box-shadow: var(--sun-shadow);
  display: none;
}
.cookie-banner.is-visible { display: block; animation: toastIn .45s ease; }
.cookie-banner i { color: var(--sun-coral); font-size: 1.4rem; }
.cookie-banner p { font-size: .85rem; color: var(--sun-ink-soft); }

/* ---------- booking modal ---------- */

.book-modal {
  position: fixed; inset: 0; z-index: 2080; display: none;
  align-items: center; justify-content: center; padding: 1rem;
}
.book-modal.is-open { display: flex; }
.book-modal__backdrop { position: absolute; inset: 0; background: rgba(21,49,58,.6); backdrop-filter: blur(6px); }
.book-modal__dialog {
  position: relative; width: 100%; max-width: 30rem;
  background: var(--sun-paper); border-radius: var(--sun-radius);
  padding: 2rem; box-shadow: var(--sun-shadow);
  animation: toastIn .4s cubic-bezier(.2,.9,.3,1.2);
  max-height: 90vh; overflow-y: auto;
}
.book-modal__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 1px solid var(--sun-line);
  background: var(--sun-cream); color: var(--sun-ink); font-size: 1rem;
}
.book-modal__close:hover { background: var(--sun-coral); color: #fff; border-color: var(--sun-coral); }
.book-modal__trip { font-size: .85rem; font-weight: 800; color: var(--sun-coral-deep); text-transform: uppercase; letter-spacing: .1em; }

/* ---------- misc ---------- */

.divider-wave { height: 1px; background: linear-gradient(90deg, transparent, var(--sun-line), transparent); }

.stat-mini { display: flex; align-items: center; gap: .9rem; }
.stat-mini i { font-size: 1.4rem; color: var(--sun-coral); }
.stat-mini strong { font-family: var(--sun-font-head); font-size: 1.4rem; display: block; line-height: 1.1; }
.stat-mini small { color: var(--sun-ink-soft); }
.section--dark .stat-mini small, .section--media .stat-mini small { color: rgba(255,255,255,.7); }

/* horizontal marquee strip */
.marquee { overflow: hidden; white-space: nowrap; border-block: 1px solid var(--sun-line); padding: 1rem 0; }
.marquee__inner { display: inline-block; animation: marquee 30s linear infinite; }
.marquee__inner span {
  font-family: var(--sun-font-head); font-size: 1.15rem; font-weight: 600;
  margin: 0 1.6rem; color: var(--sun-ink-soft); display: inline-flex; align-items: center; gap: 1.6rem;
}
.marquee__inner i { color: var(--sun-amber); font-size: .6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* image reveal floating card for services matrix */
.svc-preview {
  position: sticky; top: 8rem;
  border-radius: var(--sun-radius); overflow: hidden; min-height: 22rem;
  background-size: cover; background-position: center;
  box-shadow: var(--sun-shadow);
}
.svc-preview img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.svc-preview__note {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  background: rgba(255,253,248,.92); border-radius: 1rem; padding: .9rem 1.1rem;
  font-size: .85rem; color: var(--sun-ink); backdrop-filter: blur(8px);
}

/* spotlight card used on legal pages */
.doc-body h3 { margin-top: 2.4rem; }
.doc-body p, .doc-body li { color: var(--sun-ink-soft); }
.doc-body ul { padding-left: 1.2rem; }
.doc-body li { margin-bottom: .4rem; }

/* ============================================================
   Page-specific patterns — appended 2026-09-25
   Keep additions here; the core system above stays stable.
   ============================================================ */

/* hero bottom ticker (home) — sits on the hero's lower edge */
.hero__ticker {
  position: absolute; left: 0; right: 0; bottom: 0;
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,.18);
  background: rgba(10, 25, 30, .35);
  backdrop-filter: blur(8px);
  padding: .85rem 0;
}
.hero__ticker .marquee__inner span { color: rgba(255,255,255,.85); font-size: .95rem; }
.hero { padding-bottom: clamp(6rem, 9vw, 8rem); }

/* dark route-diary cards (home planner section) */
.day-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--sun-radius);
  padding: 1.6rem;
  transition: transform .3s ease, border-color .3s ease;
}
.day-card:hover { transform: translateX(6px); border-color: rgba(255,255,255,.35); }
.day-card p { color: rgba(255,255,255,.75); }

/* departure / season tables on dark media sections */
.season-table { color: #fff; --bs-table-color: #fff; --bs-table-bg: transparent; }
.season-table thead th {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.14);
  padding: 1rem .9rem;
}
.season-table tbody td { padding: 1.1rem .9rem; border-color: rgba(255,255,255,.1); }
.season-table tbody tr { transition: background .25s ease; }
.season-table tbody tr:hover { background: rgba(255,255,255,.05); }

/* alternating destination rows */
.dest-card {
  border-radius: var(--sun-radius); overflow: hidden;
  border: 1px solid var(--sun-line); background: var(--sun-paper);
  box-shadow: var(--sun-shadow);
}
.dest-card__media {
  min-height: 20rem; height: 100%;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-start; padding: 1.2rem;
}
@media (max-width: 991.98px) {
  .dest-card__media { min-height: 15rem; }html,body{overflow-x:hidden}
}

/* sticky toc on legal pages */
.doc-nav {
  display: grid; gap: .1rem;
  padding: 1.2rem 1.4rem; margin-bottom: 1rem;
  background: var(--sun-paper); border: 1px solid var(--sun-line);
  border-radius: var(--sun-radius);
}

/* link used as a full media card should keep white text on hover */
a.reel__card:hover { color: #fff; }

/* compact variant of the pill button (modal, banner, small actions) */
.btn-sun.btn-sm { padding: .55rem 1.2rem; font-size: .85rem; }
.btn-ghost.btn-sm { padding: .5rem 1.1rem; font-size: .8rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
