@font-face {
  font-family: "Mile Zero Sans";
  src: url("../brand/Mile-Zero-Sans.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #11170f;
  --muted: #60685c;
  --line: #d7ddd2;
  --paper: #ffffff;
  --soft: #f3f6f1;
  --green: #63c71f;
  --green-dark: #214c1d;
  --green-mid: #4a8d25;
  --button: #050505;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

a {
  color: var(--ink);
  text-decoration: none;
}

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

.topbar {
  display: none;
}

.site-header,
.section,
.footer .wrap {
  width: min(1110px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  padding: 34px 0 48px;
}

.site-header .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.brand img {
  width: 154px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 40px;
  font-size: 13px;
  line-height: 1;
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 7px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--ink);
}

.intro-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1110px, calc(100% - 64px));
  margin: 0 auto 56px;
  color: var(--ink);
  font-size: 14px;
  text-align: center;
}

.intro-line::before,
.intro-line::after {
  content: "";
  height: 1px;
  background: #aeb8aa;
}

.home-carousel {
  width: min(1110px, calc(100% - 64px));
  margin: 0 auto 42px;
}

.carousel-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: var(--soft);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 450ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.carousel-thumb {
  width: 62px;
  height: 44px;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
}

.carousel-thumb.is-active {
  border-color: var(--green-mid);
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 0;
}

.section.band {
  width: 100%;
  max-width: none;
  background: var(--soft);
  padding: 28px 0 56px;
}

.section.band > .inner {
  width: min(1110px, calc(100% - 64px));
  margin: 0 auto;
}

.content {
  max-width: 900px;
  padding-bottom: 72px;
}

.home-copy {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.7rem);
}

h2 {
  font-size: 2.15rem;
  text-transform: uppercase;
}

h3 {
  font-size: 1.95rem;
  text-transform: uppercase;
}

p {
  margin: 0 0 18px;
}

.lead {
  max-width: 980px;
  margin: 0 auto 42px;
  color: var(--muted);
  font-size: 15px;
}

.grid {
  display: grid;
  gap: 48px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  text-align: center;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1.33;
  object-fit: cover;
  margin-bottom: 22px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  padding: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 28px;
  border: 1px solid var(--button);
  background: var(--button);
  color: #fff;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: var(--button);
}

.mailing-band {
  padding: 34px 0 36px;
  text-align: center;
}

.mailing-band h2 {
  margin-bottom: 20px;
}

.tours-embed-section {
  padding-bottom: 54px;
}

.page-title {
  margin: 56px 0 170px;
  max-width: none;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 9vw, 8.5rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.tour-picker-embed {
  display: block;
  width: 100%;
  height: 1200px;
  min-height: 1200px;
  margin: 0 auto;
  border: 0;
  background: #fff;
}

.form-embed-section {
  padding-bottom: 60px;
}

.form-page-title {
  margin: 18px 0 34px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.25rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.form-embed {
  display: block;
  width: 100%;
  height: 900px;
  min-height: 900px;
  margin: 0 auto;
  border: 0;
  background: #fff;
}

.tour-detail-page {
  --detail-card: #040404;
  --detail-card-2: #0a0a0a;
  --detail-stroke: rgba(57, 255, 20, 0.72);
  --detail-green: #39ff14;
  --detail-shadow: 0 0 0 1px rgba(57, 255, 20, 0.35), 0 0 18px rgba(57, 255, 20, 0.2);
  padding-bottom: 18px;
  color: #f5f5f5;
}

.tour-detail-page.has-fatal-error .tour-detail-section,
.tour-detail-page.has-fatal-error .tour-detail-grid,
.tour-detail-page.has-fatal-error .tour-hero,
.tour-detail-page.has-fatal-error .tour-summary,
.tour-detail-page.has-fatal-error .ready-cta {
  display: none;
}

.tour-detail-page.has-fatal-error .tour-error-panel {
  position: static;
  margin-top: 60px;
  margin-bottom: 60px;
}

.tour-hero {
  width: min(1200px, calc(100% - 64px));
  height: 64vh;
  min-height: 440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #070707;
}

.tour-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.tour-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.24));
}

.tour-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.tour-date-pill {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.tour-summary {
  width: min(1040px, calc(100% - 28px));
  margin: 28px auto 44px;
  color: #000;
  text-align: center;
}

.tour-price {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  font-weight: 900;
}

.tour-summary-details,
.tour-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.tour-summary-details {
  margin-bottom: 10px;
  font-size: 14px;
}

.tour-highlight {
  min-height: 22px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 800;
}

.tour-error-panel {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto 22px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 2px solid rgba(57, 255, 20, 0.62);
  background: rgba(9, 13, 9, 0.97);
  color: #f5f5f5;
  box-shadow: var(--detail-shadow), 0 18px 34px rgba(0, 0, 0, 0.22);
}

.tour-error-panel strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.35rem;
}

.tour-error-panel p {
  margin-bottom: 12px;
  color: #dce7dc;
}

.tour-error-panel ul {
  margin: 8px 0 18px;
  padding-left: 20px;
  color: #cfe3d2;
  font-size: 0.92rem;
}

.tour-detail-section {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto 28px;
}

