:root {
  --bg: #ffffff;
  --fg: #0b0b0b;
  --muted: #6b7280;
  --accent: #ff5a1f;
  --line: #111;
  --line2: #e5e7eb;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0b0b;
    --fg: #f4f4f5;
    --muted: #a1a1aa;
    --accent: #ff7a3a;
    --line: #f4f4f5;
    --line2: #262626;
  }
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.5 Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
.container {
  max-width: 1120px;
  margin-inline: auto;
  padding: 0 20px;
}
.grid {
  display: grid;
  gap: 16px;
}
.btn {
  --b: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6ch;
  padding: 0.85rem 1.1rem;
  border: var(--b) solid var(--fg);
  background: transparent;
  color: var(--fg);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--fill {
  background: var(--fg);
  color: var(--bg);
}
.btn--accent {
  border-color: var(--accent);
  color: var(--bg);
  background: var(--accent);
}
.btn--ghost {
  border-color: var(--line2);
  color: var(--fg);
}
.tag {
  display: inline-block;
  border: 2px solid var(--line);
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge {
  display: inline-block;
  border: 2px dashed var(--line);
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 3px solid var(--line);
  background: var(--bg);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.logo__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid var(--fg);
}
.logo__text {
  font-family: Oswald, Inter, system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}
.nav {
  display: none;
}
.nav__list {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: inline-block;
  border: 3px solid var(--line);
  padding: 0.55rem 0.8rem;
  text-decoration: none;
  font-weight: 700;
}
.nav__link:hover {
  background: var(--fg);
  color: var(--bg);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.burger {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 3px solid var(--line);
  background: transparent;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--fg);
  position: relative;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 2px;
  background: var(--fg);
}
.burger span::before {
  top: -6px;
}
.burger span::after {
  bottom: -6px;
}
@media (min-width: 900px) {
  .nav {
    display: block;
  }
  .burger {
    display: none;
  }
}

/* Mobile menu */
.mobile {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(0, 0, 0, 0.5);
}
.mobile[hidden] {
  display: none;
}
.mobile__panel {
  margin-left: auto;
  width: min(86%, 420px);
  height: 100%;
  background: var(--bg);
  border-left: 3px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.mobile__link {
  display: block;
  border: 3px solid var(--line);
  padding: 0.9rem 1rem;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
}

/* Hero */
.hero {
  border-bottom: 3px solid var(--line);
}
.hero__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  align-items: stretch;
  padding: 28px 0;
}
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    padding: 42px 0;
  }
}
.hero__title {
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0;
}
.hero__kicker {
  display: inline-block;
  margin: 0.5rem 0 0.75rem;
}
.hero__text {
  max-width: 52ch;
  color: var(--muted);
}
.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero__media {
  position: relative;
  border: 3px solid var(--line);
  min-height: 340px;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%),
    url("images/hero.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 3px dashed var(--line);
}

/* Strips */
.ticker {
  border-block: 3px solid var(--line);
  white-space: nowrap;
  overflow: hidden;
}
.ticker__inner {
  display: inline-block;
  padding: 0.6rem 0;
  animation: marquee 22s linear infinite;
}
.ticker b {
  display: inline-block;
  border: 3px solid var(--line);
  padding: 0.2rem 0.6rem;
  margin: 0 0.4rem;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Sections */
.section {
  padding: 42px 0;
  border-bottom: 3px solid var(--line);
}
.s-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
.s-title {
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.6rem;
  margin: 0;
}
.s-sub {
  color: var(--muted);
  margin: 0;
}

/* Destinations */
.destinations {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  display: grid;
  border: 3px solid var(--line);
  background: var(--bg);
}
.card__media {
  aspect-ratio: 16/11;
  border-bottom: 3px solid var(--line);
  background: #ddd url("images/placeholder.webp") center/cover no-repeat;
}
.card__body {
  padding: 12px;
}
.card__name {
  font-weight: 800;
  margin: 0 0 0.25rem;
}
.card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Packages */
.pricing {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.price {
  display: grid;
  gap: 10px;
  border: 3px solid var(--line);
  padding: 14px;
}
.price__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--line);
  padding-bottom: 10px;
}
.price__title {
  font-weight: 800;
  margin: 0;
}
.price__num {
  font-family: Oswald, Inter, sans-serif;
  font-size: 2rem;
}
.price ul {
  list-style: "▣ ";
  padding-left: 1.2rem;
  margin: 0;
  display: grid;
  gap: 6px;
}

/* Events */
.events {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.event {
  display: grid;
  gap: 10px;
  border: 3px solid var(--line);
  padding: 14px;
}
.event__date {
  font-family: Oswald, Inter, sans-serif;
  font-size: 2.25rem;
}
.event__meta {
  display: flex;
  gap: 10px;
  color: var(--muted);
  flex-wrap: wrap;
}

/* FAQ */
.faq {
  grid-template-columns: 1fr;
}
.faq details {
  border: 3px solid var(--line);
  padding: 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
}

/* Testimonials */
.t-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.t-card {
  display: grid;
  gap: 10px;
  border: 3px solid var(--line);
  padding: 14px;
}
.t-stars {
  font-size: 18px;
  letter-spacing: 2px;
}

/* Footer */
.footer {
  border-top: 3px solid var(--line);
}
.footer__grid {
  display: grid;
  gap: 18px;
  padding: 28px 0;
}
@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 1.1fr 0.9fr 0.6fr;
  }
}
.footer__title {
  font-weight: 800;
  margin: 0 0 0.4rem;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 3px solid var(--line);
  background: transparent;
  color: inherit;
}
.sub {
  display: grid;
  gap: 10px;
}

/* Utilities */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.no-scroll {
  overflow: hidden;
}

/* Cookie banner — editorial style */
.ck {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  display: grid;
  place-items: end center;
  padding: 16px;
  background: transparent;
}
.ck[hidden] {
  display: none;
}
.ck__panel {
  width: min(960px, 100%);
  background: var(--bg);
  border: 3px solid var(--line);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  padding: 16px;
  display: grid;
  gap: 12px;
}
.ck__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--line);
  padding-bottom: 8px;
}
.ck__title {
  margin: 0;
  font: 800 1.1rem/1.2 Oswald, Inter, sans-serif;
}
.ck__close {
  border: 3px solid var(--line);
  background: transparent;
  padding: 0.2rem 0.5rem;
  font-weight: 800;
}
.ck__text {
  margin: 0;
  color: var(--muted);
}
.ck__text a {
  text-decoration: underline;
}
.ck__toggle {
  border: 3px solid var(--line);
  background: transparent;
  padding: 0.45rem 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  justify-self: start;
}
.ck__form {
  display: grid;
  gap: 8px;
}
.ck__opt {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}
.ck__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 640px) {
  .ck__actions .btn {
    flex: 1;
  }
}
