/* ==========================================================================
   Concierge Black — group tours & experiences
   Design system: near-black canvas, editorial serif display, champagne accent.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --bg:            #08080a;
  --bg-raised:     #0e0e12;
  --bg-panel:      rgba(255, 255, 255, 0.035);
  --bg-panel-hi:   rgba(255, 255, 255, 0.06);

  --text:          #f4f2ed;
  --text-muted:    #9b9aa4;
  --text-dim:      #6d6c77;

  --accent:        #c9a96c;
  --accent-hi:     #e0c692;
  --accent-dim:    rgba(201, 169, 108, 0.16);

  --line:          rgba(255, 255, 255, 0.09);
  --line-strong:   rgba(255, 255, 255, 0.17);

  --ok:            #4fd6a4;
  --warn:          #e8a34c;

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(72px, 9vw, 132px);
  --max: 1280px;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-card: 0 24px 60px -30px rgba(0, 0, 0, 0.9);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 96px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

::selection { background: var(--accent); color: #0b0b0d; }

/* fine grain overlay — stops the flat black looking like a void */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: 780px; }
.section { padding-block: var(--section); position: relative; }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }
.section-line { border-top: 1px solid var(--line); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 200;
  background: var(--text);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.skip-link:focus { left: 20px; }

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  text-wrap: balance;
}

.d1 { font-size: clamp(2.7rem, 7.2vw, 5.6rem); line-height: 0.98; letter-spacing: -0.03em; }
.d2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); letter-spacing: -0.022em; }
.d3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.018em; }
.d4 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); letter-spacing: -0.012em; line-height: 1.3; }

.italic { font-style: italic; font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 40; }

.eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  flex: none;
  transform: translateY(-4px);
  background: currentColor;
  opacity: 0.55;
}
.eyebrow-center { justify-content: center; }

.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.62;
  color: var(--text-muted);
  max-width: 62ch;
  text-wrap: pretty;
}
.muted { color: var(--text-muted); }
.dim { color: var(--text-dim); }
.center { text-align: center; }
.center .lede, .center .eyebrow { margin-inline: auto; }

.prose p { margin-bottom: 1.1em; color: var(--text-muted); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 600; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 550;
  letter-spacing: 0.005em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; flex: none; }

.btn-primary { background: var(--text); color: #0a0a0c; }
.btn-primary:hover { background: #fff; }

.btn-accent { background: var(--accent); color: #14100a; }
.btn-accent:hover { background: var(--accent-hi); }

.btn-ghost { border-color: var(--line-strong); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--text); background: rgba(255, 255, 255, 0.05); }

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 17px 36px; font-size: 0.95rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--text);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), gap 0.3s var(--ease);
}
.link-arrow::after { content: "→"; transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--accent); border-color: var(--accent); gap: 13px; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 16px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 150px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(6, 6, 8, 0.75), rgba(6, 6, 8, 0));
  transition: opacity 0.4s var(--ease);
}
.site-header.is-stuck::before { opacity: 0; }