.tour-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--detail-card-2), var(--detail-card));
  border: 1px solid var(--detail-stroke);
  box-shadow: var(--detail-shadow);
  color: #f5f5f5;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.tour-section-title .pill {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--detail-green);
  box-shadow: 0 0 0 6px rgba(57, 255, 20, 0.16), 0 0 12px rgba(57, 255, 20, 0.4);
}

.tour-section-title .accent-line {
  height: 10px;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(57, 255, 20, 0.6), transparent);
  opacity: 0.75;
}

.tour-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--detail-stroke);
  box-shadow: var(--detail-shadow);
  background: #040404;
}

.tour-carousel-slides {
  display: flex;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-carousel-slide {
  min-width: 100%;
  height: 520px;
  background-size: cover;
  background-position: center;
}

.tour-carousel-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.tour-carousel-thumb {
  width: 90px;
  height: 60px;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.62;
  transition: 0.3s;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(57, 255, 20, 0.2);
}

.tour-carousel-thumb.is-active {
  opacity: 1;
  border-color: var(--detail-green);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.45);
}

.tour-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--detail-stroke);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 40px;
  line-height: 1;
  padding: 8px 16px 12px;
  cursor: pointer;
}

.tour-carousel-nav:hover {
  background: rgba(12, 12, 12, 0.9);
}

.tour-carousel-nav.prev {
  left: 16px;
}

.tour-carousel-nav.next {
  right: 16px;
}

.tour-detail-grid {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.tour-detail-grid .tour-detail-section {
  width: 100%;
  margin: 0;
}

.tour-side-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tour-panel {
  background: linear-gradient(180deg, var(--detail-card-2), var(--detail-card));
  border: 1px solid var(--detail-stroke);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--detail-shadow);
  color: #f1f1f1;
  font-size: 1.03rem;
  line-height: 1.7;
}

.tour-panel style {
  display: none;
}

.tour-panel a {
  color: var(--detail-green);
  border-bottom: 2px solid rgba(57, 255, 20, 0.35);
}

.tour-panel p {
  margin: 0 0 16px;
}

.itinerary-content .itinerary-day {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 28px 0 10px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.55);
  color: #fff;
  font-weight: 900;
}

.itinerary-content .itinerary-day:first-child {
  margin-top: 0;
}

.itinerary-content .itinerary-meal {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: -6px 0 22px;
  color: var(--detail-green);
  font-weight: 900;
}

.checklist-content ul,
.terms-content ul,
.terms-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.checklist-content li {
  position: relative;
  list-style: none;
  padding-left: 28px;
  margin-bottom: 10px;
}

.checklist-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--detail-green);
  font-weight: 900;
}

.hotel-content li::before {
  content: "⌂";
}

.notes-content {
  background: #1a1600;
  border-color: rgba(255, 210, 50, 0.65);
  color: #f5ebb8;
}

.notes-title .pill {
  background: #ffe566;
}

.section-error {
  color: #ffb3c1;
  font-weight: 800;
}

.ready-cta {
  width: min(1200px, calc(100% - 64px));
  min-height: 280px;
  margin: 34px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.5)),
    url("../images/current-ny6.jpg") center / cover;
}

.ready-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.ready-cta h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ready-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 88px;
  padding: 24px 38px;
  background: rgba(42, 42, 42, 0.96);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .tour-hero,
  .tour-detail-section,
  .tour-detail-grid,
  .ready-cta {
    width: calc(100% - 28px);
  }

  .tour-detail-grid {
    grid-template-columns: 1fr;
  }

  .tour-carousel-slide {
    height: 360px;
  }
}

@media (max-width: 650px) {
  .tour-hero {
    min-height: 380px;
  }

  .tour-carousel-slide {
    height: 260px;
  }

  .tour-section-title {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }

  .ready-cta-inner {
    gap: 20px;
  }

  .ready-button {
    min-height: 64px;
    font-size: 1.3rem;
  }
}

.footer {
  background: var(--soft);
  color: var(--ink);
  padding: 40px 0 60px;
  text-align: center;
  font-size: 13px;
}

.footer a {
  color: var(--ink);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 36px;
}

.footer strong {
  display: block;
  margin-bottom: 18px;
}

.footer img,
.eyebrow,
.price,
.quote {
  display: none;
}

@media (max-width: 820px) {
  .site-header,
  .section,
  .footer .wrap,
  .intro-line,
  .home-carousel,
  .section.band > .inner {
    width: min(100% - 32px, 1110px);
  }

  .site-header {
    padding: 20px 0 30px;
  }

  .site-header .wrap {
    align-items: center;
    flex-wrap: wrap;
  }

  .brand img {
    width: 126px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .intro-line {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

  .intro-line::before,
  .intro-line::after {
    display: none;
  }

  .carousel-frame {
    aspect-ratio: 1.25;
  }

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .section.band {
    padding: 32px 0 44px;
  }

  h2,
  h3 {
    font-size: 1.75rem;
  }

  .tour-picker-embed {
    height: 1800px;
    min-height: 1800px;
  }

  .form-embed {
    height: 1100px;
    min-height: 1100px;
  }

  .tour-detail-page {
    padding-bottom: 10px;
  }

  .tour-summary {
    margin-top: 22px;
    margin-bottom: 34px;
  }
}
