/* =========================================================
   YOUR GEORGIA — DESIGN OVERRIDES (post-feedback rev. 1)
   Loaded last so it wins specificity wars.
   ========================================================= */

/* ---------- TOP UTILITY BAR (social icons at the top) ---------- */
.topbar {
  position: relative;
  z-index: 60;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 8px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.topbar__social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.topbar__social a {
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.topbar__social a:hover { opacity: 1; color: var(--clay-light); }
.topbar__phone { opacity: 0.75; }
.topbar__phone a:hover { color: var(--clay-light); opacity: 1; }
@media (max-width: 600px) {
  .topbar__inner { justify-content: center; padding: 6px 16px; }
  .topbar__phone { display: none; }
}

/* The fixed nav must sit BELOW the topbar, not on top of it */
.nav { top: 36px !important; }
@media (max-width: 600px) { .nav { top: 28px !important; } }
/* Subpages with solid nav: account for topbar offset on body padding too */
body.has-topbar .subhero,
body.has-topbar .hero { /* hero already absolute-positioned bg, so no change needed */ }

/* ---------- BUTTONS: drop shaped/borders, become arrow-style ---------- */
/* Primary call-to-action becomes a clean text + arrow, no pill, no border */
.btn,
.btn--primary,
.btn--ghost,
.btn--ghost-dark,
.btn--dark,
.btn--cream {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 10px 0 !important;
  box-shadow: none !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
  font-size: 13px !important;
  position: relative;
  transition: color 0.25s var(--ease), gap 0.25s var(--ease) !important;
}
.btn--primary { color: var(--clay) !important; }
.btn--primary:hover { color: var(--clay-dark) !important; transform: none !important; }
.btn--ghost { color: var(--cream) !important; }
.btn--ghost:hover { color: var(--clay-light) !important; }
.btn--ghost-dark, .btn--dark { color: var(--ink) !important; }
.btn--ghost-dark:hover, .btn--dark:hover { color: var(--clay) !important; }
.btn--cream { color: var(--cream) !important; }
.btn--cream:hover { color: var(--clay-light) !important; }

/* Underline that grows under the label on hover */
.btn::before {
  content: "";
  position: absolute;
  left: 0; right: 28px;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  transform-origin: left;
  transition: opacity 0.25s var(--ease);
}
.btn:hover::before { opacity: 1; }
.btn__arrow { transform: translateX(0); }
.btn:hover .btn__arrow { transform: translateX(6px) !important; }

/* Nav "Plan My Trip" CTA — same arrow style, no pill */
.nav__cta {
  background: transparent !important;
  border: 0 !important;
  padding: 6px 0 !important;
  color: inherit !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px !important;
  border-bottom: 1px solid currentColor !important;
  border-radius: 0 !important;
}
.nav__cta:hover {
  background: transparent !important;
  color: var(--clay) !important;
  transform: none !important;
}

/* ---------- ORANGE TICK MARKS: drop the orange disc ---------- */
/* Home: safety section */
.safety__check-mark {
  background: transparent !important;
  color: var(--clay) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  margin-top: 0 !important;
}
/* Tour pages: inclusions list — strip the orange disc behind the check */
.incl-block__item svg circle[fill],
.incl-block__item svg circle:not([stroke]) {
  fill: transparent !important;
}
.incl-block__item svg path {
  stroke: var(--clay) !important;
  stroke-width: 2.4 !important;
}
/* "Not included" minus sign keeps its outline-only style — boost contrast */
.incl-block__item--excl svg circle { stroke: rgba(15,23,20,0.35) !important; }
.incl-block__item--excl svg path { stroke: rgba(15,23,20,0.55) !important; }

/* ---------- DAY / ITINERARY ACCORDION: collapse everything by default ---------- */
.day__summary,
.day__tags {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0 !important;
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease), margin 0.35s var(--ease);
}
.day.is-open .day__summary {
  max-height: 600px;
  opacity: 1;
  margin-bottom: 14px !important;
}
.day.is-open .day__tags {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 4px !important;
}

/* Make sure the toggle is a clean orange "+" without a circle frame */
.day__toggle {
  border: 0 !important;
  background: transparent !important;
  color: var(--clay) !important;
  font-size: 28px !important;
  width: 36px !important;
  height: 36px !important;
}
.day__toggle:hover {
  background: transparent !important;
  color: var(--clay-dark) !important;
}
.day.is-open .day__toggle {
  background: transparent !important;
  color: var(--clay-dark) !important;
  border: 0 !important;
}

/* ---------- IMAGE GALLERY → SLIDESHOW ---------- */
.gallery__grid {
  position: relative;
  column-count: 1 !important;
  column-gap: 0 !important;
  max-width: 760px;
  margin: 0 auto;
}
.gallery__item {
  display: none !important;
  break-inside: auto !important;
  margin: 0 !important;
}
.gallery__item.is-active {
  display: block !important;
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.gallery__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  gap: 16px;
}
.gallery__arrow {
  width: 44px; height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.gallery__arrow:hover {
  background: var(--clay);
  color: var(--cream);
  border-color: var(--clay);
}
.gallery__counter {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ---------- MOBILE MENU: cleaner list, larger labels ---------- */
@media (max-width: 900px) {
  .nav__links {
    gap: 18px;
  }
  .nav--open .nav__links li {
    border-bottom: 1px solid rgba(15,23,20,0.08);
    padding: 14px 4px;
  }
  .nav--open .nav__links a {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
}
