:root {
  --bg: #070a0d;
  --panel: #161a1f;
  --panel-2: #1d2228;
  --text: #f4eee7;
  --muted: #aaa7ad;
  --brand: #f2c766;
  --brand-2: #9c8450;
  --gold: #f2c766;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 15% 0%, rgba(242, 199, 102, 0.18), transparent 30%),
    linear-gradient(180deg, #070a0d 0%, #11161b 52%, #070a0d 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  color: #000;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 9, 20, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: #2b210f;
  font-size: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--brand);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language,
.input,
.select,
.textarea {
  width: 100%;
  color: var(--text);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  padding: 13px 14px;
}

.language {
  width: auto;
  padding: 10px 12px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 13px 20px;
  font-weight: 950;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: #2b210f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 42px rgba(242, 199, 102, 0.22);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.burger {
  display: none;
  color: var(--text);
  background: transparent;
  border: 0;
  font-size: 30px;
}

.hero {
  position: relative;
  min-height: max(760px, calc(100dvh - 92px + 72px));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  background-image: url("../img/hero-dubrovnik.png");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, 0.92) 0%, rgba(5, 9, 20, 0.72) 47%, rgba(5, 9, 20, 0.55) 100%),
    radial-gradient(circle at 58% 50%, rgba(242, 199, 102, 0.18), transparent 35%);
}

.hero-fireflies {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-fireflies span {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(242, 199, 102, 0.95);
  box-shadow:
    0 0 8px rgba(242, 199, 102, 0.7),
    0 0 18px rgba(242, 199, 102, 0.38);
  opacity: 0.28;
  animation: fireflyFloat 12s ease-in-out infinite, fireflyPulse 3.2s ease-in-out infinite;
}

.hero-fireflies span:nth-child(1) { top: 18%; left: 12%; animation-delay: -0.8s; }
.hero-fireflies span:nth-child(2) { top: 26%; left: 24%; width: 3px; height: 3px; animation-delay: -2.4s; }
.hero-fireflies span:nth-child(3) { top: 34%; left: 42%; animation-delay: -4.2s; }
.hero-fireflies span:nth-child(4) { top: 19%; left: 66%; width: 5px; height: 5px; animation-delay: -1.4s; }
.hero-fireflies span:nth-child(5) { top: 30%; left: 78%; width: 3px; height: 3px; animation-delay: -5.1s; }
.hero-fireflies span:nth-child(6) { top: 48%; left: 18%; animation-delay: -2.1s; }
.hero-fireflies span:nth-child(7) { top: 55%; left: 34%; width: 3px; height: 3px; animation-delay: -6s; }
.hero-fireflies span:nth-child(8) { top: 46%; left: 58%; width: 5px; height: 5px; animation-delay: -3.3s; }
.hero-fireflies span:nth-child(9) { top: 58%; left: 74%; animation-delay: -7.4s; }
.hero-fireflies span:nth-child(10) { top: 68%; left: 28%; width: 3px; height: 3px; animation-delay: -1.8s; }
.hero-fireflies span:nth-child(11) { top: 72%; left: 52%; animation-delay: -4.8s; }
.hero-fireflies span:nth-child(12) { top: 64%; left: 84%; width: 3px; height: 3px; animation-delay: -5.6s; }

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 730px;
}

.kicker,
.eyebrow,
.badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  color: #06101c;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--brand);
  padding: 8px 13px;
}

.hero h1,
.sub-hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero p,
.lead {
  max-width: 760px;
  margin: 0 0 30px;
  color: #d5dced;
  font-size: clamp(18px, 2.2vw, 22px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 0;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  max-width: min(100%, 290px);
  border-radius: 24px;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.store-badge-link:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 16px 28px rgba(242, 199, 102, 0.18));
}

.store-badge {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes fireflyFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(14px, -12px, 0);
  }

  50% {
    transform: translate3d(-10px, 10px, 0);
  }

  75% {
    transform: translate3d(8px, -16px, 0);
  }
}

