@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --text: #f9fbff;
  --muted: #dce6f4;
  --accent: #d7bf7b;
  --accent-strong: #f3dca1;
  --surface: rgba(7, 13, 26, 0.85);
  --surface-strong: rgba(8, 15, 30, 0.92);
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --space: 1.2rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #080f1f;
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  /* Uses the supplied slide artwork at assets/custom-slide-background.svg with fallbacks for JPG/SVG texture. */
  background: linear-gradient(135deg, rgba(5, 10, 22, 0.94), rgba(9, 18, 34, 0.88)),
    url('assets/custom-slide-background.png') center/cover no-repeat fixed,
    url('assets/custom-slide-background.jpg') center/cover no-repeat fixed,
    url('assets/slide-background.svg') center/cover no-repeat fixed;
  background-blend-mode: soft-light, normal, normal, normal;
  opacity: 0.98;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 28% 18%, rgba(243, 220, 161, 0.18), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(243, 220, 161, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(8, 14, 28, 0.2), rgba(8, 14, 28, 0.42));
  z-index: -1;
  pointer-events: none;
}

main {
  padding-bottom: 3rem;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--space) * 1.3) calc(var(--space) * 1.6);
}

.site-header {
  background: linear-gradient(135deg, rgba(10, 22, 43, 0.92), rgba(11, 21, 40, 0.8));
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.sfdp-bar {
  background: linear-gradient(90deg, rgba(14, 24, 40, 0.95), rgba(18, 30, 50, 0.92));
  border-bottom: 1px solid rgba(212, 181, 106, 0.28);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.3);
}

