/* ============================================================
   Czech Royal Hunt — Light theme overrides
   Dark mode stays 100% on existing :root / page rules.
   Only activates when <html data-theme="light">.

   Strategy:
   - Keep --ivory light (for photo overlays / dark cinematic panels)
   - Flip page chrome & section grounds to parchment
   - Set readable charcoal text on light surfaces explicitly
   ============================================================ */

html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

/* ---- Shared token remaps ---- */
html[data-theme="light"] {
  --pine: #FBF9F5;
  --pine-2: #F3EFE6;
  --pine-3: #E8E1D4;
  --pine-black: #1A221E;
  --pine-900: #F3EFE6;
  --forest: #EDE7DB;
  --forest-2: #E4DDD0;
  --forest-deep: #F7F3EB;
  --forest-800: #EFE9DE;
  --forest-700: #E4DDD0;
  --moss: #4F6348;
  --moss-soft: #5C6B53;
  --walnut: #5A4636;
  --walnut-700: #6B5340;
  --walnut-500: #8A6F55;
  /* Keep ivory light — used on imagery overlays */
  --ivory: #f6f1e7;
  --ivory-dim: rgba(26, 34, 30, 0.72);
  --muted: #5C655F;
  --stone: #5C655F;
  --stone-dim: #7A837C;
  --gold: #9A7340;
  --gold-2: #8C6E3A;
  --gold-soft: #B08D4F;
  --gold-deep: #8C6E3A;
  --gold-bright: #9A7340;
  --gold-line: #9A7340;
  --bg: #FBF9F5;
  --bg-elevated: #F7F3EB;
  --text: #1A221E;
  --text-muted: #5C655F;
  --line: rgba(154, 115, 64, 0.28);
  --line-soft: rgba(26, 34, 30, 0.08);
  --accent: #9A7340;
  --card: rgba(247, 243, 235, 0.94);
  --shadow: 0 24px 70px rgba(26, 34, 30, 0.1);
  --void: #F3EFE6;
  --plate: #F7F3EB;
  --plate-2: #EFE9DE;
  --grp-line: rgba(154, 115, 64, 0.22);
  --grp-line-strong: rgba(154, 115, 64, 0.36);
  --grp-panel: rgba(247, 243, 235, 0.94);
  --grp-muted: rgba(26, 34, 30, 0.62);
  --grp-soft: rgba(26, 34, 30, 0.88);
  --grp-gold: #9A7340;
}

/* ---- Theme toggle ---- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  margin-left: 0.15rem;
  padding: 0;
  border: 1px solid rgba(224, 192, 131, 0.28);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(232, 204, 150, 0.92);
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.3s ease;
}

.theme-toggle:hover {
  color: #f8ecd8;
  background: rgba(200, 154, 88, 0.16);
  border-color: rgba(224, 192, 131, 0.62);
}

.theme-toggle:focus-visible {
  outline: 2px solid #d8b980;
  outline-offset: 3px;
}

.theme-toggle__icon {
  display: none;
}

html[data-theme="dark"] .theme-toggle__icon--sun,
html:not([data-theme]) .theme-toggle__icon--sun {
  display: block;
}

html[data-theme="light"] .theme-toggle__icon--moon {
  display: block;
}

.navbar .theme-toggle {
  pointer-events: auto;
  margin-left: 1rem;
}

@media (max-width: 980px) {
  .site-header .theme-toggle {
    margin-left: 0.35rem;
  }
}

/* ---- Body ---- */
html[data-theme="light"] {
  background: #FBF9F5;
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 20% 0%, rgba(154, 115, 64, 0.08), transparent 32rem),
    linear-gradient(180deg, #FBF9F5 0%, #F3EFE6 44%, #EFE9DE 100%) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .page-noise {
  opacity: 0.03;
  mix-blend-mode: multiply;
}

/* ---- Logo: light on hero; charcoal when scrolled / footer ---- */
html[data-theme="light"] .footer__logo,
html[data-theme="light"] .footer-logo {
  filter: brightness(0) saturate(100%);
  opacity: 0.88;
}

html[data-theme="light"] .site-header.is-scrolled .brand img,
html[data-theme="light"] .site-header.is-open .brand img,
html[data-theme="light"] body.page-inner .site-header.is-scrolled .brand img,
html[data-theme="light"] body.page-inner .site-header.is-open .brand img {
  filter: brightness(0) saturate(100%);
  opacity: 0.88;
}

html[data-theme="light"] .navbar .logo img {
  filter: none;
  opacity: 0.95;
}