@keyframes fireflyPulse {
  0%,
  100% {
    opacity: 0.18;
    filter: brightness(0.92);
  }

  50% {
    opacity: 0.58;
    filter: brightness(1.2);
  }
}

.section {
  padding: 82px 0;
}

.section-tight {
  padding: 34px 0 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.centered {
  text-align: center;
  margin-inline: auto;
}

.section h2,
.sub-hero h1 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 14px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-strip article,
.info-card,
.contact-card,
.checkout-card,
.notice,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
}

.feature-strip article,
.info-card,
.contact-card,
.checkout-card {
  padding: 24px;
}

.feature-ticket {
  position: relative;
  min-height: 236px;
  padding: 30px !important;
  border: 1px solid rgba(242, 199, 102, 0.14) !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 199, 102, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(18, 23, 29, 0.94) !important;
  box-shadow:
    0 26px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  overflow: hidden;
}

.feature-ticket::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 199, 102, 0.84), transparent);
  opacity: 0.86;
}

.feature-ticket::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #161109;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, rgba(242, 199, 102, 0.96), rgba(156, 132, 80, 0.94));
  box-shadow: 0 18px 34px rgba(242, 199, 102, 0.18);
  pointer-events: none;
}

.feature-ticket-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  min-height: 176px;
  padding: 0;
}

.feature-ticket-price::after { content: "01"; }
.feature-ticket-email::after { content: "02"; }
.feature-ticket-coin::after { content: "03"; }

.feature-strip strong {
  display: block;
  max-width: 12ch;
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.feature-strip span,
.tour-card p {
  color: var(--muted);
}

.feature-strip span {
  display: block;
  max-width: 34ch;
  color: #d3dae1;
  font-size: 16px;
  line-height: 1.75;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tour-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.tour-card img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
}

.tour-card-body {
  padding: 24px;
}

.tour-card h3,
.info-card h3 {
  margin: 16px 0 10px;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.tour-card h3[data-i18n="ultimateTitle"] {
  max-width: 13ch;
}

.tour-card a {
  color: var(--brand);
  font-weight: 900;
}

.tour-featured {
  border-color: rgba(94, 226, 178, 0.42);
}




.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.rounded-img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}




.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.sub-hero {
  padding: 86px 0 50px;
  background:
    radial-gradient(circle at 75% 15%, rgba(242, 199, 102, 0.2), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.tour-detail-grid {
  display: grid;
  gap: 26px;
}

.detail-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.detail-card img {
  width: 100%;
  border-radius: 22px;
}

.detail-card h2 {
  margin-bottom: 10px;
}

.detail-card ul,
.check-list {
  padding-left: 20px;
  color: #dbe3f2;
}

.featured-card {
  border-color: rgba(255, 211, 122, 0.42);
}

.form {
  display: grid;
  gap: 15px;
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.faq details {
  padding: 18px 20px;
  margin-bottom: 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 950;
}

.notice {
  padding: 18px 20px;
  color: #fff1bf;
  background: rgba(255, 211, 122, 0.12);
  border-color: rgba(255, 211, 122, 0.28);
}

.checkout-grid {
  align-items: start;
}

.checkout-card {
  position: sticky;
  top: 104px;
}

.qty {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 10px;
}

.qty button {
  color: var(--text);
  font-size: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 10px 0;
}

.total {
  font-size: 48px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.06em;
}

.full {
  width: 100%;
}

.success {
  margin-top: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  padding: 44px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 24px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.mobile-cta {
  display: none;
}








.timeline-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 180, 107, 0.12), transparent 30%),
    linear-gradient(180deg, #0c1117 0%, #151a20 100%);
  overflow: hidden;
}

.timeline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/stradun.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: grayscale(100%);
}

.timeline-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
}

.timeline-head .eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #f0c96b;
  color: #0b0f14;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timeline-head h2 {
  margin: 0;
  color: #f4efe7;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  font-weight: 900;
}

