.destination-guide {
  --dg-ink: #1a1a1a;
  --dg-gold: #c9a84c;
  --dg-paper: #f5f3ef;
  --dg-muted: #625d56;
}

.destination-guide .signature-hero {
  min-height: max(620px, calc(100svh - 100px));
  padding: 64px 0 32px;
}

.destination-guide .page-hero__content {
  max-width: 940px;
}

.destination-guide .signature-hero h1 {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.03;
}

.destination-guide .page-hero__text {
  max-width: 760px;
}

.dg-breadcrumb {
  background: #fff;
  border-bottom: 1px solid rgba(26, 26, 26, .1);
  color: var(--dg-muted);
  font-size: .84rem;
}

.dg-breadcrumb .container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  min-height: 48px;
}

.dg-breadcrumb a {
  color: var(--dg-ink);
  text-decoration-color: rgba(201, 168, 76, .7);
  text-underline-offset: 3px;
}

.dg-answer {
  background: #fff;
  border-left: 4px solid var(--dg-gold);
  box-shadow: 0 14px 40px rgba(26, 26, 26, .07);
  margin: 0 auto;
  max-width: 920px;
  padding: clamp(1.4rem, 4vw, 2.2rem);
}

.dg-answer__label,
.dg-card > span,
.dg-route-card > span {
  color: #80662c;
  display: block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dg-answer p {
  color: var(--dg-ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.35;
  margin: .65rem 0 0;
}

.dg-jumpnav {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  margin: 2rem auto 0;
  max-width: 980px;
}

.dg-jumpnav a {
  border: 1px solid rgba(26, 26, 26, .18);
  color: var(--dg-ink);
  padding: .7rem .95rem;
  text-decoration: none;
}

.dg-jumpnav a:hover {
  border-color: var(--dg-gold);
}

.dg-intro {
  margin: 0 auto;
  max-width: 800px;
}

.dg-intro p,
.dg-prose p {
  color: #47433f;
  font-size: 1.05rem;
  line-height: 1.78;
}

.dg-card-grid,
.dg-route-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.4rem;
}

.dg-card,
.dg-route-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, .11);
  box-shadow: 0 14px 34px rgba(26, 26, 26, .055);
  padding: 1.5rem;
}

.dg-card h3,
.dg-route-card h3 {
  font-size: 1.42rem;
  margin: .55rem 0 .7rem;
}

.dg-card p,
.dg-route-card p {
  color: var(--dg-muted);
  margin: 0;
}

.dg-section-grid {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
}

.dg-section-grid--reverse .dg-section-media {
  order: -1;
}

.dg-section-media {
  margin: 0;
}

.dg-section-media img,
.dg-gallery img {
  aspect-ratio: 3 / 2;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.dg-section-media figcaption,
.dg-gallery figcaption {
  color: var(--dg-muted);
  font-size: .78rem;
  margin-top: .55rem;
}

.dg-table-wrap {
  border: 1px solid rgba(26, 26, 26, .12);
  overflow-x: auto;
}

.dg-table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

.dg-table th,
.dg-table td {
  border-bottom: 1px solid rgba(26, 26, 26, .1);
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

.dg-table thead th {
  background: var(--dg-ink);
  color: var(--dg-paper);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.dg-table tbody th {
  color: var(--dg-ink);
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
}

.dg-source-note {
  background: #fff;
  border-left: 3px solid var(--dg-gold);
  margin-top: 2rem;
  padding: 1.2rem 1.35rem;
}

.dg-source-note p {
  margin: .35rem 0 0;
}

.dg-source-note a,
.dg-route-card a,
.dg-prose a {
  color: inherit;
  font-weight: 700;
  text-decoration-color: var(--dg-gold);
  text-underline-offset: 4px;
}

.dg-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dg-gallery figure {
  margin: 0;
}

.dg-updated {
  color: var(--dg-muted);
  font-size: .8rem;
  margin-top: 1.3rem;
  text-align: center;
}

.dg-final .signature-final-cta__actions {
  gap: .8rem;
}

.dg-final__quick {
  font-size: .9rem;
}

.dg-final__quick a {
  color: inherit;
}

.destination-guide .faq-a a {
  color: inherit;
}

@media (max-width: 900px) {
  .dg-section-grid {
    grid-template-columns: 1fr;
  }

  .dg-section-grid--reverse .dg-section-media {
    order: initial;
  }

  .dg-card-grid,
  .dg-route-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .destination-guide .signature-hero {
    min-height: max(680px, calc(100svh - 72px));
    padding: 48px 0 24px;
  }

  .destination-guide .signature-hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .destination-guide .page-hero__actions,
  .dg-final .signature-final-cta__actions {
    width: 100%;
  }

  .destination-guide .page-hero__actions a,
  .dg-final .btn {
    text-align: center;
    width: 100%;
  }

  .dg-gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .destination-guide * {
    scroll-behavior: auto !important;
  }
}