.site-header.is-stuck {
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom-color: var(--line);
  padding-block: 11px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { width: 168px; transition: width 0.4s var(--ease); }
.site-header.is-stuck .brand img { width: 148px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 9px 15px;
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--text-muted);
  border-radius: var(--r-pill);
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav > .btn { display: none; }

.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: transparent;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span + span { margin-top: 5px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(94vh, 900px);
  display: flex;
  align-items: flex-end;
  padding-top: 150px;
  padding-bottom: clamp(48px, 6vw, 80px);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(0.25) contrast(1.05);
  animation: heroDrift 26s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6, 6, 8, 0.94) 0%, rgba(6, 6, 8, 0.72) 42%, rgba(6, 6, 8, 0.15) 78%),
    linear-gradient(to top, var(--bg) 2%, rgba(8, 8, 10, 0.5) 42%, rgba(8, 8, 10, 0.8) 100%);
}
.hero-glow {
  position: absolute;
  z-index: -1;
  width: 60vw;
  height: 60vw;
  max-width: 780px;
  max-height: 780px;
  right: -14vw;
  top: -18vw;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(201, 169, 108, 0.16) 0%, rgba(201, 169, 108, 0) 62%);
  filter: blur(30px);
}
.hero-inner { position: relative; max-width: 900px; }
.hero .d1 { margin-bottom: 26px; }
.hero .lede { max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-stats div { min-width: 120px; }
.hero-stats dt {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
}
.hero-stats dd {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- search bar ---------- */
.searchbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 6px;
  padding: 8px;
  margin-top: 38px;
  max-width: 860px;
  background: rgba(14, 14, 18, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.searchbar label {
  display: block;
  padding: 10px 16px 9px;
  border-radius: var(--r-md);
  transition: background 0.25s var(--ease);
}
.searchbar label:hover, .searchbar label:focus-within { background: var(--bg-panel-hi); }
.searchbar label > span {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 3px;
}
.searchbar select, .searchbar input {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 450;
  padding: 0 22px 0 0;
  cursor: pointer;
  appearance: none;
  text-overflow: ellipsis;
}
.searchbar select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%239b9aa4' stroke-width='1.6'%3E%3Cpath d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 11px;
}
.searchbar select:focus, .searchbar input:focus { outline: none; }
.searchbar option { background: #14141a; color: var(--text); }
.searchbar .btn { align-self: stretch; }

/* ---------- custom select ----------
   Native <select> popups are drawn by the OS and cannot be themed, so a bright
   system list drops out of a black page the moment you click one. The native
   element stays in the DOM (form value + no-JS fallback); this is layered on top. */
.sel { position: relative; }
.sel select { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }

.sel-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 450;
  color: var(--text);
}
.sel-btn .sel-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
}
.sel-btn svg {
  width: 11px;
  height: 11px;
  flex: none;
  color: var(--text-dim);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.sel[data-open="true"] .sel-btn svg { transform: rotate(180deg); color: var(--accent); }

.sel-list {
  position: absolute;
  z-index: 60;
  top: calc(100% + 10px);
  left: -14px;
  min-width: calc(100% + 28px);
  max-width: min(340px, 86vw);
  max-height: 322px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 7px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: rgba(16, 16, 21, 0.97);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 26px 54px -20px rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.sel[data-open="true"] .sel-list { opacity: 1; visibility: visible; transform: none; }
.sel[data-flip="true"] .sel-list { top: auto; bottom: calc(100% + 10px); transform: translateY(6px); }
.sel[data-flip="true"][data-open="true"] .sel-list { transform: none; }

.sel-list::-webkit-scrollbar { width: 8px; }
.sel-list::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 99px; }

.sel-group {
  padding: 13px 12px 7px;
  font-size: 0.63rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--accent);
}
.sel-group:first-child { padding-top: 6px; }

.sel-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 0.89rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.16s var(--ease), color 0.16s var(--ease);
}
.sel-opt::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.16s var(--ease);
}
.sel-opt:hover, .sel-opt.is-active { background: var(--bg-panel-hi); color: var(--text); }
.sel-opt[aria-selected="true"] { color: var(--text); font-weight: 500; }
.sel-opt[aria-selected="true"]::before { opacity: 1; }