.timeline-lead {
  max-width: 620px;
  margin: 24px auto 0;
  color: #aeb6bf;
  font-size: 18px;
  line-height: 1.7;
}

.timeline-wrap {
  position: relative;
  z-index: 2;
  margin-top: 90px;
  max-width: 1050px;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(240, 201, 107, 0.85),
    rgba(37, 214, 190, 0.65),
    transparent
  );
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 86px 1fr;
  align-items: center;
  margin-bottom: 46px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  grid-column: 2;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 20px;
  background: linear-gradient(135deg, #f0c96b, #9d8449);
  color: #0b0f14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(240, 201, 107, 0.22);
  z-index: 3;
}

.timeline-card {
  position: relative;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(240, 201, 107, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.timeline-item:nth-child(odd) .timeline-card {
  grid-column: 1;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-card {
  grid-column: 3;
  text-align: left;
}

.timeline-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: #25d6be;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin: 0 0 14px;
  color: #f4efe7;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
}

.timeline-card p {
  margin: 0;
  color: #c8cfd6;
  font-size: 16px;
  line-height: 1.7;
}

.timeline-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 2px;
  background: rgba(240, 201, 107, 0.5);
}

.timeline-item:nth-child(odd) .timeline-card::after {
  right: -34px;
}

.timeline-item:nth-child(even) .timeline-card::after {
  left: -34px;
}




.mystery-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(214, 180, 107, 0.12), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(37, 214, 190, 0.1), transparent 26%),
    #0b1015;
  overflow: hidden;
}

.mystery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 80%, transparent);
}

.mystery-section .section-head {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-bottom: 58px;
}

.mystery-section .section-head h2 {
  color: #f4efe7;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.mystery-section .section-head p {
  max-width: 720px;
  margin: 22px auto 0;
  color: #aeb6bf;
  font-size: 18px;
  line-height: 1.75;
}

.mystery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.mystery-card {
  position: relative;
  min-height: 388px;
  padding: 32px 30px 34px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(12, 18, 26, 0.94), rgba(18, 24, 31, 0.88));
  border: 1px solid rgba(214, 180, 107, 0.20);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mystery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.82;
}

.mystery-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(242, 199, 102, 0.08);
  pointer-events: none;
}

.mystery-blue::before {
  background:
    radial-gradient(circle at 18% 14%, rgba(242, 199, 102, 0.20), transparent 22%),
    radial-gradient(circle at 88% 82%, rgba(37, 214, 190, 0.14), transparent 28%),
    linear-gradient(160deg, rgba(242, 199, 102, 0.12), transparent 58%);
}

.mystery-gold::before {
  background:
    radial-gradient(circle at 20% 16%, rgba(242, 199, 102, 0.18), transparent 20%),
    radial-gradient(circle at 84% 84%, rgba(242, 199, 102, 0.12), transparent 28%),
    linear-gradient(160deg, rgba(242, 199, 102, 0.12), transparent 58%);
}

.mystery-purple::before {
  background:
    radial-gradient(circle at 18% 16%, rgba(242, 199, 102, 0.18), transparent 20%),
    radial-gradient(circle at 86% 82%, rgba(111, 195, 255, 0.13), transparent 28%),
    linear-gradient(160deg, rgba(110, 204, 255, 0.10), transparent 58%);
}

.mystery-green::before {
  background:
    radial-gradient(circle at 18% 14%, rgba(242, 199, 102, 0.22), transparent 20%),
    radial-gradient(circle at 86% 82%, rgba(37, 214, 190, 0.15), transparent 28%),
    linear-gradient(160deg, rgba(242, 199, 102, 0.10), transparent 58%);
}

.mystery-number,
.mystery-card h3,
.mystery-card p {
  position: relative;
  z-index: 2;
}

