
:root {
  --bg: #faf7f1;
  --surface: #ffffff;
  --surface-muted: #f3eee6;
  --text: #182a32;
  --text-soft: #55656f;
  --border: rgba(24, 42, 50, 0.12);
  --border-strong: rgba(24, 42, 50, 0.18);
  --accent: #c64f3d;
  --accent-dark: #a93e30;
  --petrol: #2f6e6a;
  --gold: #c5a45b;
  --shadow: 0 20px 55px rgba(24, 42, 50, 0.08);
  --radius: 22px;
  --radius-small: 14px;
  --tone-blue: #e6eff4;
  --tone-sand: #f3ebdd;
  --tone-rose: #f2e4e1;
  --tone-green: #e7eee8;
  --tone-lilac: #ece9f1;
  --header-height: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffefc 0%, var(--bg) 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
ul { padding-left: 1.1rem; }
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.55rem, 4vw, 4.9rem); }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
.lead { font-size: clamp(1.02rem, 1.35vw, 1.2rem); color: var(--text-soft); max-width: 64ch; }
.container { width: min(1220px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(820px, 100%); }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-soft { background: rgba(255,255,255,0.7); }
.section-dark { background: var(--text); color: #f7f4ef; }
.section-dark p, .section-dark li, .section-dark small { color: rgba(247,244,239,0.85); }
.section-highlight { background: linear-gradient(135deg, rgba(198,79,61,0.08), rgba(47,110,106,0.08)); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--petrol);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  width: 42px;
  height: 1px;
  background: currentColor;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: #fff;
  border-radius: 10px;
}
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 241, 0.82);
  border-bottom: 1px solid rgba(24,42,50,0.06);
}
.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.12rem;
  font-weight: 600;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--text), var(--petrol));
  color: #fff;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.6rem;
  box-shadow: var(--shadow);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.site-nav > a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.9;
}
.site-nav > a:hover { color: var(--accent); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.2rem;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 32px rgba(198,79,61,0.25);
}
.button-primary:hover { background: var(--accent-dark); }
.button-secondary {
  background: rgba(255,255,255,0.75);
  border-color: var(--border);
}
.button-secondary:hover { border-color: var(--text); background: #fff; }
.nav-cta {
  margin-left: 0.35rem;
  background: linear-gradient(135deg, var(--petrol), #235653);
  color: #fff;
  box-shadow: 0 14px 32px rgba(47,110,106,0.25);
}
.nav-cta:hover {
  background: linear-gradient(135deg, #285f5c, #1d4846);
  color: #fff;
}
.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.hero {
  padding: clamp(2rem, 3vw, 2.5rem) 0 clamp(4rem, 7vw, 6.5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-home { padding-top: 2.5rem; }
.hero-copy { position: relative; z-index: 1; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin: 1.6rem 0 1rem; }
.quick-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.quick-pills a {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.92rem;
}
.hero-visual { position: relative; min-height: 540px; }
.card-frame {
  background: var(--surface);
  padding: 0.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
}
.hero-image-large { height: 540px; }
.hero-image-small {
  position: absolute;
  bottom: -3rem;
  left: -3rem;
  width: min(320px, 42vw);
  height: 230px;
}
.page-grid .page-hero-photo { height: 460px; }
.decision-grid, .soft-card-grid, .article-grid, .three-col-layout, .partner-grid, .neighborhood-grid, .info-section-grid { display: grid; gap: 1.25rem; }
.decision-grid.three-up, .article-grid.three-up, .three-col-layout { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.soft-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.neighborhood-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.partner-grid.six-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-section-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.section-intro { max-width: 780px; margin-bottom: 2rem; }
.decision-card, .feature-card, .mini-panel, .info-card, .district-card, .sticky-panel, .table-shell {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 14px 34px rgba(24,42,50,0.05);
}
.decision-card a, .mini-panel a, .feature-card a, .soft-card a, .author-promo a, .info-link, .district-card a, .place-copy a {
  color: var(--accent);
  font-weight: 800;
}
.soft-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.1rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
}
.soft-card img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
}
.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-weight: 800;
  background: rgba(255,255,255,0.7);
  margin-bottom: 0.8rem;
}
.tone-blue { background: var(--tone-blue); }
.tone-sand { background: var(--tone-sand); }
.tone-rose { background: var(--tone-rose); }
.tone-green { background: var(--tone-green); }
.tone-lilac { background: var(--tone-lilac); }
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.check-list li { position: relative; padding-left: 1.8rem; margin-bottom: 0.75rem; }
.check-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}
.route-cards { display: grid; gap: 1rem; }
.route-card {
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-small);
  background: rgba(255,255,255,0.06);
}
.route-card span { display: inline-block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.78; margin-bottom: 0.4rem; }
.route-card strong { display: block; font-size: 1.12rem; margin-bottom: 0.25rem; }
.provider-shell {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2rem;
  align-items: center;
}
.provider-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.provider-logos.large { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.provider-logos img {
  width: 100%;
  aspect-ratio: 2.3 / 1;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.85rem;
  box-shadow: 0 12px 28px rgba(24,42,50,0.05);
}
.info-link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.info-link {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 1rem;
  font-weight: 800;
}
.author-promo {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.6rem;
  align-items: center;
}
.author-promo img, .profile-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}
.place-list { display: grid; gap: 1.4rem; }
.place-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 1.4rem;
  align-items: stretch;
  padding: 1rem;
  border-radius: var(--radius);
}
.place-card.reverse { grid-template-columns: 1fr 360px; }
.place-card.reverse .place-media { order: 2; }
.place-card.reverse .place-copy { order: 1; }
.place-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
}
.place-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-conclusion { font-weight: 800; color: var(--text); }
.meta-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.meta-list li { margin-bottom: 0.45rem; }
.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.cta-strip-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.neighborhood-guide { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.district-lead { font-weight: 800; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.comparison-table th, .comparison-table td {
  border-bottom: 1px solid var(--border);
  text-align: left;
  padding: 0.9rem 0.5rem;
}
.table-shell { overflow-x: auto; }
.contact-layout, .about-grid, .article-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
}
.article-layout { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; }
.contact-form {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 0.45rem; margin-bottom: 1rem; }
label { font-weight: 800; }
input, textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: #fff;
  font: inherit;
  color: var(--text);
}
input:focus, textarea:focus {
  outline: 2px solid rgba(198,79,61,0.2);
  border-color: var(--accent);
}
.error-text { min-height: 1rem; color: var(--accent-dark); }
.honeypot-field { position: absolute !important; left: -9999px !important; }
.form-feedback { margin-top: 0.9rem; font-weight: 700; }
.form-feedback.success { color: var(--petrol); }
.form-feedback.error { color: var(--accent-dark); }
.partner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 0 14px 34px rgba(24,42,50,0.05);
}
.partner-card img {
  width: 100%;
  aspect-ratio: 2.2 / 1;
  object-fit: contain;
  margin-bottom: 0.8rem;
}
.partner-card span { font-weight: 800; color: var(--accent); }
.faq-list details {
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1rem;
  margin-bottom: 0.9rem;
}
.faq-list summary { cursor: pointer; font-weight: 800; }
.article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(24,42,50,0.06);
}
.article-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.article-card-content { padding: 1.2rem; }
.article-meta { display: flex; gap: 1rem; color: var(--text-soft); font-size: 0.94rem; flex-wrap: wrap; }
.rich-copy h2, .rich-copy h3 { margin-top: 2rem; }
.rich-copy ul { margin-bottom: 1.2rem; }
.article-sidebar .sticky-panel { position: sticky; top: calc(var(--header-height) + 1.5rem); }
.related-link { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--border); font-weight: 700; }
.simple-page h1 { margin-bottom: 1.2rem; }
.not-found { text-align: center; }
.center { justify-content: center; }
.site-footer {
  background: var(--text);
  color: #f7f4ef;
  padding: 3.5rem 0 1.2rem;
}
.site-footer p, .site-footer a { color: rgba(247,244,239,0.82); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.8rem;
}
.site-footer h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
  padding-top: 1.25rem;
}
.floating-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  z-index: 25;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(198,79,61,0.3);
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1080px) {
  .hero-grid, .split-panel, .provider-shell, .contact-layout, .about-grid, .article-layout, .footer-grid { grid-template-columns: 1fr; }
  .decision-grid.three-up, .article-grid.three-up, .three-col-layout, .article-grid, .neighborhood-grid, .info-section-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-grid.six-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .soft-card-grid, .neighborhood-guide { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .hero-image-small { left: auto; right: 0; bottom: -1.5rem; width: 220px; height: 160px; }
  .footer-grid { gap: 1.4rem; }
}
@media (max-width: 820px) {
  :root { --header-height: 74px; }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
    background: rgba(255,255,255,0.98);
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-toggle { display: inline-block; }
  .hero { padding-top: 1.5rem; }
  .hero-grid, .place-card, .place-card.reverse, .author-promo { grid-template-columns: 1fr; }
  .place-card.reverse .place-media, .place-card.reverse .place-copy { order: initial; }
  .soft-card { grid-template-columns: 1fr; }
  .place-media img { min-height: 230px; }
  .page-grid .page-hero-photo, .hero-image-large { height: 360px; }
  .decision-grid.three-up, .article-grid.three-up, .three-col-layout, .article-grid, .partner-grid.six-up, .neighborhood-grid, .info-section-grid, .provider-logos, .provider-logos.large, .info-link-grid { grid-template-columns: 1fr; }
  .quick-pills { gap: 0.55rem; }
  .quick-pills a { width: 100%; justify-content: center; text-align: center; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .floating-cta { display: none; }
  .floating-cta.is-visible { display: inline-flex; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* SEO content extensions */
.text-link { color: var(--accent); font-weight: 800; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.editorial-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center; }
.seo-summary, .info-callout, .fare-table-wrap, .money-tips, .transport-options {
  background: rgba(255,255,255,0.94); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; box-shadow: 0 14px 34px rgba(24,42,50,0.05);
}
.info-callout > strong { display: block; font-family: 'DM Serif Display', Georgia, serif; font-size: 1.55rem; margin-bottom: 0.7rem; }
.info-callout ol, .info-callout ul { margin: 0; padding-left: 1.2rem; }
.audience-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.audience-card, .duration-card, .hotel-segment, .topic-card, .season-card {
  border-radius: var(--radius); padding: 1.45rem; border: 1px solid rgba(24,42,50,0.08);
}
.audience-card a, .duration-card a, .hotel-segment a, .topic-card a { color: var(--accent); font-weight: 800; }
.section-action { display: flex; justify-content: center; margin-top: 1.8rem; }
.duration-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.duration-card { background: #fff; }
.duration-card.featured { border: 2px solid var(--accent); transform: translateY(-8px); }
.duration-card > span { display: inline-flex; padding: 0.4rem 0.7rem; border-radius: 999px; background: var(--surface-muted); font-weight: 800; margin-bottom: 0.9rem; }
.hotel-segment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.process-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.process-list li { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; align-items: start; background: rgba(255,255,255,0.94); border: 1px solid var(--border); border-radius: 18px; padding: 1.1rem; }
.process-list li > span { width: 48px; height: 48px; display: grid; place-items: center; background: var(--text); color: #fff; border-radius: 14px; font-weight: 800; }
.process-list h3 { margin-bottom: 0.3rem; }
.process-list p { margin: 0; }
.transport-options, .money-tips { display: grid; gap: 0.8rem; }
.transport-options article, .money-tips article { padding: 1rem; border-radius: 14px; background: var(--surface-muted); display: grid; gap: 0.25rem; }
.transport-options strong, .money-tips strong { font-size: 1.05rem; }
.transport-options span, .money-tips span { color: var(--text-soft); }
.season-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.season-card { background: #fff; border: 1px solid var(--border); }
.source-note { margin-top: 1.2rem; color: var(--text-soft); }
.contact-topic-grid, .topic-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.topic-card { background: #fff; border: 1px solid var(--border); }
.light-process { padding-left: 1.2rem; }
.light-process li { margin-bottom: 0.8rem; color: rgba(247,244,239,0.88); }
@media (max-width: 1080px) {
  .editorial-split { grid-template-columns: 1fr; }
  .audience-grid, .duration-grid, .season-grid, .contact-topic-grid, .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .audience-grid, .duration-grid, .hotel-segment-grid, .season-grid, .contact-topic-grid, .topic-grid { grid-template-columns: 1fr; }
  .duration-card.featured { transform: none; }
}


/* Musea */
.museum-grid {
  display: grid;
  gap: 1.3rem;
}
.museum-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 1.35rem;
  align-items: stretch;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(24,42,50,0.08);
}
.museum-card.reverse {
  grid-template-columns: minmax(0, 1fr) 300px;
}
.museum-card.reverse .museum-media { order: 2; }
.museum-card.reverse .museum-content { order: 1; }
.museum-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
}
.museum-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.35rem 0.2rem;
}
.museum-content p:last-of-type { margin-bottom: 1rem; }
.museum-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.2rem 0 1.1rem;
}
.museum-labels span {
  display: inline-flex;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(24,42,50,0.08);
  font-size: 0.83rem;
  font-weight: 800;
}
.museum-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}
.museum-actions .button { min-height: 46px; }
.museum-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.museum-fact {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.15rem;
}
.museum-fact strong {
  display: block;
  margin-bottom: 0.35rem;
}
.museum-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}
.museum-side-panel {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 14px 34px rgba(24,42,50,0.05);
}
.museum-side-panel .button { width: 100%; margin-top: 0.7rem; }
.museum-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.museum-route-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
  background: rgba(255,255,255,0.9);
}
.museum-route-card a { color: var(--accent); font-weight: 800; }
@media (max-width: 900px) {
  .museum-card,
  .museum-card.reverse,
  .museum-detail-grid {
    grid-template-columns: 1fr;
  }
  .museum-card.reverse .museum-media,
  .museum-card.reverse .museum-content { order: initial; }
  .museum-facts,
  .museum-route-grid { grid-template-columns: 1fr; }
  .museum-media img { min-height: 230px; }
}


/* Reisinformatie, vervoer, eten, weer en feestdagen */
.travel-mode-grid,
.dish-grid,
.season-choice-grid,
.airport-transfer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.travel-mode-card,
.dish-card,
.season-choice-card,
.airport-transfer-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(24,42,50,0.08);
}
.travel-mode-card > span,
.dish-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.72);
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.route-tip-panel,
.time-breakdown,
.snack-stack,
.terminal-grid,
.holiday-impact-grid {
  display: grid;
  gap: 0.85rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.section:not(.section-dark) .route-tip-panel,
.section:not(.section-dark) .time-breakdown,
.section:not(.section-dark) .snack-stack,
.section:not(.section-dark) .terminal-grid,
.section:not(.section-dark) .holiday-impact-grid {
  background: rgba(255,255,255,0.94);
  border-color: var(--border);
  box-shadow: 0 14px 34px rgba(24,42,50,0.05);
}
.route-tip-panel article,
.time-breakdown article,
.snack-stack article,
.terminal-grid article,
.holiday-impact-grid article {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
}
.section:not(.section-dark) .time-breakdown article,
.section:not(.section-dark) .snack-stack article,
.section:not(.section-dark) .terminal-grid article,
.section:not(.section-dark) .holiday-impact-grid article {
  background: var(--surface-muted);
}
.route-choice-grid,
.phrase-grid,
.packing-grid,
.airport-option-grid,
.journey-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.journey-compare-grid,
.airport-option-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.route-choice-card,
.phrase-card,
.packing-card,
.airport-option-card,
.journey-compare-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 0 14px 34px rgba(24,42,50,0.05);
}
.route-choice-card a,
.airport-option-card a,
.journey-compare-card a { color: var(--accent); font-weight: 800; }
.phrase-card { display: grid; gap: 0.2rem; }
.phrase-card span,
.time-breakdown span,
.snack-stack span,
.terminal-grid span,
.holiday-impact-grid span { color: var(--text-soft); }
.section-dark .route-tip-panel span,
.section-dark .route-tip-panel p { color: rgba(247,244,239,0.85); }
.light-link { color: #fff; }
.weather-table-wrap,
.holiday-table-wrap {
  overflow-x: auto;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 14px 34px rgba(24,42,50,0.05);
}
.weather-table { min-width: 720px; }
.holiday-table { min-width: 760px; }
.journey-compare-card.featured { border: 2px solid var(--petrol); transform: translateY(-8px); }
.journey-label,
.transfer-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--surface-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.airport-option-card > span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--text);
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
}
@media (max-width: 1080px) {
  .route-choice-grid,
  .phrase-grid,
  .packing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 820px) {
  .travel-mode-grid,
  .dish-grid,
  .season-choice-grid,
  .airport-transfer-grid,
  .route-choice-grid,
  .phrase-grid,
  .packing-grid,
  .airport-option-grid,
  .journey-compare-grid { grid-template-columns: 1fr; }
  .journey-compare-card.featured { transform: none; }
}