/* form-field variant sits inside a bordered input rather than a bare label */
.field .sel-btn {
  padding: 14px 16px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 0.94rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field .sel-btn:hover { border-color: var(--line-strong); }
.field .sel[data-open="true"] .sel-btn { border-color: var(--accent); background: var(--bg-panel-hi); }
.field .sel-list { left: 0; min-width: 100%; max-width: 100%; }

/* filter-bar variant reads as a pill alongside the pill groups */
.filter-row .sel { justify-self: start; min-width: 240px; max-width: 100%; }
.filter-row .sel-btn {
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.filter-row .sel-btn:hover { border-color: var(--line-strong); color: var(--text); }
.filter-row .sel.is-set .sel-btn {
  background: var(--text);
  border-color: var(--text);
  color: #0a0a0c;
  font-weight: 550;
}
.filter-row .sel.is-set .sel-btn svg { color: #0a0a0c; }
.filter-row .sel-list { left: 0; min-width: 268px; }

/* ---------- category rail ---------- */
.cat-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cat-rail a {
  display: block;
  padding: 30px 26px 28px;
  background: var(--bg);
  transition: background 0.35s var(--ease);
}
.cat-rail a:hover { background: var(--bg-raised); }
.cat-rail .n {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 20px;
}
.cat-rail h3 { font-size: 1.22rem; margin-bottom: 8px; }
.cat-rail p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; margin: 0; }
.cat-rail a:hover h3 { color: var(--accent-hi); }

/* ---------- section heads ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(38px, 4.5vw, 58px);
}
.section-head > div { max-width: 620px; }
.section-head .d2 { margin-bottom: 16px; }

/* ---------- experience cards ---------- */
.grid {
  display: grid;
  gap: clamp(20px, 2.4vw, 30px);
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-raised);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #15151a;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
  filter: brightness(0.92) saturate(0.94);
}
.card:hover .card-media img { transform: scale(1.05); filter: brightness(1) saturate(1); }
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.7), rgba(8, 8, 10, 0) 55%);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: rgba(10, 10, 12, 0.62);
  backdrop-filter: blur(8px);
  color: var(--text);
}
.card-region { position: absolute; z-index: 2; left: 16px; top: 16px; }

.card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.card-op {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 11px;
}
.card h3 { font-size: 1.32rem; margin-bottom: 11px; }
.card:hover h3 { color: var(--accent-hi); }
.card p { font-size: 0.885rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 20px; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--text-dim);
}
.card-meta .price { margin-left: auto; color: var(--text); font-weight: 550; font-size: 0.86rem; }
.card-meta .price b { font-weight: 550; }
.meta-item { display: inline-flex; align-items: center; gap: 6px; }
.meta-item svg { width: 14px; height: 14px; opacity: 0.55; flex: none; }

.card-link::after { content: ""; position: absolute; inset: 0; z-index: 3; }

/* ---------- filters ---------- */
.filters {
  display: grid;
  gap: 14px 20px;
  padding-bottom: 24px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.filter-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: start;
  gap: 10px 20px;
}
.filter-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-top: 11px;
}
.filter-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 4px;
}
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 9px 17px;
  font-size: 0.82rem;
  font-weight: 450;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.28s var(--ease);
}
.pill:hover { border-color: var(--line-strong); color: var(--text); }
.pill[aria-pressed="true"] {
  background: var(--text);
  border-color: var(--text);
  color: #0a0a0c;
  font-weight: 550;
}
.filter-sep { width: 1px; height: 22px; background: var(--line); margin-inline: 6px; }
.filter-count { margin-right: auto; font-size: 0.82rem; color: var(--text-dim); }
.filter-reset {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.filter-reset:hover { color: var(--text); }

.empty {
  padding: 70px 24px;
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
}
.empty h3 { font-size: 1.4rem; margin-bottom: 10px; }

/* ---------- events ---------- */
.event-list { border-top: 1px solid var(--line); }
.event-row {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), padding-inline 0.35s var(--ease);
}
.event-row:hover { background: var(--bg-panel); padding-inline: 18px; }
.event-date {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 11px 6px 9px;
  background: var(--bg-raised);
}
.event-date .m {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}
.event-date .d {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
}
.event-date .y { display: block; font-size: 0.66rem; color: var(--text-dim); margin-top: 3px; }
.event-main h3 { font-size: 1.22rem; margin-bottom: 7px; }
.event-row:hover .event-main h3 { color: var(--accent-hi); }
.event-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.event-cta { display: flex; align-items: center; gap: 18px; }
.event-price { font-size: 0.95rem; font-weight: 550; white-space: nowrap; }
.event-price small { display: block; font-size: 0.68rem; font-weight: 400; color: var(--text-dim); }

.tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid currentColor;
  white-space: nowrap;
}
.tag-open { color: var(--ok); }
.tag-low { color: var(--warn); }
.tag-out { color: var(--text-dim); }

