/* Day Trips — listing & detail (desktop + mobile) */

.page-day-trips,
.page-day-trip-detail,
.page-tours-overview {
  --dt-paper: #fffafa;
  --dt-paper-2: #f9f1f1;
  --dt-ink: #333;
  --dt-ink-soft: #5a5a5a;
  --dt-accent: #d80909;
  --dt-accent-2: #fa5555;
  --dt-clay: #fa5555;
}

.page-day-trips,
.page-tours-overview {
  background: var(--dt-paper);
  color: var(--dt-ink);
}

/* Hero */
.dt-hero {
  position: relative;
  overflow: hidden;
  background: #2a2422;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
}

.dt-hero__media {
  position: absolute;
  inset: 0;
}

.dt-hero__media img,
.dt-hero__img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  aspect-ratio: unset !important;
  display: block;
}

.dt-hero__media--placeholder {
  background: repeating-linear-gradient(
    135deg,
    oklch(0.32 0.03 40) 0 22px,
    oklch(0.3 0.035 40) 22px 23px
  );
}

.dt-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 16, 15, calc(0.15 + var(--dt-hero-overlay, 0.4) * 0.25)) 0%,
    rgba(20, 16, 15, calc(var(--dt-hero-overlay, 0.4) * 0.3)) 38%,
    rgba(20, 16, 15, calc(0.55 + var(--dt-hero-overlay, 0.4) * 0.35)) 100%
  );
}

.dt-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  padding: 0 clamp(20px, 5vw, 64px) clamp(48px, 8vh, 88px);
}

.dt-hero__title {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.06rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.dt-hero__subtitle {
  margin: 1.5rem 0 0;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.19rem);
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.dt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.dt-hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  color: #fff;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dt-hero__scroll i {
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(#fff, transparent);
}

@media (min-width: 900px) {
  .dt-hero__scroll {
    display: flex;
  }
}

/* Buttons */
.dt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.dt-btn:hover {
  transform: translateY(-1px);
}

.dt-btn--primary {
  background: var(--dt-accent);
  color: #fff;
  box-shadow: 0 8px 28px -8px var(--dt-accent);
}

.dt-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}

.dt-btn--outline {
  background: transparent;
  color: var(--dt-ink);
  border: 1px solid rgba(51, 51, 51, 0.22);
}

.dt-btn--block {
  width: 100%;
}

/* Intro strip */
.dt-intro-strip {
  background: var(--dt-paper-2);
  border-bottom: 1px solid rgba(51, 51, 51, 0.07);
}

.dt-intro-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  max-width: 1320px;
  padding: clamp(28px, 4vw, 40px) clamp(20px, 5vw, 64px);
}

.dt-intro-strip__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dt-intro-strip__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 9, 9, 0.08);
  color: var(--dt-accent);
}

.dt-intro-strip__item strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 3px;
}

.dt-intro-strip__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--dt-ink-soft);
}

/* Trip grid */
.dt-trips {
  padding: clamp(56px, 8vw, 96px) 0;
}

.dt-trips__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.dt-trips__header h2 {
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(1.9rem, 4.6vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.dt-trips__header p {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--dt-ink-soft);
}

.dt-grid {
  display: grid;
  gap: 36px;
}

.dt-grid--density-compact {
  gap: 26px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.dt-grid--density-regular {
  gap: 36px;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

.dt-grid--density-spacious {
  gap: 44px;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.dt-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--dt-ink-soft);
}

/* Cards — shared */
.dt-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.dt-card:focus-visible {
  outline: 2px solid var(--dt-accent);
  outline-offset: 4px;
}

.dt-card__media {
  position: relative;
  overflow: hidden;
}

.dt-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.dt-card:hover .dt-card__img,
.dt-card:focus-visible .dt-card__img {
  transform: scale(1.05);
}

.dt-card__placeholder {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: repeating-linear-gradient(135deg, #f0e8e6 0 13px, #e8dedc 13px 14px);
  color: #7a5a52;
}

.dt-card__placeholder span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-width: 260px;
  text-transform: lowercase;
}

.dt-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(51, 51, 51, 0.14);
}

.dt-badge--solid {
  background: var(--dt-accent);
  color: #fff;
  border: none;
}

.dt-badge--duration {
  position: absolute;
  top: 14px;
  right: 14px;
}

.dt-card__body {
  padding-top: 18px;
}

.dt-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.dt-card__region {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dt-card__duration {
  font-size: 11.5px;
  font-weight: 500;
}

.dt-card__title {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 10px;
}

.dt-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 28px;
  background: var(--dt-accent);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.dt-card:hover .dt-card__title::after,
.dt-card:focus-visible .dt-card__title::after {
  width: 56px;
}

.dt-card__blurb {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.62;
  color: var(--dt-ink-soft);
}

.dt-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.dt-card__price strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dt-card__price span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--dt-ink-soft);
}