.holiday-closure-list {
  display: grid;
  gap: 0.9rem;
}
.holiday-closure-list article {
  display: grid;
  gap: 0.25rem;
  padding: 1.05rem;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(24,42,50,0.05);
}
.holiday-closure-list span { color: var(--text-soft); }


/* Strong contrast for the booking button in the main navigation */
.site-nav > a.nav-cta,
.site-nav > a.nav-cta:visited {
  color: #ffffff;
  opacity: 1;
}
.site-nav > a.nav-cta:hover,
.site-nav > a.nav-cta:focus-visible {
  color: #ffffff;
}

/* Nightlife overview */
.nightlife-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.nightlife-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem;
  border-radius: var(--radius);
  border: 1px solid rgba(24, 42, 50, 0.08);
}
.nightlife-card h2,
.nightlife-card h3 { margin-bottom: 0.75rem; }
.venue-type {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.85rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.venue-meta {
  display: grid;
  gap: 0.35rem;
  margin: 0.25rem 0 1rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}
.venue-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.75rem;
}
.venue-actions a {
  font-weight: 800;
  color: var(--accent);
}
.nightlife-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.nightlife-teaser {
  padding: 1.2rem;
  border-radius: var(--radius-small);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
}
.nightlife-teaser strong { display: block; margin-bottom: 0.4rem; }
.nightlife-teaser a { color: var(--accent); font-weight: 800; }
.food-photo {
  max-height: 620px;
  overflow: hidden;
}
.food-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 52%;
}
.food-photo figcaption {
  padding: 0.65rem 0.5rem 0.2rem;
  color: var(--text-soft);
  font-size: 0.86rem;
}
@media (max-width: 1080px) {
  .nightlife-teaser-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .nightlife-grid,
  .nightlife-teaser-grid { grid-template-columns: 1fr; }
  .food-photo img { min-height: 430px; }
}