/* ---------- steps ---------- */
.steps { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.steps-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.step { background: var(--bg); padding: clamp(30px, 3.5vw, 46px) clamp(24px, 2.5vw, 36px); }
.step .n {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--accent);
  display: block;
  margin-bottom: 26px;
  letter-spacing: 0.1em;
}
.step h3 { font-size: 1.35rem; margin-bottom: 12px; }
.step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- occasions ---------- */
.occ-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: clamp(18px, 2vw, 26px); }
.occ {
  position: relative;
  padding: 30px 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    linear-gradient(160deg, var(--bg-panel), transparent 60%);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.occ:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.occ h3 { font-size: 1.3rem; margin-bottom: 11px; }
.occ p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.58; margin-bottom: 18px; }
.occ ul { display: flex; flex-wrap: wrap; gap: 7px; }
.occ li {
  font-size: 0.74rem;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  background: var(--bg-panel-hi);
  color: var(--text-muted);
}

/* ---------- quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(20px, 2.4vw, 32px); }
.quote {
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-raised);
  display: flex;
  flex-direction: column;
}
.quote .mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 22px;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  flex: 1;
}
.quote cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- logo row ---------- */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.logo-row span {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  letter-spacing: 0.04em;
  color: var(--text-dim);
  transition: color 0.35s var(--ease);
}
.logo-row span:hover { color: var(--text-muted); }

/* ---------- feature panel (aurora) ---------- */
.panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(44px, 6vw, 82px) clamp(28px, 5vw, 72px);
  border: 1px solid var(--line);
  background: var(--bg-raised);
  isolation: isolate;
}
.panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -40%;
  background:
    radial-gradient(38% 44% at 20% 30%, rgba(201, 169, 108, 0.30), transparent 68%),
    radial-gradient(34% 40% at 78% 24%, rgba(94, 116, 214, 0.24), transparent 66%),
    radial-gradient(40% 46% at 62% 88%, rgba(79, 214, 164, 0.16), transparent 68%);
  filter: blur(38px);
  animation: auroraShift 22s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to   { transform: translate3d(3%, 2%, 0) scale(1.12); }
}
.panel-inner { max-width: 640px; }
.panel .d2 { margin-bottom: 18px; }
.panel-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.panel-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
  font-size: 0.83rem;
  color: var(--text-muted);
}
.panel-perks li { display: flex; align-items: center; gap: 9px; }
.panel-perks svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

/* ---------- page hero (interior) ---------- */
.page-hero {
  position: relative;
  padding-top: clamp(140px, 15vw, 190px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 340px;
  z-index: -1;
  background: radial-gradient(60% 100% at 30% 100%, rgba(201, 169, 108, 0.09), transparent 72%);
}
.page-hero .lede { margin-top: 20px; }
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.crumbs a:hover { color: var(--text); }
.crumbs span::after { content: "/"; margin-left: 9px; opacity: 0.4; }

/* ---------- tour detail ---------- */
.tour-hero {
  position: relative;
  height: clamp(360px, 52vh, 620px);
  overflow: hidden;
}
.tour-hero img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72); }
.tour-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 1%, rgba(8, 8, 10, 0.3) 55%, rgba(8, 8, 10, 0.72));
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 366px;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.tour-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: clamp(38px, 4vw, 54px);
}
.tour-facts div { background: var(--bg); padding: 18px 20px; }
.tour-facts dt {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.tour-facts dd { margin: 0; font-size: 0.94rem; font-weight: 500; }

.tour-block { margin-bottom: clamp(40px, 4.5vw, 62px); }
.tour-block > h2 { font-size: clamp(1.5rem, 2.4vw, 1.95rem); margin-bottom: 22px; }

.ticks { display: grid; gap: 13px; }
.ticks li { display: flex; gap: 13px; font-size: 0.93rem; color: var(--text-muted); line-height: 1.55; }
.ticks svg { width: 17px; height: 17px; margin-top: 4px; color: var(--accent); flex: none; }

.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line-strong);
}
.timeline li { position: relative; padding-bottom: 28px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--accent);
}
.timeline h3 { font-size: 1.08rem; margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
.timeline p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.note-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.note {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  background: var(--bg-panel);
}

.booking-card {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background: var(--bg-raised);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
}
.booking-card .from { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }
.booking-card .amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1.1;
  margin-block: 4px 2px;
}
.booking-card .per { font-size: 0.82rem; color: var(--text-dim); }
.booking-card ul { margin-block: 22px; display: grid; gap: 11px; }
.booking-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}
.booking-card li span:first-child { color: var(--text-dim); }
.booking-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.booking-card .btn + .btn { margin-top: 10px; }
.booking-card .reassure {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
}