.sfdp-bar .wrap {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.sfdp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.sfdp-link:hover .sfdp-text {
  text-decoration: underline;
}

.sfdp-logo {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.sfdp-text {
  color: var(--accent-strong);
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(212, 181, 106, 0.32), transparent 32%),
    radial-gradient(circle at 100% 30%, rgba(212, 181, 106, 0.18), transparent 40%);
  pointer-events: none;
}

.site-header.compact {
  box-shadow: var(--shadow);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent-strong);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.nav-links {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(212, 181, 106, 0.18);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: calc(var(--space) * 1.2);
  align-items: center;
  position: relative;
  padding: calc(var(--space) * 1.3) 0 calc(var(--space) * 1.7);
}

.hero-copy h1 {
  margin: 0 0 0.4rem;
  font-size: 2.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.01em;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.hero .lede {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 46rem;
}

.hero-pane {
  border-radius: var(--radius);
  padding: calc(var(--space) * 1.1);
  background: linear-gradient(135deg, rgba(12, 26, 51, 0.8), rgba(10, 21, 38, 0.75));
  border: 1px solid rgba(212, 181, 106, 0.28);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.hero-pane.subtle {
  background: linear-gradient(135deg, rgba(12, 26, 51, 0.7), rgba(10, 21, 38, 0.65));
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.eyebrow {
  margin: 0 0 0.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.lede {
  margin: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(212, 181, 106, 0.18);
  border: 1px solid rgba(212, 181, 106, 0.4);
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  backdrop-filter: blur(2px);
}

.pill.ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(212, 181, 106, 0.95), rgba(240, 208, 140, 0.85));
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(240, 208, 140, 0.8);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.35);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(212, 181, 106, 0.35);
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.muted {
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: calc(var(--space) * 1.1);
  margin-top: 1.4rem;
}

.panel {
  background: var(--surface);
  border: 1px solid rgba(212, 181, 106, 0.32);
  border-radius: var(--radius);
  padding: calc(var(--space) * 1.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.panel.highlight {
  background: linear-gradient(135deg, rgba(15, 27, 52, 0.92), rgba(18, 33, 62, 0.82));
}

.panel h3 {
  margin: 0 0 0.35rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--accent-strong);
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
}

.panel p,
.panel li {
  color: var(--muted);
}

.panel ol,
.panel ul {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
}

.section-heading h2 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.9rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--accent-strong);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.itinerary {
  margin-top: 1.6rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: calc(var(--space) * 1.1);
  margin: 1rem 0 1.6rem;
}

.card {
  background: var(--surface-strong);
  border: 1px solid rgba(212, 181, 106, 0.32);
  border-radius: var(--radius);
  padding: calc(var(--space) * 1.1);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  backdrop-filter: blur(6px);
}

.card h3 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
}

.card .button {
  align-self: flex-start;
  margin-top: auto;
}

.notice {
  margin: 0 0 var(--space);
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(21, 39, 68, 0.8), rgba(27, 51, 86, 0.65));
  color: #f7f8fc;
  border-radius: 12px;
  font-size: 1rem;
  border: 1px solid rgba(203, 161, 82, 0.35);
  backdrop-filter: blur(6px);
}

.notice.inline {
  margin: 0;
  background: #4d1b1b;
  color: #ffe9d5;
  border: 1px solid #f2b38a;
  backdrop-filter: none;
}

.hidden {
  display: none;
}

.stops {
  display: grid;
  gap: calc(var(--space) * 1.1);
  margin: calc(var(--space) * 1.2) 0 2.4rem;
}

.stop {
  background: linear-gradient(135deg, rgba(15, 27, 52, 0.88), rgba(15, 27, 52, 0.78)), #0d172c;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: calc(var(--space) * 1.1) calc(var(--space) * 1.2);
  box-shadow: var(--shadow);
  scroll-margin-top: 1rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.stop::before {
  content: '';
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(203, 161, 82, 0.4);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

.stop.full {
  padding: calc(var(--space) * 1.4);
}

.stop h2 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--accent-strong);
  letter-spacing: 0.01em;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.stop p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.stop-figure {
  margin: 0 0 1.25rem;
  width: min(100%, 680px);
  margin-left: auto;
  margin-right: auto;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 1px solid rgba(203, 161, 82, 0.45);
  background: radial-gradient(circle at 20% 30%, rgba(233, 200, 125, 0.2), rgba(14, 25, 47, 0.9));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.stop-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.stop-figure figcaption {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.98rem;
  color: #f1e7cf;
  background: rgba(12, 22, 43, 0.8);
  border-top: 1px solid rgba(203, 161, 82, 0.35);
}

.player {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

audio {
  width: 100%;
  max-width: 100%;
  min-height: 54px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(203, 161, 82, 0.12), rgba(203, 161, 82, 0.25));
  border: 1px solid rgba(203, 161, 82, 0.45);
  padding: 0.35rem 0.6rem;
  accent-color: var(--accent);
  color: var(--text);
}

.site-footer {
  background: linear-gradient(180deg, rgba(9, 19, 38, 0.95), rgba(8, 15, 30, 0.92));
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.98rem;
  box-shadow: 0 -18px 30px rgba(0, 0, 0, 0.2);
  margin-top: 3rem;
  backdrop-filter: blur(8px);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 700;
}

.privacy-banner {
  margin-top: 1.5rem;
  padding: 1rem 0 1.2rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(7, 14, 26, 0.9), rgba(6, 12, 22, 0.92));
  font-size: 0.92rem;
}

.privacy-banner-content {
  display: grid;
  gap: 0.35rem;
}

.privacy-banner .muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.privacy-link {
  color: var(--accent-strong);
  font-weight: 600;
}

.privacy-note {
  max-width: 34rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 181, 106, 0.28);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.privacy-note .muted {
  margin: 0 0 0.35rem;
  color: var(--muted);
  line-height: 1.55;
}

.detail-hero {
  padding-bottom: calc(var(--space) * 1.2);
}

.detail-main {
  margin-top: -0.6rem;
}

@media (min-width: 768px) {
  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .stop h2 {
    font-size: 1.65rem;
  }
}
