:root {
  --ink: #101820;
  --muted: #59636e;
  --line: #d8dde3;
  --panel: #f3f5f7;
  --canvas: #ffffff;
  --orange: #ff6b35;
  --blue: #2e6f95;
  --green: #2f7d5c;
  --gold: #b7791f;
  --shadow: 0 18px 50px rgba(20, 30, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 16px 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

.header-cta,
.primary-btn,
.secondary-btn,
.map-link,
#copy-embed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.secondary-btn {
  background: #fff;
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(520px, 1.2fr);
  gap: 42px;
  min-height: calc(100vh - 75px);
  padding: 64px 42px 36px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 22px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.16;
}

.hero-text {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 132px;
  padding: 28px 42px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 38px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 17px;
}

.example-section,
.offers-section,
.usage-section {
  padding: 72px 42px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.example-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 720px;
  border: 1px solid var(--line);
}

.example-list {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: var(--panel);
}

.example-card {
  appearance: none;
  min-height: 102px;
  padding: 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.example-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.example-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.example-card.active {
  background: #fff;
  box-shadow: inset 5px 0 0 var(--orange);
}

.map-stage {
  min-width: 0;
  background: #fff;
}

.map-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 118px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.map-toolbar h3 {
  margin-bottom: 8px;
}

.map-toolbar p {
  margin-bottom: 0;
  color: var(--muted);
}

.map-link {
  flex: 0 0 auto;
}

iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
  background: var(--panel);
}

.embed-panel {
  padding: 22px 28px 26px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.embed-panel label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.embed-copy-row {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 10px;
}

textarea {
  width: 100%;
  resize: vertical;
  padding: 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  font: 14px/1.45 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

#copy-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--green);
  font-size: 14px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.offer-grid article {
  min-height: 280px;
  padding: 30px;
  background: #fff;
}

.offer-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.offer-grid strong {
  display: block;
  margin-top: 34px;
  color: var(--orange);
  font-size: 26px;
}

.task-table {
  border: 1px solid var(--line);
}

.task-table > div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 220px;
  gap: 24px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.task-table > div:last-child {
  border-bottom: 0;
}

.task-table span {
  font-size: 17px;
  line-height: 1.36;
}

.task-table span:first-child {
  font-weight: 800;
}

.task-table span:last-child {
  color: var(--muted);
}

.task-head {
  background: var(--panel);
  font-weight: 800;
}

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

.travel-page .site-header {
  background: rgba(255, 255, 255, 0.96);
}

.travel-hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(500px, 1.1fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: 64px 42px 42px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
}

.travel-copy {
  max-width: 620px;
}

.route-panel {
  min-height: 520px;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.route-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 44px;
}

.weekend-route-line {
  grid-template-columns: repeat(6, 1fr);
}

.weekend-hero {
  background: linear-gradient(180deg, #fff 0%, #f4f8f7 100%);
}

.weekend-route-panel {
  border-top: 5px solid var(--green);
}

.route-line span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 78px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-weight: 800;
  text-align: center;
}

.route-line span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 13px;
  height: 2px;
  background: var(--orange);
}

.route-summary {
  max-width: 560px;
  margin-bottom: 48px;
}

.route-summary strong,
.trip-overview span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.route-summary p {
  color: var(--ink);
  font-size: 27px;
  line-height: 1.25;
}

.route-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.route-stats div {
  min-height: 116px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.route-stats div:last-child {
  border-right: 0;
}

.route-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
}

.route-stats span {
  color: var(--muted);
  font-size: 15px;
}

.trip-feature-summary {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
  padding: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trip-feature-summary span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.trip-feature-summary h2 {
  max-width: 560px;
  font-size: 38px;
  line-height: 1.08;
}

.trip-feature-summary p {
  max-width: 780px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.trip-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trip-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trip-gallery figure {
  margin: 0;
  background: #fff;
}

.trip-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.trip-gallery figcaption {
  padding: 15px 20px 18px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.trip-overview article {
  min-height: 230px;
  padding: 34px 42px;
  border-right: 1px solid var(--line);
}

.trip-overview article:last-child {
  border-right: 0;
}

.trip-overview strong {
  display: block;
  margin-bottom: 18px;
  font-size: 33px;
}

.trip-overview p,
.day-meta,
.travel-map-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.schedule-section,
.map-plan-section {
  padding: 72px 42px;
}

.itinerary {
  display: grid;
  gap: 16px;
}

.day-card {
  display: grid;
  grid-template-columns: 130px 210px minmax(0, 1fr);
  gap: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.day-image {
  align-self: start;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.day-number {
  display: grid;
  place-items: center;
  align-self: start;
  min-height: 92px;
  background: var(--ink);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.day-card h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.day-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.day-card li {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.42;
}

.travel-map-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  min-height: 680px;
  border: 1px solid var(--line);
}

.travel-map-copy {
  padding: 30px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.travel-map-copy h3 {
  margin-bottom: 16px;
  font-size: 30px;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 18px;
}

.travel-map-copy textarea {
  min-height: 150px;
}

.copy-note {
  min-height: 22px;
  margin-top: 10px;
  color: var(--green);
  font-size: 14px;
}

.album-data-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.travel-map-frame iframe {
  min-height: 680px;
  height: 100%;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .travel-hero,
  .example-shell,
  .offer-grid,
  .trip-overview,
  .trip-feature-summary,
  .trip-gallery,
  .travel-map-layout {
    grid-template-columns: 1fr;
  }

  .example-list {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .task-table > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .route-line,
  .route-stats {
    grid-template-columns: 1fr;
  }

  .route-line span:not(:last-child)::after {
    display: none;
  }

  .trip-overview article,
  .travel-map-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .day-card {
    grid-template-columns: 1fr;
  }

  .day-image {
    max-width: 360px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .travel-hero,
  .trip-feature-summary,
  .example-section,
  .offers-section,
  .usage-section,
  .schedule-section,
  .map-plan-section,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .map-toolbar,
  .footer,
  .embed-copy-row {
    display: block;
  }

  .map-link,
  #copy-embed {
    width: 100%;
    margin-top: 14px;
  }

  iframe {
    height: 520px;
  }

  .route-panel {
    min-height: auto;
    padding: 22px;
  }

  .route-summary p {
    font-size: 22px;
  }

  .travel-map-frame iframe {
    min-height: 620px;
    height: 620px;
  }
}
