/* Product detail — linear narrative (one topic per screen) */
.detail-page {
  background: #fff;
}

.detail-screen {
  width: min(100% - 2.8rem, 720px);
  margin: 0 auto;
  min-height: 100svh;
  padding: 5.5rem 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

.detail-screen--tight {
  padding-top: 5.5rem;
  padding-bottom: 3rem;
}

.detail-screen--compact {
  min-height: auto;
  padding-top: 3.2rem;
  padding-bottom: 2.8rem;
}

.detail-kicker {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.detail-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 36ch;
}

.detail-page .contact-block {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  border-radius: 18px;
  padding: clamp(1.6rem, 4vw, 2.4rem);
}

.detail-page .contact-inner {
  width: 100%;
}

.detail-screen h1 {
  font-size: clamp(2rem, 5.5vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.2rem;
  max-width: 14ch;
}

.detail-hero-frame {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
}

.detail-hero-frame img {
  width: 100%;
  height: auto;
  max-height: 58vh;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.detail-subtitle {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
  max-width: 34ch;
  font-weight: 600;
}

.detail-section-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
}

.detail-section-label img {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.detail-subhead {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.85rem;
}

.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.4rem;
  align-items: start;
}

.bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.55;
}

.bullet-list li {
  margin-bottom: 0.45rem;
}

.gallery-scroll figure.is-landscape img,
.gallery-scroll img.is-landscape {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.gallery-scroll figure.is-rotated-cw {
  position: relative;
  aspect-ratio: 3 / 4;
}

.gallery-scroll figure.is-rotated-cw img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 133.333%;
  height: 75%;
  max-width: none;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
}

.itinerary-lead {
  margin: 0 0 1.5rem;
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.6;
}

.itinerary-copy {
  display: grid;
  gap: 1.5rem;
}

.itinerary-copy article {
  padding-left: 1rem;
  border-left: 2px solid var(--line);
}

.itinerary-copy h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-title);
  font-size: 1.06rem;
  line-height: 1.35;
}

.itinerary-copy p {
  margin: 0 0 0.55rem;
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--ink);
}

.itinerary-copy p:last-child {
  margin-bottom: 0;
}

.itinerary-finish {
  margin: 1.7rem 0 0;
  max-width: 46ch;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.45;
}

.cycling-summary {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
}

.cycling-summary__block .detail-section-label {
  margin-bottom: 1rem;
}

.cycling-highlight-box {
  padding: 1.35rem 1.5rem;
  border: 1.5px solid var(--ink);
  border-radius: 2rem;
}

.detail-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.detail-facts li {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  line-height: 1.45;
}

.detail-facts strong {
  font-family: var(--font-title);
}

@media (max-width: 640px) {
  .info-split {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .cycling-summary {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cycling-highlight-box {
    padding: 1.1rem 1.2rem;
    border-radius: 1.5rem;
  }

  .detail-facts li {
    grid-template-columns: 5.7rem 1fr;
    gap: 0.6rem;
  }
}

.detail-intro {
  margin: 0 0 2rem;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink);
  max-width: 38ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
  margin: 0 0 3.2rem;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8ebe0;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  flex-shrink: 0;
}

.feature__icon svg {
  width: 18px;
  height: 18px;
}

.feature strong {
  display: block;
  font-family: var(--font-title);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.feature span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.detail-pull {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  line-height: 1.25;
  margin: 0 0 1.4rem;
  max-width: 22ch;
  letter-spacing: -0.02em;
}

.detail-body p {
  margin: 0 0 1.15em;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
  max-width: 44ch;
}

.detail-body p:last-child {
  margin-bottom: 0;
}

.detail-screen .gallery-scroll {
  margin-top: 0.5rem;
}

.detail-screen .back-link {
  display: inline-block;
  margin-bottom: 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.65;
}

.detail-screen .fit-grid {
  margin-top: 0.4rem;
}

.detail-screen .include-list {
  margin-top: 0.5rem;
}

.detail-screen .unlock-panel {
  margin: 0;
}

.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin: -0.6rem 0 1.6rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
  }

  .detail-screen {
    min-height: auto;
    padding: 4.8rem 0 2.6rem;
    width: min(100% - 2rem, 720px);
  }

  .detail-screen--tight {
    padding-top: 4.8rem;
    padding-bottom: 2.2rem;
  }

  .detail-screen h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    margin-bottom: 0.85rem;
  }

  .detail-subtitle {
    margin: 0 0 0.9rem;
    font-size: 0.9rem;
    max-width: 32ch;
  }

  .detail-hero-frame img {
    max-height: 46vh;
    border-radius: 4px;
  }

  .detail-intro {
    font-size: 0.92rem;
    margin-bottom: 1.6rem;
    max-width: 100%;
  }

  .detail-pull {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .detail-body p {
    font-size: 0.92rem;
    max-width: 100%;
  }

  .detail-section-label {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .detail-screen + .detail-screen {
    border-top: 1px solid var(--line);
  }
}