/* ---- Header ---- */
html[data-theme="light"] .site-header.is-scrolled,
html[data-theme="light"] .site-header.is-open,
html[data-theme="light"] body.page-inner .site-header.is-scrolled,
html[data-theme="light"] body.page-inner .site-header.is-open {
  background: rgba(251, 249, 245, 0.94) !important;
  border-bottom-color: rgba(154, 115, 64, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

html[data-theme="light"] .main-nav,
html[data-theme="light"] body.page-inner .main-nav {
  color: rgba(246, 241, 231, 0.86);
}

html[data-theme="light"] .site-header.is-scrolled .main-nav,
html[data-theme="light"] .site-header.is-open .main-nav,
html[data-theme="light"] body.page-inner .site-header.is-scrolled .main-nav,
html[data-theme="light"] body.page-inner .site-header.is-open .main-nav {
  color: rgba(26, 34, 30, 0.78);
}

html[data-theme="light"] .main-nav a:hover,
html[data-theme="light"] .main-nav a.is-active,
html[data-theme="light"] body.page-inner .main-nav a:hover,
html[data-theme="light"] body.page-inner .main-nav a.is-active {
  color: #8C6E3A;
}

html[data-theme="light"] .main-nav--auth,
html[data-theme="light"] body.page-inner .main-nav--auth {
  border-left-color: rgba(224, 192, 131, 0.18);
}

html[data-theme="light"] .site-header.is-scrolled .main-nav--auth,
html[data-theme="light"] .site-header.is-open .main-nav--auth,
html[data-theme="light"] body.page-inner .site-header.is-scrolled .main-nav--auth,
html[data-theme="light"] body.page-inner .site-header.is-open .main-nav--auth {
  border-left-color: rgba(154, 115, 64, 0.18);
}

html[data-theme="light"] .main-nav a.main-nav__auth-btn,
html[data-theme="light"] body.page-inner .main-nav a.main-nav__auth-btn,
html[data-theme="light"] .main-nav a.main-nav__provider-btn {
  border-color: rgba(200, 154, 88, 0.42);
  background: rgba(200, 154, 88, 0.1);
  color: rgba(248, 236, 216, 0.95);
}

html[data-theme="light"] .site-header.is-scrolled .main-nav a.main-nav__auth-btn,
html[data-theme="light"] .site-header.is-open .main-nav a.main-nav__auth-btn,
html[data-theme="light"] body.page-inner .site-header.is-scrolled .main-nav a.main-nav__auth-btn,
html[data-theme="light"] body.page-inner .site-header.is-open .main-nav a.main-nav__auth-btn,
html[data-theme="light"] .site-header.is-scrolled .main-nav a.main-nav__provider-btn,
html[data-theme="light"] .site-header.is-open .main-nav a.main-nav__provider-btn {
  border-color: rgba(154, 115, 64, 0.42);
  background: rgba(154, 115, 64, 0.08);
  color: #7A5A2E;
}

html[data-theme="light"] .main-nav a.main-nav__auth-btn:hover,
html[data-theme="light"] body.page-inner .main-nav a.main-nav__auth-btn:hover,
html[data-theme="light"] .main-nav a.main-nav__provider-btn:hover {
  color: #f8ecd8;
  background: rgba(200, 154, 88, 0.2);
  border-color: rgba(224, 192, 131, 0.72);
}

html[data-theme="light"] .site-header.is-scrolled .main-nav a.main-nav__auth-btn:hover,
html[data-theme="light"] .site-header.is-open .main-nav a.main-nav__auth-btn:hover,
html[data-theme="light"] body.page-inner .site-header.is-scrolled .main-nav a.main-nav__auth-btn:hover,
html[data-theme="light"] body.page-inner .site-header.is-open .main-nav a.main-nav__auth-btn:hover {
  color: #1A221E;
  background: rgba(154, 115, 64, 0.16);
  border-color: rgba(154, 115, 64, 0.62);
}

html[data-theme="light"] .nav-toggle,
html[data-theme="light"] body.page-inner .nav-toggle {
  border-color: rgba(224, 192, 131, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: #f6f1e7;
}

html[data-theme="light"] .site-header.is-scrolled .nav-toggle,
html[data-theme="light"] .site-header.is-open .nav-toggle,
html[data-theme="light"] body.page-inner .site-header.is-scrolled .nav-toggle,
html[data-theme="light"] body.page-inner .site-header.is-open .nav-toggle {
  border-color: rgba(154, 115, 64, 0.32);
  background: rgba(154, 115, 64, 0.06);
  color: #1A221E;
}

html[data-theme="light"] .theme-toggle {
  border-color: rgba(224, 192, 131, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 236, 216, 0.92);
}

html[data-theme="light"] .site-header.is-scrolled .theme-toggle,
html[data-theme="light"] .site-header.is-open .theme-toggle,
html[data-theme="light"] body.page-inner .site-header.is-scrolled .theme-toggle,
html[data-theme="light"] body.page-inner .site-header.is-open .theme-toggle {
  border-color: rgba(154, 115, 64, 0.38);
  background: rgba(154, 115, 64, 0.08);
  color: #7A5A2E;
}

@media (max-width: 980px) {
  html[data-theme="light"] .site-header.is-open .main-nav--primary,
  html[data-theme="light"] .site-header.is-open .main-nav--auth,
  html[data-theme="light"] body.page-inner .site-header.is-open .main-nav--primary,
  html[data-theme="light"] body.page-inner .site-header.is-open .main-nav--auth {
    background: #FBF9F5;
  }
}

/* ---- Footer ---- */
html[data-theme="light"] .footer {
  background: linear-gradient(180deg, #F3EFE6 0%, #E8E1D4 100%) !important;
  border-top-color: rgba(154, 115, 64, 0.18);
}

html[data-theme="light"] .footer__desc,
html[data-theme="light"] .footer__newsletter p,
html[data-theme="light"] .footer__newsletter-note,
html[data-theme="light"] .footer__copy {
  color: rgba(26, 34, 30, 0.78) !important;
}

html[data-theme="light"] .footer__trust,
html[data-theme="light"] .footer__col h3,
html[data-theme="light"] .footer__col h4,
html[data-theme="light"] .footer__newsletter h3,
html[data-theme="light"] .footer__newsletter h4 {
  color: #6F5429 !important;
}

html[data-theme="light"] .footer__col a,
html[data-theme="light"] .footer__legal a {
  color: rgba(26, 34, 30, 0.78) !important;
}

html[data-theme="light"] .footer__col a:hover,
html[data-theme="light"] .footer__legal a:hover {
  color: #8C6E3A !important;
}

html[data-theme="light"] .footer__form input {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(154, 115, 64, 0.28) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .footer__form input::placeholder {
  color: rgba(26, 34, 30, 0.42);
}

html[data-theme="light"] .footer__rule {
  border-color: rgba(154, 115, 64, 0.18);
  background: rgba(154, 115, 64, 0.18);
}

/* ---- Inner pages: section grounds ---- */
html[data-theme="light"] body.page-inner {
  background: #FBF9F5 !important;
  color: #1A221E !important;
}

html[data-theme="light"] .page-section--deep,
html[data-theme="light"] body.page-inner .page-section--deep {
  background: linear-gradient(180deg, #FBF9F5 0%, #F3EFE6 100%) !important;
  color: #1A221E;
}

html[data-theme="light"] .page-section--forest,
html[data-theme="light"] body.page-inner .page-section--forest {
  background: linear-gradient(180deg, #EFE9DE 0%, #E8E1D4 100%) !important;
  color: #1A221E;
}

html[data-theme="light"] .page-section--ivory {
  background: #F7F3EB !important;
  color: #1A221E;
}

html[data-theme="light"] .section-title {
  color: #1A221E !important;
}

html[data-theme="light"] .section-eyebrow,
html[data-theme="light"] body.page-inner .section-eyebrow,
html[data-theme="light"] .filter-group .section-eyebrow {
  color: #8C6E3A !important;
}

html[data-theme="light"] .page-head {
  background: linear-gradient(165deg, #F3EFE6 0%, #EFE9DE 48%, #E8E1D4 100%) !important;
}

/* Photo heroes stay cinematic — ivory/gold on dark imagery */
html[data-theme="light"] body.page-inner .page-hero-band__inner h1 {
  color: #f4efe5 !important;
}

html[data-theme="light"] body.page-inner .page-hero-band__inner .section-eyebrow {
  color: #d8b980 !important;
}

html[data-theme="light"] body.page-inner .page-hero-band__inner .page-lead {
  color: rgba(255, 255, 255, 0.78) !important;
}

/* Private Invitation — keep dark photo overlay + light text */
html[data-theme="light"] .page-invite__overlay {
  background:
    linear-gradient(90deg, rgba(8, 14, 10, 0.9) 0%, rgba(12, 22, 16, 0.75) 40%, rgba(14, 28, 20, 0.35) 100%),
    linear-gradient(180deg, rgba(7, 12, 9, 0.12) 0%, rgba(7, 12, 9, 0.58) 100%) !important;
}

html[data-theme="light"] .page-invite--center .page-invite__overlay {
  background:
    linear-gradient(180deg, rgba(8, 14, 10, 0.72) 0%, rgba(12, 22, 16, 0.82) 55%, rgba(9, 15, 11, 0.92) 100%) !important;
}

html[data-theme="light"] body.page-inner .page-invite__inner h2 {
  color: #f4efe5 !important;
}

html[data-theme="light"] body.page-inner .page-invite__inner .section-eyebrow {
  color: #d8b980 !important;
}

html[data-theme="light"] body.page-inner .page-invite__inner > p:not(.page-invite__note) {
  color: rgba(255, 255, 255, 0.78) !important;
}

html[data-theme="light"] body.page-inner .page-invite__note {
  color: rgba(216, 185, 128, 0.88) !important;
}

html[data-theme="light"] body.page-inner .page-invite .btn-platform--gold {
  background: #c7a368;
  border-color: #d6b57f;
  color: #081008 !important;
}

html[data-theme="light"] body.page-inner .page-invite .btn-platform--gold:hover {
  background: #d8b57a;
}

html[data-theme="light"] .lux-frame,
html[data-theme="light"] .lux-frame--correspondence {
  border-color: rgba(154, 115, 64, 0.28) !important;
  background: linear-gradient(165deg, rgba(247, 243, 235, 0.98), rgba(239, 233, 222, 0.99)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 24px 60px -42px rgba(26, 34, 30, 0.14);
  color: #1A221E;
}

/* Homepage gold frames: convert dark inset to parchment */
html[data-theme="light"] .lux-frame--dark {
  background:
    linear-gradient(135deg, rgba(255, 235, 195, 0.35) 0%, rgba(214, 172, 102, 0.55) 18%, rgba(184, 139, 74, 0.28) 50%, rgba(222, 186, 118, 0.5) 82%, rgba(255, 230, 185, 0.22) 100%) !important;
  border-color: rgba(154, 115, 64, 0.28) !important;
}

html[data-theme="light"] .lux-frame--dark::before {
  background: #F7F3EB !important;
}

html[data-theme="light"] .lux-frame--dark .section-head p,
html[data-theme="light"] .lux-frame--dark .section h2,
html[data-theme="light"] .lux-frame--dark .eyebrow {
  color: #1A221E;
}

html[data-theme="light"] .lux-frame--dark .section-head p {
  color: rgba(26, 34, 30, 0.72) !important;
}

html[data-theme="light"] .lux-frame--dark .eyebrow {
  color: #8C6E3A !important;
}

/* ---- Discovery / hunts catalogue ---- */
html[data-theme="light"] .discovery-refine-zone::before {
  border-color: rgba(154, 115, 64, 0.12) !important;
  background: linear-gradient(168deg, rgba(255, 252, 248, 0.98) 0%, rgba(247, 243, 235, 0.55) 55%, transparent 100%) !important;
  box-shadow: none;
}

html[data-theme="light"] .filter-rail {
  background: #FFFCFA !important;
  border-color: rgba(154, 115, 64, 0.22) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 36px -24px rgba(26, 34, 30, 0.14) !important;
  color: #1A221E;
}

html[data-theme="light"] .filter-group,
html[data-theme="light"] .filter-group__head {
  border-bottom-color: rgba(154, 115, 64, 0.14) !important;
}

html[data-theme="light"] .filter-opt {
  color: rgba(26, 34, 30, 0.72) !important;
}

html[data-theme="light"] .filter-opt:hover,
html[data-theme="light"] .filter-opt.is-active {
  color: #1A221E !important;
}

html[data-theme="light"] .filter-opt__box {
  border-color: rgba(154, 115, 64, 0.45) !important;
  background: rgba(255, 255, 255, 0.7);
}

html[data-theme="light"] .filter-opt.is-active .filter-opt__box::after {
  background: #9A7340;
}

html[data-theme="light"] .filter-opt__count {
  color: #6B746E !important;
}

/* Hunts refine rail — light mode only. Dark rail stays as-is. */
html[data-theme="light"] body.page-inner .discovery .filter-rail {
  background: #FFFCFA !important;
  border-color: rgba(90, 70, 54, 0.18) !important;
}

html[data-theme="light"] body.page-inner .discovery .filter-rail .section-eyebrow,
html[data-theme="light"] body.page-inner .discovery .filter-group .section-eyebrow,
html[data-theme="light"] body.page-inner .discovery .filter-rail__title {
  color: #2C2822 !important;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 0;
}

html[data-theme="light"] body.page-inner .discovery .filter-rail__head {
  border-bottom: 1px solid rgba(90, 70, 54, 0.16) !important;
  margin-bottom: 0.25rem;
  padding-bottom: 0.9rem;
}

html[data-theme="light"] body.page-inner .discovery .filter-group__head {
  border-bottom-color: rgba(90, 70, 54, 0.14) !important;
}

html[data-theme="light"] body.page-inner .discovery .filter-clear {
  color: #3A3228 !important;
  background: #fff !important;
  border: 1px solid rgba(90, 70, 54, 0.28);
  padding: 0.28rem 0.6rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

html[data-theme="light"] body.page-inner .discovery .filter-clear:hover {
  color: #1A1208 !important;
  background: rgba(154, 115, 64, 0.12) !important;
  border-color: #8C6E3A;
}

html[data-theme="light"] body.page-inner .discovery .filter-opt {
  color: rgba(26, 34, 30, 0.82) !important;
}

html[data-theme="light"] .discovery-shortcut {
  background: #fff !important;
  border-color: rgba(154, 115, 64, 0.32) !important;
  color: #2E3832 !important;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(26, 34, 30, 0.05);
}

html[data-theme="light"] .discovery-shortcut:hover {
  background: rgba(154, 115, 64, 0.08) !important;
  border-color: rgba(154, 115, 64, 0.55) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .discovery-shortcut.is-active,
html[data-theme="light"] .discovery-shortcut[aria-pressed="true"] {
  background: linear-gradient(180deg, #d4b07a, #b08a45) !important;
  border-color: #a97938 !important;
  color: #1A1208 !important;
  box-shadow:
    0 8px 18px -10px rgba(154, 115, 64, 0.55),
    inset 0 1px 0 rgba(255, 245, 220, 0.45);
}

html[data-theme="light"] .filter-clear,
html[data-theme="light"] .filter-active-banner__clear {
  color: #8C6E3A !important;
}

html[data-theme="light"] .filter-active-banner {
  border-color: rgba(154, 115, 64, 0.28) !important;
  background: rgba(154, 115, 64, 0.08) !important;
}

html[data-theme="light"] .filter-active-banner__label {
  color: #5C4A2E !important;
}

html[data-theme="light"] .discovery-search {
  background: #fff !important;
  border-color: rgba(154, 115, 64, 0.32) !important;
}

html[data-theme="light"] .discovery-search__icon {
  color: #8C6E3A !important;
}

html[data-theme="light"] .discovery-search input {
  background: transparent !important;
  color: #1A221E !important;
}

html[data-theme="light"] .discovery-search input::placeholder {
  color: rgba(26, 34, 30, 0.4) !important;
}

html[data-theme="light"] .discovery-search:focus-within {
  border-color: rgba(154, 115, 64, 0.55) !important;
  box-shadow: 0 0 0 1px rgba(154, 115, 64, 0.12);
}

html[data-theme="light"] .result-count {
  color: #8C6E3A !important;
}

html[data-theme="light"] .field-select select {
  background: #fff !important;
  border-color: rgba(154, 115, 64, 0.32) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .field-select option {
  background: #F7F3EB;
  color: #1A221E;
}

html[data-theme="light"] .field-select::after {
  color: #8C6E3A !important;
}

/* Hunt cards stay photo-dark with light text */
html[data-theme="light"] .hunt-card {
  border-color: rgba(154, 115, 64, 0.28);
  box-shadow: 0 24px 50px -36px rgba(26, 34, 30, 0.2);
}

html[data-theme="light"] .hunt-card__overlay {
  background: linear-gradient(180deg, rgba(3, 5, 4, 0.45) 0%, rgba(4, 8, 6, 0.94) 100%) !important;
}

html[data-theme="light"] .hunt-card__region,
html[data-theme="light"] .hunt-card__title,
html[data-theme="light"] .hunt-card__body > p:not(.hunt-card__region):not(.hunt-card__meta),
html[data-theme="light"] .hunt-card__meta,
html[data-theme="light"] .hunt-card__meta b {
  color: #f8f4ec !important;
}

html[data-theme="light"] .hunt-card__region {
  color: #d8b980 !important;
}

html[data-theme="light"] .hunt-card__tier,
html[data-theme="light"] .hunt-card__season,
html[data-theme="light"] .hunt-card__season--open {
  color: #f4efe5 !important;
  background: rgba(9, 11, 8, 0.62) !important;
  border-color: rgba(216, 185, 128, 0.42) !important;
}

html[data-theme="light"] .hunt-card__season,
html[data-theme="light"] .hunt-card__season--open {
  padding: 0.35rem 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.58rem;
  border: 1px solid rgba(216, 185, 128, 0.42);
}

html[data-theme="light"] .hunt-card__season--open:hover,
html[data-theme="light"] .hunt-card__season--open:focus-visible {
  color: #e0c083 !important;
  border-color: rgba(224, 192, 131, 0.7) !important;
  background: rgba(9, 11, 8, 0.78) !important;
}

html[data-theme="light"] .btn-platform {
  background: #FFFCFA !important;
  border-color: rgba(154, 115, 64, 0.5) !important;
  color: #1A221E !important;
  box-shadow: 0 10px 22px -16px rgba(26, 34, 30, 0.22);
}

html[data-theme="light"] .btn-platform:hover {
  background: #F7F3EB !important;
  border-color: #9A7340 !important;
  color: #1A221E !important;
}

html[data-theme="light"] .btn-platform--gold {
  background: linear-gradient(180deg, #d3ad6f, #a97938) !important;
  border-color: #c9a05a !important;
  color: #1A1208 !important;
}

html[data-theme="light"] .btn-platform--gold:hover {
  background: #d8b57a !important;
  color: #081008 !important;
}

/* ---- Homepage sections ---- */
html[data-theme="light"] .section-bridge--dark,
html[data-theme="light"] .section-bridge--pre-catalog,
html[data-theme="light"] .section-bridge--to-light,
html[data-theme="light"] .section-bridge--to-dark {
  background: #F3EFE6 !important;
}

html[data-theme="light"] .section--offers,
html[data-theme="light"] .section--species,
html[data-theme="light"] .section--popular,
html[data-theme="light"] .section--group-dates,
html[data-theme="light"] .section--destinations,
html[data-theme="light"] .section--categories,
html[data-theme="light"] .section--proof {
  background: #F3EFE6 !important;
  color: #1A221E !important;
  border-color: rgba(154, 115, 64, 0.12);
}

html[data-theme="light"] .section--experiences {
  background: #F7F3EB !important;
  color: #1A221E !important;
}

html[data-theme="light"] .section--experiences::before,
html[data-theme="light"] .section--experiences::after {
  background: linear-gradient(180deg, #F3EFE6 0%, #EFE9DE 100%) !important;
}

html[data-theme="light"] .section h2,
html[data-theme="light"] .provider-cta h2,
html[data-theme="light"] .species-head h2,
html[data-theme="light"] .experience-card h3 {
  color: #1A221E !important;
}

html[data-theme="light"] .section-head p,
html[data-theme="light"] .species-lead,
html[data-theme="light"] .section--group-dates .section-head p,
html[data-theme="light"] .section--experiences .section-head p,
html[data-theme="light"] .experience-card p,
html[data-theme="light"] .experience-card a {
  color: rgba(26, 34, 30, 0.72) !important;
}

html[data-theme="light"] .eyebrow,
html[data-theme="light"] .section--experiences .eyebrow,
html[data-theme="light"] .browse-filter .section-eyebrow {
  color: #8C6E3A !important;
}

html[data-theme="light"] .eyebrow::before,
html[data-theme="light"] .section--experiences .eyebrow::before {
  background: #8C6E3A !important;
}

/* Visitor mode + ornament bridge — one continuous cream band */
html[data-theme="light"] .visitor-mode,
html[data-theme="light"] .group-marketplace-slot {
  width: 100%;
  max-width: none;
  background: #F3EFE6;
}

html[data-theme="light"] .visitor-mode__toggle {
  background: rgba(255, 252, 248, 0.88) !important;
  border-color: rgba(154, 115, 64, 0.32) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 24px rgba(26, 34, 30, 0.06);
}

html[data-theme="light"] .visitor-mode__option {
  color: rgba(26, 34, 30, 0.65) !important;
}

html[data-theme="light"] .visitor-mode__option.is-active {
  color: #1A1208 !important;
  background: linear-gradient(135deg, #e8c98e 0%, #c89a58 48%, #e6c17d 100%) !important;
}

html[data-theme="light"] .visitor-mode__hint,
html[data-theme="light"] body.homepage-mode-group .visitor-mode__hint {
  color: rgba(26, 34, 30, 0.68) !important;
}

/* Group marketplace stats strip */
html[data-theme="light"] .group-marketplace {
  background:
    linear-gradient(135deg, rgba(200, 154, 88, 0.1) 0%, transparent 42%),
    #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 40px rgba(26, 34, 30, 0.06) !important;
}

html[data-theme="light"] .group-marketplace__kicker,
html[data-theme="light"] .group-marketplace__signal-label,
html[data-theme="light"] .group-marketplace__departure-label {
  color: #8C6E3A !important;
}

html[data-theme="light"] .group-marketplace__tagline,
html[data-theme="light"] .group-marketplace__label,
html[data-theme="light"] .group-marketplace__empty-lead {
  color: rgba(26, 34, 30, 0.62) !important;
}

html[data-theme="light"] .group-marketplace__value,
html[data-theme="light"] .group-marketplace__signal strong,
html[data-theme="light"] .group-marketplace__departure-date,
html[data-theme="light"] .group-marketplace__empty-title {
  color: #1A221E !important;
}

html[data-theme="light"] .group-marketplace__metrics,
html[data-theme="light"] .group-marketplace__ornament {
  border-color: rgba(154, 115, 64, 0.16);
}

html[data-theme="light"] .group-marketplace__ornament {
  background: linear-gradient(180deg, transparent, rgba(154, 115, 64, 0.35), transparent) !important;
}

/* Proof / testimonials — light cards, dark readable text */
html[data-theme="light"] .proof-card {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.22) !important;
  box-shadow: 0 16px 40px rgba(26, 34, 30, 0.06);
}

html[data-theme="light"] .proof-card:hover {
  border-color: rgba(154, 115, 64, 0.4) !important;
  box-shadow: 0 20px 44px rgba(26, 34, 30, 0.1);
}

html[data-theme="light"] .proof-card p {
  color: rgba(26, 34, 30, 0.82) !important;
}

html[data-theme="light"] .proof-card footer {
  border-top-color: rgba(154, 115, 64, 0.18) !important;
}

html[data-theme="light"] .proof-card strong {
  color: #8C6E3A !important;
}

html[data-theme="light"] .proof-card span {
  color: rgba(26, 34, 30, 0.55) !important;
}

html[data-theme="light"] .proof-metrics {
  border-top-color: rgba(154, 115, 64, 0.16) !important;
}

html[data-theme="light"] .proof-metrics strong {
  color: #8C6E3A !important;
}

html[data-theme="light"] .proof-metrics span {
  color: rgba(26, 34, 30, 0.58) !important;
}

/* Species / offers cards — offer cards stay parchment.
   Search chips are styled separately below (use .is-active). */
html[data-theme="light"] .offer-card,
html[data-theme="light"] .lux-panel:not(.search-panel),
html[data-theme="light"] .provider-cta,
html[data-theme="light"] .experience-card,
html[data-theme="light"] .offers-empty {
  border-color: rgba(154, 115, 64, 0.24) !important;
  background: rgba(247, 243, 235, 0.96) !important;
  color: #1A221E !important;
}

/* ---- Homepage hero search panel (premium parchment) ---- */
html[data-theme="light"] .search-panel.lux-panel {
  background:
    linear-gradient(165deg, #FFFCFA 0%, #F7F3EB 52%, #F3EFE6 100%) !important;
  border-color: rgba(154, 115, 64, 0.34) !important;
  box-shadow:
    0 28px 64px -34px rgba(26, 34, 30, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  color: #1A221E !important;
  backdrop-filter: blur(12px);
}

html[data-theme="light"] .search-panel::before {
  border-color: rgba(154, 115, 64, 0.16) !important;
}

html[data-theme="light"] .search-panel__top {
  color: rgba(26, 34, 30, 0.52) !important;
}

html[data-theme="light"] .search-panel__top strong {
  color: #8C6E3A !important;
  font-weight: 600;
}

html[data-theme="light"] .search-box > span {
  color: rgba(26, 34, 30, 0.48) !important;
}

html[data-theme="light"] .search-field {
  background: #ffffff !important;
  border-color: rgba(154, 115, 64, 0.34) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 1px 2px rgba(26, 34, 30, 0.04) !important;
}

html[data-theme="light"] .search-field:focus-within {
  border-color: rgba(154, 115, 64, 0.62) !important;
  background: #ffffff !important;
  box-shadow:
    0 0 0 1px rgba(154, 115, 64, 0.18),
    0 10px 28px -14px rgba(154, 115, 64, 0.35) !important;
}

html[data-theme="light"] .search-field input,
html[data-theme="light"] .search-field__ghost {
  color: #1A221E !important;
}

html[data-theme="light"] .search-field__ghost {
  color: rgba(26, 34, 30, 0.38) !important;
}

html[data-theme="light"] .search-field input::placeholder {
  color: rgba(26, 34, 30, 0.4) !important;
}

html[data-theme="light"] .search-field__icon {
  color: #9A7340 !important;
  opacity: 1;
}

html[data-theme="light"] .search-field__icon:hover {
  color: #7A5A2E !important;
}

html[data-theme="light"] .chip {
  border: 1px solid rgba(154, 115, 64, 0.3) !important;
  background: #ffffff !important;
  color: #2E3832 !important;
  box-shadow: 0 1px 2px rgba(26, 34, 30, 0.05);
  font-weight: 500;
}

html[data-theme="light"] .chip:hover {
  border-color: rgba(154, 115, 64, 0.55) !important;
  background: rgba(154, 115, 64, 0.08) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .chip.is-active {
  background: linear-gradient(180deg, #d4b07a, #b08a45) !important;
  border-color: #a97938 !important;
  color: #1A1208 !important;
  box-shadow:
    0 8px 18px -10px rgba(154, 115, 64, 0.55),
    inset 0 1px 0 rgba(255, 245, 220, 0.45);
  transform: translateY(-1px);
}

html[data-theme="light"] .availability-strip div {
  border-color: rgba(154, 115, 64, 0.22) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  padding: 0.9rem 0.85rem !important;
}

html[data-theme="light"] .availability-strip small {
  color: #6B5340 !important;
  letter-spacing: 0.14em;
}

html[data-theme="light"] .availability-strip strong {
  color: #1A221E !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

html[data-theme="light"] .offer-card h3,
html[data-theme="light"] .offer-card p,
html[data-theme="light"] .fact dd,
html[data-theme="light"] .fact dt {
  color: #1A221E !important;
}

/* Cinematic band sits on imagery — keep light text */
html[data-theme="light"] .cinematic h2,
html[data-theme="light"] .cinematic p,
html[data-theme="light"] .cinematic__stats strong,
html[data-theme="light"] .cinematic__stats span {
  color: #f6f1e7 !important;
}

html[data-theme="light"] .cinematic p,
html[data-theme="light"] .cinematic__stats span {
  color: rgba(246, 241, 231, 0.78) !important;
}

html[data-theme="light"] .cinematic__stats strong {
  color: #e0c083 !important;
}

/* Hero copy on media */
html[data-theme="light"] .hero__copy,
html[data-theme="light"] .hero__copy h1,
html[data-theme="light"] .hero__copy p,
html[data-theme="light"] .hero .eyebrow,
html[data-theme="light"] .hero__trust-eyebrow,
html[data-theme="light"] .hero__trust-stat,
html[data-theme="light"] .hero__trust-value,
html[data-theme="light"] .hero__trust-label,
html[data-theme="light"] .hero__lead {
  color: #f6f1e7 !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

html[data-theme="light"] .hero__trust-eyebrow,
html[data-theme="light"] .hero__trust-sep {
  color: #e0c083 !important;
}

html[data-theme="light"] .hero__trust-label {
  color: rgba(224, 192, 131, 0.92) !important;
  text-shadow: none;
}

html[data-theme="light"] .hero__actions .btn {
  color: #f6f1e7 !important;
  border-color: rgba(224, 192, 131, 0.42);
}

html[data-theme="light"] .hero__actions .btn--gold {
  color: #07100b !important;
  border-color: #d9bb7d;
}

html[data-theme="light"] .hero__actions .btn--ghost {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(246, 241, 231, 0.55) !important;
  color: #f6f1e7 !important;
  backdrop-filter: blur(12px);
}

html[data-theme="light"] .hero__actions .btn--plain {
  color: #e0c083 !important;
  border-color: transparent !important;
}

/* Keep header readable over cinematic hero (before scroll) */
html[data-theme="light"] body:not(.page-inner) .site-header:not(.is-scrolled):not(.is-open) .main-nav {
  color: rgba(246, 241, 231, 0.82);
}

html[data-theme="light"] body:not(.page-inner) .site-header:not(.is-scrolled):not(.is-open) .main-nav a:hover,
html[data-theme="light"] body:not(.page-inner) .site-header:not(.is-scrolled):not(.is-open) .main-nav a.is-active {
  color: #f8ecd8;
}

/* ---- Hunt advisor widget (Continue Matching) ---- */
html[data-theme="light"] .ha-root {
  --ha-ink: #1A221E;
  --ha-ink-dim: rgba(26, 34, 30, 0.78);
  --ha-mute: rgba(26, 34, 30, 0.5);
  --ha-gold: #9A7340;
  --ha-gold-2: #8C6E3A;
  --ha-gold-deep: #8C6E3A;
  --ha-line: rgba(154, 115, 64, 0.32);
  --ha-line-soft: rgba(154, 115, 64, 0.18);
  --ha-surface: #F7F3EB;
  --ha-surface-2: #EFE9DE;
  --ha-panel:
    radial-gradient(120% 90% at 0% 0%, rgba(200, 154, 88, 0.12), transparent 42%),
    linear-gradient(165deg, #FBF9F5 0%, #F3EFE6 48%, #EFE9DE 100%);
}

html[data-theme="light"] .ha-launcher {
  color: #8C6E3A;
  border-color: rgba(154, 115, 64, 0.4);
  background: #F7F3EB;
  box-shadow: 0 12px 28px rgba(26, 34, 30, 0.12);
}

html[data-theme="light"] .ha-teaser,
html[data-theme="light"] .ha-panel {
  color: #1A221E !important;
  border-color: rgba(154, 115, 64, 0.28);
  box-shadow: 0 24px 60px rgba(26, 34, 30, 0.14);
}

html[data-theme="light"] .ha-teaser__eyebrow,
html[data-theme="light"] .ha-panel__eyebrow,
html[data-theme="light"] .ha-msg__label,
html[data-theme="light"] .ha-result__meta,
html[data-theme="light"] .ha-result__match,
html[data-theme="light"] .ha-restart {
  color: #8C6E3A !important;
}

html[data-theme="light"] .ha-teaser__text,
html[data-theme="light"] .ha-panel__title,
html[data-theme="light"] .ha-result__title {
  color: #1A221E !important;
}

html[data-theme="light"] .ha-teaser__cta,
html[data-theme="light"] .ha-btn--ghost {
  color: #8C6E3A !important;
}

html[data-theme="light"] .ha-chip {
  border-color: rgba(154, 115, 64, 0.28);
  color: #1A221E;
  background: rgba(255, 255, 255, 0.55);
}

html[data-theme="light"] .ha-chip:hover,
html[data-theme="light"] .ha-chip:focus-visible {
  color: #8C6E3A;
  border-color: rgba(154, 115, 64, 0.5);
}

html[data-theme="light"] .ha-msg__bubble {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(154, 115, 64, 0.18);
  color: rgba(26, 34, 30, 0.82);
}

html[data-theme="light"] .ha-result {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(154, 115, 64, 0.22);
}

html[data-theme="light"] .ha-panel__close,
html[data-theme="light"] .ha-teaser__close {
  color: rgba(26, 34, 30, 0.45);
  border-color: rgba(154, 115, 64, 0.22);
}

html[data-theme="light"] .ha-panel__close:hover,
html[data-theme="light"] .ha-teaser__close:hover {
  color: #8C6E3A;
}

/* ---- Availability modal ---- */
html[data-theme="light"] .av-modal__backdrop {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(154, 115, 64, 0.12), transparent 50%),
    rgba(243, 239, 230, 0.78) !important;
}

html[data-theme="light"] .av-modal__panel {
  border-color: rgba(154, 115, 64, 0.32) !important;
  background: linear-gradient(165deg, #FBF9F5, #F3EFE6) !important;
  box-shadow:
    0 40px 80px -40px rgba(26, 34, 30, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #1A221E !important;
}

html[data-theme="light"] .av-modal__close {
  color: #1A221E !important;
  border-color: rgba(154, 115, 64, 0.28);
  background: rgba(255, 255, 255, 0.65) !important;
}

html[data-theme="light"] .av-modal__panel,
html[data-theme="light"] .av-modal__panel h2,
html[data-theme="light"] .av-modal__panel h3,
html[data-theme="light"] .av-modal__panel p,
html[data-theme="light"] .av-modal__panel li,
html[data-theme="light"] .av-modal__panel span,
html[data-theme="light"] .av-modal__panel button {
  color: #1A221E;
}

html[data-theme="light"] .av-modal__panel [class*="eyebrow"],
html[data-theme="light"] .av-modal__panel .av-label {
  color: #8C6E3A !important;
}

/* Availability calendar — timeline, seasons, CTAs */
html[data-theme="light"] .av-modal__kicker,
html[data-theme="light"] .av-section__head span {
  color: #8C6E3A !important;
}

html[data-theme="light"] .av-modal__title,
html[data-theme="light"] .av-section__head h3 {
  color: #1A221E !important;
}

html[data-theme="light"] .av-modal__meta {
  color: rgba(26, 34, 30, 0.62) !important;
}

html[data-theme="light"] .av-year__rail {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent),
    #EFE9DE !important;
  border-color: rgba(154, 115, 64, 0.28) !important;
}

html[data-theme="light"] .av-year__month {
  color: rgba(26, 34, 30, 0.55) !important;
  border-left-color: rgba(154, 115, 64, 0.14) !important;
}

html[data-theme="light"] .av-year__legend-item {
  color: rgba(26, 34, 30, 0.72) !important;
}

html[data-theme="light"] .av-period {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.24) !important;
}

html[data-theme="light"] .av-period__icon {
  background: rgba(154, 115, 64, 0.1) !important;
  border-color: rgba(154, 115, 64, 0.28) !important;
}

html[data-theme="light"] .av-icon {
  color: #8C6E3A !important;
}

html[data-theme="light"] .av-period__title {
  color: #1A221E !important;
}

html[data-theme="light"] .av-period__dates {
  color: #5C4A2E !important;
}

html[data-theme="light"] .av-period__meta,
html[data-theme="light"] .av-period__notes {
  color: rgba(26, 34, 30, 0.68) !important;
}

html[data-theme="light"] .av-departure {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.24) !important;
}

html[data-theme="light"] .av-departure__label {
  color: #1A221E !important;
}

html[data-theme="light"] .av-departure__meta {
  color: rgba(26, 34, 30, 0.62) !important;
}

html[data-theme="light"] .av-empty {
  border-color: rgba(154, 115, 64, 0.28) !important;
  color: rgba(26, 34, 30, 0.68) !important;
  background: rgba(255, 255, 255, 0.45);
}

html[data-theme="light"] .av-departure__cta,
html[data-theme="light"] .av-empty-cta .av-departure__cta,
html[data-theme="light"] a.av-departure__cta {
  background: linear-gradient(180deg, #d3ad6f, #a97938) !important;
  border-color: #c9a05a !important;
  color: #1A1208 !important;
}

html[data-theme="light"] .av-departure__cta:hover {
  color: #1A1208 !important;
  filter: brightness(1.04);
}

html[data-theme="light"] .av-modal__status {
  color: rgba(26, 34, 30, 0.7) !important;
}

/* Category tabs — Find hunts by category */
html[data-theme="light"] .category-tab {
  border-color: rgba(154, 115, 64, 0.32) !important;
  background: rgba(255, 255, 255, 0.65) !important;
  color: #3D4741 !important;
}

html[data-theme="light"] .category-tab:hover {
  border-color: rgba(154, 115, 64, 0.5) !important;
  background: rgba(154, 115, 64, 0.1) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .category-tab.is-active {
  border-color: #9A7340 !important;
  background: rgba(200, 154, 88, 0.22) !important;
  color: #3D2E14 !important;
}

/* Species filter cards — dark fill is ::before, not the card itself */
html[data-theme="light"] .species-card {
  color: #1A221E !important;
  border-color: rgba(154, 115, 64, 0.28) !important;
  background:
    linear-gradient(
      135deg,
      rgba(255, 236, 195, 0.45) 0%,
      rgba(214, 172, 102, 0.55) 18%,
      rgba(184, 139, 74, 0.35) 50%,
      rgba(222, 186, 118, 0.5) 82%,
      rgba(255, 228, 178, 0.3) 100%
    ) !important;
  box-shadow: 0 12px 28px rgba(26, 34, 30, 0.06);
}

html[data-theme="light"] .species-card::before {
  background: linear-gradient(180deg, #FBF9F5 0%, #F3EFE6 100%) !important;
}

html[data-theme="light"] .species-card.is-active {
  border-color: #9A7340 !important;
  box-shadow:
    0 0 0 1px rgba(154, 115, 64, 0.28),
    0 12px 32px rgba(154, 115, 64, 0.14) !important;
}

html[data-theme="light"] .species-card.is-active::before {
  background: linear-gradient(180deg, #F7F3EB 0%, #EFE9DE 100%) !important;
}

html[data-theme="light"] .species-card__name {
  color: #1A221E !important;
}

html[data-theme="light"] .species-card__icon {
  filter: brightness(0.55) sepia(0.45) saturate(1.2) !important;
  opacity: 0.95;
}

html[data-theme="light"] .species-card:hover .species-card__icon,
html[data-theme="light"] .species-card.is-active .species-card__icon {
  filter: brightness(0.5) sepia(0.55) saturate(1.35) drop-shadow(0 0 10px rgba(154, 115, 64, 0.25)) !important;
}

html[data-theme="light"] .species-btn {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.4) !important;
  color: #1A221E !important;
  box-shadow: 0 8px 20px rgba(26, 34, 30, 0.06);
}

html[data-theme="light"] .species-btn:hover {
  border-color: #9A7340 !important;
  background: #fff !important;
  color: #1A221E !important;
}

html[data-theme="light"] .species-side {
  color: #8C6E3A !important;
  opacity: 1;
}

html[data-theme="light"] .species-side .divider {
  color: #B08D4F !important;
}

/* Hunt dossier aside / detail surfaces on inner pages */
html[data-theme="light"] .dossier__aside,
html[data-theme="light"] .dossier__aside--context {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.28) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .dossier__aside h2,
html[data-theme="light"] .dossier__aside h3,
html[data-theme="light"] .dossier__aside p,
html[data-theme="light"] .dossier__price,
html[data-theme="light"] .spec-list dd,
html[data-theme="light"] .spec-list dt {
  color: #1A221E !important;
}

html[data-theme="light"] .spec-list dt,
html[data-theme="light"] .dossier__aside .section-eyebrow {
  color: #8C6E3A !important;
}

/* Detail hero stays on imagery — light text */
html[data-theme="light"] .detail-hero__title,
html[data-theme="light"] .detail-hero__summary,
html[data-theme="light"] .detail-hero__facts dd,
html[data-theme="light"] .detail-hero__assurance li {
  color: #f6f1e7 !important;
}

html[data-theme="light"] .detail-hero__facts dt,
html[data-theme="light"] .detail-hero__meta {
  color: rgba(246, 241, 231, 0.7) !important;
}

/* Territory / species / stay rows common dark panels
   NOTE: .stay-category is a PHOTO card — do not force cream color here. */
html[data-theme="light"] .territory-panel,
html[data-theme="light"] .species-row__body,
html[data-theme="light"] .estate-editorial,
html[data-theme="light"] .charter-list,
html[data-theme="light"] .atlas-table,
html[data-theme="light"] .no-results {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.22);
  color: #1A221E !important;
}

html[data-theme="light"] .no-results p,
html[data-theme="light"] .territory-panel p,
html[data-theme="light"] .species-row__body p,
html[data-theme="light"] .species-row p,
html[data-theme="light"] .estate-editorial p,
html[data-theme="light"] .charter-list p,
html[data-theme="light"] .charter-list h3 {
  color: rgba(26, 34, 30, 0.78) !important;
}

html[data-theme="light"] .charter-list h3 {
  color: #1A221E !important;
}

/* ============================================================
   Offer cards — facts, prices, capacity chips (homepage)
   Dark theme uses ivory / pale-gold on dark cards; light must flip.
   ============================================================ */
html[data-theme="light"] .offer-card {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.24) !important;
  box-shadow: 0 18px 44px rgba(26, 34, 30, 0.08) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .offer-card h3,
html[data-theme="light"] .offer-card__meta {
  color: #1A221E !important;
}

html[data-theme="light"] .offer-card__meta {
  color: #8C6E3A !important;
}

html[data-theme="light"] .facts dt,
html[data-theme="light"] .availability-strip small {
  color: #6B5A3E !important;
}

html[data-theme="light"] .facts dd,
html[data-theme="light"] .facts dd strong,
html[data-theme="light"] .fact--min dd,
html[data-theme="light"] .fact--min dd strong,
html[data-theme="light"] .fact--date dd,
html[data-theme="light"] .fact--duration dd,
html[data-theme="light"] .fact--availability dd,
html[data-theme="light"] .fact--availability dd strong,
html[data-theme="light"] .availability-strip strong {
  color: #1A221E !important;
}

html[data-theme="light"] .fact--date dd,
html[data-theme="light"] .fact--duration dd {
  color: #5C4A2E !important;
  font-weight: 600;
}

/* Private booking / Places left / Availability chips */
html[data-theme="light"] .fact--spots,
html[data-theme="light"] .fact--capacity,
html[data-theme="light"] .fact--places,
html[data-theme="light"] .section--group-dates .offer-card--join-group .fact--places {
  background: rgba(154, 115, 64, 0.1) !important;
  border-color: rgba(154, 115, 64, 0.32) !important;
}

html[data-theme="light"] .fact--spots dt,
html[data-theme="light"] .fact--capacity dt,
html[data-theme="light"] .fact--places dt {
  color: #6B5A3E !important;
}

html[data-theme="light"] .fact--spots dd,
html[data-theme="light"] .fact--spots dd strong,
html[data-theme="light"] .fact--capacity dd,
html[data-theme="light"] .fact--capacity dd strong,
html[data-theme="light"] .fact--places dd,
html[data-theme="light"] .fact--places dd strong,
html[data-theme="light"] .section--group-dates .offer-card--join-group .fact--places dd strong {
  color: #3D2E14 !important;
}

html[data-theme="light"] .offer-card__bottom {
  border-top-color: rgba(154, 115, 64, 0.18) !important;
}

html[data-theme="light"] .offer-card__price,
html[data-theme="light"] .offer-card__price-note {
  color: #5C655F !important;
}

html[data-theme="light"] .offer-card__price strong,
html[data-theme="light"] .offer-card__price--muted strong {
  color: #1A221E !important;
}

html[data-theme="light"] .offer-card__cta {
  color: #8C6E3A !important;
  border-color: rgba(154, 115, 64, 0.4);
}

html[data-theme="light"] .offer-card__active-dates {
  border-color: rgba(154, 115, 64, 0.2);
  background: rgba(255, 255, 255, 0.45);
}

html[data-theme="light"] .offer-card__active-dates-label,
html[data-theme="light"] .offer-card__active-date-label,
html[data-theme="light"] .offer-card__active-date-places {
  color: #1A221E !important;
}

html[data-theme="light"] .facts div {
  border-top-color: rgba(154, 115, 64, 0.16) !important;
}

html[data-theme="light"] .track-arrow {
  border-color: rgba(154, 115, 64, 0.4) !important;
  background: #fff !important;
  color: #5C4A2E !important;
  box-shadow: 0 6px 18px rgba(26, 34, 30, 0.08);
}

html[data-theme="light"] .track-arrow:hover {
  border-color: #8C6E3A !important;
  background: rgba(154, 115, 64, 0.12) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .track-arrow:disabled {
  opacity: 0.35;
}

html[data-theme="light"] .offer-toolbar {
  color: #5C655F !important;
}

html[data-theme="light"] .offer-toolbar a {
  color: #8C6E3A !important;
}

/* ============================================================
   Homepage browse-filter (Available hunting dates sidebar)
   Has its own dark rail + search — override fully.
   ============================================================ */
html[data-theme="light"] .browse-filter .filter-rail {
  background: linear-gradient(168deg, #FBF9F5, #F3EFE6) !important;
  border-color: rgba(154, 115, 64, 0.28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 20px 48px -36px rgba(26, 34, 30, 0.12) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .browse-filter .section-eyebrow,
html[data-theme="light"] .browse-filter .filter-clear {
  color: #8C6E3A !important;
}

html[data-theme="light"] .browse-filter .filter-opt {
  color: rgba(26, 34, 30, 0.68) !important;
}

html[data-theme="light"] .browse-filter .filter-opt:hover,
html[data-theme="light"] .browse-filter .filter-opt.is-active {
  color: #1A221E !important;
}

html[data-theme="light"] .browse-filter .filter-opt__count {
  color: #7A837C !important;
}

html[data-theme="light"] .browse-filter .filter-opt__box {
  border-color: rgba(154, 115, 64, 0.4) !important;
}

html[data-theme="light"] .browse-filter .filter-group,
html[data-theme="light"] .browse-filter .filter-group__head {
  border-color: rgba(154, 115, 64, 0.16) !important;
}

html[data-theme="light"] .browse-filter__search-label {
  color: #6B5A3E !important;
}

html[data-theme="light"] .browse-filter__search {
  background: #fff !important;
  border-color: rgba(154, 115, 64, 0.32) !important;
  box-shadow: none !important;
}

html[data-theme="light"] .browse-filter__search:focus-within {
  border-color: rgba(154, 115, 64, 0.55) !important;
  box-shadow: 0 0 0 1px rgba(154, 115, 64, 0.12) !important;
}

html[data-theme="light"] .browse-filter__icon {
  color: #8C6E3A !important;
}

html[data-theme="light"] .browse-filter__search input {
  color: #1A221E !important;
  background: transparent !important;
}

html[data-theme="light"] .browse-filter__search input::placeholder {
  color: rgba(26, 34, 30, 0.42) !important;
}

html[data-theme="light"] .browse-filter .filter-group__catalogue {
  color: #8C6E3A !important;
  border-color: rgba(154, 115, 64, 0.28);
}

html[data-theme="light"] .browse-filter .filter-group__catalogue:hover {
  color: #1A221E !important;
  border-color: rgba(154, 115, 64, 0.5);
}

html[data-theme="light"] .browse-filter .filter-group__empty {
  color: rgba(26, 34, 30, 0.55) !important;
}

/* Hero / catalogue search field on homepage — see search-panel block above */

/* ---- Ladies / group / map ---- */
html[data-theme="light"] body.page-ladies,
html[data-theme="light"] .ladies-page {
  background: #FBF9F5 !important;
  color: #1A221E !important;
}

html[data-theme="light"] body.page-group {
  background:
    radial-gradient(1200px 520px at 12% -10%, rgba(154, 115, 64, 0.08), transparent 55%),
    #FBF9F5 !important;
  color: #1A221E !important;
}

html[data-theme="light"] .page-group .btn {
  border-color: rgba(154, 115, 64, 0.32);
  color: #1A221E;
}

html[data-theme="light"] .page-group .btn--gold {
  color: #07100b;
}

html[data-theme="light"] .page-group .btn--ghost {
  background: rgba(255, 255, 255, 0.55);
}

html[data-theme="light"] .navbar {
  background: linear-gradient(180deg, rgba(7, 12, 9, 0.78) 0%, rgba(7, 12, 9, 0.28) 72%, transparent 100%);
}

html[data-theme="light"] .nav-menu a {
  color: rgba(246, 243, 236, 0.82);
}

html[data-theme="light"] .nav-menu a:hover,
html[data-theme="light"] .nav-menu a.is-active {
  color: #e0c083;
}

html[data-theme="light"] .navbar .theme-toggle {
  border-color: rgba(224, 192, 131, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 236, 216, 0.92);
}

html[data-theme="light"] .access-strip,
html[data-theme="light"] .legend,
html[data-theme="light"] .roster {
  background: rgba(251, 249, 245, 0.92) !important;
  border-color: rgba(154, 115, 64, 0.28);
  color: #1A221E !important;
  backdrop-filter: blur(14px);
}

html[data-theme="light"] .roster__head h2,
html[data-theme="light"] .roster-item,
html[data-theme="light"] .roster-item__name,
html[data-theme="light"] .dossier__title,
html[data-theme="light"] .dossier-hunt__title,
html[data-theme="light"] .meta strong,
html[data-theme="light"] .priv li,
html[data-theme="light"] .atlas-tip strong {
  color: #1A221E !important;
}

html[data-theme="light"] .roster-item__meta,
html[data-theme="light"] .dossier__sub,
html[data-theme="light"] .dossier__empty,
html[data-theme="light"] .dossier__note,
html[data-theme="light"] .roster__empty {
  color: rgba(26, 34, 30, 0.58) !important;
}

html[data-theme="light"] .atlas-chip {
  background: rgba(255, 255, 255, 0.55);
  color: rgba(26, 34, 30, 0.72);
}

html[data-theme="light"] .atlas-chip.is-on {
  color: #1a1208;
}

html[data-theme="light"] .dossier,
html[data-theme="light"] .atlas-tip,
html[data-theme="light"] .back-btn {
  background: rgba(251, 249, 245, 0.96) !important;
  color: #1A221E;
  border-color: rgba(154, 115, 64, 0.28);
}

html[data-theme="light"] .dossier-hunt {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.7), rgba(243, 239, 230, 0.9));
}

html[data-theme="light"] .mapboxgl-ctrl-attrib {
  background: rgba(251, 249, 245, 0.7) !important;
}

html[data-theme="light"] .mapboxgl-ctrl-attrib a {
  color: rgba(26, 34, 30, 0.55) !important;
}

/* ---- Forms ---- */
html[data-theme="light"] .field input,
html[data-theme="light"] .field textarea,
html[data-theme="light"] .field select {
  color: #1A221E !important;
  border-bottom-color: rgba(154, 115, 64, 0.28);
}

html[data-theme="light"] .field input:focus,
html[data-theme="light"] .field textarea:focus,
html[data-theme="light"] .field select:focus {
  border-bottom-color: #9A7340;
}

html[data-theme="light"] .field select option {
  background: #F7F3EB;
  color: #1A221E;
}

html[data-theme="light"] .form-success {
  border-color: rgba(154, 115, 64, 0.4);
  background: #F7F3EB;
  color: #1A221E;
}

html[data-theme="light"] .form-success__title,
html[data-theme="light"] .form-success__text,
html[data-theme="light"] .correspondence-head__title,
html[data-theme="light"] .correspondence-head__sub {
  color: #1A221E !important;
}

html[data-theme="light"] .correspondence-head__sub {
  color: rgba(26, 34, 30, 0.68) !important;
}

/* ============================================================
   PHOTO OVERLAYS — force LIGHT text (never inherit cream charcoal)
   ============================================================ */
html[data-theme="light"] .destination-card,
html[data-theme="light"] .destination-card:link,
html[data-theme="light"] .destination-card:visited {
  color: #f6f1e7 !important;
}

html[data-theme="light"] .destination-card h3,
html[data-theme="light"] .destination-card__title {
  color: #f6f1e7 !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

html[data-theme="light"] .destination-card span,
html[data-theme="light"] .destination-card__meta {
  color: #e0c083 !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

html[data-theme="light"] .destination-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)) !important;
}

html[data-theme="light"] .map-teaser,
html[data-theme="light"] .map-teaser h2,
html[data-theme="light"] .map-teaser p,
html[data-theme="light"] .map-teaser .eyebrow {
  color: #f6f1e7 !important;
}

html[data-theme="light"] .map-teaser p {
  color: rgba(246, 241, 231, 0.82) !important;
}

html[data-theme="light"] .stay-category,
html[data-theme="light"] .stay-category:link,
html[data-theme="light"] .stay-category:visited,
html[data-theme="light"] .stay-category h3 {
  color: #f6f1e7 !important;
  background: transparent !important;
}

html[data-theme="light"] .stay-category p {
  color: rgba(255, 255, 255, 0.78) !important;
}

html[data-theme="light"] .stay-category__count {
  color: #e0c083 !important;
}

html[data-theme="light"] .territory-panel__head,
html[data-theme="light"] .territory-panel__head h2,
html[data-theme="light"] .territory-panel__head span {
  color: #f6f1e7 !important;
}

html[data-theme="light"] .territory-panel__head span {
  color: #e0c083 !important;
}

html[data-theme="light"] .inside-grid__cap {
  color: #f6f1e7 !important;
}

/* ============================================================
   HUNT DOSSIER — Departure / included / extras / guest voices
   ============================================================ */
html[data-theme="light"] .dossier-section .section-eyebrow,
html[data-theme="light"] .review-carousel__note,
html[data-theme="light"] .dossier-aside__deposit {
  color: #8C6E3A !important;
}

html[data-theme="light"] .dossier-section--trip {
  background: linear-gradient(168deg, #FBF9F5, #F3EFE6) !important;
  border-color: rgba(154, 115, 64, 0.28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 20px 50px -40px rgba(26, 34, 30, 0.12) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .trip-block,
html[data-theme="light"] .trip-block--included,
html[data-theme="light"] .trip-block--extras {
  background: rgba(255, 255, 255, 0.65) !important;
  border-color: rgba(154, 115, 64, 0.24) !important;
}

html[data-theme="light"] .trip-block__title,
html[data-theme="light"] .trip-journey__step strong,
html[data-theme="light"] .dossier-host__name {
  color: #1A221E !important;
}

html[data-theme="light"] .trip-block--included .listing-checklist li,
html[data-theme="light"] .trip-block--extras .listing-checklist li,
html[data-theme="light"] .listing-checklist li,
html[data-theme="light"] .listing-prose,
html[data-theme="light"] .trip-journey__lead,
html[data-theme="light"] .trip-journey__step p {
  color: rgba(26, 34, 30, 0.78) !important;
}

html[data-theme="light"] .dossier-section--host .host-panel,
html[data-theme="light"] .host-panel {
  background: #F7F3EB !important;
  border-left-color: rgba(154, 115, 64, 0.45) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .highlight-card:not(.highlight-card--why) {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.22) !important;
}

html[data-theme="light"] .highlight-card:not(.highlight-card--why) p {
  color: rgba(26, 34, 30, 0.82) !important;
}

html[data-theme="light"] .review-card,
html[data-theme="light"] .review-card--featured {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.24) !important;
  box-shadow: 0 18px 44px -32px rgba(26, 34, 30, 0.15) !important;
}

html[data-theme="light"] .review-card p {
  color: #1A221E !important;
}

html[data-theme="light"] .review-card footer {
  border-top-color: rgba(154, 115, 64, 0.16) !important;
  color: #5C655F !important;
}

html[data-theme="light"] .review-card footer strong {
  color: #8C6E3A !important;
}

html[data-theme="light"] .review-card__mark {
  color: rgba(154, 115, 64, 0.55) !important;
}

html[data-theme="light"] .review-carousel__btn {
  background: #fff !important;
  border-color: rgba(154, 115, 64, 0.35) !important;
  color: #5C4A2E !important;
}

html[data-theme="light"] .review-carousel__btn:hover {
  border-color: #9A7340 !important;
  color: #1A221E !important;
}

html[data-theme="light"] .dossier-booking {
  background: linear-gradient(180deg, #FBF9F5, #F3EFE6) !important;
  border-color: rgba(154, 115, 64, 0.28) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .dossier-booking__facts dd,
html[data-theme="light"] .dossier-list,
html[data-theme="light"] .dossier-list a,
html[data-theme="light"] .dossier-list li {
  color: #1A221E !important;
}

html[data-theme="light"] .species-card--dossier,
html[data-theme="light"] .species-card--dossier::before {
  background: #F7F3EB !important;
}

html[data-theme="light"] .species-card__title,
html[data-theme="light"] .species-card__profile {
  color: #1A221E !important;
}

html[data-theme="light"] .species-card__profile {
  color: rgba(26, 34, 30, 0.68) !important;
}

/* ============================================================
   INNER PAGES — destinations / stays / heritage / concierge / providers
   ============================================================ */
html[data-theme="light"] .territory-rail button {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.22) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .territory-rail button.is-active {
  background: #EFE9DE !important;
  border-color: rgba(154, 115, 64, 0.45) !important;
}

html[data-theme="light"] .territory-rail__name {
  color: #1A221E !important;
}

html[data-theme="light"] .territory-rail__sub {
  color: rgba(26, 34, 30, 0.55) !important;
}

html[data-theme="light"] .meta-grid > div {
  background: #F7F3EB !important;
}

html[data-theme="light"] .meta-grid dt {
  color: #6B5340 !important;
}

html[data-theme="light"] .meta-grid dd,
html[data-theme="light"] .meta-grid .access-tier {
  color: #1A221E !important;
}

html[data-theme="light"] .meta-grid .access-tier {
  color: #8C6E3A !important;
}

html[data-theme="light"] .access-matrix__cell {
  background: #F3EFE6 !important;
  color: #1A221E !important;
}

html[data-theme="light"] .access-matrix__cell.is-lit {
  background: #EFE9DE !important;
  box-shadow: inset 0 -3px 0 #9A7340 !important;
}

html[data-theme="light"] .access-matrix__label {
  color: #6B5340 !important;
}

html[data-theme="light"] .access-matrix__value {
  color: #1A221E !important;
}

html[data-theme="light"] .access-matrix__tier {
  color: #8C6E3A !important;
}

html[data-theme="light"] .dossier-stack,
html[data-theme="light"] .dossier-item,
html[data-theme="light"] .dossier-item__head {
  background: #F7F3EB !important;
  color: #1A221E !important;
  border-color: rgba(154, 115, 64, 0.2);
}

html[data-theme="light"] .dossier-item__head:hover {
  color: #7A5A2E !important;
}

html[data-theme="light"] .dossier-item__head h3 {
  color: #1A221E !important;
}

html[data-theme="light"] .dossier-item__num,
html[data-theme="light"] .dossier-item__icon {
  color: #8C6E3A !important;
  border-color: rgba(154, 115, 64, 0.4);
}

html[data-theme="light"] .dossier-item__inner,
html[data-theme="light"] .dossier-item__inner p {
  color: rgba(26, 34, 30, 0.78) !important;
}

html[data-theme="light"] .dossier-item__inner strong {
  color: #8C6E3A !important;
}

html[data-theme="light"] .territory-panel__lead {
  color: rgba(26, 34, 30, 0.72) !important;
}

html[data-theme="light"] .territory-panel__stat {
  color: #6B5340 !important;
}

html[data-theme="light"] .territory-panel__stat b {
  color: #8C6E3A !important;
}

html[data-theme="light"] .estate-editorial h3,
html[data-theme="light"] .estate-editorial__row h3 {
  color: #1A221E !important;
}

html[data-theme="light"] .trust-row > div {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.22);
  color: #1A221E !important;
}

html[data-theme="light"] .trust-row__num {
  color: #8C6E3A !important;
}

html[data-theme="light"] .trust-row__label {
  color: rgba(26, 34, 30, 0.62) !important;
}

html[data-theme="light"] .philosophy-band blockquote,
html[data-theme="light"] .philosophy-points p,
html[data-theme="light"] .signature-card,
html[data-theme="light"] .signature-card p {
  color: #1A221E !important;
}

html[data-theme="light"] .signature-card,
html[data-theme="light"] .philosophy-band,
html[data-theme="light"] .stay-matrix-wrap {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.22);
}

html[data-theme="light"] .philosophy-points p,
html[data-theme="light"] .signature-card p {
  color: rgba(26, 34, 30, 0.72) !important;
}

html[data-theme="light"] .stay-matrix tbody th,
html[data-theme="light"] .stay-matrix td {
  color: #1A221E !important;
}

html[data-theme="light"] .stay-matrix tr.is-highlight {
  background: rgba(154, 115, 64, 0.1) !important;
}

html[data-theme="light"] .concierge__office {
  background: linear-gradient(168deg, #FBF9F5, #F3EFE6) !important;
  border-color: rgba(154, 115, 64, 0.24);
  color: #1A221E !important;
}

html[data-theme="light"] .concierge__office-lead,
html[data-theme="light"] .concierge__protocol li,
html[data-theme="light"] .concierge__contact-note {
  color: rgba(26, 34, 30, 0.78) !important;
}

html[data-theme="light"] .concierge__contact-card {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.24);
}

html[data-theme="light"] .concierge__contact-line,
html[data-theme="light"] .concierge__contact-label {
  color: #1A221E !important;
}

html[data-theme="light"] .concierge__contact-label,
html[data-theme="light"] .concierge__protocol-num {
  color: #8C6E3A !important;
}

html[data-theme="light"] .provider-trust-strip__item,
html[data-theme="light"] .provider-steps,
html[data-theme="light"] .provider-listing-card,
html[data-theme="light"] .provider-benefits,
html[data-theme="light"] .provider-curation__panel {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.22);
  color: #1A221E !important;
}

html[data-theme="light"] .provider-trust-strip__item p,
html[data-theme="light"] .provider-steps p,
html[data-theme="light"] .provider-listing-card p,
html[data-theme="light"] .provider-benefits li,
html[data-theme="light"] .provider-benefits p {
  color: rgba(26, 34, 30, 0.75) !important;
}

html[data-theme="light"] .provider-benefits h3,
html[data-theme="light"] .provider-listing-card h3 {
  color: #1A221E !important;
}

/* Group departure public page — light mode contrast */
html[data-theme="light"] body.page-group {
  --grp-panel: #FFFCFA;
  --grp-muted: #5C655F;
  --grp-soft: #1A221E;
  --grp-gold: #8C6E3A;
  --grp-line: rgba(154, 115, 64, 0.22);
  --grp-line-strong: rgba(154, 115, 64, 0.38);
  color: #1A221E !important;
  background:
    radial-gradient(1200px 520px at 12% -10%, rgba(154, 115, 64, 0.08), transparent 55%),
    #FBF9F5 !important;
}

html[data-theme="light"] .grp-page {
  color: #1A221E !important;
}

html[data-theme="light"] .grp-eyebrow,
html[data-theme="light"] .grp-stat__label,
html[data-theme="light"] .grp-progress__meta,
html[data-theme="light"] .grp-details dt,
html[data-theme="light"] .grp-roadmap__phase,
html[data-theme="light"] .grp-field span {
  color: #8C6E3A !important;
}

html[data-theme="light"] .grp-panel {
  background: #FFFCFA !important;
  color: #1A221E !important;
  border-color: rgba(154, 115, 64, 0.22) !important;
  box-shadow: 0 18px 44px -30px rgba(26, 34, 30, 0.18);
}

html[data-theme="light"] .grp-panel__head h2,
html[data-theme="light"] .grp-stat__value,
html[data-theme="light"] .grp-timeline__body strong,
html[data-theme="light"] .grp-subblock__title,
html[data-theme="light"] .grp-roster__label,
html[data-theme="light"] .grp-roadmap__label,
html[data-theme="light"] .grp-modal__head h2 {
  color: #1A221E !important;
}

html[data-theme="light"] .grp-panel__lead,
html[data-theme="light"] .grp-stat__value--soft,
html[data-theme="light"] .grp-timeline__body p,
html[data-theme="light"] .grp-placeholder,
html[data-theme="light"] .grp-empty,
html[data-theme="light"] .grp-description,
html[data-theme="light"] .grp-checklist li,
html[data-theme="light"] .grp-contact__meta,
html[data-theme="light"] .grp-roadmap__note,
html[data-theme="light"] .grp-modal__lead,
html[data-theme="light"] .grp-join-form__note,
html[data-theme="light"] .grp-roster__privacy {
  color: #5C655F !important;
}

html[data-theme="light"] .grp-stat {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.2) !important;
}

html[data-theme="light"] .grp-progress__track {
  background: rgba(26, 34, 30, 0.08) !important;
}

html[data-theme="light"] .grp-timeline__marker {
  background: #F3EFE6 !important;
  border-color: rgba(154, 115, 64, 0.35) !important;
}

html[data-theme="light"] .grp-roster,
html[data-theme="light"] .grp-roster__item,
html[data-theme="light"] .grp-roadmap__item,
html[data-theme="light"] .grp-chips li {
  background: #F7F3EB !important;
  border-color: rgba(154, 115, 64, 0.2) !important;
  color: #1A221E !important;
}

html[data-theme="light"] .grp-roster__item:hover,
html[data-theme="light"] .grp-roadmap__item:hover {
  border-color: rgba(154, 115, 64, 0.4) !important;
  background: #FFFCFA !important;
}

html[data-theme="light"] .grp-roster__avatar,
html[data-theme="light"] .grp-roster__initial {
  background: rgba(154, 115, 64, 0.12) !important;
  border-color: rgba(154, 115, 64, 0.28) !important;
  color: #8C6E3A !important;
}

html[data-theme="light"] .grp-details dd,
html[data-theme="light"] .grp-contact__line,
html[data-theme="light"] .grp-contact__line a {
  color: #1A221E !important;
}

html[data-theme="light"] .grp-contact__line a {
  color: #8C6E3A !important;
  border-bottom-color: rgba(154, 115, 64, 0.35);
}

html[data-theme="light"] .grp-contact__line a:hover {
  color: #1A221E !important;
}

html[data-theme="light"] .grp-details__icon {
  color: #8C6E3A !important;
}

html[data-theme="light"] .grp-chips li {
  color: #5C3F1E !important;
}

html[data-theme="light"] .grp-status {
  border-color: rgba(154, 115, 64, 0.28);
  background: rgba(154, 115, 64, 0.1);
  color: #5C3F1E !important;
}

html[data-theme="light"] .grp-status--recruiting {
  background: rgba(124, 154, 106, 0.18);
  border-color: rgba(90, 122, 74, 0.35);
  color: #2E4A32 !important;
}

html[data-theme="light"] .grp-status--nearly_full {
  background: rgba(154, 115, 64, 0.16);
  border-color: rgba(154, 115, 64, 0.4);
  color: #5C3F1E !important;
}

html[data-theme="light"] .grp-status--full,
html[data-theme="light"] .grp-status--completed {
  background: rgba(26, 34, 30, 0.08);
  border-color: rgba(26, 34, 30, 0.18);
  color: #3A433E !important;
}

html[data-theme="light"] .grp-status--cancelled {
  background: rgba(157, 107, 98, 0.14);
  border-color: rgba(157, 107, 98, 0.35);
  color: #6B3A32 !important;
}

/* Hero stays on photo — keep light text for contrast over the image */
html[data-theme="light"] .grp-hero h1,
html[data-theme="light"] .grp-hero__dates,
html[data-theme="light"] .grp-hero__host,
html[data-theme="light"] .grp-hero .grp-eyebrow {
  color: #f6f1e7 !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

html[data-theme="light"] .grp-hero__host {
  background: rgba(26, 34, 30, 0.72) !important;
  color: #f6f1e7 !important;
  border-color: rgba(255, 255, 255, 0.12);
}

/* Recruiting / status pills on the photo hero need light copy */
html[data-theme="light"] .grp-hero .grp-status {
  background: rgba(12, 20, 15, 0.72) !important;
  border-color: rgba(224, 192, 131, 0.45) !important;
  color: #f3e7cf !important;
  text-shadow: none;
}

html[data-theme="light"] .grp-hero .grp-status--recruiting {
  background: rgba(34, 72, 48, 0.88) !important;
  border-color: rgba(168, 210, 150, 0.55) !important;
  color: #e8f5df !important;
}

html[data-theme="light"] .grp-hero .grp-status--nearly_full {
  background: rgba(90, 62, 24, 0.88) !important;
  border-color: rgba(232, 204, 150, 0.55) !important;
  color: #f8ecd8 !important;
}

html[data-theme="light"] .grp-hero .grp-status--full,
html[data-theme="light"] .grp-hero .grp-status--completed {
  background: rgba(26, 34, 30, 0.78) !important;
  border-color: rgba(246, 241, 231, 0.28) !important;
  color: #f6f1e7 !important;
}

html[data-theme="light"] .grp-hero .grp-status--cancelled {
  background: rgba(90, 32, 28, 0.88) !important;
  border-color: rgba(248, 200, 190, 0.45) !important;
  color: #fde8e2 !important;
}

/* Group page: cream solid header from the start (hero photo is too light for white nav) */
html[data-theme="light"] body.page-group .site-header,
html[data-theme="light"] body.page-group .site-header:not(.is-scrolled):not(.is-open) {
  background: rgba(251, 249, 245, 0.96) !important;
  border-bottom: 1px solid rgba(154, 115, 64, 0.22) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

html[data-theme="light"] body.page-group .site-header .brand img {
  filter: brightness(0) saturate(100%) !important;
  opacity: 0.88;
}

html[data-theme="light"] body.page-group .site-header .main-nav {
  color: rgba(26, 34, 30, 0.78) !important;
}

html[data-theme="light"] body.page-group .site-header .main-nav a:hover,
html[data-theme="light"] body.page-group .site-header .main-nav a.is-active {
  color: #8C6E3A !important;
}

/* Keep gold hover/active underline like other inner pages */
html[data-theme="light"] body.page-group .site-header .main-nav a::after {
  background: #9A7340 !important;
}

html[data-theme="light"] body.page-group .site-header .main-nav a.is-active::after,
html[data-theme="light"] body.page-group .site-header .main-nav a:hover::after {
  transform: scaleX(1);
}

html[data-theme="light"] body.page-group .site-header .main-nav--auth {
  border-left: 1px solid rgba(154, 115, 64, 0.18) !important;
}

html[data-theme="light"] body.page-group .site-header .main-nav a.main-nav__auth-btn,
html[data-theme="light"] body.page-group .site-header .main-nav a.main-nav__provider-btn {
  border: 1px solid rgba(154, 115, 64, 0.42) !important;
  background: rgba(154, 115, 64, 0.08) !important;
  color: #7A5A2E !important;
}

html[data-theme="light"] body.page-group .site-header .main-nav a.main-nav__auth-btn::after,
html[data-theme="light"] body.page-group .site-header .main-nav a.main-nav__provider-btn::after,
html[data-theme="light"] body.page-group .site-header .main-nav a.main-nav__last-minute::after {
  display: none !important;
}

html[data-theme="light"] body.page-group .site-header .main-nav a.main-nav__auth-btn:hover,
html[data-theme="light"] body.page-group .site-header .main-nav a.main-nav__provider-btn:hover {
  color: #1A221E !important;
  background: rgba(154, 115, 64, 0.16) !important;
  border: 1px solid rgba(154, 115, 64, 0.62) !important;
}

html[data-theme="light"] body.page-group .site-header .nav-toggle,
html[data-theme="light"] body.page-group .site-header .theme-toggle {
  border-color: rgba(154, 115, 64, 0.38) !important;
  background: rgba(154, 115, 64, 0.08) !important;
  color: #7A5A2E !important;
}

html[data-theme="light"] .page-group .btn {
  border-color: rgba(154, 115, 64, 0.32);
  color: #1A221E;
}

html[data-theme="light"] .page-group .btn--gold {
  color: #07100b;
}

html[data-theme="light"] .page-group .btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: #1A221E;
  border-color: rgba(154, 115, 64, 0.28);
}

html[data-theme="light"] .page-group .grp-hero .btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #f6f1e7;
  border-color: rgba(246, 241, 231, 0.35);
}

html[data-theme="light"] .grp-modal__sheet,
html[data-theme="light"] .grp-field select {
  background: #FFFCFA !important;
  color: #1A221E !important;
  border-color: rgba(154, 115, 64, 0.28) !important;
}

html[data-theme="light"] .grp-field select option {
  background: #FFFCFA;
  color: #1A221E;
}

/* ---- Chrome ---- */
html[data-theme="light"] ::-webkit-scrollbar-track {
  background: #E8E1D4;
}

html[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: #B08D4F;
}

html[data-theme="light"] ::selection {
  background: rgba(154, 115, 64, 0.28);
  color: #1A221E;
}