.dt-card__cta {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dt-accent);
  white-space: nowrap;
}

.dt-card__cta span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.dt-card__cta--link {
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.dt-card__cta--link:hover,
.dt-card__cta--link:focus-visible {
  color: var(--dt-accent);
}

.dt-card:hover .dt-card__cta span,
.dt-card:focus-visible .dt-card__cta span {
  transform: translateX(4px);
}

/* Gallery card style */
.dt-card--gallery {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(51, 51, 51, 0.06);
  box-shadow: 0 6px 22px -14px rgba(120, 60, 50, 0.25);
}

.dt-card--gallery:hover,
.dt-card--gallery:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -22px rgba(120, 60, 50, 0.4);
}

.dt-card--gallery .dt-card__media {
  height: 210px;
}

.dt-card--gallery .dt-badge--solid {
  position: absolute;
  top: 14px;
  left: 14px;
}

.dt-card--gallery .dt-card__body {
  padding: 22px 22px 24px;
}

.dt-card--gallery .dt-card__title {
  font-size: 20px;
  padding-bottom: 0;
}

.dt-card--gallery .dt-card__title::after {
  display: none;
}

.dt-card--gallery .dt-card__footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(51, 51, 51, 0.08);
}

/* Immersive card style */
.dt-card--immersive {
  position: relative;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px -16px rgba(40, 20, 18, 0.3);
}

.dt-card--immersive:hover,
.dt-card--immersive:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(40, 20, 18, 0.45);
}

.dt-card--immersive .dt-card__media {
  position: absolute;
  inset: 0;
}

.dt-card--immersive .dt-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 14, 13, 0.05) 0%,
    rgba(20, 14, 13, 0.1) 45%,
    rgba(20, 14, 13, 0.82) 100%
  );
}

.dt-card--immersive .dt-card__placeholder,
.dt-card--immersive .dt-card__img {
  min-height: 100%;
}

.dt-card--immersive .dt-badge--solid {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.dt-card--immersive .dt-card__body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 24px;
  color: #fff;
}

.dt-card--immersive .dt-card__region {
  color: rgba(255, 255, 255, 0.9);
}

.dt-card--immersive .dt-card__title {
  font-size: 23px;
  color: #fff;
}

.dt-card--immersive .dt-card__title::after {
  display: none;
}

.dt-card--immersive .dt-card__blurb {
  color: rgba(255, 255, 255, 0.86);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.dt-card--immersive:hover .dt-card__blurb,
.dt-card--immersive:focus-visible .dt-card__blurb {
  max-height: 80px;
  opacity: 1;
}

.dt-card--immersive .dt-card__price strong,
.dt-card--immersive .dt-card__price span {
  color: #fff;
}

.dt-card--immersive .dt-card__price span {
  opacity: 0.8;
}

.dt-card--immersive .dt-card__cta {
  color: var(--dt-accent-2);
  margin-top: 12px;
}

.dt-card--immersive .dt-card__footer {
  flex-direction: column;
  align-items: flex-start;
}

/* Contact */
.dt-contact {
  background: var(--dt-paper-2);
  padding: clamp(56px, 8vw, 96px) 0;
}

.dt-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  max-width: 1180px;
}

.dt-contact__intro h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.6vw, 2.625rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.dt-contact__intro > p {
  margin: 16px 0 32px;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dt-ink-soft);
}

.dt-contact__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dt-contact__details li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 700;
}

.dt-contact__detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 9, 9, 0.08);
  color: var(--dt-accent, #d80909);
}

.dt-contact__details a,
.dt-contact__details .dt-contact__detail-text {
  color: var(--dt-ink);
  font-weight: 700;
  text-decoration: none;
}

.dt-contact__details a:hover {
  color: var(--dt-accent, #d80909);
}

.dt-muted {
  color: var(--dt-ink-soft);
}

.dt-contact__form-panel {
  background: var(--dt-paper);
  border-radius: 20px;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(51, 51, 51, 0.07);
  box-shadow: 0 20px 50px -28px rgba(120, 60, 50, 0.4);
}

.dt-form__row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.dt-form__row--2 {
  grid-template-columns: 1fr 1fr;
}

.dt-form__field label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.dt-form__field input,
.dt-form__field select,
.dt-form__field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--dt-ink);
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(51, 51, 51, 0.16);
  background: var(--dt-paper);
}

.dt-form__field textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}

.dt-form__error {
  color: var(--dt-accent);
  font-size: 13px;
}

/* Detail overlay */
.dt-detail[hidden] {
  display: none !important;
}

.dt-detail {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.dt-detail__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 18, 16, 0.55);
  backdrop-filter: blur(6px);
  animation: dtFadeIn 0.3s ease;
}

