:root {
  --bg: #0b0b0d;
  --bg-soft: #121216;
  --text: #f4efe4;
  --muted: #cec4b2;
  --gold: #c9a56a;
  --gold-soft: rgba(201, 165, 106, 0.28);
  --orange-soft: rgba(160, 97, 43, 0.16);
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.44);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at 18% 0%, #21180f 0%, transparent 30%),
    radial-gradient(circle at 88% 6%, #131a26 0%, transparent 28%), linear-gradient(160deg, #09090b, #111116 54%, #09090c);
  color: var(--text);
  line-height: 1.65;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(201, 165, 106, 0.06), transparent 30%);
}

.site-content {
  max-width: 1050px;
  margin: 0 auto;
  padding: 2.2rem 1rem 4rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 380ms ease, transform 380ms ease;
}

.site-content.visible {
  opacity: 1;
  transform: translateY(0);
}

a {
  color: #e7c98f;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: 0.015em;
}

h1 {
  font-size: clamp(2.05rem, 1.7rem + 1.9vw, 3.4rem);
}

h2 {
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem);
}

h3 {
  font-size: clamp(1.2rem, 1.02rem + 0.5vw, 1.55rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: #d7ccbb;
}

.section-blur {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero {
  padding: clamp(1.2rem, 1rem + 1.3vw, 2.2rem);
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.logo-lockup {
  width: clamp(150px, 23vw, 230px);
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  display: grid;
  place-items: center;
  padding: 0.2rem;
}


.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}
.date-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  color: #e7c98f;
  font-weight: 700;
  font-size: 0.86rem;
}

.subtitle {
  margin-top: 0.35rem;
  color: #edd2a0;
  font-weight: 600;
  font-size: 1.15rem;
}

.supporting-line {
  margin-top: 0.95rem;
  max-width: 66ch;
  color: var(--muted);
}

.overview {
  margin-top: 1.2rem;
  padding: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.overview-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem;
  background: rgba(0, 0, 0, 0.25);
}

.overview-card h2 {
  font-size: 0.96rem;
  margin-bottom: 0.45rem;
}

.overview-card p {
  color: var(--muted);
}

.transport-note {
  margin: 1rem 0 0;
  color: #d9ceb9;
  font-size: 0.92rem;
}

.itinerary-wrap {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.section-header {
  margin-bottom: 0.25rem;
}

.section-header h2 {
  margin-top: 0.35rem;
}

.stop-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  transition: transform 200ms ease, border-color 200ms ease;
}

.stop-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
}

.stop-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 165, 106, 0.55);
}

.stop-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.stop-number {
  color: #e9cca0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.location {
  margin-top: 0.3rem;
  color: #e8d1a5;
  font-weight: 600;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.facts p {
  color: var(--muted);
  font-size: 0.95rem;
}

.return,
.included,
.guidelines,
.contact,
.map {
  margin-top: 1.5rem;
  padding: 1rem;
}

.return p + p,
.guidelines p,
.contact p + p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.included-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.included-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.24);
}

.included-grid span {
  font-size: 1.2rem;
}

.included-grid p {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.route-visual {
  position: relative;
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 250px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), var(--orange-soft));
  overflow: hidden;
}

.route-visual svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.route-visual path {
  fill: none;
}

.region-outline {
  stroke: rgba(255, 255, 255, 0.44);
  stroke-width: 2.2;
}

.county-line {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1.2;
  stroke-dasharray: 4 8;
}

.route-line {
  stroke: rgba(201, 165, 106, 0.8);
  stroke-width: 3.5;
  stroke-linecap: round;
}

.route-line.return {
  stroke: rgba(235, 205, 149, 0.65);
  stroke-width: 2.5;
  stroke-dasharray: 7 8;
}

.route-stop {
  position: absolute;
}

.route-stop::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f2d7aa;
  display: inline-block;
  margin-right: 0.4rem;
  box-shadow: 0 0 0 4px rgba(201, 165, 106, 0.2);
}

.route-stop span {
  font-size: 0.76rem;
  color: #f2e7d4;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}

.s1 {
  left: 2%;
  top: 47%;
}
.s2 {
  left: 18%;
  top: 22%;
}
.s3 {
  left: 34%;
  top: 58%;
}
.s4 {
  left: 54%;
  top: 31%;
}
.s5 {
  left: 74%;
  top: 54%;
}
.s6 {
  right: 2%;
  top: 43%;
}

.bus-icon {
  position: absolute;
  left: 48%;
  top: 48%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
}

/* Passcode gate */
.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1rem;
  backdrop-filter: blur(10px);
  background: rgba(7, 7, 10, 0.72);
  transition: opacity 320ms ease;
}

.gate-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.gate-card {
  width: min(520px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: clamp(1.2rem, 1rem + 1.2vw, 2rem);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow);
}

.gate-copy {
  color: var(--muted);
  margin: 0.6rem 0 0.95rem;
}

.gate-form {
  display: grid;
  gap: 0.65rem;
}

.gate-form input,
.gate-form button {
  border-radius: 12px;
  padding: 0.82rem 0.9rem;
  font-size: 0.95rem;
}

.gate-form input {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.38);
  color: var(--text);
}

.gate-form button {
  border: 0;
  background: linear-gradient(120deg, #c9a56a, #ebcd95);
  color: #1d1408;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.gate-form button:hover {
  filter: brightness(1.04);
}

.gate-form input:focus,
.gate-form button:focus {
  outline: 2px solid rgba(235, 205, 149, 0.75);
  outline-offset: 2px;
}

.gate-error {
  color: #ffd0d0;
  margin-top: 0.7rem;
  min-height: 1.25em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 900px) {
  .overview,
  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .route-visual {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .site-content {
    padding: 1.2rem 0.8rem 3rem;
  }

  .overview,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .hero-top,
  .stop-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-visual {
    min-height: 360px;
  }

  .route-stop span {
    font-size: 0.7rem;
  }

  .s1 { left: 3%; top: 50%; }
  .s2 { left: 20%; top: 20%; }
  .s3 { left: 36%; top: 63%; }
  .s4 { left: 56%; top: 30%; }
  .s5 { left: 72%; top: 60%; }
  .s6 { right: 3%; top: 44%; }
}