.mystery-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(242, 199, 102, 0.18);
  color: #f2c766;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.mystery-card h3 {
  margin: 22px 0 18px;
  color: #f4efe7;
  max-width: 250px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.mystery-card p {
  margin: 0;
  color: #c4ccd4;
  max-width: 250px;
  font-size: 16px;
  line-height: 1.82;
}

.mystery-card > * {
  position: relative;
}

.mystery-card > .mystery-number::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 36px;
  height: 1px;
  background: rgba(242, 199, 102, 0.26);
  transform: translateY(-50%);
}

.mystery-card > p::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -64px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(242, 199, 102, 0.10);
  opacity: 0.7;
}

@media (max-width: 1050px) {
  .mystery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .mystery-section {
    padding: 80px 0;
  }

  .mystery-section .section-head {
    text-align: left;
  }

  .mystery-section .section-head p {
    margin-left: 0;
  }

  .mystery-grid {
    grid-template-columns: 1fr;
  }

  .mystery-card {
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  .timeline-section {
    padding: 90px 0;
  }

  .timeline-section::before {
    background-attachment: scroll;
  }

  .timeline-head {
    text-align: left;
  }

  .timeline-wrap {
    margin-top: 60px;
  }

  .timeline-line {
    left: 32px;
  }

  .timeline-item {
    grid-template-columns: 64px 1fr;
    gap: 22px;
    align-items: flex-start;
  }

  .timeline-number {
    grid-column: 1;
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    grid-column: 2;
    text-align: left;
  }

  .timeline-card::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .timeline-section {
    padding: 76px 0;
  }

  .timeline-head h2 {
    font-size: 38px;
  }

  .timeline-lead {
    font-size: 16px;
  }

  .timeline-wrap {
    margin-top: 44px;
  }

  .timeline-item {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    margin-bottom: 26px;
  }

  .timeline-line {
    left: 26px;
  }

  .timeline-number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 13px;
  }

  .timeline-card {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .timeline-card h3 {
    font-size: 22px;
  }

  .timeline-card p {
    font-size: 15px;
  }
}

@media (max-width: 960px) {
  .burger {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #07101d;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 10px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: max(690px, calc(100dvh - 82px + 40px));
  }

  .hero-image {
    background-attachment: scroll;
    background-position: center top;
  }

  .feature-strip,
  .cards-3,
  .split-grid,
  .checkout-grid,
  .detail-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkout-card {
    position: static;
  }

  .feature-ticket {
    min-height: 0;
    padding: 28px !important;
  }

  .feature-ticket::before {
    left: 22px;
    right: 22px;
  }

  .feature-ticket::after {
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }

  .feature-ticket-inner {
    min-height: 0;
    padding: 0;
    aspect-ratio: auto;
    align-content: start;
  }

  .feature-strip span {
    max-width: 100%;
  }

  .mobile-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 99;
    display: flex;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav-wrap {
    min-height: 70px;
    gap: 12px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .language {
    max-width: 72px;
  }

  .hero {
    min-height: max(640px, calc(100dvh - 82px + 24px));
  }

  .hero-content {
    display: flex;
    justify-content: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-image {
    background-position: center top;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-store-badges {
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
  }

  .feature-ticket::after {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .feature-ticket-inner {
    padding: 0;
  }

  .feature-strip strong {
    font-size: 24px;
  }

  .feature-strip span {
    font-size: 15px;
    line-height: 1.62;
  }

  .store-badge-link {
    max-width: min(100%, 224px);
  }

  .hero h1,
  .sub-hero h1 {
    font-size: 42px;
  }

  .hero p,
  .lead {
    font-size: 17px;
  }

  .section {
    padding: 58px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


/* =============================
   Page-specific styles: home.css
   ============================= */

/* Page-specific styles for home page.
   Main visual system is in common.css so the design stays unchanged. */


img { max-width: 100%; }