/* Compact hoofdmenu met dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.45rem 0;
}
.nav-dropdown-toggle::after { content: '⌄'; margin-left: 0.35rem; font-size: 0.9em; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: -0.75rem;
  min-width: 230px;
  display: grid;
  gap: 0.15rem;
  padding: 0.65rem;
  background: rgba(255,255,255,0.99);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { padding: 0.7rem 0.8rem; border-radius: 10px; font-weight: 700; }
.nav-dropdown-menu a:hover { background: var(--surface-muted); color: var(--accent); }

/* Winkelen, markten, parken en overzichtspagina's */
.directory-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.15rem; }
.directory-grid-three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.directory-grid-four { grid-template-columns: repeat(4,minmax(0,1fr)); }
.directory-card { min-width: 0; padding: 1.35rem; border-radius: var(--radius); border: 1px solid rgba(24,42,50,.08); }
.directory-card h2, .directory-card h3 { overflow-wrap: anywhere; }
.directory-card a { color: var(--accent); font-weight: 800; }
.directory-kicker { display: inline-flex; margin-bottom: .7rem; padding: .38rem .62rem; border-radius: 999px; background: rgba(255,255,255,.68); font-size: .76rem; font-weight: 800; }
.directory-detail-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: 1.5rem; align-items: start; }
.directory-side-panel { background: rgba(255,255,255,.94); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.35rem; box-shadow: 0 14px 34px rgba(24,42,50,.05); }
.directory-side-panel dl { margin: 0 0 1.1rem; }
.directory-side-panel dt { margin-top: .85rem; font-weight: 800; }
.directory-side-panel dd { margin: .15rem 0 0; color: var(--text-soft); }
.directory-side-panel .button { width: 100%; }
.related-directory-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.related-directory-link { display: flex; align-items: center; min-height: 72px; padding: 1rem; background: #fff; border: 1px solid var(--border); border-radius: 16px; font-weight: 800; color: var(--accent); }
.hero-home-clean .page-hero-photo { min-width: 0; }

/* Mobiel: tekst en foto staan altijd onder elkaar, nooit over elkaar */
@media (max-width: 1080px) {
  .site-nav { gap: .8rem; }
  .site-nav > a, .nav-dropdown-toggle { font-size: .9rem; }
  .directory-grid-four { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 820px) {
  .hero-grid, .page-grid { display: flex; flex-direction: column; align-items: stretch; }
  .hero-copy { position: static; z-index: auto; width: 100%; }
  .page-hero-photo, .hero-visual, .hero-image-large, .hero-image-small { position: static; width: 100%; max-width: 100%; transform: none; margin: 0; }
  .hero-image-small { display: none; }
  .page-grid .page-hero-photo { height: 320px; }
  .page-grid .page-hero-photo img { object-position: center; }
  .place-card, .museum-card, .soft-card { overflow: hidden; }
  .place-copy, .museum-content, .soft-card > div { position: static; min-width: 0; }
  .directory-grid, .directory-grid-three, .directory-grid-four, .related-directory-grid, .directory-detail-grid { grid-template-columns: 1fr; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; text-align: left; padding: .75rem .2rem; }
  .nav-dropdown-menu { position: static; display: none; min-width: 0; margin-top: .2rem; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: var(--surface-muted); }
  .nav-dropdown.is-open .nav-dropdown-menu { display: grid; }
}


/* Homepage: bezienswaardigheden gebruiken dezelfde losse foto/tekst-opbouw als de overzichtspagina */
.home-sights-list .place-card { min-width: 0; }
.home-sights-list .place-copy { padding: .35rem .35rem .35rem 0; }

@media (max-width: 820px) {
  .home-sights-list .place-card,
  .home-sights-list .place-card.reverse {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding: 1rem !important;
    overflow: hidden !important;
  }
  .home-sights-list .place-card .place-media,
  .home-sights-list .place-card.reverse .place-media {
    order: 1 !important;
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .home-sights-list .place-card .place-copy,
  .home-sights-list .place-card.reverse .place-copy {
    order: 2 !important;
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 1.15rem .15rem .2rem !important;
    background: transparent !important;
    transform: none !important;
  }
  .home-sights-list .place-media img {
    display: block !important;
    width: 100% !important;
    height: 240px !important;
    min-height: 0 !important;
    object-fit: cover !important;
    border-radius: 14px !important;
  }
  .home-sights-list .place-copy h3,
  .home-sights-list .place-copy p,
  .home-sights-list .place-copy a,
  .home-sights-list .place-copy .card-number {
    position: static !important;
    transform: none !important;
  }
}