.dt-detail__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(680px, 100%);
  height: 100%;
  overflow-y: auto;
  background: var(--dt-paper, #fffafa);
  color: var(--dt-ink, #333);
  box-shadow: -30px 0 80px -30px rgba(0, 0, 0, 0.5);
  animation: dtSlideIn 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.dt-detail__body {
  background: var(--dt-paper, #fffafa);
  color: var(--dt-ink, #333);
}

.dt-detail__close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px -56px 0;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dt-ink, #333);
  box-shadow: 0 3px 14px -2px rgba(0, 0, 0, 0.28);
  font-size: 18px;
}

.dt-detail__hero {
  position: relative;
  height: 280px;
}

.dt-detail__hero img,
.dt-detail__hero .dt-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dt-detail__hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px clamp(24px, 5vw, 44px);
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(20, 14, 13, 0.35) 0%,
    transparent 35%,
    rgba(20, 14, 13, 0.7) 100%
  );
}

.dt-detail__hero-copy h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1.08;
}

.dt-detail__hero-copy p {
  margin: 8px 0 0;
  font-size: 15px;
  opacity: 0.9;
}

.dt-detail__content {
  padding: clamp(24px, 5vw, 44px);
}

.dt-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(51, 51, 51, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}

.dt-facts > div {
  background: var(--dt-paper-2, #f9f1f1);
  padding: 16px 18px;
}

.dt-facts span {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dt-clay);
  margin-bottom: 6px;
}

.dt-facts strong {
  font-size: 14px;
  line-height: 1.3;
}

.dt-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dt-clay);
}

.dt-highlights {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dt-highlights li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
}

.dt-highlights li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--dt-accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.dt-timeline__item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding-bottom: 24px;
}

.dt-timeline__item time {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--dt-accent);
  text-align: right;
  white-space: nowrap;
}

.dt-timeline__item > div {
  position: relative;
  padding-left: 22px;
  border-left: 1px solid rgba(51, 51, 51, 0.13);
}

.dt-timeline__item:last-child > div {
  border-left-color: transparent;
  padding-bottom: 0;
}

.dt-timeline__item > div::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 3px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--dt-accent);
  border: 2px solid var(--dt-paper);
}

.dt-timeline__item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.dt-timeline__item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--dt-ink-soft);
}

.dt-includes {
  margin-top: 34px;
  padding: 22px 24px;
  background: var(--dt-paper-2);
  border-radius: 14px;
}

.dt-includes ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
}

.dt-includes li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.45;
}

.dt-includes li::before {
  content: "✓";
  color: var(--dt-accent);
  font-weight: 700;
}

.dt-detail__bar {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(24px, 5vw, 44px);
  background: rgba(255, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}

.dt-detail__bar-price strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
}

.dt-detail__bar-price span {
  font-size: 12px;
  color: var(--dt-ink-soft);
}

.dt-detail__bar-actions {
  display: flex;
  gap: 10px;
}

/* Standalone detail page */
.day-trip-detail {
  background: var(--dt-paper);
}

.dt-detail-page__hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #2a2422;
}

.dt-detail-page__img,
.dt-detail-page__placeholder {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  aspect-ratio: unset !important;
}

.dt-detail-page__hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px clamp(20px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(transparent 20%, rgba(20, 14, 13, 0.75));
}

.dt-detail-page__hero-copy h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.dt-detail-page__content {
  padding: clamp(32px, 5vw, 56px) clamp(20px, 5vw, 64px) 64px;
  max-width: 900px;
}

.dt-detail-page__overview {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.dt-detail-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}

.dt-detail-page__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dt-back-link {
  margin-top: 32px;
}

.dt-back-link a {
  color: var(--dt-accent);
  font-weight: 600;
  text-decoration: none;
}

@keyframes dtFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes dtSlideIn {
  from {
    transform: translateX(40px);
    opacity: 0.4;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .dt-hero {
    min-height: 82vh;
  }

  .dt-hero__title {
    font-size: 2.2rem;
  }

  .dt-trips {
    padding: 48px 0 56px;
  }

  .dt-trips .container {
    padding-inline: 20px;
  }

  .dt-trips__header {
    text-align: left;
    margin-bottom: 32px;
  }

  .dt-trips__header h2 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    margin-inline: 0;
  }

  .dt-grid--density-compact,
  .dt-grid--density-regular,
  .dt-grid--density-spacious {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .dt-contact__grid {
    grid-template-columns: 1fr;
  }

  .dt-form__row--2 {
    grid-template-columns: 1fr;
  }

  .dt-detail__panel {
    width: 100%;
    animation: dtSlideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .dt-timeline__item {
    grid-template-columns: 78px 1fr;
    gap: 14px;
  }

  .dt-includes ul {
    grid-template-columns: 1fr;
  }

  .dt-detail__bar {
    flex-wrap: wrap;
  }

  .dt-detail__bar-actions {
    flex: 1 1 100%;
  }

  .dt-detail__bar-actions .dt-btn--primary {
    flex: 1 1 auto;
  }
}

@keyframes dtSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .kj-fade {
    animation: dtRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes dtRise {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