.dates-strip { display: grid; gap: 10px; margin-bottom: 26px; }
.date-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.date-opt:hover { border-color: var(--line-strong); background: var(--bg-panel); }
.date-opt.is-out { opacity: 0.5; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-size: 1.02rem;
  font-weight: 500;
  transition: color 0.25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-hi); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 1.5px solid var(--text-dim);
  border-bottom: 1.5px solid var(--text-dim);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.35s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq details p { padding-bottom: 24px; color: var(--text-muted); font-size: 0.93rem; max-width: 72ch; }

/* ---------- forms ---------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 0.94rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field select {
  appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%239b9aa4' stroke-width='1.6'%3E%3Cpath d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 11px;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-panel-hi);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field select option { background: #14141a; }
.form-note { font-size: 0.78rem; color: var(--text-dim); }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(36px, 5vw, 76px); align-items: start; }
.info-block { padding-block: 22px; border-bottom: 1px solid var(--line); }
.info-block:first-child { padding-top: 0; }
.info-block h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.info-block p, .info-block a { font-size: 1rem; line-height: 1.6; }
.info-block a:hover { color: var(--accent-hi); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-top: clamp(56px, 6vw, 84px); position: relative; }
.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(140px, 1fr));
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(44px, 5vw, 64px);
}
.footer-brand img { width: 190px; margin-bottom: 22px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); max-width: 34ch; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 0.89rem; color: var(--text-muted); transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--accent-hi); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-block: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--text-dim);
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.socials a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  border-radius: var(--r-pill);
  background: #1f9c5f;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 550;
  box-shadow: 0 14px 34px -12px rgba(31, 156, 95, 0.6);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); background: #24b06c; }
.wa-float svg { width: 20px; height: 20px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .tour-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .header-cta .btn { display: none; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: rgba(8, 8, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }
  body.nav-open .nav { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  .nav a { font-family: var(--font-display); font-size: 2rem; padding: 12px 24px; color: var(--text); }
  .nav a::after { display: none; }
  .nav .btn { display: inline-flex; margin-top: 22px; font-family: var(--font-body); font-size: 0.9rem; }
  .searchbar { grid-template-columns: 1fr 1fr; }
  .searchbar .btn { grid-column: 1 / -1; }
  .event-row { grid-template-columns: 74px 1fr; }
  .event-cta { grid-column: 2; justify-content: flex-start; margin-top: 4px; }
}

@media (max-width: 640px) {
  .hero { min-height: auto; padding-top: 128px; }
  .searchbar { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .wa-float span { display: none; }
  .wa-float { padding: 15px; }
  .grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px 36px; }
  .filter-row { grid-template-columns: 1fr; }
  .filter-label { padding-top: 0; }
  .hero .lede { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- credits table ---------- */
.credits-table { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); }
.credits-table table { width: 100%; border-collapse: collapse; min-width: 640px; }
.credits-table th, .credits-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--line);
}
.credits-table th {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  background: var(--bg-panel);
}
.credits-table td { color: var(--text-muted); }
.credits-table td:first-child { color: var(--text); }
.credits-table tr:last-child td { border-bottom: 0; }
.credits-table a { color: var(--accent); }
.credits-table a:hover { color: var(--accent-hi); }
